diff --git a/.flake8 b/.flake8 index 0295f1c0277..5d2b0466e0e 100644 --- a/.flake8 +++ b/.flake8 @@ -7,6 +7,7 @@ ignore = F401, # imported but unused, too many violations, to be removed in the future F811, # redefinition of unused, to be removed in the future C901 # code flow is too complex, too many violations, to be removed in the future + W503 # line break before binary operator effect on readability is subjective W504 # line break after binary operator effect on readability is subjective exclude = */vendored_sdks diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index bf82158fc82..21a9ee78b4d 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -94,7 +94,7 @@ /src/alertsmanagement/ @qwordy -/src/stream-analytics/ @houk-ms +/src/stream-analytics/ @houk-ms @necusjz /src/databricks/ @fengzhou-msft @xfz11 diff --git a/linter_exclusions.yml b/linter_exclusions.yml index 95fb8262651..acb4702901c 100644 --- a/linter_exclusions.yml +++ b/linter_exclusions.yml @@ -52,6 +52,9 @@ aks create: load_balancer_managed_outbound_ip_count: rule_exclusions: - option_length_too_long + load_balancer_managed_outbound_ipv6_count: + rule_exclusions: + - option_length_too_long load_balancer_outbound_ip_prefixes: rule_exclusions: - option_length_too_long @@ -161,6 +164,9 @@ aks update: load_balancer_managed_outbound_ip_count: rule_exclusions: - option_length_too_long + load_balancer_managed_outbound_ipv6_count: + rule_exclusions: + - option_length_too_long load_balancer_outbound_ip_prefixes: rule_exclusions: - option_length_too_long @@ -1627,6 +1633,35 @@ network vhub connection create: allow_remote_vnet_to_use_hub_vnet_gateways: rule_exclusions: - option_length_too_long +network vpn-gateway connection vpn-site-link-conn add: + parameters: + use_local_azure_ip_address: + rule_exclusions: + - option_length_too_long + use_policy_based_traffic_selectors: + rule_exclusions: + - option_length_too_long + vpn_connection_protocol_type: + rule_exclusions: + - option_length_too_long + vpn_link_connection_mode: + rule_exclusions: + - option_length_too_long +network vpn-gateway connection vpn-site-link-conn ipsec-policy add: + parameters: + vpn_site_link_conn_name: + rule_exclusions: + - option_length_too_long +network vpn-gateway connection vpn-site-link-conn ipsec-policy list: + parameters: + vpn_site_link_conn_name: + rule_exclusions: + - option_length_too_long +network vpn-gateway connection vpn-site-link-conn ipsec-policy remove: + parameters: + vpn_site_link_conn_name: + rule_exclusions: + - option_length_too_long network vpn-server-config create: parameters: radius_client_root_certs: diff --git a/pylintrc b/pylintrc index 0f3c0b3fba4..dbe731101ce 100644 --- a/pylintrc +++ b/pylintrc @@ -21,7 +21,7 @@ disable= [TYPECHECK] # For Azure CLI extensions, we ignore some import errors as they'll be available in the environment of the CLI -ignored-modules=azure,azure.cli,azure.cli.core,azure.cli.core.commands,knack,msrestazure,argcomplete,azure_devtools,isodate,OpenSSL +ignored-modules=azure,azure.cli,azure.cli.core,azure.cli.core.commands,knack,msrestazure,argcomplete,azure.cli.testsdk,isodate,OpenSSL [FORMAT] max-line-length=120 diff --git a/src/account/azext_account/tests/latest/test_account_scenario.py b/src/account/azext_account/tests/latest/test_account_scenario.py index 78782e18d1c..5a752269188 100644 --- a/src/account/azext_account/tests/latest/test_account_scenario.py +++ b/src/account/azext_account/tests/latest/test_account_scenario.py @@ -7,7 +7,7 @@ import unittest import time -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) diff --git a/src/acrtransfer/HISTORY.rst b/src/acrtransfer/HISTORY.rst index 8c34bccfff8..530658b9421 100644 --- a/src/acrtransfer/HISTORY.rst +++ b/src/acrtransfer/HISTORY.rst @@ -2,7 +2,13 @@ Release History =============== +1.1.0 +++++++ +* Add: New command acr pipeline-run clean - Bulk deletes failed pipeline-runs. +* Add: New parameter to acr pipeline-run list --top - Displays only the n most recent pipeline-runs. +* Bug fix: ResourceNotFoundError will now be thrown if the resource does not exist when calling import-pipeline delete and export-pipeline delete. +* Bug fix: Help text typos fixed. -0.1.0 +1.0.0 ++++++ * Initial release. \ No newline at end of file diff --git a/src/acrtransfer/azext_acrtransfer/__init__.py b/src/acrtransfer/azext_acrtransfer/__init__.py index d0865012ec7..3b38e4b61e2 100644 --- a/src/acrtransfer/azext_acrtransfer/__init__.py +++ b/src/acrtransfer/azext_acrtransfer/__init__.py @@ -15,8 +15,7 @@ def __init__(self, cli_ctx=None): acrtransfer_custom = CliCommandType( operations_tmpl='azext_acrtransfer.custom#{}', client_factory=cf_acrtransfer) - super(AcrtransferCommandsLoader, self).__init__(cli_ctx=cli_ctx, - custom_command_type=acrtransfer_custom) + super().__init__(cli_ctx=cli_ctx, custom_command_type=acrtransfer_custom) def load_command_table(self, args): from azext_acrtransfer.commands import load_command_table diff --git a/src/acrtransfer/azext_acrtransfer/_format.py b/src/acrtransfer/azext_acrtransfer/_format.py index 2465bfb98b4..640f48d22e0 100644 --- a/src/acrtransfer/azext_acrtransfer/_format.py +++ b/src/acrtransfer/azext_acrtransfer/_format.py @@ -5,7 +5,9 @@ # pylint: disable=line-too-long from collections import OrderedDict -from distutils import log as logger +from knack.log import get_logger + +logger = get_logger(__name__) def import_pipeline_output_format(result): @@ -40,10 +42,10 @@ def _export_pipeline_format_group(item): def _pipeline_run_format_group(item): if "importPipelines" in _get_value(item, 'request', 'pipelineResourceId'): - return OrderedDict([ + d = OrderedDict([ ('NAME', _get_value(item, 'name')), - ('PIPELINE', _get_value(item, 'request', 'pipelineResourceId').split('/')[-1]), - ('START_TIME', _get_value(item, 'response', 'startTime').split('.')[0]), + ('PIPELINE', _get_value(item, 'request', 'pipelineResourceId').split('/', maxsplit=-1)[-1]), + ('START_TIME', _get_value(item, 'response', 'startTime').split('.', maxsplit=1)[0]), ('DURATION', _get_duration(_get_value(item, 'response', 'startTime'), _get_value(item, 'response', 'finishTime'))), ('SOURCE_TRIGGER', str('_' in _get_value(item, 'name'))), ('STATUS', _get_value(item, 'response', 'status')), @@ -51,14 +53,15 @@ def _pipeline_run_format_group(item): ]) else: - return OrderedDict([ + d = OrderedDict([ ('NAME', _get_value(item, 'name')), - ('PIPELINE', _get_value(item, 'request', 'pipelineResourceId').split('/')[-1]), - ('START_TIME', _get_value(item, 'response', 'startTime').split('.')[0]), + ('PIPELINE', _get_value(item, 'request', 'pipelineResourceId').split('/', maxsplit=-1)[-1]), + ('START_TIME', _get_value(item, 'response', 'startTime').split('.', maxsplit=1)[0]), ('DURATION', _get_duration(_get_value(item, 'response', 'startTime'), _get_value(item, 'response', 'finishTime'))), ('STATUS', _get_value(item, 'response', 'status')), ('ERROR_MESSAGE', _get_value(item, 'response', 'pipelineRunErrorMessage')) ]) + return d def _output_format(result, format_group): @@ -86,10 +89,10 @@ def _get_duration(start_time, finish_time): from dateutil.parser import parse try: duration = parse(finish_time) - parse(start_time) - hours = "{0:02d}".format((24 * duration.days) + (duration.seconds // 3600)) - minutes = "{0:02d}".format((duration.seconds % 3600) // 60) - seconds = "{0:02d}".format(duration.seconds % 60) - return "{0}:{1}:{2}".format(hours, minutes, seconds) + hours = f'{((24 * duration.days) + (duration.seconds // 3600)):02d}' + minutes = f'{((duration.seconds % 3600) // 60):02d}' + seconds = f'{(duration.seconds % 60):02d}' + return f'{hours}:{minutes}:{seconds}' except (ValueError, TypeError): - logger.debug("Unable to get duration with start_time '%s' and finish_time '%s'", start_time, finish_time) + logger.debug('Unable to get duration with start_time %s and finish_time %s', start_time, finish_time) return ' ' diff --git a/src/acrtransfer/azext_acrtransfer/_help.py b/src/acrtransfer/azext_acrtransfer/_help.py index 21d187292d4..fd343595ab6 100644 --- a/src/acrtransfer/azext_acrtransfer/_help.py +++ b/src/acrtransfer/azext_acrtransfer/_help.py @@ -19,7 +19,7 @@ helps['acr pipeline-run'] = """ type: group - short-summary: Manage ACR import and export pipeline runs. + short-summary: Manage ACR import and export pipeline-runs. """ helps['acr import-pipeline create'] = """ @@ -28,7 +28,7 @@ examples: - name: Create an import pipeline. text: az acr import-pipeline create --resource-group $MyRG --registry $MyReg --name $MyPipeline --secret-uri https://$MyKV.vault.azure.net/secrets/$MySecret --storage-container-uri https://$MyStorage.blob.core.windows.net/$MyContainer - - name: Create an import pipeline with a user assigned identity, all available options, and source trigger disabled. + - name: Create an import pipeline with a user-assigned identity, all available options, and source trigger disabled. text: az acr import-pipeline create --resource-group $MyRG --registry $MyReg --name $MyPipeline --secret-uri https://$MyKV.vault.azure.net/secrets/$MySecret --storage-container-uri https://$MyStorage.blob.core.windows.net/$MyContainer --options DeleteSourceBlobOnSuccess OverwriteTags ContinueOnErrors --assign-identity /subscriptions/$MySubID/resourceGroups/$MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/$MyIdentity --source-trigger-enabled False """ @@ -62,7 +62,7 @@ examples: - name: Create an export pipeline. text: az acr export-pipeline create --resource-group $MyRG --registry $MyReg --name $MyPipeline --secret-uri https://$MyKV.vault.azure.net/secrets/$MySecret --storage-container-uri https://$MyStorage.blob.core.windows.net/$MyContainer - - name: Create an export pipeline with a user assigned identity and all available options. + - name: Create an export pipeline with a user-assigned identity and all available options. text: az acr export-pipeline create --resource-group $MyRG --registry $MyReg --name $MyPipeline --secret-uri https://$MyKV.vault.azure.net/secrets/$MySecret --storage-container-uri https://$MyStorage.blob.core.windows.net/$MyContainer --options OverwriteBlobs ContinueOnErrors --assign-identity /subscriptions/$MySubID/resourceGroups/$MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/$MyIdentity """ @@ -92,34 +92,44 @@ helps['acr pipeline-run create'] = """ type: command - short-summary: Create a pipeline run. + short-summary: Create a pipeline-run. examples: - - name: Create an import pipeline run. + - name: Create an import pipeline-run. text: az acr pipeline-run create --resource-group $MyRG --registry $MyReg --pipeline $MyPipeline --name $MyPipelineRunName --pipeline-type import --storage-blob $MyBlob - - name: Create an export pipeline run and force redeploy. + - name: Create an export pipeline-run and force redeploy. text: az acr pipeline-run create --resource-group $MyRG --registry $MyReg --pipeline $MyPipeline --name $MyPipelineRunName --pipeline-type export --storage-blob $MyBlob --artifacts hello-world:latest hello-world@sha256:90659bf80b44ce6be8234e6ff90a1ac34acbeb826903b02cfa0da11c82cbc042 --force-redeploy """ helps['acr pipeline-run list'] = """ type: command - short-summary: List pipelineruns of all pipelines on a container registry. + short-summary: List pipeline-runs of all pipelines on a container registry. examples: - - name: List all export pipelines on a container registry + - name: List all pipeline-runs on a container registry text: az acr pipeline-run list --resource-group $MyRG --registry $MyReg """ helps['acr pipeline-run show'] = """ type: command - short-summary: Show an export pipeline in detail. + short-summary: Show a pipeline-run in detail. examples: - - name: Show a specific export pipeline in detail. + - name: Show a specific pipeline-run in detail. text: az acr pipeline-run show --resource-group $MyRG --registry $MyReg --name $MyPipelineRun """ helps['acr pipeline-run delete'] = """ type: command - short-summary: Delete an export pipeline. + short-summary: Delete a pipeline-run. examples: - - name: Delete an export pipeline. + - name: Delete a pipeline-run. text: az acr pipeline-run delete --resource-group $MyRG --registry $MyReg --name $MyPipelineRun """ + +helps['acr pipeline-run clean'] = """ + type: command + short-summary: Delete all failed pipeline-runs on the registry. + examples: + - name: Delete all failed pipeline-runs on the registry. + text: az acr pipeline-run clean --resource-group $MyRG --registry $MyReg + - name: List the failed pipeline-runs that would have been deleted, but do not delete any. + text: az acr pipeline-run clean --resource-group $MyRG --registry $MyReg --dry-run -o table +""" diff --git a/src/acrtransfer/azext_acrtransfer/_params.py b/src/acrtransfer/azext_acrtransfer/_params.py index f8a8d4bd074..69fef318aa1 100644 --- a/src/acrtransfer/azext_acrtransfer/_params.py +++ b/src/acrtransfer/azext_acrtransfer/_params.py @@ -4,7 +4,7 @@ # -------------------------------------------------------------------------------------------- # pylint: disable=line-too-long -from ._validators import validate_export_options, validate_import_options, validate_keyvault_secret_uri, validate_pipeline_type, validate_storage_account_container_uri, validate_user_assigned_identity_resource_id +from ._validators import validate_export_options, validate_import_options, validate_keyvault_secret_uri, validate_pipeline_type, validate_storage_account_container_uri, validate_user_assigned_identity_resource_id, validate_top def load_arguments(self, _): @@ -35,3 +35,7 @@ def load_arguments(self, _): c.argument('force_update_tag', options_list=['--force-redeploy', '-f'], action='store_true', help='Flag that forces ARM to redeploy resource even if no parameters have changed.') c.argument('storage_blob_name', options_list=['--storage-blob', '-b'], help='Name of the storage blob to be imported or exported.') c.argument('artifacts', options_list=['--artifacts', '-a'], nargs='+', help='Space-separated list of container artifacts. Artifacts must be either of the form `repository:tag` or `repository@digest` such as hello-world:latest or hello-world@sha256:90659bf80b44ce6be8234e6ff90a1ac34acbeb826903b02cfa0da11c82cbc042.') + c.argument('top', validator=validate_top, help='List only the last n pipeline-runs. Must be an integer.') + + with self.argument_context('acr pipeline-run clean') as c: + c.argument('dry_run', action='store_true', help='List the failed pipeline-runs that would have been deleted, but do not delete any.') diff --git a/src/acrtransfer/azext_acrtransfer/_validators.py b/src/acrtransfer/azext_acrtransfer/_validators.py index e2e1d9fa8ee..bd3ccbee6c5 100644 --- a/src/acrtransfer/azext_acrtransfer/_validators.py +++ b/src/acrtransfer/azext_acrtransfer/_validators.py @@ -4,8 +4,10 @@ # -------------------------------------------------------------------------------------------- # pylint: disable=line-too-long -from distutils import log as logger -from knack.util import CLIError +from knack.log import get_logger +from azure.cli.core.azclierror import InvalidArgumentValueError + +logger = get_logger(__name__) def validate_storage_account_container_uri(namespace): @@ -16,7 +18,7 @@ def validate_storage_account_container_uri(namespace): valid = False if not valid: - logger.warn("Invalid storage account container URI. Please provide a storage account container URI of the form https://$MyStorageAccount.blob.core.windows.net/$MyContainer. Note - The exact URI form may be different outside of AzureCloud.") + logger.warning("Invalid storage account container URI. Please provide a storage account container URI of the form https://$MyStorageAccount.blob.core.windows.net/$MyContainer. Note - The exact URI form may be different outside of AzureCloud.") def validate_keyvault_secret_uri(namespace): @@ -27,7 +29,7 @@ def validate_keyvault_secret_uri(namespace): valid = False if not valid: - logger.warn("Invalid keyvault secret URI. Please provide a keyvault secret URI of the form https://$MyKeyvault.vault.azure.net/secrets/$MySecret. Note - The exact URI form may be different outside of AzureCloud.") + logger.warning("Invalid keyvault secret URI. Please provide a keyvault secret URI of the form https://$MyKeyvault.vault.azure.net/secrets/$MySecret. Note - The exact URI form may be different outside of AzureCloud.") def validate_user_assigned_identity_resource_id(namespace): @@ -41,7 +43,7 @@ def validate_user_assigned_identity_resource_id(namespace): valid = False if not valid: - logger.warn("Invalid user assigned identity resource ID. Please provide a user assigned identity resource ID of the form /subscriptions/$MySubID/resourceGroups/$MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/$MyIdentity.") + logger.warning("Invalid user assigned identity resource ID. Please provide a user assigned identity resource ID of the form /subscriptions/$MySubID/resourceGroups/$MyRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/$MyIdentity.") def validate_import_options(namespace): @@ -57,8 +59,8 @@ def validate_import_options(namespace): valid = False if not valid: - logger.warn("Allowed options are: " + str(allowed_options_list)) - logger.warn("Invalid option found in options parameter. Please provide a space-separated list of allowed options.") + logger.warning("Allowed options are: %s", str(allowed_options_list)) + logger.warning("Invalid option found in options parameter. Please provide a space-separated list of allowed options.") def validate_export_options(namespace): @@ -74,8 +76,8 @@ def validate_export_options(namespace): valid = False if not valid: - logger.warn("Allowed options are: " + str(allowed_options_list)) - logger.warn("Invalid option found in options parameter. Please provide a space-separated list of allowed options.") + logger.warning('Allowed options are: %s', str(allowed_options_list)) + logger.warning("Invalid option found in options parameter. Please provide a space-separated list of allowed options.") def validate_pipeline_type(namespace): @@ -86,4 +88,17 @@ def validate_pipeline_type(namespace): valid = False if not valid: - logger.warn("Invalid pipeline type. Pipeline type must be import or export.") + logger.warning("Invalid pipeline type. Pipeline type must be import or export.") + + +def validate_top(namespace): + n = namespace.top + + if n is None: + return + + try: + int(n) + + except ValueError as e: + raise InvalidArgumentValueError(f'Argument provided for parameter top \'{n}\' is not an integer. Please provide an integer for the top parameter.') from e diff --git a/src/acrtransfer/azext_acrtransfer/commands.py b/src/acrtransfer/azext_acrtransfer/commands.py index cb37047e8e2..48ddbbbb7e6 100644 --- a/src/acrtransfer/azext_acrtransfer/commands.py +++ b/src/acrtransfer/azext_acrtransfer/commands.py @@ -45,3 +45,4 @@ def load_command_table(self, _): g.custom_command('delete', 'delete_pipelinerun') g.custom_command('list', 'list_pipelinerun') g.custom_show_command('show', 'get_pipelinerun') + g.custom_command('clean', 'clean_pipelinerun') diff --git a/src/acrtransfer/azext_acrtransfer/custom.py b/src/acrtransfer/azext_acrtransfer/custom.py index 163b0938936..d3e6af18860 100644 --- a/src/acrtransfer/azext_acrtransfer/custom.py +++ b/src/acrtransfer/azext_acrtransfer/custom.py @@ -4,6 +4,6 @@ # -------------------------------------------------------------------------------------------- # pylint: disable=unused-import -from .pipelinerun import create_pipelinerun, get_pipelinerun, delete_pipelinerun, list_pipelinerun +from .pipelinerun import create_pipelinerun, get_pipelinerun, delete_pipelinerun, list_pipelinerun, clean_pipelinerun from .exportpipeline import create_exportpipeline, get_exportpipeline, delete_exportpipeline, list_exportpipeline from .importpipeline import create_importpipeline, get_importpipeline, delete_importpipeline, list_importpipeline diff --git a/src/acrtransfer/azext_acrtransfer/exportpipeline.py b/src/acrtransfer/azext_acrtransfer/exportpipeline.py index 50ae5008222..6047d832efb 100644 --- a/src/acrtransfer/azext_acrtransfer/exportpipeline.py +++ b/src/acrtransfer/azext_acrtransfer/exportpipeline.py @@ -4,6 +4,7 @@ # -------------------------------------------------------------------------------------------- # pylint: disable=line-too-long +from azure.cli.core.azclierror import ResourceNotFoundError from .vendored_sdks.containerregistry.v2019_12_01_preview.models._models_py3 import ExportPipeline, ExportPipelineTargetProperties from .vendored_sdks.containerregistry.v2019_12_01_preview.models._container_registry_management_client_enums import PipelineSourceType from .utility_functions import create_identity_properties @@ -46,6 +47,14 @@ def get_exportpipeline(client, resource_group_name, registry_name, export_pipeli def delete_exportpipeline(client, resource_group_name, registry_name, export_pipeline_name): '''Delete an export pipeline.''' + try: + client.export_pipelines.get(resource_group_name=resource_group_name, + registry_name=registry_name, + export_pipeline_name=export_pipeline_name) + + except Exception as e: + raise ResourceNotFoundError(f'Export pipeline {export_pipeline_name} not found on registry {registry_name} in the {resource_group_name} resource group.') from e + return client.export_pipelines.begin_delete(resource_group_name=resource_group_name, registry_name=registry_name, export_pipeline_name=export_pipeline_name) diff --git a/src/acrtransfer/azext_acrtransfer/importpipeline.py b/src/acrtransfer/azext_acrtransfer/importpipeline.py index 9b9ccfd2312..85e01ee076d 100644 --- a/src/acrtransfer/azext_acrtransfer/importpipeline.py +++ b/src/acrtransfer/azext_acrtransfer/importpipeline.py @@ -4,6 +4,7 @@ # -------------------------------------------------------------------------------------------- # pylint: disable=line-too-long +from azure.cli.core.azclierror import ResourceNotFoundError from .vendored_sdks.containerregistry.v2019_12_01_preview.models._models_py3 import ImportPipeline, ImportPipelineSourceProperties, PipelineTriggerProperties, PipelineSourceTriggerProperties from .utility_functions import create_identity_properties @@ -46,6 +47,14 @@ def get_importpipeline(client, resource_group_name, registry_name, import_pipeli def delete_importpipeline(client, resource_group_name, registry_name, import_pipeline_name): '''Delete an import pipeline.''' + try: + client.import_pipelines.get(resource_group_name=resource_group_name, + registry_name=registry_name, + import_pipeline_name=import_pipeline_name) + + except Exception as e: + raise ResourceNotFoundError(f'Import pipeline {import_pipeline_name} not found on registry {registry_name} in the {resource_group_name} resource group.') from e + return client.import_pipelines.begin_delete(resource_group_name=resource_group_name, registry_name=registry_name, import_pipeline_name=import_pipeline_name) diff --git a/src/acrtransfer/azext_acrtransfer/pipelinerun.py b/src/acrtransfer/azext_acrtransfer/pipelinerun.py index 33c5dc4a166..1f178dbb30e 100644 --- a/src/acrtransfer/azext_acrtransfer/pipelinerun.py +++ b/src/acrtransfer/azext_acrtransfer/pipelinerun.py @@ -5,9 +5,12 @@ # pylint: disable=line-too-long import time -from knack.util import CLIError +from knack.log import get_logger +from azure.cli.core.azclierror import ResourceNotFoundError, RequiredArgumentMissingError, ClientRequestError, AzureConnectionError, AzureResponseError, AzureInternalError from .vendored_sdks.containerregistry.v2019_12_01_preview.models._models_py3 import PipelineRun, PipelineRunRequest, PipelineRunSourceProperties, PipelineRunTargetProperties +logger = get_logger(__name__) + def create_pipelinerun(client, resource_group_name, registry_name, pipeline_name, pipeline_run_name, pipeline_type, storage_blob_name, artifacts=None, force_update_tag=False): '''Create a pipeline run.''' @@ -17,8 +20,8 @@ def create_pipelinerun(client, resource_group_name, registry_name, pipeline_name raw_result = client.import_pipelines.get(resource_group_name=resource_group_name, registry_name=registry_name, import_pipeline_name=pipeline_name) - except: - raise CLIError(f'Import pipeline {pipeline_name} not found on registry {registry_name} in the {resource_group_name} resource group.') + except Exception as e: + raise ResourceNotFoundError(f'Import pipeline {pipeline_name} not found on registry {registry_name} in the {resource_group_name} resource group.') from e pipeline_resource_id = raw_result.id pipeline_run_source = PipelineRunSourceProperties(name=storage_blob_name) @@ -29,12 +32,12 @@ def create_pipelinerun(client, resource_group_name, registry_name, pipeline_name raw_result = client.export_pipelines.get(resource_group_name=resource_group_name, registry_name=registry_name, export_pipeline_name=pipeline_name) - except: - raise CLIError(f'Export pipeline {pipeline_name} not found on registry {registry_name} in the {resource_group_name} resource group.') + except Exception as e: + raise ResourceNotFoundError(f'Export pipeline {pipeline_name} not found on registry {registry_name} in the {resource_group_name} resource group.') from e pipeline_resource_id = raw_result.id if artifacts is None: - raise CLIError("artifacts cannot be null for Export PipelineRuns. Please provide a space-separated list of container images to be exported in the form REPOSITORY:TAG or REPOSITORY@sha256:90659bf80b44ce6be8234e6ff90a1ac34acbeb826903b02cfa0da11c82cbc042.") + raise RequiredArgumentMissingError("artifacts cannot be null for Export PipelineRuns. Please provide a space-separated list of container images to be exported in the form REPOSITORY:TAG or REPOSITORY@sha256:90659bf80b44ce6be8234e6ff90a1ac34acbeb826903b02cfa0da11c82cbc042.") # add tag ":latest" if a tag is not present artifacts = [artifact + ":latest" if ":" not in artifact and "@" not in artifact else artifact for artifact in artifacts] @@ -64,12 +67,61 @@ def get_pipelinerun(client, resource_group_name, registry_name, pipeline_run_nam def delete_pipelinerun(client, resource_group_name, registry_name, pipeline_run_name): '''Delete a pipeline run.''' + try: + client.pipeline_runs.get(resource_group_name=resource_group_name, + registry_name=registry_name, + pipeline_run_name=pipeline_run_name) + + except Exception as e: + raise ResourceNotFoundError(f'Pipeline-run {pipeline_run_name} not found on registry {registry_name} in the {resource_group_name} resource group.') from e + return client.pipeline_runs.begin_delete(resource_group_name=resource_group_name, registry_name=registry_name, pipeline_run_name=pipeline_run_name) -def list_pipelinerun(client, resource_group_name, registry_name): +def list_pipelinerun(client, resource_group_name, registry_name, top=None): '''List pipeline runs on a registry.''' - return client.pipeline_runs.list(resource_group_name=resource_group_name, registry_name=registry_name) + pipelineruns = client.pipeline_runs.list(resource_group_name=resource_group_name, registry_name=registry_name) + + if top is None: + return pipelineruns + + top_int = int(top) + + return list(pipelineruns)[-top_int:] + + +def clean_pipelinerun(client, resource_group_name, registry_name, dry_run=False): + pipelineruns = client.pipeline_runs.list(resource_group_name=resource_group_name, registry_name=registry_name) + + failed_pipelineruns = list(filter(lambda x: (x.provisioning_state == 'Failed'), pipelineruns)) + num_failed_pipelineruns = len(failed_pipelineruns) + + logger.warning('Found %s failed pipeline-runs to delete.', num_failed_pipelineruns) + + if dry_run: + logger.warning('The following failed pipeline-runs would have been deleted:') + return failed_pipelineruns + + succ_count = 0 + failed_count = 0 + for pipelinerun in failed_pipelineruns: + try: + client.pipeline_runs.begin_delete(resource_group_name=resource_group_name, + registry_name=registry_name, + pipeline_run_name=pipelinerun.name) + + succ_count += 1 + + except (ClientRequestError, AzureConnectionError, AzureResponseError, AzureInternalError, ResourceNotFoundError): + failed_count += 1 + + if succ_count % 100 == 0: + logger.warning('Deletion in progress: Deleted %s/%s failed pipeline-runs. %s deletions failed.', succ_count, num_failed_pipelineruns, failed_count) + + logger.warning('Deletion complete: Deleted %s failed pipeline-runs.', succ_count) + logger.warning('%s deletions failed.', failed_count) + + return None diff --git a/src/acrtransfer/setup.py b/src/acrtransfer/setup.py index 3be62e387c4..c21b4a6229d 100644 --- a/src/acrtransfer/setup.py +++ b/src/acrtransfer/setup.py @@ -14,7 +14,7 @@ logger.warn("Wheel is not available, disabling bdist_wheel hook") # HISTORY.rst entry. -VERSION = '1.0.0' +VERSION = '1.1.0' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers diff --git a/src/ad/azext_ad/tests/latest/preparers.py b/src/ad/azext_ad/tests/latest/preparers.py index 0879e51945a..176f5b16296 100644 --- a/src/ad/azext_ad/tests/latest/preparers.py +++ b/src/ad/azext_ad/tests/latest/preparers.py @@ -10,7 +10,7 @@ import os from datetime import datetime -from azure_devtools.scenario_tests import SingleValueReplacer +from azure.cli.testsdk.scenario_tests import SingleValueReplacer from azure.cli.testsdk.preparers import NoTrafficRecordingPreparer from azure.cli.testsdk.exceptions import CliTestError from azure.cli.testsdk.reverse_dependency import get_dummy_cli diff --git a/src/aem/azext_aem/tests/latest/test_aem_commands.py b/src/aem/azext_aem/tests/latest/test_aem_commands.py index d84a21176b4..df2093a44f9 100644 --- a/src/aem/azext_aem/tests/latest/test_aem_commands.py +++ b/src/aem/azext_aem/tests/latest/test_aem_commands.py @@ -6,7 +6,7 @@ from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) from azure.cli.core.util import CLIError from azext_aem.custom import EnhancedMonitoring # pylint: disable=unused-import -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse import os import sys # pylint: disable=unused-argument,too-few-public-methods diff --git a/src/ai-examples/azext_ai_examples/tests/latest/test_ai_examples_scenario.py b/src/ai-examples/azext_ai_examples/tests/latest/test_ai_examples_scenario.py index ddddea18855..749c2c9f1b5 100644 --- a/src/ai-examples/azext_ai_examples/tests/latest/test_ai_examples_scenario.py +++ b/src/ai-examples/azext_ai_examples/tests/latest/test_ai_examples_scenario.py @@ -9,7 +9,7 @@ from unittest import mock import requests -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) from azext_ai_examples.custom import (call_aladdin_service, ping_aladdin_service, clean_from_http_answer, get_generated_examples) diff --git a/src/aks-preview/HISTORY.md b/src/aks-preview/HISTORY.md index cf3ef2a170d..554c7a59a75 100644 --- a/src/aks-preview/HISTORY.md +++ b/src/aks-preview/HISTORY.md @@ -2,6 +2,31 @@ Release History =============== +0.5.48 +++++++ +* Fix aks update issue with load balancer profile defaults being set when CLI arguments only include outbound IPs or outbound prefixes + +0.5.47 +++++++ +* Add support for IPv4/IPv6 dual-stack networking AKS clusters +* `az aks create --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count` + +0.5.46 +++++++ +* Update to use 2021-10-01 api-version + +0.5.45 +++++++ +* Remove the snapshot name trimming in `az aks snapshot create` command. + +0.5.44 +++++++ +* In AKS Monitoring addon, fix DCR resource naming convention from DCR- to MSCI- to make consistent naming across. + +0.5.43 +++++++ +* Enable the new implementation in command `aks create`, and change the dependent cli version to at least 2.30.0 + 0.5.42 ++++++ * Fix default value behavior for pod identity exception pod labels in upgrade/scale calls. @@ -28,7 +53,7 @@ Release History 0.5.38 +++++ -* Add parameter `--rotation-poll-interval` for Azure Keyvault Secrets Provider Addon. +* Add parameter `--rotation-poll-interval` for Azure Keyvault Secrets Provider Addon. 0.5.37 +++++ diff --git a/src/aks-preview/azcli_aks_live_test/configs/cli_coverage_config.json b/src/aks-preview/azcli_aks_live_test/configs/cli_coverage_config.json new file mode 100644 index 00000000000..f396afa20ce --- /dev/null +++ b/src/aks-preview/azcli_aks_live_test/configs/cli_coverage_config.json @@ -0,0 +1,16 @@ +{ + "totals": { + "fail_percent": 70, + "warning_percent": 80, + "fail_missing_lines": null, + "warning_missing_lines": null + }, + "files": { + "decorator.py": { + "fail_percent": 99.5, + "warning_percent": 100, + "fail_missing_lines": 5, + "warning_missing_lines": 0 + } + } +} \ No newline at end of file diff --git a/src/aks-preview/azcli_aks_live_test/configs/cli_matrix_default.json b/src/aks-preview/azcli_aks_live_test/configs/cli_matrix_default.json index 48d32e3236e..ead69c845c4 100644 --- a/src/aks-preview/azcli_aks_live_test/configs/cli_matrix_default.json +++ b/src/aks-preview/azcli_aks_live_test/configs/cli_matrix_default.json @@ -10,10 +10,7 @@ ], "need additional feature": [ "test_aks_create_enable_encryption", - "test_aks_create_edge_zone", - "test_aks_create_with_auto_upgrade_channel", - "test_aks_enable_openservicemesh_addon", - "test_aks_disable_openservicemesh_addon" + "test_aks_create_edge_zone" ] } } \ No newline at end of file diff --git a/src/aks-preview/azcli_aks_live_test/configs/ext_coverage_config.json b/src/aks-preview/azcli_aks_live_test/configs/ext_coverage_config.json new file mode 100644 index 00000000000..da893305895 --- /dev/null +++ b/src/aks-preview/azcli_aks_live_test/configs/ext_coverage_config.json @@ -0,0 +1,16 @@ +{ + "totals": { + "fail_percent": 59, + "warning_percent": 80, + "fail_missing_lines": null, + "warning_missing_lines": null + }, + "files": { + "decorator.py": { + "fail_percent": 99.5, + "warning_percent": 100, + "fail_missing_lines": 5, + "warning_missing_lines": 0 + } + } +} \ No newline at end of file diff --git a/src/aks-preview/azcli_aks_live_test/configs/ext_matrix_default.json b/src/aks-preview/azcli_aks_live_test/configs/ext_matrix_default.json index 6e3b958e62e..7e7feec3315 100644 --- a/src/aks-preview/azcli_aks_live_test/configs/ext_matrix_default.json +++ b/src/aks-preview/azcli_aks_live_test/configs/ext_matrix_default.json @@ -10,26 +10,12 @@ "test_aks_create_with_ossku" ], "need additional feature": [ - "test_aks_create_with_azurekeyvaultsecretsprovider_addon", - "test_aks_create_addon_with_azurekeyvaultsecretsprovider_with_secret_rotation", - "test_aks_enable_addon_with_azurekeyvaultsecretsprovider", "test_aks_create_with_gitops_addon", "test_aks_enable_addon_with_gitops", "test_aks_disable_addon_gitops", - "test_aks_enable_addon_with_openservicemesh", - "test_aks_disable_addon_openservicemesh", - "test_aks_addon_disable_openservicemesh", - "test_aks_addon_show_openservicemesh_enabled", - "test_aks_addon_enable_with_openservicemesh", - "test_aks_addon_list_openservicemesh_enabled", - "test_aks_addon_update_with_azurekeyvaultsecretsprovider", - "test_aks_addon_enable_with_azurekeyvaultsecretsprovider", - "test_aks_create_with_auto_upgrade_channel", - "test_aks_disable_local_accounts", "test_aks_create_with_pod_identity_enabled", "test_aks_create_using_azurecni_with_pod_identity_enabled", "test_aks_pod_identity_usage", - "test_aks_create_with_fips", "test_aks_create_with_monitoring_aad_auth_msi", "test_aks_create_with_monitoring_aad_auth_uai", "test_aks_enable_monitoring_with_aad_auth_msi", @@ -38,8 +24,6 @@ "test_aks_create_with_http_proxy_config", "test_aks_nodepool_add_with_workload_runtime", "test_aks_nodepool_add_with_gpu_instance_profile", - "test_aks_create_with_windows_gmsa", - "test_aks_update_with_windows_gmsa", "test_aks_snapshot" ] } diff --git a/src/aks-preview/azcli_aks_live_test/scripts/clean_up.sh b/src/aks-preview/azcli_aks_live_test/scripts/clean_up.sh index 38ff104e8d5..d6f7460c746 100755 --- a/src/aks-preview/azcli_aks_live_test/scripts/clean_up.sh +++ b/src/aks-preview/azcli_aks_live_test/scripts/clean_up.sh @@ -1,12 +1,30 @@ #!/usr/bin/env bash +# bash options +set -o errexit +set -o nounset +set -o pipefail +set -o xtrace + +# check var +[[ -z "${TENANT_ID}" ]] && (echo "TENANT_ID is empty"; exit 1) +[[ -z "${AZCLI_ALT_SUBSCRIPTION_ID}" ]] && (echo "AZCLI_ALT_SUBSCRIPTION_ID is empty"; exit 1) +[[ -z "${AZCLI_ALT_CLIENT_ID}" ]] && (echo "AZCLI_ALT_CLIENT_ID is empty"; exit 1) +[[ -z "${AZCLI_ALT_CLIENT_SECRET}" ]] && (echo "AZCLI_ALT_CLIENT_SECRET is empty"; exit 1) +[[ -z "${LOOKBACK}" ]] && (echo "LOOKBACK is empty"; exit 1) +[[ -z "${PREFIX}" ]] && (echo "PREFIX is empty"; exit 1) + # login az login --service-principal -u "${AZCLI_ALT_CLIENT_ID}" -p "${AZCLI_ALT_CLIENT_SECRET}" -t "${TENANT_ID}" az account set -s "${AZCLI_ALT_SUBSCRIPTION_ID}" az account show -# list the details of resource groups whose names start with "clitest" -az group list --query "([].name)[?starts_with(@, 'clitest')]" -o tsv | xargs -i az group show -n {} +# get lookback date +cond_date=$(date -u -d "${LOOKBACK} hours ago" '+%Y-%m-%dT%H:%M:%SZ') + +# list matched result +az group list --query "[? @.tags.date < '${cond_date}'] | [? starts_with(@.name, '${PREFIX}')]" +echo "Length:" $(az group list --query "[? @.tags.date < '${cond_date}'] | [? starts_with(@.name, '${PREFIX}')] | length(@)") -# delete all resource groups whose names start with "clitest" -# az group list --query "([].name)[?starts_with(@, 'clitest')]" -o tsv | xargs -i az group delete --no-wait -y -n {} +# delete +az group list --query "[? @.tags.date < '${cond_date}'] | [? starts_with(@.name, '${PREFIX}')].name" -o tsv | xargs -i az group delete --no-wait -y -n {} diff --git a/src/aks-preview/azcli_aks_live_test/scripts/setup_venv.sh b/src/aks-preview/azcli_aks_live_test/scripts/setup_venv.sh index d17324d1775..eb2210a39e1 100755 --- a/src/aks-preview/azcli_aks_live_test/scripts/setup_venv.sh +++ b/src/aks-preview/azcli_aks_live_test/scripts/setup_venv.sh @@ -48,7 +48,7 @@ setupAZ(){ # need to be executed in a venv installTestPackages(){ # install pytest plugins - pip install pytest-json-report pytest-rerunfailures --upgrade + pip install pytest-json-report pytest-rerunfailures pytest-cov --upgrade # install coverage for measuring code coverage pip install coverage diff --git a/src/aks-preview/azcli_aks_live_test/scripts/start_container.sh b/src/aks-preview/azcli_aks_live_test/scripts/start_container.sh index 0d64e564add..32908e039a1 100755 --- a/src/aks-preview/azcli_aks_live_test/scripts/start_container.sh +++ b/src/aks-preview/azcli_aks_live_test/scripts/start_container.sh @@ -13,10 +13,6 @@ container_name=${1:-"azcli-aks-live-test-container"} [[ -z "${IMAGE_NAME}" ]] && (echo "IMAGE_NAME is empty"; exit 1) [[ -z "${IMAGE_TAG}" ]] && (echo "IMAGE_TAG is empty"; exit 1) -# dir -pwd -ls -alh - # transcribe environment variables into file 'env.list' ./scripts/transcribe_env.sh diff --git a/src/aks-preview/azcli_aks_live_test/scripts/test_cli_live.sh b/src/aks-preview/azcli_aks_live_test/scripts/test_cli_live.sh index d7d2b30e9f5..195ed25e960 100755 --- a/src/aks-preview/azcli_aks_live_test/scripts/test_cli_live.sh +++ b/src/aks-preview/azcli_aks_live_test/scripts/test_cli_live.sh @@ -7,15 +7,27 @@ set -o pipefail set -o xtrace # check var +[[ -z "${WIKI_LINK}" ]] && (echo "WIKI_LINK is empty"; exit 1) [[ -z "${TENANT_ID}" ]] && (echo "TENANT_ID is empty"; exit 1) [[ -z "${AZCLI_ALT_SUBSCRIPTION_ID}" ]] && (echo "AZCLI_ALT_SUBSCRIPTION_ID is empty"; exit 1) [[ -z "${AZCLI_ALT_CLIENT_ID}" ]] && (echo "AZCLI_ALT_CLIENT_ID is empty"; exit 1) [[ -z "${AZCLI_ALT_CLIENT_SECRET}" ]] && (echo "AZCLI_ALT_CLIENT_SECRET is empty"; exit 1) +[[ -z "${IGNORE_EXIT_CODE}" ]] && (echo "IGNORE_EXIT_CODE is empty") [[ -z "${TEST_MODE}" ]] && (echo "TEST_MODE is empty"; exit 1) -[[ -z "${PARALLELISM}" ]] && (echo "PARALLELISM is empty"; exit 1) +[[ -z "${PARALLELISM}" ]] && (echo "PARALLELISM is empty") +[[ -z "${RERUNS}" ]] && (echo "RERUNS is empty") +[[ -z "${NON_BOXED}" ]] && (echo "NON_BOXED is empty") +[[ -z "${LOG_LEVEL}" ]] && (echo "LOG_LEVEL is empty") +[[ -z "${CAPTURE}" ]] && (echo "CAPTURE is empty") +[[ -z "${NO_EXIT_FIRST}" ]] && (echo "NO_EXIT_FIRST is empty") +[[ -z "${LAST_FAILED}" ]] && (echo "LAST_FAILED is empty") [[ -z "${CLI_TEST_MATRIX}" ]] && (echo "CLI_TEST_MATRIX is empty") [[ -z "${CLI_TEST_FILTER}" ]] && (echo "CLI_TEST_FILTER is empty") [[ -z "${CLI_TEST_COVERAGE}" ]] && (echo "CLI_TEST_COVERAGE is empty") +[[ -z "${ENABLE_SELECTION}" ]] && (echo "ENABLE_SELECTION is empty") +[[ -z "${SELECTION_MODE}" ]] && (echo "SELECTION_MODE is empty") +[[ -z "${SELECTION_COUNT}" ]] && (echo "SELECTION_COUNT is empty") +[[ -z "${UNFIX_RANDOM_SEED}" ]] && (echo "UNFIX_RANDOM_SEED is empty") # activate virtualenv source azEnv/bin/activate @@ -31,13 +43,37 @@ az account set -s "${AZCLI_ALT_SUBSCRIPTION_ID}" az account show # prepare running options -# base options -base_options="-c --no-exitfirst --report-path ./reports --reruns 3 --capture=sys" +# pytest options +pytest_options="-c --report-path ./reports" # parallel -if [[ ${PARALLELISM} -ge 2 ]]; then - base_options+=" -j ${PARALLELISM}" +if [[ -n ${PARALLELISM} ]]; then + pytest_options+=" -j ${PARALLELISM}" else - base_options+=" -s" + pytest_options+=" -s" +fi +# reruns +if [[ -n ${RERUNS} ]]; then + pytest_options+=" --reruns ${RERUNS}" +fi +# non boxed +if [[ -n ${NON_BOXED} ]]; then + pytest_options+=" --non-boxed" +fi +# log level +if [[ -n ${LOG_LEVEL} ]]; then + pytest_options+=" --log-level ${LOG_LEVEL}" +fi +# capture +if [[ -n ${CAPTURE} ]]; then + pytest_options+=" --capture ${CAPTURE}" +fi +# no exit first +if [[ -n ${NO_EXIT_FIRST} ]]; then + pytest_options+=" --no-exitfirst" +fi +# last failed +if [[ -n ${LAST_FAILED} ]]; then + pytest_options+=" --last-failed" fi # filter options @@ -55,11 +91,30 @@ if [[ -n ${CLI_TEST_COVERAGE} ]]; then filter_options+=" -cc ${CLI_TEST_COVERAGE}" fi +# case selection +selection_options="" +# enable selection +if [[ -n ${ENABLE_SELECTION} ]]; then + selection_options+=" --enable-selection" +fi +# selection mode +if [[ -n ${SELECTION_MODE} ]]; then + selection_options+=" --selection-mode ${SELECTION_MODE}" +fi +# selection count +if [[ -n ${SELECTION_COUNT} ]]; then + selection_options+=" --selection-count ${SELECTION_COUNT}" +fi +# unfix random seed +if [[ -n ${UNFIX_RANDOM_SEED} ]]; then + selection_options+=" --unfix-random-seed" +fi + # recording test if [[ ${TEST_MODE} == "recording" || ${TEST_MODE} == "all" ]]; then echo "Test in recording mode!" coverage_options=" -cc test_aks_commands.AzureKubernetesServiceScenarioTest" - recording_options="${base_options}${coverage_options}" + recording_options="${pytest_options}${coverage_options}${selection_options}" recording_options+=" --json-report-file=cli_recording_report.json" recording_options+=" --xml-file=cli_recording_result.xml" echo "Recording test options: ${recording_options}" @@ -67,8 +122,10 @@ if [[ ${TEST_MODE} == "recording" || ${TEST_MODE} == "all" ]]; then azaks ${recording_options} || test_result=$? if [[ ${test_result} -ne 0 ]]; then echo "Recording test failed!" - echo "Please refer to this wiki (https://dev.azure.com/msazure/CloudNativeCompute/_wiki/wikis/CloudNativeCompute.wiki/156735/AZCLI-AKS-Live-Unit-Test-Pipeline) for troubleshooting guidelines." - exit ${test_result} + echo "Please refer to this wiki (${WIKI_LINK}) for troubleshooting guidelines." + if [[ -z ${IGNORE_EXIT_CODE} ]]; then + exit ${test_result} + fi else echo -e "Recording test passed!\n\n" fi @@ -77,7 +134,7 @@ fi # live test if [[ ${TEST_MODE} == "live" || ${TEST_MODE} == "all" ]]; then echo "Test in live mode!" - live_options="${base_options}${filter_options}" + live_options="${pytest_options}${filter_options}${selection_options}" live_options+=" -l --json-report-file=cli_live_report.json" live_options+=" --xml-file=cli_live_result.xml" echo "Live test options: ${live_options}" @@ -85,8 +142,10 @@ if [[ ${TEST_MODE} == "live" || ${TEST_MODE} == "all" ]]; then azaks ${live_options} || test_result=$? if [[ ${test_result} -ne 0 ]]; then echo "Live test failed!" - echo "Please refer to this wiki (https://dev.azure.com/msazure/CloudNativeCompute/_wiki/wikis/CloudNativeCompute.wiki/156735/AZCLI-AKS-Live-Unit-Test-Pipeline) for troubleshooting guidelines." - exit ${test_result} + echo "Please refer to this wiki (${WIKI_LINK}) for troubleshooting guidelines." + if [[ -z ${IGNORE_EXIT_CODE} ]]; then + exit ${test_result} + fi else echo -e "Live test passed!\n\n" fi @@ -95,7 +154,7 @@ fi # live-replay test if [[ ${TEST_MODE} == "live" || ${TEST_MODE} == "all" ]]; then echo "Test in live-replay mode!" - live_replay_options="${base_options}${filter_options}" + live_replay_options="${pytest_options}${filter_options}${selection_options}" live_replay_options+=" --json-report-file=cli_live_replay_report.json" live_replay_options+=" --xml-file=cli_live_replay_result.xml" echo "Live-replay test options: ${live_replay_options}" @@ -103,8 +162,10 @@ if [[ ${TEST_MODE} == "live" || ${TEST_MODE} == "all" ]]; then azaks ${live_replay_options} || test_result=$? if [[ ${test_result} -ne 0 ]]; then echo "Live-replay test failed!" - echo "Please refer to this wiki (https://dev.azure.com/msazure/CloudNativeCompute/_wiki/wikis/CloudNativeCompute.wiki/156735/AZCLI-AKS-Live-Unit-Test-Pipeline) for troubleshooting guidelines." - exit ${test_result} + echo "Please refer to this wiki (${WIKI_LINK}) for troubleshooting guidelines." + if [[ -z ${IGNORE_EXIT_CODE} ]]; then + exit ${test_result} + fi else echo -e "Live-replay test passed!\n\n" fi diff --git a/src/aks-preview/azcli_aks_live_test/scripts/test_cli_unit.sh b/src/aks-preview/azcli_aks_live_test/scripts/test_cli_unit.sh index c24fa1a09cb..a92d5a8b795 100755 --- a/src/aks-preview/azcli_aks_live_test/scripts/test_cli_unit.sh +++ b/src/aks-preview/azcli_aks_live_test/scripts/test_cli_unit.sh @@ -6,8 +6,11 @@ set -o nounset set -o pipefail set -o xtrace -# const -acs_base_dir="azure-cli/src/azure-cli/azure/cli/command_modules/acs" +# check var +[[ -z "${WIKI_LINK}" ]] && (echo "WIKI_LINK is empty"; exit 1) +[[ -z "${ACS_BASE_DIR}" ]] && (echo "ACS_BASE_DIR is empty"; exit 1) +[[ -z "${IGNORE_EXIT_CODE}" ]] && (echo "IGNORE_EXIT_CODE is empty") +[[ -z "${CLI_COVERAGE_CONFIG}" ]] && (echo "CLI_COVERAGE_CONFIG is empty") # activate virtualenv source azEnv/bin/activate @@ -17,25 +20,36 @@ source ./scripts/setup_venv.sh removeAKSPreview # unit test & coverage report -acs_unit_test_failed="" -pushd ${acs_base_dir} +pushd ${ACS_BASE_DIR} + # clean existing coverage report (coverage combine || true) && (coverage erase || true) + # perform unit test with module 'unittest' -# since recording test (performed in test_cli_live.sh) is based on module 'pytest', so skip here -# coverage run --source=. --omit=*/tests/* -p -m pytest -if ! coverage run --source=. --omit=*/tests/* -p -m unittest discover; then - acs_unit_test_failed="true" -fi -# generate & copy coverage report -coverage combine +test_result=0 +coverage run --source=. --omit=*/tests/* -m pytest tests/latest/ || test_result=$? + +# generate coverage report +coverage combine || true coverage report -m coverage json -o coverage_acs.json popd -mkdir -p reports/ && cp ${acs_base_dir}/coverage_acs.json reports/ -if [[ ${acs_unit_test_failed} == "true" ]]; then - echo "Unit test failed!" - echo "Please refer to this wiki (https://dev.azure.com/msazure/CloudNativeCompute/_wiki/wikis/CloudNativeCompute.wiki/156735/AZCLI-AKS-Live-Unit-Test-Pipeline) for troubleshooting guidelines." - exit 1 +# copy coverage report +mkdir -p reports/ && cp ${ACS_BASE_DIR}/coverage_acs.json reports/ + +# prepare running options +# unit test result +options="--unit-test-result ${test_result} --coverage-report ${ACS_BASE_DIR}/coverage_acs.json" +# ignore exit code +if [[ -n ${IGNORE_EXIT_CODE} ]]; then + options+=" --ignore-exit-code" +fi +if [[ -n ${CLI_COVERAGE_CONFIG} ]]; then + options+=" --coverage-config ./configs/${CLI_COVERAGE_CONFIG}" fi + +combined_result=0 +azaks-cov ${options} || combined_result=$? +echo "Please refer to this wiki (${WIKI_LINK}) for troubleshooting guidelines." +exit ${combined_result} diff --git a/src/aks-preview/azcli_aks_live_test/scripts/test_ext_live.sh b/src/aks-preview/azcli_aks_live_test/scripts/test_ext_live.sh index d33c0923e07..7ed4c798c8c 100755 --- a/src/aks-preview/azcli_aks_live_test/scripts/test_ext_live.sh +++ b/src/aks-preview/azcli_aks_live_test/scripts/test_ext_live.sh @@ -7,12 +7,20 @@ set -o pipefail set -o xtrace # check var +[[ -z "${WIKI_LINK}" ]] && (echo "WIKI_LINK is empty"; exit 1) [[ -z "${TENANT_ID}" ]] && (echo "TENANT_ID is empty"; exit 1) [[ -z "${AZCLI_ALT_SUBSCRIPTION_ID}" ]] && (echo "AZCLI_ALT_SUBSCRIPTION_ID is empty"; exit 1) [[ -z "${AZCLI_ALT_CLIENT_ID}" ]] && (echo "AZCLI_ALT_CLIENT_ID is empty"; exit 1) [[ -z "${AZCLI_ALT_CLIENT_SECRET}" ]] && (echo "AZCLI_ALT_CLIENT_SECRET is empty"; exit 1) +[[ -z "${IGNORE_EXIT_CODE}" ]] && (echo "IGNORE_EXIT_CODE is empty") [[ -z "${TEST_MODE}" ]] && (echo "TEST_MODE is empty"; exit 1) -[[ -z "${PARALLELISM}" ]] && (echo "PARALLELISM is empty"; exit 1) +[[ -z "${PARALLELISM}" ]] && (echo "PARALLELISM is empty") +[[ -z "${RERUNS}" ]] && (echo "RERUNS is empty") +[[ -z "${NON_BOXED}" ]] && (echo "NON_BOXED is empty") +[[ -z "${LOG_LEVEL}" ]] && (echo "LOG_LEVEL is empty") +[[ -z "${CAPTURE}" ]] && (echo "CAPTURE is empty") +[[ -z "${NO_EXIT_FIRST}" ]] && (echo "NO_EXIT_FIRST is empty") +[[ -z "${LAST_FAILED}" ]] && (echo "LAST_FAILED is empty") [[ -z "${EXT_TEST_MATRIX}" ]] && (echo "EXT_TEST_MATRIX is empty") [[ -z "${EXT_TEST_FILTER}" ]] && (echo "EXT_TEST_FILTER is empty") [[ -z "${EXT_TEST_COVERAGE}" ]] && (echo "EXT_TEST_COVERAGE is empty") @@ -20,6 +28,10 @@ set -o xtrace [[ -z "${CLI_TEST_MATRIX}" ]] && (echo "CLI_TEST_MATRIX is empty") [[ -z "${CLI_TEST_FILTER}" ]] && (echo "CLI_TEST_FILTER is empty") [[ -z "${CLI_TEST_COVERAGE}" ]] && (echo "CLI_TEST_COVERAGE is empty") +[[ -z "${ENABLE_SELECTION}" ]] && (echo "ENABLE_SELECTION is empty") +[[ -z "${SELECTION_MODE}" ]] && (echo "SELECTION_MODE is empty") +[[ -z "${SELECTION_COUNT}" ]] && (echo "SELECTION_COUNT is empty") +[[ -z "${UNFIX_RANDOM_SEED}" ]] && (echo "UNFIX_RANDOM_SEED is empty") # activate virtualenv source azEnv/bin/activate @@ -35,13 +47,37 @@ az account show if [[ -z ${BACKWARD_COMPATIBILITY_TEST} || ${BACKWARD_COMPATIBILITY_TEST} != "only" ]]; then # prepare running options - # base options - base_options="-e --no-exitfirst --report-path ./reports --reruns 3 --capture=sys" + # pytest options + pytest_options="-e --report-path ./reports" # parallel - if [[ ${PARALLELISM} -ge 2 ]]; then - base_options+=" -j ${PARALLELISM}" + if [[ -n ${PARALLELISM} ]]; then + pytest_options+=" -j ${PARALLELISM}" else - base_options+=" -s" + pytest_options+=" -s" + fi + # reruns + if [[ -n ${RERUNS} ]]; then + pytest_options+=" --reruns ${RERUNS}" + fi + # non boxed + if [[ -n ${NON_BOXED} ]]; then + pytest_options+=" --non-boxed" + fi + # log level + if [[ -n ${LOG_LEVEL} ]]; then + pytest_options+=" --log-level ${LOG_LEVEL}" + fi + # capture + if [[ -n ${CAPTURE} ]]; then + pytest_options+=" --capture ${CAPTURE}" + fi + # no exit first + if [[ -n ${NO_EXIT_FIRST} ]]; then + pytest_options+=" --no-exitfirst" + fi + # last failed + if [[ -n ${LAST_FAILED} ]]; then + pytest_options+=" --last-failed" fi # filter options @@ -59,11 +95,30 @@ if [[ -z ${BACKWARD_COMPATIBILITY_TEST} || ${BACKWARD_COMPATIBILITY_TEST} != "on filter_options+=" -ec ${EXT_TEST_COVERAGE}" fi + # case selection + selection_options="" + # enable selection + if [[ -n ${ENABLE_SELECTION} ]]; then + selection_options+=" --enable-selection" + fi + # selection mode + if [[ -n ${SELECTION_MODE} ]]; then + selection_options+=" --selection-mode ${SELECTION_MODE}" + fi + # selection count + if [[ -n ${SELECTION_COUNT} ]]; then + selection_options+=" --selection-count ${SELECTION_COUNT}" + fi + # unfix random seed + if [[ -n ${UNFIX_RANDOM_SEED} ]]; then + selection_options+=" --unfix-random-seed" + fi + # recording test if [[ ${TEST_MODE} == "recording" || ${TEST_MODE} == "all" ]]; then echo "Test in recording mode!" coverage_options=" -ec test_aks_commands.AzureKubernetesServiceScenarioTest" - recording_options="${base_options}${coverage_options}" + recording_options="${pytest_options}${coverage_options}${selection_options}" recording_options+=" --json-report-file=ext_recording_report.json" recording_options+=" --xml-file=ext_recording_result.xml" echo "Recording test options: ${recording_options}" @@ -71,8 +126,10 @@ if [[ -z ${BACKWARD_COMPATIBILITY_TEST} || ${BACKWARD_COMPATIBILITY_TEST} != "on azaks ${recording_options} || test_result=$? if [[ ${test_result} -ne 0 ]]; then echo "Recording test failed!" - echo "Please refer to this wiki (https://dev.azure.com/msazure/CloudNativeCompute/_wiki/wikis/CloudNativeCompute.wiki/156735/AZCLI-AKS-Live-Unit-Test-Pipeline) for troubleshooting guidelines." - exit ${test_result} + echo "Please refer to this wiki (${WIKI_LINK}) for troubleshooting guidelines." + if [[ -z ${IGNORE_EXIT_CODE} ]]; then + exit ${test_result} + fi else echo -e "Recording test passed!\n\n" fi @@ -81,7 +138,7 @@ if [[ -z ${BACKWARD_COMPATIBILITY_TEST} || ${BACKWARD_COMPATIBILITY_TEST} != "on # live test if [[ ${TEST_MODE} == "live" || ${TEST_MODE} == "all" ]]; then echo "Test in live mode!" - live_options="${base_options}${filter_options}" + live_options="${pytest_options}${filter_options}${selection_options}" live_options+=" -l --json-report-file=ext_live_report.json" live_options+=" --xml-file=ext_live_result.xml" echo "Live test options: ${live_options}" @@ -89,8 +146,10 @@ if [[ -z ${BACKWARD_COMPATIBILITY_TEST} || ${BACKWARD_COMPATIBILITY_TEST} != "on azaks ${live_options} || test_result=$? if [[ ${test_result} -ne 0 ]]; then echo "Live test failed!" - echo "Please refer to this wiki (https://dev.azure.com/msazure/CloudNativeCompute/_wiki/wikis/CloudNativeCompute.wiki/156735/AZCLI-AKS-Live-Unit-Test-Pipeline) for troubleshooting guidelines." - exit ${test_result} + echo "Please refer to this wiki (${WIKI_LINK}) for troubleshooting guidelines." + if [[ -z ${IGNORE_EXIT_CODE} ]]; then + exit ${test_result} + fi else echo -e "Live test passed!\n\n" fi @@ -99,7 +158,7 @@ if [[ -z ${BACKWARD_COMPATIBILITY_TEST} || ${BACKWARD_COMPATIBILITY_TEST} != "on # live-replay test if [[ ${TEST_MODE} == "live" || ${TEST_MODE} == "all" ]]; then echo "Test in live-replay mode!" - live_replay_options="${base_options}${filter_options}" + live_replay_options="${pytest_options}${filter_options}${selection_options}" live_replay_options+=" --json-report-file=ext_live_replay_report.json" live_replay_options+=" --xml-file=ext_live_replay_result.xml" echo "Live-replay test options: ${live_replay_options}" @@ -107,8 +166,10 @@ if [[ -z ${BACKWARD_COMPATIBILITY_TEST} || ${BACKWARD_COMPATIBILITY_TEST} != "on azaks ${live_replay_options} || test_result=$? if [[ ${test_result} -ne 0 ]]; then echo "Live-replay test failed!" - echo "Please refer to this wiki (https://dev.azure.com/msazure/CloudNativeCompute/_wiki/wikis/CloudNativeCompute.wiki/156735/AZCLI-AKS-Live-Unit-Test-Pipeline) for troubleshooting guidelines." - exit ${test_result} + echo "Please refer to this wiki (${WIKI_LINK}) for troubleshooting guidelines." + if [[ -z ${IGNORE_EXIT_CODE} ]]; then + exit ${test_result} + fi else echo -e "Live-replay test passed!\n\n" fi @@ -117,13 +178,37 @@ fi if [[ -n ${BACKWARD_COMPATIBILITY_TEST} ]]; then # prepare running options - # base options - base_options="-c --no-exitfirst --report-path ./reports --reruns 3 --capture=sys" + # pytest options + pytest_options="-c --report-path ./reports" # parallel - if [[ ${PARALLELISM} -ge 2 ]]; then - base_options+=" -j ${PARALLELISM}" + if [[ -n ${PARALLELISM} ]]; then + pytest_options+=" -j ${PARALLELISM}" else - base_options+=" -s" + pytest_options+=" -s" + fi + # reruns + if [[ -n ${RERUNS} ]]; then + pytest_options+=" --reruns ${RERUNS}" + fi + # non boxed + if [[ -n ${NON_BOXED} ]]; then + pytest_options+=" --non-boxed" + fi + # log level + if [[ -n ${LOG_LEVEL} ]]; then + pytest_options+=" --log-level ${LOG_LEVEL}" + fi + # capture + if [[ -n ${CAPTURE} ]]; then + pytest_options+=" --capture ${CAPTURE}" + fi + # no exit first + if [[ -n ${NO_EXIT_FIRST} ]]; then + pytest_options+=" --no-exitfirst" + fi + # last failed + if [[ -n ${LAST_FAILED} ]]; then + pytest_options+=" --last-failed" fi # filter options @@ -141,10 +226,29 @@ if [[ -n ${BACKWARD_COMPATIBILITY_TEST} ]]; then filter_options+=" -cc ${CLI_TEST_COVERAGE}" fi + # case selection + selection_options="" + # enable selection + if [[ -n ${ENABLE_SELECTION} ]]; then + selection_options+=" --enable-selection" + fi + # selection mode + if [[ -n ${SELECTION_MODE} ]]; then + selection_options+=" --selection-mode ${SELECTION_MODE}" + fi + # selection count + if [[ -n ${SELECTION_COUNT} ]]; then + selection_options+=" --selection-count ${SELECTION_COUNT}" + fi + # unfix random seed + if [[ -n ${UNFIX_RANDOM_SEED} ]]; then + selection_options+=" --unfix-random-seed" + fi + # live test if [[ ${TEST_MODE} == "live" || ${TEST_MODE} == "all" ]]; then echo "Backward Compatibility Test in live mode!" - live_options="${base_options}${filter_options}" + live_options="${pytest_options}${filter_options}${selection_options}" live_options+=" -l --json-report-file=bc_live_report.json" live_options+=" --xml-file=bc_live_result.xml" echo "Live test options: ${live_options}" @@ -152,8 +256,10 @@ if [[ -n ${BACKWARD_COMPATIBILITY_TEST} ]]; then azaks ${live_options} || test_result=$? if [[ ${test_result} -ne 0 ]]; then echo "Backward Compatibility Live test failed!" - echo "Please refer to this wiki (https://dev.azure.com/msazure/CloudNativeCompute/_wiki/wikis/CloudNativeCompute.wiki/156735/AZCLI-AKS-Live-Unit-Test-Pipeline) for troubleshooting guidelines." - exit ${test_result} + echo "Please refer to this wiki (${WIKI_LINK}) for troubleshooting guidelines." + if [[ -z ${IGNORE_EXIT_CODE} ]]; then + exit ${test_result} + fi else echo -e "Backward Compatibility Live test passed!\n\n" fi @@ -162,7 +268,7 @@ if [[ -n ${BACKWARD_COMPATIBILITY_TEST} ]]; then # live-replay test if [[ ${TEST_MODE} == "live" || ${TEST_MODE} == "all" ]]; then echo "Backward Compatibility Test in live-replay mode!" - live_replay_options="${base_options}${filter_options}" + live_replay_options="${pytest_options}${filter_options}${selection_options}" live_replay_options+=" --json-report-file=bc_live_replay_report.json" live_replay_options+=" --xml-file=bc_live_replay_result.xml" echo "Live-replay test options: ${live_replay_options}" @@ -170,8 +276,10 @@ if [[ -n ${BACKWARD_COMPATIBILITY_TEST} ]]; then azaks ${live_replay_options} || test_result=$? if [[ ${test_result} -ne 0 ]]; then echo "Backward Compatibility Live-replay test failed!" - echo "Please refer to this wiki (https://dev.azure.com/msazure/CloudNativeCompute/_wiki/wikis/CloudNativeCompute.wiki/156735/AZCLI-AKS-Live-Unit-Test-Pipeline) for troubleshooting guidelines." - exit ${test_result} + echo "Please refer to this wiki (${WIKI_LINK}) for troubleshooting guidelines." + if [[ -z ${IGNORE_EXIT_CODE} ]]; then + exit ${test_result} + fi else echo -e "Backward Compatibility Live-replay test passed!\n\n" fi diff --git a/src/aks-preview/azcli_aks_live_test/scripts/test_ext_unit.sh b/src/aks-preview/azcli_aks_live_test/scripts/test_ext_unit.sh index c4445141221..0de60b8018c 100755 --- a/src/aks-preview/azcli_aks_live_test/scripts/test_ext_unit.sh +++ b/src/aks-preview/azcli_aks_live_test/scripts/test_ext_unit.sh @@ -6,8 +6,11 @@ set -o nounset set -o pipefail set -o xtrace -# const -aks_preview_base_dir="azure-cli-extensions/src/aks-preview/azext_aks_preview" +# check var +[[ -z "${WIKI_LINK}" ]] && (echo "WIKI_LINK is empty"; exit 1) +[[ -z "${AKS_PREVIEW_BASE_DIR}" ]] && (echo "AKS_PREVIEW_BASE_DIR is empty"; exit 1) +[[ -z "${IGNORE_EXIT_CODE}" ]] && (echo "IGNORE_EXIT_CODE is empty") +[[ -z "${EXT_COVERAGE_CONFIG}" ]] && (echo "CLI_COVERAGE_CONFIG is empty") # activate virtualenv source azEnv/bin/activate @@ -16,25 +19,36 @@ source azEnv/bin/activate ./scripts/setup_venv.sh setup-akspreview # unit test & coverage report -azext_aks_preview_unit_test_failed="" -pushd ${aks_preview_base_dir} +pushd ${AKS_PREVIEW_BASE_DIR} + # clean existing coverage report (coverage combine || true) && (coverage erase || true) + # perform unit test with module 'unittest' -# since recording test (performed in test_ext_live.sh) is based on module 'pytest', so skip here -# coverage run --source=. --omit=*/vendored_sdks/*,*/tests/* -p -m pytest -if ! coverage run --source=. --omit=*/vendored_sdks/*,*/tests/* -p -m unittest discover; then - azext_aks_preview_unit_test_failed="true" -fi -# generate & copy coverage report -coverage combine +test_result=0 +coverage run --source=. --omit=*/vendored_sdks/*,*/tests/* -m pytest tests/latest/ || test_result=$? + +# generate coverage report +coverage combine || true coverage report -m coverage json -o coverage_azext_aks_preview.json popd -mkdir -p reports/ && cp ${aks_preview_base_dir}/coverage_azext_aks_preview.json reports/ -if [[ ${azext_aks_preview_unit_test_failed} == "true" ]]; then - echo "Unit test failed!" - echo "Please refer to this wiki (https://dev.azure.com/msazure/CloudNativeCompute/_wiki/wikis/CloudNativeCompute.wiki/156735/AZCLI-AKS-Live-Unit-Test-Pipeline) for troubleshooting guidelines." - exit 1 +# copy coverage report +mkdir -p reports/ && cp ${AKS_PREVIEW_BASE_DIR}/coverage_azext_aks_preview.json reports/ + +# prepare running options +# unit test result +options="--unit-test-result ${test_result} --coverage-report ${AKS_PREVIEW_BASE_DIR}/coverage_azext_aks_preview.json" +# ignore exit code +if [[ -n ${IGNORE_EXIT_CODE} ]]; then + options+=" --ignore-exit-code" +fi +if [[ -n ${EXT_COVERAGE_CONFIG} ]]; then + options+=" --coverage-config ./configs/${EXT_COVERAGE_CONFIG}" fi + +combined_result=0 +azaks-cov ${options} || combined_result=$? +echo "Please refer to this wiki (${WIKI_LINK}) for troubleshooting guidelines." +exit ${combined_result} diff --git a/src/aks-preview/azcli_aks_live_test/scripts/test_raw_cases.sh b/src/aks-preview/azcli_aks_live_test/scripts/test_raw_cases.sh deleted file mode 100644 index 8f132ac633b..00000000000 --- a/src/aks-preview/azcli_aks_live_test/scripts/test_raw_cases.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env bash - -# bash options -set -o errexit -set -o nounset -set -o pipefail -set -o xtrace diff --git a/src/aks-preview/azcli_aks_live_test/scripts/transcribe_env.sh b/src/aks-preview/azcli_aks_live_test/scripts/transcribe_env.sh index 19eb68518a5..b15b99f5d33 100755 --- a/src/aks-preview/azcli_aks_live_test/scripts/transcribe_env.sh +++ b/src/aks-preview/azcli_aks_live_test/scripts/transcribe_env.sh @@ -7,39 +7,58 @@ set -o pipefail set -o xtrace # check var -# from variable group -# client id, secret and tenant id of sp 'azcli-aks-live-test' +# azure devops +[[ -z "${BUILD_REASON}" ]] && (echo "BUILD_REASON is empty") +[[ -z "${SYSTEM_PULLREQUEST_TARGETBRANCH}" ]] && (echo "SYSTEM_PULLREQUEST_TARGETBRANCH is empty") + +# client id, secret and tenant id of sp 'azcli-aks-live-test' (from variable group "azcli-aks-tool") [[ -z "${AZCLI_ALT_CLIENT_ID}" ]] && (echo "AZCLI_ALT_CLIENT_ID is empty"; exit 1) [[ -z "${AZCLI_ALT_SUBSCRIPTION_ID}" ]] && (echo "AZCLI_ALT_SUBSCRIPTION_ID is empty"; exit 1) [[ -z "${TENANT_ID}" ]] && (echo "TENANT_ID is empty"; exit 1) -# basic ubuntu image with python3 pre-installed, hosted on some container registry + +# basic ubuntu image with python3 pre-installed, hosted on some container registry (from variable group "azcli-aks-tool") [[ -z "${IMAGE_PREFIX}" ]] && (echo "IMAGE_PREFIX is empty"; exit 1) [[ -z "${IMAGE_NAME}" ]] && (echo "IMAGE_NAME is empty"; exit 1) [[ -z "${IMAGE_TAG}" ]] && (echo "IMAGE_TAG is empty"; exit 1) + # specify the version of python3 [[ -z "${PYTHON_VERSION}" ]] && (echo "PYTHON_VERSION is empty"; exit 1) -# from azure devops -[[ -z "${BUILD_REASON}" ]] && (echo "BUILD_REASON is empty") -[[ -z "${SYSTEM_PULLREQUEST_TARGETBRANCH}" ]] && (echo "SYSTEM_PULLREQUEST_TARGETBRANCH is empty") +# tsg/wiki link +[[ -z "${WIKI_LINK}" ]] && (echo "WIKI_LINK is empty"; exit 1) + +# pytest options +[[ -z "${PARALLELISM}" ]] && (echo "PARALLELISM is empty") +[[ -z "${RERUNS}" ]] && (echo "RERUNS is empty") +[[ -z "${NON_BOXED}" ]] && (echo "NON_BOXED is empty") +[[ -z "${LOG_LEVEL}" ]] && (echo "LOG_LEVEL is empty") +[[ -z "${CAPTURE}" ]] && (echo "CAPTURE is empty") +[[ -z "${NO_EXIT_FIRST}" ]] && (echo "NO_EXIT_FIRST is empty") +[[ -z "${LAST_FAILED}" ]] && (echo "LAST_FAILED is empty") # custom +[[ -z "${IGNORE_EXIT_CODE}" ]] && (echo "IGNORE_EXIT_CODE is empty") [[ -z "${TEST_LOCATION}" ]] && (echo "TEST_LOCATION is empty"; exit 1) [[ -z "${COVERAGE}" ]] && (echo "COVERAGE is empty"; exit 1) [[ -z "${TEST_MODE}" ]] && (echo "TEST_MODE is empty"; exit 1) -[[ -z "${PARALLELISM}" ]] && (echo "PARALLELISM is empty"; exit 1) -[[ -z "${TEST_CASES}" ]] && (echo "TEST_CASES is empty") [[ -z "${CLI_TEST_MATRIX}" ]] && (echo "CLI_TEST_MATRIX is empty") [[ -z "${CLI_TEST_FILTER}" ]] && (echo "CLI_TEST_FILTER is empty") [[ -z "${CLI_TEST_COVERAGE}" ]] && (echo "CLI_TEST_COVERAGE is empty") [[ -z "${EXT_TEST_MATRIX}" ]] && (echo "EXT_TEST_MATRIX is empty") [[ -z "${EXT_TEST_FILTER}" ]] && (echo "EXT_TEST_FILTER is empty") [[ -z "${EXT_TEST_COVERAGE}" ]] && (echo "EXT_TEST_COVERAGE is empty") +[[ -z "${ENABLE_SELECTION}" ]] && (echo "ENABLE_SELECTION is empty") +[[ -z "${SELECTION_MODE}" ]] && (echo "SELECTION_MODE is empty") +[[ -z "${SELECTION_COUNT}" ]] && (echo "SELECTION_COUNT is empty") +[[ -z "${UNFIX_RANDOM_SEED}" ]] && (echo "UNFIX_RANDOM_SEED is empty") +[[ -z "${CLI_COVERAGE_CONFIG}" ]] && (echo "CLI_COVERAGE_CONFIG is empty") +[[ -z "${EXT_COVERAGE_CONFIG}" ]] && (echo "EXT_COVERAGE_CONFIG is empty") [[ -z "${CLI_REPO}" ]] && (echo "CLI_REPO is empty"; exit 1) [[ -z "${CLI_BRANCH}" ]] && (echo "CLI_BRANCH is empty"; exit 1) [[ -z "${EXT_REPO}" ]] && (echo "EXT_REPO is empty"; exit 1) [[ -z "${EXT_BRANCH}" ]] && (echo "EXT_BRANCH is empty"; exit 1) [[ -z "${BACKWARD_COMPATIBILITY_TEST}" ]] && (echo "BACKWARD_COMPATIBILITY_TEST is empty") + # base directories for acs, aks-preview and live test [[ -z "${ACS_BASE_DIR}" ]] && (echo "ACS_BASE_DIR is empty"; exit 1) [[ -z "${AKS_PREVIEW_BASE_DIR}" ]] && (echo "AKS_PREVIEW_BASE_DIR is empty"; exit 1) @@ -48,6 +67,10 @@ set -o xtrace # clear cat /dev/null > env.list +# azure devops +echo "BUILD_REASON=${BUILD_REASON}" >> env.list +echo "SYSTEM_PULLREQUEST_TARGETBRANCH=${SYSTEM_PULLREQUEST_TARGETBRANCH}" >> env.list + # tenant, sub, client echo "TENANT_ID=${TENANT_ID}" >> env.list echo "AZCLI_ALT_SUBSCRIPTION_ID=${AZCLI_ALT_SUBSCRIPTION_ID}" >> env.list @@ -58,39 +81,54 @@ echo "IMAGE_PREFIX=${IMAGE_PREFIX}" >> env.list echo "IMAGE_NAME=${IMAGE_NAME}" >> env.list echo "IMAGE_TAG=${IMAGE_TAG}" >> env.list -# predefined variables -echo "BUILD_REASON=${BUILD_REASON}" >> env.list -echo "SYSTEM_PULLREQUEST_TARGETBRANCH=${SYSTEM_PULLREQUEST_TARGETBRANCH}" >> env.list - # python version echo "PYTHON_VERSION=${PYTHON_VERSION}" >> env.list -# base directories -echo "ACS_BASE_DIR=${ACS_BASE_DIR}" >> env.list -echo "AKS_PREVIEW_BASE_DIR=${AKS_PREVIEW_BASE_DIR}" >> env.list -echo "LIVE_TEST_BASE_DIR=${LIVE_TEST_BASE_DIR}" >> env.list +# tsg/wiki link +echo "WIKI_LINK=${WIKI_LINK}" >> env.list + +# pytest options +echo "PARALLELISM=${PARALLELISM}" >> env.list +echo "RERUNS=${RERUNS}" >> env.list +echo "NON_BOXED=${NON_BOXED}" >> env.list +echo "LOG_LEVEL=${LOG_LEVEL}" >> env.list +echo "CAPTURE=${CAPTURE}" >> env.list +echo "NO_EXIT_FIRST=${NO_EXIT_FIRST}" >> env.list +echo "LAST_FAILED=${LAST_FAILED}" >> env.list -# azdev env +# custom - azdev env echo "AZURE_CLI_TEST_DEV_SP_NAME=${AZCLI_ALT_CLIENT_ID}" >> env.list echo "AZURE_CLI_TEST_DEV_RESOURCE_GROUP_LOCATION=${TEST_LOCATION}" >> env.list -# test +# custom - az-aks-tool +echo "IGNORE_EXIT_CODE=${IGNORE_EXIT_CODE}" >> env.list +# live test echo "COVERAGE=${COVERAGE}" >> env.list echo "TEST_MODE=${TEST_MODE}" >> env.list -echo "PARALLELISM=${PARALLELISM}" >> env.list -echo "TEST_CASES=${TEST_CASES}" >> env.list echo "CLI_TEST_MATRIX=${CLI_TEST_MATRIX}" >> env.list echo "CLI_TEST_FILTER=${CLI_TEST_FILTER}" >> env.list echo "CLI_TEST_COVERAGE=${CLI_TEST_COVERAGE}" >> env.list echo "EXT_TEST_MATRIX=${EXT_TEST_MATRIX}" >> env.list echo "EXT_TEST_FILTER=${EXT_TEST_FILTER}" >> env.list echo "EXT_TEST_COVERAGE=${EXT_TEST_COVERAGE}" >> env.list +echo "ENABLE_SELECTION=${ENABLE_SELECTION}" >> env.list +echo "SELECTION_MODE=${SELECTION_MODE}" >> env.list +echo "SELECTION_COUNT=${SELECTION_COUNT}" >> env.list +echo "UNFIX_RANDOM_SEED=${UNFIX_RANDOM_SEED}" >> env.list +# unit test +echo "CLI_COVERAGE_CONFIG=${CLI_COVERAGE_CONFIG}" >> env.list +echo "EXT_COVERAGE_CONFIG=${EXT_COVERAGE_CONFIG}" >> env.list -# repo +# custom - repo echo "CLI_REPO=${CLI_REPO}" >> env.list echo "CLI_BRANCH=${CLI_BRANCH}" >> env.list echo "EXT_REPO=${EXT_REPO}" >> env.list echo "EXT_BRANCH=${EXT_BRANCH}" >> env.list -# backward compatibility -echo "BACKWARD_COMPATIBILITY_TEST=${BACKWARD_COMPATIBILITY_TEST}" >> env.list \ No newline at end of file +# custom - backward compatibility +echo "BACKWARD_COMPATIBILITY_TEST=${BACKWARD_COMPATIBILITY_TEST}" >> env.list + +# base directories +echo "ACS_BASE_DIR=${ACS_BASE_DIR}" >> env.list +echo "AKS_PREVIEW_BASE_DIR=${AKS_PREVIEW_BASE_DIR}" >> env.list +echo "LIVE_TEST_BASE_DIR=${LIVE_TEST_BASE_DIR}" >> env.list diff --git a/src/aks-preview/azcli_aks_live_test/vsts-azcli-aks-clean-up.yaml b/src/aks-preview/azcli_aks_live_test/vsts-azcli-aks-clean-up.yaml new file mode 100644 index 00000000000..b6455d1bd8d --- /dev/null +++ b/src/aks-preview/azcli_aks_live_test/vsts-azcli-aks-clean-up.yaml @@ -0,0 +1,22 @@ +name: $(Date:yyyyMMdd)$(Rev:.r-)-CleanUp + +trigger: none + +pool: + name: 1ES-AKS-Elastic-DevInfra-Auto-TearDown-Pool + +variables: + - group: azcli-aks-tool + - name: LIVE_TEST_BASE_DIR + value: "src/aks-preview/azcli_aks_live_test" + +jobs: +- job: CleanUp + timeoutInMinutes: 60 + displayName: "Clean Up" + steps: + - bash: | + $(LIVE_TEST_BASE_DIR)/scripts/clean_up.sh + env: + AZCLI_ALT_CLIENT_SECRET: $(AZCLI_ALT_CLIENT_SECRET) + displayName: "Clean up outdated resource groups" diff --git a/src/aks-preview/azcli_aks_live_test/vsts-azcli-aks-live-test.yaml b/src/aks-preview/azcli_aks_live_test/vsts-azcli-aks-live-test.yaml index 2178d0e6062..8b693854341 100644 --- a/src/aks-preview/azcli_aks_live_test/vsts-azcli-aks-live-test.yaml +++ b/src/aks-preview/azcli_aks_live_test/vsts-azcli-aks-live-test.yaml @@ -3,7 +3,7 @@ name: $(Date:yyyyMMdd)$(Rev:.r)_Python$(PYTHON_VERSION)_Coverage-$(COVERAGE)_Mod trigger: none pool: - name: 1ES-AKS-Elastic-DevInfra-Normal-Pool + name: 1ES-AKS-Elastic-DevInfra-Auto-TearDown-Pool pr: branches: diff --git a/src/aks-preview/azcli_aks_live_test/vsts-azcli-aks-unit-test.yaml b/src/aks-preview/azcli_aks_live_test/vsts-azcli-aks-unit-test.yaml index 17d475ba6dd..1d507b70ef1 100644 --- a/src/aks-preview/azcli_aks_live_test/vsts-azcli-aks-unit-test.yaml +++ b/src/aks-preview/azcli_aks_live_test/vsts-azcli-aks-unit-test.yaml @@ -3,7 +3,7 @@ name: $(Date:yyyyMMdd)$(Rev:.r)_Python$(PYTHON_VERSION)_Coverage-$(COVERAGE)_Mod trigger: none pool: - name: 1ES-AKS-Elastic-DevInfra-Normal-Pool + name: 1ES-AKS-Elastic-DevInfra-Auto-TearDown-Pool pr: branches: diff --git a/src/aks-preview/azext_aks_preview/__init__.py b/src/aks-preview/azext_aks_preview/__init__.py index c44e43a09cf..6a3838e5284 100644 --- a/src/aks-preview/azext_aks_preview/__init__.py +++ b/src/aks-preview/azext_aks_preview/__init__.py @@ -16,7 +16,7 @@ def register_aks_preview_resource_type(): register_resource_type( "latest", CUSTOM_MGMT_AKS_PREVIEW, - SDKProfile("2021-09-01", {"container_services": "2017-07-01"}), + SDKProfile("2021-10-01", {"container_services": "2017-07-01"}), ) diff --git a/src/aks-preview/azext_aks_preview/_completers.py b/src/aks-preview/azext_aks_preview/_completers.py index b4ad6eee601..44ff681acd2 100644 --- a/src/aks-preview/azext_aks_preview/_completers.py +++ b/src/aks-preview/azext_aks_preview/_completers.py @@ -7,7 +7,7 @@ from azure.cli.core.decorators import Completer # pylint: disable=line-too-long -from azext_aks_preview.vendored_sdks.azure_mgmt_preview_aks.v2021_09_01.models import ContainerServiceVMSizeTypes +from azext_aks_preview.vendored_sdks.azure_mgmt_preview_aks.v2021_10_01.models import ContainerServiceVMSizeTypes @Completer diff --git a/src/aks-preview/azext_aks_preview/_help.py b/src/aks-preview/azext_aks_preview/_help.py index 2201fa67c11..0d2f1800d39 100644 --- a/src/aks-preview/azext_aks_preview/_help.py +++ b/src/aks-preview/azext_aks_preview/_help.py @@ -134,6 +134,10 @@ type: int short-summary: Load balancer managed outbound IP count. long-summary: Desired number of managed outbound IPs for load balancer outbound connection. Valid for Standard SKU load balancer cluster only. + - name: --load-balancer-managed-outbound-ipv6-count + type: int + short-summary: Load balancer managed outbound IPv6 IP count. + long-summary: Desired number of managed outbound IPv6 IPs for load balancer outbound connection. Valid for dual-stack (--ip-families IPv4,IPv6) only. - name: --load-balancer-outbound-ips type: string short-summary: Load balancer outbound IP resource IDs. @@ -212,6 +216,18 @@ type: string short-summary: A CIDR notation IP range from which to assign service cluster IPs. long-summary: This range must not overlap with any Subnet IP ranges. For example, 10.0.0.0/16. + - name: --service-cidrs + type: string + short-summary: A comma separated list of CIDR notation IP ranges from which to assign service cluster IPs. + long-summary: Each range must not overlap with any Subnet IP ranges. For example, 10.0.0.0/16. + - name: --pod-cidrs + type: string + short-summary: A comma separated list of CIDR notation IP ranges from which to assign pod IPs when kubenet is used. + long-summary: Each range must not overlap with any Subnet IP ranges. For example, 172.244.0.0/16. + - name: --ip-families + type: string + short-summary: A comma separated list of IP versions to use for cluster networking. + long-summary: Each IP version should be in the format IPvN. For example, IPv4. - name: --vnet-subnet-id type: string short-summary: The ID of a subnet in an existing VNet into which to deploy the cluster. @@ -498,6 +514,10 @@ type: int short-summary: Load balancer managed outbound IP count. long-summary: Desired number of managed outbound IPs for load balancer outbound connection. Valid for Standard SKU load balancer cluster only. If updated, it will wipe off the existing setting on Load balancer managed outbound IP count; Load balancer outbound IP resource IDs and Load balancer outbound IP prefix resource IDs. + - name: --load-balancer-managed-outbound-ipv6-count + type: int + short-summary: Load balancer managed outbound IPv6 IP count. + long-summary: Desired number of managed outbound IPv6 IPs for load balancer outbound connection. Valid for dual-stack (--ip-families IPv4,IPv6) only. If updated, it will wipe off the existing setting on Load balancer managed outbound IPv6 count; Load balancer outbound IP resource IDs and Load balancer outbound IP prefix resource IDs. - name: --load-balancer-outbound-ips type: string short-summary: Load balancer outbound IP resource IDs. diff --git a/src/aks-preview/azext_aks_preview/_helpers.py b/src/aks-preview/azext_aks_preview/_helpers.py index 9577c7a4b30..c4340d8daf1 100644 --- a/src/aks-preview/azext_aks_preview/_helpers.py +++ b/src/aks-preview/azext_aks_preview/_helpers.py @@ -9,7 +9,7 @@ from azure.cli.core.azclierror import ArgumentUsageError # pylint: disable=no-name-in-module,import-error -from .vendored_sdks.azure_mgmt_preview_aks.v2021_09_01.models import ManagedClusterAPIServerAccessProfile +from .vendored_sdks.azure_mgmt_preview_aks.v2021_10_01.models import ManagedClusterAPIServerAccessProfile from ._consts import CONST_CONTAINER_NAME_MAX_LENGTH from ._consts import CONST_OUTBOUND_TYPE_LOAD_BALANCER, CONST_OUTBOUND_TYPE_USER_DEFINED_ROUTING, \ CONST_OUTBOUND_TYPE_MANAGED_NAT_GATEWAY, CONST_OUTBOUND_TYPE_USER_ASSIGNED_NAT_GATEWAY diff --git a/src/aks-preview/azext_aks_preview/_loadbalancer.py b/src/aks-preview/azext_aks_preview/_loadbalancer.py index 9e4be6ba1f7..11a6ebbb9bd 100644 --- a/src/aks-preview/azext_aks_preview/_loadbalancer.py +++ b/src/aks-preview/azext_aks_preview/_loadbalancer.py @@ -6,11 +6,11 @@ from distutils.version import StrictVersion # pylint: disable=no-name-in-module,import-error from knack.log import get_logger -from .vendored_sdks.azure_mgmt_preview_aks.v2021_09_01.models import ManagedClusterLoadBalancerProfile -from .vendored_sdks.azure_mgmt_preview_aks.v2021_09_01.models import ManagedClusterLoadBalancerProfileManagedOutboundIPs -from .vendored_sdks.azure_mgmt_preview_aks.v2021_09_01.models import ManagedClusterLoadBalancerProfileOutboundIPPrefixes -from .vendored_sdks.azure_mgmt_preview_aks.v2021_09_01.models import ManagedClusterLoadBalancerProfileOutboundIPs -from .vendored_sdks.azure_mgmt_preview_aks.v2021_09_01.models import ResourceReference +from .vendored_sdks.azure_mgmt_preview_aks.v2021_10_01.models import ManagedClusterLoadBalancerProfile +from .vendored_sdks.azure_mgmt_preview_aks.v2021_10_01.models import ManagedClusterLoadBalancerProfileManagedOutboundIPs +from .vendored_sdks.azure_mgmt_preview_aks.v2021_10_01.models import ManagedClusterLoadBalancerProfileOutboundIPPrefixes +from .vendored_sdks.azure_mgmt_preview_aks.v2021_10_01.models import ManagedClusterLoadBalancerProfileOutboundIPs +from .vendored_sdks.azure_mgmt_preview_aks.v2021_10_01.models import ResourceReference logger = get_logger(__name__) @@ -26,30 +26,30 @@ def set_load_balancer_sku(sku, kubernetes_version): return "standard" -def update_load_balancer_profile(managed_outbound_ip_count, outbound_ips, outbound_ip_prefixes, - outbound_ports, idle_timeout, profile): +def update_load_balancer_profile(managed_outbound_ip_count, managed_outbound_ipv6_count, outbound_ips, + outbound_ip_prefixes, outbound_ports, idle_timeout, profile): """parse and update an existing load balancer profile""" - if not is_load_balancer_profile_provided(managed_outbound_ip_count, outbound_ips, outbound_ip_prefixes, - outbound_ports, idle_timeout): + if not is_load_balancer_profile_provided(managed_outbound_ip_count, managed_outbound_ipv6_count, outbound_ips, + outbound_ip_prefixes, outbound_ports, idle_timeout): return profile - return configure_load_balancer_profile(managed_outbound_ip_count, outbound_ips, outbound_ip_prefixes, - outbound_ports, idle_timeout, profile) + return configure_load_balancer_profile(managed_outbound_ip_count, managed_outbound_ipv6_count, outbound_ips, + outbound_ip_prefixes, outbound_ports, idle_timeout, profile) -def create_load_balancer_profile(managed_outbound_ip_count, outbound_ips, outbound_ip_prefixes, - outbound_ports, idle_timeout): +def create_load_balancer_profile(managed_outbound_ip_count, managed_outbound_ipv6_count, outbound_ips, + outbound_ip_prefixes, outbound_ports, idle_timeout): """parse and build load balancer profile""" - if not is_load_balancer_profile_provided(managed_outbound_ip_count, outbound_ips, outbound_ip_prefixes, - outbound_ports, idle_timeout): + if not is_load_balancer_profile_provided(managed_outbound_ip_count, managed_outbound_ipv6_count, outbound_ips, + outbound_ip_prefixes, outbound_ports, idle_timeout): return None profile = ManagedClusterLoadBalancerProfile() - return configure_load_balancer_profile(managed_outbound_ip_count, outbound_ips, outbound_ip_prefixes, - outbound_ports, idle_timeout, profile) + return configure_load_balancer_profile(managed_outbound_ip_count, managed_outbound_ipv6_count, outbound_ips, + outbound_ip_prefixes, outbound_ports, idle_timeout, profile) -def configure_load_balancer_profile(managed_outbound_ip_count, outbound_ips, outbound_ip_prefixes, outbound_ports, - idle_timeout, profile): +def configure_load_balancer_profile(managed_outbound_ip_count, managed_outbound_ipv6_count, outbound_ips, + outbound_ip_prefixes, outbound_ports, idle_timeout, profile): """configure a load balancer with customer supplied values""" if not profile: return profile @@ -57,17 +57,23 @@ def configure_load_balancer_profile(managed_outbound_ip_count, outbound_ips, out outbound_ip_resources = _get_load_balancer_outbound_ips(outbound_ips) outbound_ip_prefix_resources = _get_load_balancer_outbound_ip_prefixes(outbound_ip_prefixes) - if managed_outbound_ip_count or outbound_ip_resources or outbound_ip_prefix_resources: - # ips -> i_ps due to track 2 naming issue - profile.managed_outbound_i_ps = None + if ( + managed_outbound_ip_count or + managed_outbound_ipv6_count or + outbound_ip_resources or + outbound_ip_prefix_resources + ): # ips -> i_ps due to track 2 naming issue profile.outbound_i_ps = None profile.outbound_ip_prefixes = None - if managed_outbound_ip_count: - # ips -> i_ps due to track 2 naming issue - profile.managed_outbound_i_ps = ManagedClusterLoadBalancerProfileManagedOutboundIPs( - count=managed_outbound_ip_count - ) + profile.managed_outbound_i_ps = None + + if managed_outbound_ip_count or managed_outbound_ipv6_count: + profile.managed_outbound_i_ps = ManagedClusterLoadBalancerProfileManagedOutboundIPs() + if managed_outbound_ip_count: + profile.managed_outbound_i_ps.count = managed_outbound_ip_count + if managed_outbound_ipv6_count: + profile.managed_outbound_i_ps.count_ipv6 = managed_outbound_ipv6_count if outbound_ip_resources: # ips -> i_ps due to track 2 naming issue profile.outbound_i_ps = ManagedClusterLoadBalancerProfileOutboundIPs( @@ -84,9 +90,10 @@ def configure_load_balancer_profile(managed_outbound_ip_count, outbound_ips, out return profile -def is_load_balancer_profile_provided(managed_outbound_ip_count, outbound_ips, ip_prefixes, - outbound_ports, idle_timeout): +def is_load_balancer_profile_provided(managed_outbound_ip_count, managed_outbound_ipv6_count, outbound_ips, + ip_prefixes, outbound_ports, idle_timeout): return any([managed_outbound_ip_count, + managed_outbound_ipv6_count, outbound_ips, ip_prefixes, outbound_ports, diff --git a/src/aks-preview/azext_aks_preview/_params.py b/src/aks-preview/azext_aks_preview/_params.py index f0f57b6ac28..ad84c2c2f57 100644 --- a/src/aks-preview/azext_aks_preview/_params.py +++ b/src/aks-preview/azext_aks_preview/_params.py @@ -78,6 +78,7 @@ def load_arguments(self, _): c.argument('edge_zone', edge_zone_type) c.argument('load_balancer_sku', type=str, validator=validate_load_balancer_sku) c.argument('load_balancer_managed_outbound_ip_count', type=int) + c.argument('load_balancer_managed_outbound_ipv6_count', type=int) c.argument('load_balancer_outbound_ips', type=str, validator=validate_load_balancer_outbound_ips) c.argument('load_balancer_outbound_ip_prefixes', type=str, validator=validate_load_balancer_outbound_ip_prefixes) c.argument('load_balancer_outbound_ports', type=int, validator=validate_load_balancer_outbound_ports) @@ -98,13 +99,16 @@ def load_arguments(self, _): c.argument('no_ssh_key', options_list=['--no-ssh-key', '-x']) c.argument('pod_cidr') c.argument('service_cidr') + c.argument('pod_cidrs') + c.argument('service_cidrs') + c.argument('ip_families') c.argument('vnet_subnet_id', type=str, validator=validate_vnet_subnet_id) c.argument('pod_subnet_id', type=str, validator=validate_pod_subnet_id) c.argument('ppg') c.argument('workspace_resource_id') c.argument('enable_msi_auth_for_monitoring', arg_type=get_three_state_flag(), is_preview=True) c.argument('skip_subnet_role_assignment', action='store_true') - c.argument('enable_fips_image', action='store_true', is_preview=True) + c.argument('enable_fips_image', action='store_true') c.argument('enable_cluster_autoscaler', action='store_true') c.argument('uptime_sla', action='store_true') c.argument('cluster_autoscaler_profile', nargs='+', validator=validate_cluster_autoscaler_profile) @@ -165,6 +169,7 @@ def load_arguments(self, _): c.argument('uptime_sla', action='store_true') c.argument('no_uptime_sla', action='store_true') c.argument('load_balancer_managed_outbound_ip_count', type=int) + c.argument('load_balancer_managed_outbound_ipv6_count', type=int) c.argument('load_balancer_outbound_ips', type=str, validator=validate_load_balancer_outbound_ips) c.argument('load_balancer_outbound_ip_prefixes', type=str, validator=validate_load_balancer_outbound_ip_prefixes) c.argument('load_balancer_outbound_ports', type=int, validator=validate_load_balancer_outbound_ports) @@ -232,7 +237,7 @@ def load_arguments(self, _): c.argument('max_pods', type=int, options_list=['--max-pods', '-m']) c.argument('os_type', type=str) c.argument('os_sku', type=str, options_list=['--os-sku'], completer=get_ossku_completion_list) - c.argument('enable_fips_image', action='store_true', is_preview=True) + c.argument('enable_fips_image', action='store_true') c.argument('enable_cluster_autoscaler', options_list=["--enable-cluster-autoscaler", "-e"], action='store_true') c.argument('scale_down_mode', arg_type=get_enum_type([CONST_SCALE_DOWN_MODE_DELETE, CONST_SCALE_DOWN_MODE_DEALLOCATE])) c.argument('node_taints', type=str, validator=validate_taints) diff --git a/src/aks-preview/azext_aks_preview/_validators.py b/src/aks-preview/azext_aks_preview/_validators.py index a37d21d0d40..11a9b4c20c2 100644 --- a/src/aks-preview/azext_aks_preview/_validators.py +++ b/src/aks-preview/azext_aks_preview/_validators.py @@ -17,7 +17,7 @@ from azure.cli.core.util import CLIError import azure.cli.core.keys as keys -from .vendored_sdks.azure_mgmt_preview_aks.v2021_09_01.models import ManagedClusterPropertiesAutoScalerProfile +from .vendored_sdks.azure_mgmt_preview_aks.v2021_10_01.models import ManagedClusterPropertiesAutoScalerProfile from ._helpers import (_fuzzy_match) diff --git a/src/aks-preview/azext_aks_preview/addonconfiguration.py b/src/aks-preview/azext_aks_preview/addonconfiguration.py index 2afe8316b1b..a00f451d82c 100644 --- a/src/aks-preview/azext_aks_preview/addonconfiguration.py +++ b/src/aks-preview/azext_aks_preview/addonconfiguration.py @@ -11,7 +11,7 @@ from azure.cli.core.commands import LongRunningOperation from azure.cli.core.commands.client_factory import get_subscription_id, get_mgmt_service_client from azure.cli.core.util import sdk_no_wait -from azext_aks_preview.vendored_sdks.azure_mgmt_preview_aks.v2021_09_01.models import ManagedClusterAddonProfile +from azext_aks_preview.vendored_sdks.azure_mgmt_preview_aks.v2021_10_01.models import ManagedClusterAddonProfile from ._client_factory import cf_resources, cf_resource_groups from ._resourcegroup import get_rg_location from ._roleassignments import add_role_assignment @@ -518,7 +518,7 @@ def ensure_container_insights_for_monitoring(cmd, if aad_route: cluster_resource_id = f"/subscriptions/{cluster_subscription}/resourceGroups/{cluster_resource_group_name}/providers/Microsoft.ContainerService/managedClusters/{cluster_name}" - dataCollectionRuleName = f"DCR-{workspace_name}" + dataCollectionRuleName = f"MSCI-{workspace_name}" dcr_resource_id = f"/subscriptions/{subscription_id}/resourceGroups/{resource_group}/providers/Microsoft.Insights/dataCollectionRules/{dataCollectionRuleName}" from azure.cli.core.util import send_raw_request from azure.cli.core.profiles import ResourceType diff --git a/src/aks-preview/azext_aks_preview/azext_metadata.json b/src/aks-preview/azext_aks_preview/azext_metadata.json index b81bfcb6f0b..74904e6774c 100644 --- a/src/aks-preview/azext_aks_preview/azext_metadata.json +++ b/src/aks-preview/azext_aks_preview/azext_metadata.json @@ -1,4 +1,4 @@ { - "azext.minCliCoreVersion": "2.27.0", + "azext.minCliCoreVersion": "2.30.0", "azext.isPreview": true } \ No newline at end of file diff --git a/src/aks-preview/azext_aks_preview/custom.py b/src/aks-preview/azext_aks_preview/custom.py index a3d6f114165..c0b1940172c 100644 --- a/src/aks-preview/azext_aks_preview/custom.py +++ b/src/aks-preview/azext_aks_preview/custom.py @@ -55,7 +55,7 @@ ServicePrincipalCreateParameters, GetObjectsParameters) from azext_aks_preview._client_factory import CUSTOM_MGMT_AKS_PREVIEW -from .vendored_sdks.azure_mgmt_preview_aks.v2021_09_01.models import (ContainerServiceLinuxProfile, +from .vendored_sdks.azure_mgmt_preview_aks.v2021_10_01.models import (ContainerServiceLinuxProfile, ManagedClusterWindowsProfile, ContainerServiceNetworkProfile, ManagedClusterServicePrincipalProfile, @@ -645,7 +645,8 @@ def aks_maintenanceconfiguration_update( return aks_maintenanceconfiguration_update_internal(cmd, client, resource_group_name, cluster_name, config_name, config_file, weekday, start_hour) -def aks_create(cmd, # pylint: disable=too-many-locals,too-many-statements,too-many-branches +# pylint: disable=unused-argument,too-many-locals +def aks_create(cmd, client, resource_group_name, name, @@ -680,10 +681,14 @@ def aks_create(cmd, # pylint: disable=too-many-locals,too-many-statements,to network_policy=None, pod_cidr=None, service_cidr=None, + pod_cidrs=None, + service_cidrs=None, + ip_families=None, dns_service_ip=None, docker_bridge_address=None, load_balancer_sku=None, load_balancer_managed_outbound_ip_count=None, + load_balancer_managed_outbound_ipv6_count=None, load_balancer_outbound_ips=None, load_balancer_outbound_ip_prefixes=None, load_balancer_outbound_ports=None, @@ -753,512 +758,26 @@ def aks_create(cmd, # pylint: disable=too-many-locals,too-many-statements,to gmsa_root_domain_name=None, snapshot_id=None, yes=False): - if not no_ssh_key: - try: - if not ssh_key_value or not is_valid_ssh_rsa_public_key(ssh_key_value): - raise ValueError() - except (TypeError, ValueError): - shortened_key = truncate_text(ssh_key_value) - raise CLIError( - 'Provided ssh key ({}) is invalid or non-existent'.format(shortened_key)) - - subscription_id = get_subscription_id(cmd.cli_ctx) - - if dns_name_prefix and fqdn_subdomain: - raise CLIError( - '--dns-name-prefix and --fqdn-subdomain cannot be used at same time') - if not dns_name_prefix and not fqdn_subdomain: - dns_name_prefix = _get_default_dns_prefix( - name, resource_group_name, subscription_id) - - rg_location = get_rg_location(cmd.cli_ctx, resource_group_name) - if location is None: - location = rg_location - - creationData = None - if snapshot_id: - snapshot = _get_snapshot(cmd.cli_ctx, snapshot_id) - if not kubernetes_version: - kubernetes_version = snapshot.kubernetes_version - if not os_sku: - os_sku = snapshot.os_sku - if not node_vm_size: - node_vm_size = snapshot.vm_size - - creationData = CreationData( - source_resource_id=snapshot_id - ) - - if not node_vm_size: - node_vm_size = "Standard_DS2_v2" - - # Flag to be removed, kept for back-compatibility only. Remove the below section - # when we deprecate the enable-vmss flag - if enable_vmss: - if vm_set_type and vm_set_type.lower() != "VirtualMachineScaleSets".lower(): - raise CLIError('enable-vmss and provided vm_set_type ({}) are conflicting with each other'. - format(vm_set_type)) - vm_set_type = "VirtualMachineScaleSets" - - vm_set_type = _set_vm_set_type(vm_set_type, kubernetes_version) - load_balancer_sku = set_load_balancer_sku( - load_balancer_sku, kubernetes_version) - - if api_server_authorized_ip_ranges and load_balancer_sku == "basic": - raise CLIError( - '--api-server-authorized-ip-ranges can only be used with standard load balancer') - - agent_pool_profile = ManagedClusterAgentPoolProfile( - # Must be 12 chars or less before ACS RP adds to it - name=_trim_nodepoolname(nodepool_name), - tags=nodepool_tags, - node_labels=nodepool_labels, - count=int(node_count), - vm_size=node_vm_size, - os_type="Linux", - os_sku=os_sku, - mode="System", - vnet_subnet_id=vnet_subnet_id, - pod_subnet_id=pod_subnet_id, - proximity_placement_group_id=ppg, - availability_zones=node_zones, - enable_node_public_ip=enable_node_public_ip, - enable_fips=enable_fips_image, - node_public_ip_prefix_id=node_public_ip_prefix_id, - enable_encryption_at_host=enable_encryption_at_host, - enable_ultra_ssd=enable_ultra_ssd, - max_pods=int(max_pods) if max_pods else None, - type=vm_set_type, - workload_runtime=workload_runtime, - gpu_instance_profile=gpu_instance_profile, - creation_data=creationData - ) - - if node_osdisk_size: - agent_pool_profile.os_disk_size_gb = int(node_osdisk_size) - - if node_osdisk_type: - agent_pool_profile.os_disk_type = node_osdisk_type - - _check_cluster_autoscaler_flag( - enable_cluster_autoscaler, min_count, max_count, node_count, agent_pool_profile) - - if kubelet_config: - agent_pool_profile.kubelet_config = _get_kubelet_config(kubelet_config) - - if linux_os_config: - agent_pool_profile.linux_os_config = _get_linux_os_config( - linux_os_config) - - linux_profile = None - # LinuxProfile is just used for SSH access to VMs, so omit it if --no-ssh-key was specified. - if not no_ssh_key: - ssh_config = ContainerServiceSshConfiguration( - public_keys=[ContainerServiceSshPublicKey(key_data=ssh_key_value)]) - linux_profile = ContainerServiceLinuxProfile( - admin_username=admin_username, ssh=ssh_config) - - windows_profile = None - - if windows_admin_username: - if windows_admin_password is None: - try: - windows_admin_password = prompt_pass( - msg='windows-admin-password: ', confirm=True) - except NoTTYException: - raise CLIError( - 'Please specify both username and password in non-interactive mode.') - - windows_license_type = None - if enable_ahub: - windows_license_type = 'Windows_Server' - - windows_profile = ManagedClusterWindowsProfile( - # [SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="no secret in next line")] - admin_username=windows_admin_username, - admin_password=windows_admin_password, - license_type=windows_license_type) - - if enable_windows_gmsa: - windows_profile.gmsa_profile = WindowsGmsaProfile( - enabled=True) - if gmsa_dns_server is not None and gmsa_root_domain_name is not None: - windows_profile.gmsa_profile.dns_server = gmsa_dns_server - windows_profile.gmsa_profile.root_domain_name = gmsa_root_domain_name - elif gmsa_dns_server is None and gmsa_root_domain_name is None: - msg = ('Please assure that you have set the DNS server in the vnet used by the cluster when not specifying --gmsa-dns-server and --gmsa-root-domain-name') - from knack.prompting import prompt_y_n - if not yes and not prompt_y_n(msg, default="n"): - return None - else: - raise ArgumentUsageError( - 'You must set or not set --gmsa-dns-server and --gmsa-root-domain-name at the same time.') - else: - if gmsa_dns_server is not None or gmsa_root_domain_name is not None: - raise ArgumentUsageError( - 'You only can set --gmsa-dns-server and --gmsa-root-domain-name when setting --enable-windows-gmsa.') - - service_principal_profile = None - principal_obj = None - # If customer explicitly provides a service principal, disable managed identity. - if service_principal and client_secret: - enable_managed_identity = False - if not enable_managed_identity: - principal_obj = _ensure_aks_service_principal(cmd.cli_ctx, - service_principal=service_principal, client_secret=client_secret, - subscription_id=subscription_id, dns_name_prefix=dns_name_prefix, - fqdn_subdomain=fqdn_subdomain, location=location, name=name) - service_principal_profile = ManagedClusterServicePrincipalProfile( - client_id=principal_obj.get("service_principal"), - secret=principal_obj.get("client_secret")) - - if attach_acr: - if enable_managed_identity: - if no_wait: - raise CLIError('When --attach-acr and --enable-managed-identity are both specified, ' - '--no-wait is not allowed, please wait until the whole operation succeeds.') - else: - _ensure_aks_acr(cmd.cli_ctx, - client_id=service_principal_profile.client_id, - acr_name_or_id=attach_acr, - subscription_id=subscription_id) - - need_post_creation_vnet_permission_granting = False - if (vnet_subnet_id and not skip_subnet_role_assignment and - not subnet_role_assignment_exists(cmd.cli_ctx, vnet_subnet_id)): - # if service_principal_profile is None, then this cluster is an MSI cluster, - # and the service principal does not exist. Two cases: - # 1. For system assigned identity, we just tell user to grant the - # permission after the cluster is created to keep consistent with portal experience. - # 2. For user assigned identity, we can grant needed permission to - # user provided user assigned identity before creating managed cluster. - if service_principal_profile is None and not assign_identity: - msg = ('It is highly recommended to use USER assigned identity ' - '(option --assign-identity) when you want to bring your own' - 'subnet, which will have no latency for the role assignment to ' - 'take effect. When using SYSTEM assigned identity, ' - 'azure-cli will grant Network Contributor role to the ' - 'system assigned identity after the cluster is created, and ' - 'the role assignment will take some time to take effect, see ' - 'https://docs.microsoft.com/en-us/azure/aks/use-managed-identity, ' - 'proceed to create cluster with system assigned identity?') - from knack.prompting import prompt_y_n - if not yes and not prompt_y_n(msg, default="n"): - return None - need_post_creation_vnet_permission_granting = True - else: - scope = vnet_subnet_id - identity_client_id = "" - if assign_identity: - identity_client_id = _get_user_assigned_identity_client_id( - cmd.cli_ctx, assign_identity) - else: - identity_client_id = service_principal_profile.client_id - if not add_role_assignment(cmd.cli_ctx, 'Network Contributor', - identity_client_id, scope=scope): - logger.warning('Could not create a role assignment for subnet. ' - 'Are you an Owner on this subscription?') - - load_balancer_profile = create_load_balancer_profile( - load_balancer_managed_outbound_ip_count, - load_balancer_outbound_ips, - load_balancer_outbound_ip_prefixes, - load_balancer_outbound_ports, - load_balancer_idle_timeout) - - from azext_aks_preview.decorator import AKSPreviewModels - # store all the models used by nat gateway - nat_gateway_models = AKSPreviewModels(cmd, CUSTOM_MGMT_AKS_PREVIEW).nat_gateway_models - nat_gateway_profile = create_nat_gateway_profile( - nat_gateway_managed_outbound_ip_count, - nat_gateway_idle_timeout, - models=nat_gateway_models, - ) - - outbound_type = _set_outbound_type( - outbound_type, vnet_subnet_id, load_balancer_sku, load_balancer_profile) - - network_profile = None - if any([network_plugin, - pod_cidr, - service_cidr, - dns_service_ip, - docker_bridge_address, - network_policy]): - if not network_plugin: - raise CLIError('Please explicitly specify the network plugin type') - if pod_cidr and network_plugin == "azure": - raise CLIError( - 'Please use kubenet as the network plugin type when pod_cidr is specified') - network_profile = ContainerServiceNetworkProfile( - network_plugin=network_plugin, - pod_cidr=pod_cidr, - service_cidr=service_cidr, - dns_service_ip=dns_service_ip, - docker_bridge_cidr=docker_bridge_address, - network_policy=network_policy, - load_balancer_sku=load_balancer_sku.lower(), - load_balancer_profile=load_balancer_profile, - nat_gateway_profile=nat_gateway_profile, - outbound_type=outbound_type - ) - else: - if load_balancer_sku.lower() == "standard" or load_balancer_profile or nat_gateway_profile: - network_profile = ContainerServiceNetworkProfile( - network_plugin="kubenet", - load_balancer_sku=load_balancer_sku.lower(), - load_balancer_profile=load_balancer_profile, - nat_gateway_profile=nat_gateway_profile, - outbound_type=outbound_type, - ) - if load_balancer_sku.lower() == "basic": - network_profile = ContainerServiceNetworkProfile( - load_balancer_sku=load_balancer_sku.lower(), - ) + # get all the original parameters and save them as a dictionary + raw_parameters = locals() - addon_profiles = _handle_addons_args( + # decorator pattern + from .decorator import AKSPreviewCreateDecorator + from azure.cli.command_modules.acs._consts import DecoratorEarlyExitException + aks_create_decorator = AKSPreviewCreateDecorator( cmd=cmd, - addons_str=enable_addons, - subscription_id=subscription_id, - resource_group_name=resource_group_name, - addon_profiles={}, - workspace_resource_id=workspace_resource_id, - enable_msi_auth_for_monitoring=enable_msi_auth_for_monitoring, - appgw_name=appgw_name, - appgw_subnet_prefix=appgw_subnet_prefix, - appgw_subnet_cidr=appgw_subnet_cidr, - appgw_id=appgw_id, - appgw_subnet_id=appgw_subnet_id, - appgw_watch_namespace=appgw_watch_namespace, - enable_sgxquotehelper=enable_sgxquotehelper, - aci_subnet_name=aci_subnet_name, - vnet_subnet_id=vnet_subnet_id, - enable_secret_rotation=enable_secret_rotation, - rotation_poll_interval=rotation_poll_interval, + client=client, + raw_parameters=raw_parameters, + resource_type=CUSTOM_MGMT_AKS_PREVIEW, ) - monitoring = False - if CONST_MONITORING_ADDON_NAME in addon_profiles: - monitoring = True - if enable_msi_auth_for_monitoring and not enable_managed_identity: - raise ArgumentUsageError("--enable-msi-auth-for-monitoring can not be used on clusters with service principal auth.") - ensure_container_insights_for_monitoring(cmd, - addon_profiles[CONST_MONITORING_ADDON_NAME], subscription_id, - resource_group_name, name, location, - aad_route=enable_msi_auth_for_monitoring, create_dcr=True, - create_dcra=False) - - # addon is in the list and is enabled - ingress_appgw_addon_enabled = CONST_INGRESS_APPGW_ADDON_NAME in addon_profiles and \ - addon_profiles[CONST_INGRESS_APPGW_ADDON_NAME].enabled - - os_type = 'Linux' - enable_virtual_node = False - if CONST_VIRTUAL_NODE_ADDON_NAME + os_type in addon_profiles: - enable_virtual_node = True - - aad_profile = None - if enable_aad: - if any([aad_client_app_id, aad_server_app_id, aad_server_app_secret]): - raise CLIError('"--enable-aad" cannot be used together with ' - '"--aad-client-app-id/--aad-server-app-id/--aad-server-app-secret"') - if disable_rbac and enable_azure_rbac: - raise CLIError( - '"--enable-azure-rbac" can not be used together with "--disable-rbac"') - aad_profile = ManagedClusterAADProfile( - managed=True, - enable_azure_rbac=enable_azure_rbac, - # ids -> i_ds due to track 2 naming issue - admin_group_object_i_ds=_parse_comma_separated_list( - aad_admin_group_object_ids), - tenant_id=aad_tenant_id - ) - else: - if aad_admin_group_object_ids is not None: - raise CLIError( - '"--admin-aad-object-id" can only be used together with "--enable-aad"') - - if enable_azure_rbac is True: - raise CLIError( - '"--enable-azure-rbac" can only be used together with "--enable-aad"') - - if any([aad_client_app_id, aad_server_app_id, aad_server_app_secret]): - aad_profile = ManagedClusterAADProfile( - client_app_id=aad_client_app_id, - server_app_id=aad_server_app_id, - server_app_secret=aad_server_app_secret, - tenant_id=aad_tenant_id - ) - - # Check that both --disable-rbac and --enable-rbac weren't provided - if all([disable_rbac, enable_rbac]): - raise CLIError( - 'specify either "--disable-rbac" or "--enable-rbac", not both.') - - api_server_access_profile = None - if api_server_authorized_ip_ranges: - api_server_access_profile = _populate_api_server_access_profile( - api_server_authorized_ip_ranges) - - identity = None - if not enable_managed_identity and assign_identity: - raise CLIError( - '--assign-identity can only be specified when --enable-managed-identity is specified') - if enable_managed_identity and not assign_identity: - identity = ManagedClusterIdentity( - type="SystemAssigned" - ) - elif enable_managed_identity and assign_identity: - user_assigned_identity = { - assign_identity: ManagedServiceIdentityUserAssignedIdentitiesValue() - } - identity = ManagedClusterIdentity( - type="UserAssigned", - user_assigned_identities=user_assigned_identity - ) - - identity_profile = None - if assign_kubelet_identity: - if not assign_identity: - raise CLIError('--assign-kubelet-identity can only be specified when --assign-identity is specified') - kubelet_identity = _get_user_assigned_identity(cmd.cli_ctx, assign_kubelet_identity) - identity_profile = { - 'kubeletidentity': UserAssignedIdentity( - resource_id=assign_kubelet_identity, - client_id=kubelet_identity.client_id, - object_id=kubelet_identity.principal_id - ) - } - cluster_identity_object_id = _get_user_assigned_identity_object_id(cmd.cli_ctx, assign_identity) - # ensure the cluster identity has "Managed Identity Operator" role at the scope of kubelet identity - _ensure_cluster_identity_permission_on_kubelet_identity(cmd.cli_ctx, cluster_identity_object_id, assign_kubelet_identity) - - pod_identity_profile = None - if enable_pod_identity: - if not enable_managed_identity: - raise CLIError( - '--enable-pod-identity can only be specified when --enable-managed-identity is specified') - pod_identity_profile = ManagedClusterPodIdentityProfile(enabled=True) - _ensure_pod_identity_kubenet_consent( - network_profile, pod_identity_profile, enable_pod_identity_with_kubenet) - - enable_rbac = True - if disable_rbac: - enable_rbac = False - - auto_upgrade_profile = None - if auto_upgrade_channel is not None: - auto_upgrade_profile = ManagedClusterAutoUpgradeProfile( - upgrade_channel=auto_upgrade_channel) - - mc = ManagedCluster( - location=location, tags=tags, - dns_prefix=dns_name_prefix, - kubernetes_version=kubernetes_version, - enable_rbac=enable_rbac, - agent_pool_profiles=[agent_pool_profile], - linux_profile=linux_profile, - windows_profile=windows_profile, - service_principal_profile=service_principal_profile, - network_profile=network_profile, - addon_profiles=addon_profiles, - aad_profile=aad_profile, - auto_scaler_profile=cluster_autoscaler_profile, - enable_pod_security_policy=bool(enable_pod_security_policy), - identity=identity, - disk_encryption_set_id=node_osdisk_diskencryptionset_id, - api_server_access_profile=api_server_access_profile, - auto_upgrade_profile=auto_upgrade_profile, - pod_identity_profile=pod_identity_profile, - identity_profile=identity_profile, - disable_local_accounts=bool(disable_local_accounts)) - - if node_resource_group: - mc.node_resource_group = node_resource_group - - use_custom_private_dns_zone = False - if not enable_private_cluster and disable_public_fqdn: - raise ArgumentUsageError("--disable_public_fqdn should only be used with --enable-private-cluster") - if enable_private_cluster: - if load_balancer_sku.lower() != "standard": - raise ArgumentUsageError( - "Please use standard load balancer for private cluster") - mc.api_server_access_profile = ManagedClusterAPIServerAccessProfile( - enable_private_cluster=True - ) - if disable_public_fqdn: - mc.api_server_access_profile.enable_private_cluster_public_fqdn = False - - if private_dns_zone: - if not enable_private_cluster: - raise ArgumentUsageError( - "Invalid private dns zone for public cluster. It should always be empty for public cluster") - mc.api_server_access_profile.private_dns_zone = private_dns_zone - from msrestazure.tools import is_valid_resource_id - if private_dns_zone.lower() != CONST_PRIVATE_DNS_ZONE_SYSTEM and private_dns_zone.lower() != CONST_PRIVATE_DNS_ZONE_NONE: - if is_valid_resource_id(private_dns_zone): - use_custom_private_dns_zone = True - else: - raise ResourceNotFoundError(private_dns_zone + " is not a valid Azure resource ID.") - - if fqdn_subdomain: - if not use_custom_private_dns_zone: - raise ArgumentUsageError( - "--fqdn-subdomain should only be used for private cluster with custom private dns zone") - mc.fqdn_subdomain = fqdn_subdomain - - if http_proxy_config: - mc.http_proxy_config = _get_http_proxy_config(http_proxy_config) - - if uptime_sla: - mc.sku = ManagedClusterSKU( - name="Basic", - tier="Paid" - ) - - headers = get_aks_custom_headers(aks_custom_headers) - - # Due to SPN replication latency, we do a few retries here - max_retry = 30 - retry_exception = Exception(None) - for _ in range(0, max_retry): - try: - if monitoring and enable_msi_auth_for_monitoring: - # Creating a DCR Association (for the monitoring addon) requires waiting for cluster creation to finish - no_wait = False - - created_cluster = _put_managed_cluster_ensuring_permission( - cmd, - client, - subscription_id, - resource_group_name, - name, - mc, - monitoring, - ingress_appgw_addon_enabled, - enable_virtual_node, - need_post_creation_vnet_permission_granting, - vnet_subnet_id, - enable_managed_identity, - attach_acr, - headers, - no_wait) - - if monitoring and enable_msi_auth_for_monitoring: - # Create the DCR Association here - ensure_container_insights_for_monitoring(cmd, - addon_profiles[CONST_MONITORING_ADDON_NAME], subscription_id, - resource_group_name, name, location, - aad_route=enable_msi_auth_for_monitoring, create_dcr=False, - create_dcra=True) - - return created_cluster - except CloudError as ex: - retry_exception = ex - if 'not found in Active Directory tenant' in ex.message: - time.sleep(3) - else: - raise ex - raise retry_exception + try: + # construct mc profile + mc = aks_create_decorator.construct_mc_preview_profile() + except DecoratorEarlyExitException: + # exit gracefully + return None + # send request to create a real managed cluster + return aks_create_decorator.create_mc_preview(mc) def aks_update(cmd, # pylint: disable=too-many-statements,too-many-branches,too-many-locals @@ -1271,6 +790,7 @@ def aks_update(cmd, # pylint: disable=too-many-statements,too-many-branches, cluster_autoscaler_profile=None, min_count=None, max_count=None, no_wait=False, load_balancer_managed_outbound_ip_count=None, + load_balancer_managed_outbound_ipv6_count=None, load_balancer_outbound_ips=None, load_balancer_outbound_ip_prefixes=None, load_balancer_outbound_ports=None, @@ -1316,6 +836,7 @@ def aks_update(cmd, # pylint: disable=too-many-statements,too-many-branches, update_acr = attach_acr is not None or detach_acr is not None update_pod_security = enable_pod_security_policy or disable_pod_security_policy update_lb_profile = is_load_balancer_profile_provided(load_balancer_managed_outbound_ip_count, + load_balancer_managed_outbound_ipv6_count, load_balancer_outbound_ips, load_balancer_outbound_ip_prefixes, load_balancer_outbound_ports, @@ -1469,6 +990,7 @@ def aks_update(cmd, # pylint: disable=too-many-statements,too-many-branches, if update_lb_profile: instance.network_profile.load_balancer_profile = update_load_balancer_profile( load_balancer_managed_outbound_ip_count, + load_balancer_managed_outbound_ipv6_count, load_balancer_outbound_ips, load_balancer_outbound_ip_prefixes, load_balancer_outbound_ports, @@ -3653,7 +3175,7 @@ def _fill_defaults_for_pod_identity_exceptions(pod_identity_exceptions): if exc.pod_labels is None: # in previous version, we accidentally allowed user to specify empty pod labels, # which will be converted to `None` in response. This behavior will break the extension - # when using 2021-09-01 version. As a workaround, we always back fill the empty dict value + # when using 2021-10-01 version. As a workaround, we always back fill the empty dict value # before sending to the server side. exc.pod_labels = dict() @@ -3928,14 +3450,14 @@ def aks_snapshot_create(cmd, # pylint: disable=too-many-locals,too-many-state ) snapshot = Snapshot( - name=_trim_nodepoolname(name), + name=name, tags=tags, location=location, creation_data=creationData ) headers = get_aks_custom_headers(aks_custom_headers) - return client.create_or_update(resource_group_name, _trim_nodepoolname(name), snapshot, headers=headers) + return client.create_or_update(resource_group_name, name, snapshot, headers=headers) def aks_snapshot_show(cmd, client, resource_group_name, name): # pylint: disable=unused-argument diff --git a/src/aks-preview/azext_aks_preview/decorator.py b/src/aks-preview/azext_aks_preview/decorator.py index 59fcb4dc639..dc29820bf17 100644 --- a/src/aks-preview/azext_aks_preview/decorator.py +++ b/src/aks-preview/azext_aks_preview/decorator.py @@ -25,6 +25,7 @@ InvalidArgumentValueError, MutuallyExclusiveArgumentError, RequiredArgumentMissingError, + UnknownError, ) from azure.cli.core.commands import AzCliCommand from azure.cli.core.profiles import ResourceType @@ -42,8 +43,13 @@ from azext_aks_preview._natgateway import create_nat_gateway_profile from azext_aks_preview.addonconfiguration import ( ensure_container_insights_for_monitoring, + ensure_default_log_analytics_workspace_for_monitoring, ) from azext_aks_preview.custom import _get_snapshot +from azext_aks_preview._loadbalancer import ( + update_load_balancer_profile as _update_load_balancer_profile, + create_load_balancer_profile, +) logger = get_logger(__name__) @@ -435,24 +441,78 @@ def get_nat_gateway_idle_timeout(self) -> Union[int, None]: # this parameter does not need validation return nat_gateway_idle_timeout - def get_enable_pod_security_policy(self) -> bool: - """Obtain the value of enable_pod_security_policy. + # pylint: disable=unused-argument + def _get_enable_pod_security_policy(self, enable_validation: bool = False, **kwargs) -> bool: + """Internal function to obtain the value of enable_pod_security_policy. + + This function supports the option of enable_validation. When enabled, if both enable_pod_security_policy and + disable_pod_security_policy are specified, raise a MutuallyExclusiveArgumentError. :return: bool """ # read the original value passed by the command enable_pod_security_policy = self.raw_param.get("enable_pod_security_policy") - # try to read the property value corresponding to the parameter from the `mc` object - if ( - self.mc and - self.mc.enable_pod_security_policy is not None - ): - enable_pod_security_policy = self.mc.enable_pod_security_policy + # In create mode, try to read the property value corresponding to the parameter from the `mc` object. + if self.decorator_mode == DecoratorMode.CREATE: + if ( + self.mc and + self.mc.enable_pod_security_policy is not None + ): + enable_pod_security_policy = self.mc.enable_pod_security_policy # this parameter does not need dynamic completion - # this parameter does not need validation + # validation + if enable_validation: + if enable_pod_security_policy and self._get_disable_pod_security_policy(enable_validation=False): + raise MutuallyExclusiveArgumentError( + "Cannot specify --enable-pod-security-policy and " + "--disable-pod-security-policy at the same time." + ) return enable_pod_security_policy + def get_enable_pod_security_policy(self) -> bool: + """Obtain the value of enable_pod_security_policy. + + This function will verify the parameter by default. If both enable_pod_security_policy and + disable_pod_security_policy are specified, raise a MutuallyExclusiveArgumentError. + + :return: bool + """ + return self._get_enable_pod_security_policy(enable_validation=True) + + # pylint: disable=unused-argument + def _get_disable_pod_security_policy(self, enable_validation: bool = False, **kwargs) -> bool: + """Internal function to obtain the value of disable_pod_security_policy. + + This function supports the option of enable_validation. When enabled, if both enable_pod_security_policy and + disable_pod_security_policy are specified, raise a MutuallyExclusiveArgumentError. + + :return: bool + """ + # read the original value passed by the command + disable_pod_security_policy = self.raw_param.get("disable_pod_security_policy") + # We do not support this option in create mode, therefore we do not read the value from `mc`. + + # this parameter does not need dynamic completion + # validation + if enable_validation: + if disable_pod_security_policy and self._get_enable_pod_security_policy(enable_validation=False): + raise MutuallyExclusiveArgumentError( + "Cannot specify --enable-pod-security-policy and " + "--disable-pod-security-policy at the same time." + ) + return disable_pod_security_policy + + def get_disable_pod_security_policy(self) -> bool: + """Obtain the value of disable_pod_security_policy. + + This function will verify the parameter by default. If both enable_pod_security_policy and + disable_pod_security_policy are specified, raise a MutuallyExclusiveArgumentError. + + :return: bool + """ + return self._get_disable_pod_security_policy(enable_validation=True) + # pylint: disable=unused-argument def _get_enable_managed_identity( self, enable_validation: bool = False, read_only: bool = False, **kwargs @@ -671,6 +731,135 @@ def get_no_wait(self) -> bool: no_wait = False return no_wait + # TOOD: may remove this function after the fix for the internal function get merged and released + # pylint: disable=unused-argument + def _get_workspace_resource_id( + self, enable_validation: bool = False, read_only: bool = False, **kwargs + ) -> Union[str, None]: # pragma: no cover + """Internal function to dynamically obtain the value of workspace_resource_id according to the context. + + Note: Overwritten in aks-preview to replace the internal function. + + When workspace_resource_id is not assigned, dynamic completion will be triggerd. Function + "ensure_default_log_analytics_workspace_for_monitoring" will be called to create a workspace with + subscription_id and resource_group_name, which internally used ResourceManagementClient to send the request. + + This function supports the option of enable_validation. When enabled, it will check if workspace_resource_id is + assigned but 'monitoring' is not specified in enable_addons, if so, raise a RequiredArgumentMissingError. + This function supports the option of read_only. When enabled, it will skip dynamic completion and validation. + + :return: string or None + """ + # determine the value of constants + addon_consts = self.get_addon_consts() + CONST_MONITORING_ADDON_NAME = addon_consts.get("CONST_MONITORING_ADDON_NAME") + CONST_MONITORING_LOG_ANALYTICS_WORKSPACE_RESOURCE_ID = addon_consts.get( + "CONST_MONITORING_LOG_ANALYTICS_WORKSPACE_RESOURCE_ID" + ) + + # read the original value passed by the command + workspace_resource_id = self.raw_param.get("workspace_resource_id") + # try to read the property value corresponding to the parameter from the `mc` object + read_from_mc = False + if ( + self.mc and + self.mc.addon_profiles and + CONST_MONITORING_ADDON_NAME in self.mc.addon_profiles and + self.mc.addon_profiles.get( + CONST_MONITORING_ADDON_NAME + ).config.get(CONST_MONITORING_LOG_ANALYTICS_WORKSPACE_RESOURCE_ID) is not None + ): + workspace_resource_id = self.mc.addon_profiles.get( + CONST_MONITORING_ADDON_NAME + ).config.get(CONST_MONITORING_LOG_ANALYTICS_WORKSPACE_RESOURCE_ID) + read_from_mc = True + + # skip dynamic completion & validation if option read_only is specified + if read_only: + return workspace_resource_id + + # dynamic completion + if not read_from_mc: + if workspace_resource_id is None: + # use default workspace if exists else create default workspace + workspace_resource_id = ( + ensure_default_log_analytics_workspace_for_monitoring( + self.cmd, + self.get_subscription_id(), + self.get_resource_group_name(), + ) + ) + # normalize + workspace_resource_id = "/" + workspace_resource_id.strip(" /") + + # validation + if enable_validation: + enable_addons = self._get_enable_addons(enable_validation=False) + if workspace_resource_id and "monitoring" not in enable_addons: + raise RequiredArgumentMissingError( + '"--workspace-resource-id" requires "--enable-addons monitoring".') + + # this parameter does not need validation + return workspace_resource_id + + def get_pod_cidrs_and_service_cidrs_and_ip_families(self) -> Tuple[ + Union[List[str], None], + Union[List[str], None], + Union[List[str], None], + ]: + return self.get_pod_cidrs(), self.get_service_cidrs(), self.get_ip_families() + + def get_ip_families(self) -> Union[List[str], None]: + """IPFamilies used for the cluster network. + + :return: List[str] or None + """ + return self._get_list_attr('ip_families') + + def get_pod_cidrs(self) -> Union[List[str], None]: + """Obtain the CIDR ranges used for pod subnets. + + :return: List[str] or None + """ + return self._get_list_attr('pod_cidrs') + + def get_service_cidrs(self) -> Union[List[str], None]: + """Obtain the CIDR ranges for the service subnet. + + :return: List[str] or None + """ + return self._get_list_attr('service_cidrs') + + def _get_list_attr(self, param_key) -> Union[List[str], None]: + param = self.raw_param.get(param_key) + + if param is not None: + return param.split(',') if param else [] + + return None + + def get_load_balancer_managed_outbound_ipv6_count(self) -> Union[int, None]: + """Obtain the expected count of IPv6 managed outbound IPs. + + :return: int or None + """ + count_ipv6 = self.raw_param.get( + 'load_balancer_managed_outbound_ipv6_count') + + if self.decorator_mode == DecoratorMode.CREATE: + if ( + self.mc and + self.mc.network_profile and + self.mc.network_profile.load_balancer_profile and + self.mc.network_profile.load_balancer_profile.managed_outbound_i_ps and + self.mc.network_profile.load_balancer_profile.managed_outbound_i_ps.count_ipv6 is not None + ): + count_ipv6 = ( + self.mc.network_profile.load_balancer_profile.managed_outbound_i_ps.count_ipv6 + ) + + return count_ipv6 + # pylint: disable=unused-argument def _get_outbound_type( self, @@ -681,7 +870,7 @@ def _get_outbound_type( ) -> Union[str, None]: """Internal function to dynamically obtain the value of outbound_type according to the context. - Note: Inherited and extended in aks-preview to add support for the newly added nat related constants. + Note: Overwritten in aks-preview to add support for the newly added nat related constants. Note: All the external parameters involved in the validation are not verified in their own getters. @@ -826,15 +1015,16 @@ def _get_enable_windows_gmsa(self, enable_validation: bool = False, **kwargs) -> """ # read the original value passed by the command enable_windows_gmsa = self.raw_param.get("enable_windows_gmsa") - # try to read the property value corresponding to the parameter from the `mc` object - if ( - self.mc and - self.mc.windows_profile and - hasattr(self.mc.windows_profile, "gmsa_profile") and # backward compatibility - self.mc.windows_profile.gmsa_profile and - self.mc.windows_profile.gmsa_profile.enabled is not None - ): - enable_windows_gmsa = self.mc.windows_profile.gmsa_profile.enabled + # In create mode, try to read the property value corresponding to the parameter from the `mc` object. + if self.decorator_mode == DecoratorMode.CREATE: + if ( + self.mc and + self.mc.windows_profile and + hasattr(self.mc.windows_profile, "gmsa_profile") and # backward compatibility + self.mc.windows_profile.gmsa_profile and + self.mc.windows_profile.gmsa_profile.enabled is not None + ): + enable_windows_gmsa = self.mc.windows_profile.gmsa_profile.enabled # this parameter does not need dynamic completion # validation @@ -876,32 +1066,34 @@ def _get_gmsa_dns_server_and_root_domain_name(self, enable_validation: bool = Fa # gmsa_dns_server # read the original value passed by the command gmsa_dns_server = self.raw_param.get("gmsa_dns_server") - # try to read the property value corresponding to the parameter from the `mc` object + # In create mode, try to read the property value corresponding to the parameter from the `mc` object. gmsa_dns_read_from_mc = False - if ( - self.mc and - self.mc.windows_profile and - hasattr(self.mc.windows_profile, "gmsa_profile") and # backward compatibility - self.mc.windows_profile.gmsa_profile and - self.mc.windows_profile.gmsa_profile.dns_server is not None - ): - gmsa_dns_server = self.mc.windows_profile.gmsa_profile.dns_server - gmsa_dns_read_from_mc = True + if self.decorator_mode == DecoratorMode.CREATE: + if ( + self.mc and + self.mc.windows_profile and + hasattr(self.mc.windows_profile, "gmsa_profile") and # backward compatibility + self.mc.windows_profile.gmsa_profile and + self.mc.windows_profile.gmsa_profile.dns_server is not None + ): + gmsa_dns_server = self.mc.windows_profile.gmsa_profile.dns_server + gmsa_dns_read_from_mc = True # gmsa_root_domain_name # read the original value passed by the command gmsa_root_domain_name = self.raw_param.get("gmsa_root_domain_name") - # try to read the property value corresponding to the parameter from the `mc` object + # In create mode, try to read the property value corresponding to the parameter from the `mc` object. gmsa_root_read_from_mc = False - if ( - self.mc and - self.mc.windows_profile and - hasattr(self.mc.windows_profile, "gmsa_profile") and # backward compatibility - self.mc.windows_profile.gmsa_profile and - self.mc.windows_profile.gmsa_profile.root_domain_name is not None - ): - gmsa_root_domain_name = self.mc.windows_profile.gmsa_profile.root_domain_name - gmsa_root_read_from_mc = True + if self.decorator_mode == DecoratorMode.CREATE: + if ( + self.mc and + self.mc.windows_profile and + hasattr(self.mc.windows_profile, "gmsa_profile") and # backward compatibility + self.mc.windows_profile.gmsa_profile and + self.mc.windows_profile.gmsa_profile.root_domain_name is not None + ): + gmsa_root_domain_name = self.mc.windows_profile.gmsa_profile.root_domain_name + gmsa_root_read_from_mc = True # consistent check if gmsa_dns_read_from_mc != gmsa_root_read_from_mc: @@ -1229,6 +1421,49 @@ def set_up_network_profile(self, mc: ManagedCluster) -> ManagedCluster: mc = super().set_up_network_profile(mc) network_profile = mc.network_profile + ( + pod_cidr, + service_cidr, + dns_service_ip, + _, + _, + ) = self.context._get_pod_cidr_and_service_cidr_and_dns_service_ip_and_docker_bridge_address_and_network_policy(enable_validation=False) + + ( + pod_cidrs, + service_cidrs, + ip_families + ) = self.context.get_pod_cidrs_and_service_cidrs_and_ip_families() + + # set dns_service_ip, pod_cidr(s), service(s) with user provided values if + # of them are set. Largely follows the base function which will potentially + # overwrite default SDK values. + if any([ + dns_service_ip, + pod_cidr, + pod_cidrs, + service_cidr, + service_cidrs, + ]): + network_profile.dns_service_ip = dns_service_ip + network_profile.pod_cidr = pod_cidr + network_profile.pod_cidrs = pod_cidrs + network_profile.service_cidr = service_cidr + network_profile.service_cidrs = service_cidrs + + if ip_families: + network_profile.ip_families = ip_families + + if self.context.get_load_balancer_managed_outbound_ipv6_count() is not None: + network_profile.load_balancer_profile = create_load_balancer_profile( + self.context.get_load_balancer_managed_outbound_ip_count(), + self.context.get_load_balancer_managed_outbound_ipv6_count(), + self.context.get_load_balancer_outbound_ips(), + self.context.get_load_balancer_outbound_ip_prefixes(), + self.context.get_load_balancer_outbound_ports(), + self.context.get_load_balancer_idle_timeout(), + ) + # build nat gateway profile, which is part of the network profile nat_gateway_profile = create_nat_gateway_profile( self.context.get_nat_gateway_managed_outbound_ip_count(), @@ -1393,7 +1628,7 @@ def set_up_windows_profile(self, mc: ManagedCluster) -> ManagedCluster: mc.windows_profile = windows_profile return mc - def construct_preview_mc_profile(self) -> ManagedCluster: + def construct_mc_preview_profile(self) -> ManagedCluster: """The overall controller used to construct the preview ManagedCluster profile. The completely constructed ManagedCluster object will later be passed as a parameter to the underlying SDK @@ -1413,7 +1648,7 @@ def construct_preview_mc_profile(self) -> ManagedCluster: mc = self.set_up_pod_identity_profile(mc) return mc - def create_mc(self, mc: ManagedCluster) -> ManagedCluster: + def create_mc_preview(self, mc: ManagedCluster) -> ManagedCluster: """Send request to create a real managed cluster. Note: Inherited and extended in aks-preview to create dcr association for monitoring addon if @@ -1483,3 +1718,105 @@ def __init__( self.models, decorator_mode=DecoratorMode.UPDATE, ) + + def update_load_balancer_profile(self, mc: ManagedCluster) -> ManagedCluster: + """Update load balancer profile for the ManagedCluster object. + + Note: Inherited and extended in aks-preview to set dual stack related properties. + + :return: the ManagedCluster object + """ + existing_managed_outbound_ips = None + if ( + mc and + mc.network_profile and + mc.network_profile.load_balancer_profile and + mc.network_profile.load_balancer_profile.managed_outbound_i_ps + ): + existing_managed_outbound_ips = mc.network_profile.load_balancer_profile.managed_outbound_i_ps + + mc = super().update_load_balancer_profile(mc) + + lb_managed_outbound_ipv6_count = self.context.get_load_balancer_managed_outbound_ipv6_count() + lb_managed_outbound_ip_count = self.context.get_load_balancer_managed_outbound_ip_count() + lb_outbound_ips = self.context.get_load_balancer_outbound_ips() + lb_outbound_ip_prefixes = self.context.get_load_balancer_outbound_ip_prefixes() + lb_outbound_ports = self.context.get_load_balancer_outbound_ports() + lb_idle_timeout = self.context.get_load_balancer_idle_timeout() + + if ( + not lb_outbound_ips and + not lb_outbound_ip_prefixes and + existing_managed_outbound_ips + ): + if not lb_managed_outbound_ip_count: + lb_managed_outbound_ip_count = existing_managed_outbound_ips.count + if not lb_managed_outbound_ipv6_count: + lb_managed_outbound_ipv6_count = existing_managed_outbound_ips.count_ipv6 + + mc.network_profile.load_balancer_profile = _update_load_balancer_profile( + lb_managed_outbound_ip_count, + lb_managed_outbound_ipv6_count, + lb_outbound_ips, + lb_outbound_ip_prefixes, + lb_outbound_ports, + lb_idle_timeout, + mc.network_profile.load_balancer_profile + ) + return mc + + def update_pod_security_policy(self, mc: ManagedCluster) -> ManagedCluster: + """Update pod security policy for the ManagedCluster object. + + :return: the ManagedCluster object + """ + self._ensure_mc(mc) + + if self.context.get_enable_pod_security_policy(): + mc.enable_pod_security_policy = True + + if self.context.get_disable_pod_security_policy(): + mc.enable_pod_security_policy = False + return mc + + def update_windows_profile(self, mc: ManagedCluster) -> ManagedCluster: + """Update windows profile for the ManagedCluster object. + + Note: Inherited and extended in aks-preview to set gmsa related properties. + + :return: the ManagedCluster object + """ + mc = super().update_windows_profile(mc) + windows_profile = mc.windows_profile + + if self.context.get_enable_windows_gmsa(): + if not windows_profile: + raise UnknownError( + "Encounter an unexpected error while getting windows profile " + "from the cluster in the process of update." + ) + gmsa_dns_server, gmsa_root_domain_name = self.context.get_gmsa_dns_server_and_root_domain_name() + windows_profile.gmsa_profile = self.models.WindowsGmsaProfile( + enabled=True, + dns_server=gmsa_dns_server, + root_domain_name=gmsa_root_domain_name, + ) + return mc + + def update_mc_preview_profile(self) -> ManagedCluster: + """The overall controller used to update the preview ManagedCluster profile. + + Note: To reduce the risk of regression introduced by refactoring, this function is not complete and is being + implemented gradually. + + The completely updated ManagedCluster object will later be passed as a parameter to the underlying SDK + (mgmt-containerservice) to send the actual request. + + :return: the ManagedCluster object + """ + + def update_mc_preview(self, mc: ManagedCluster) -> ManagedCluster: + """Send request to update the existing managed cluster. + + :return: the ManagedCluster object + """ diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recording_processors.py b/src/aks-preview/azext_aks_preview/tests/latest/recording_processors.py index 78526209c05..90fbd9131e0 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recording_processors.py +++ b/src/aks-preview/azext_aks_preview/tests/latest/recording_processors.py @@ -3,8 +3,8 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -from azure_devtools.scenario_tests import RecordingProcessor -from azure_devtools.scenario_tests.utilities import is_text_payload +from azure.cli.testsdk.scenario_tests import RecordingProcessor +from azure.cli.testsdk.scenario_tests.utilities import is_text_payload MOCK_GUID = '00000000-0000-0000-0000-000000000001' MOCK_SECRET = 'fake-secret' diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_confcom_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_confcom_addon.yaml old mode 100755 new mode 100644 index d820679d341..ca45c49017a --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_confcom_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_confcom_addon.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:57:29Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T15:53:18Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 06:57:30 GMT + - Wed, 01 Dec 2021 15:53:19 GMT expires: - '-1' pragma: @@ -43,19 +43,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesty5ruuws5q-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestv3wtf64tw-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": - {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "enableRBAC": - true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": - "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": - "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": + true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "enableRBAC": true, + "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", + "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -66,38 +67,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1479' + - '1836' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesty5ruuws5q-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesty5ruuws5q-8ecadf-15743466.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesty5ruuws5q-8ecadf-15743466.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestv3wtf64tw-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestv3wtf64tw-8ecadf-eb0ebfd9.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestv3wtf64tw-8ecadf-eb0ebfd9.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n }\n },\n \"nodeResourceGroup\": @@ -107,22 +109,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cff977b-a96e-486d-9896-efb66a414a79?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a6595d5-459c-4e56-8892-f3579c5621c2?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2928' + - '3386' content-type: - application/json date: - - Tue, 19 Oct 2021 06:57:33 GMT + - Wed, 01 Dec 2021 15:53:25 GMT expires: - '-1' pragma: @@ -134,7 +137,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 201 message: Created @@ -152,14 +155,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cff977b-a96e-486d-9896-efb66a414a79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a6595d5-459c-4e56-8892-f3579c5621c2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7b97ff3c-6ea9-6d48-9896-efb66a414a79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:57:32.8233333Z\"\n }" + string: "{\n \"name\": \"d595657a-9c45-564e-8892-f3579c5621c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:53:24.6933333Z\"\n }" headers: cache-control: - no-cache @@ -168,7 +171,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:58:02 GMT + - Wed, 01 Dec 2021 15:53:54 GMT expires: - '-1' pragma: @@ -200,14 +203,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cff977b-a96e-486d-9896-efb66a414a79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a6595d5-459c-4e56-8892-f3579c5621c2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7b97ff3c-6ea9-6d48-9896-efb66a414a79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:57:32.8233333Z\"\n }" + string: "{\n \"name\": \"d595657a-9c45-564e-8892-f3579c5621c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:53:24.6933333Z\"\n }" headers: cache-control: - no-cache @@ -216,7 +219,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:58:32 GMT + - Wed, 01 Dec 2021 15:54:24 GMT expires: - '-1' pragma: @@ -248,14 +251,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cff977b-a96e-486d-9896-efb66a414a79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a6595d5-459c-4e56-8892-f3579c5621c2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7b97ff3c-6ea9-6d48-9896-efb66a414a79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:57:32.8233333Z\"\n }" + string: "{\n \"name\": \"d595657a-9c45-564e-8892-f3579c5621c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:53:24.6933333Z\"\n }" headers: cache-control: - no-cache @@ -264,7 +267,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:59:03 GMT + - Wed, 01 Dec 2021 15:54:55 GMT expires: - '-1' pragma: @@ -296,14 +299,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cff977b-a96e-486d-9896-efb66a414a79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a6595d5-459c-4e56-8892-f3579c5621c2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7b97ff3c-6ea9-6d48-9896-efb66a414a79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:57:32.8233333Z\"\n }" + string: "{\n \"name\": \"d595657a-9c45-564e-8892-f3579c5621c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:53:24.6933333Z\"\n }" headers: cache-control: - no-cache @@ -312,7 +315,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:59:33 GMT + - Wed, 01 Dec 2021 15:55:25 GMT expires: - '-1' pragma: @@ -344,63 +347,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cff977b-a96e-486d-9896-efb66a414a79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a6595d5-459c-4e56-8892-f3579c5621c2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7b97ff3c-6ea9-6d48-9896-efb66a414a79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:57:32.8233333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:00:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --ssh-key-value -a -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cff977b-a96e-486d-9896-efb66a414a79?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"7b97ff3c-6ea9-6d48-9896-efb66a414a79\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:57:32.8233333Z\",\n \"endTime\": - \"2021-10-19T07:00:31.5819749Z\"\n }" + string: "{\n \"name\": \"d595657a-9c45-564e-8892-f3579c5621c2\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:53:24.6933333Z\",\n \"endTime\": + \"2021-12-01T15:55:38.5008469Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +364,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:00:32 GMT + - Wed, 01 Dec 2021 15:55:55 GMT expires: - '-1' pragma: @@ -441,32 +396,33 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesty5ruuws5q-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesty5ruuws5q-8ecadf-15743466.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesty5ruuws5q-8ecadf-15743466.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestv3wtf64tw-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestv3wtf64tw-8ecadf-eb0ebfd9.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestv3wtf64tw-8ecadf-eb0ebfd9.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n },\n \"identity\": @@ -476,26 +432,28 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e71153a6-5638-4cff-9dc4-b07b0fdd67f1\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/be8fe2a9-f3b5-48af-9ab9-75ee4b36e601\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3964' + - '4422' content-type: - application/json date: - - Tue, 19 Oct 2021 07:00:33 GMT + - Wed, 01 Dec 2021 15:55:55 GMT expires: - '-1' pragma: @@ -527,32 +485,33 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesty5ruuws5q-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesty5ruuws5q-8ecadf-15743466.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesty5ruuws5q-8ecadf-15743466.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestv3wtf64tw-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestv3wtf64tw-8ecadf-eb0ebfd9.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestv3wtf64tw-8ecadf-eb0ebfd9.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n },\n \"identity\": @@ -562,26 +521,28 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e71153a6-5638-4cff-9dc4-b07b0fdd67f1\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/be8fe2a9-f3b5-48af-9ab9-75ee4b36e601\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3964' + - '4422' content-type: - application/json date: - - Tue, 19 Oct 2021 07:00:34 GMT + - Wed, 01 Dec 2021 15:55:57 GMT expires: - '-1' pragma: @@ -602,24 +563,25 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitesty5ruuws5q-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestv3wtf64tw-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": - {"enabled": false}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": + false}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e71153a6-5638-4cff-9dc4-b07b0fdd67f1"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/be8fe2a9-f3b5-48af-9ab9-75ee4b36e601"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -630,66 +592,69 @@ interactions: Connection: - keep-alive Content-Length: - - '2324' + - '2735' Content-Type: - application/json ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesty5ruuws5q-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesty5ruuws5q-8ecadf-15743466.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesty5ruuws5q-8ecadf-15743466.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestv3wtf64tw-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestv3wtf64tw-8ecadf-eb0ebfd9.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestv3wtf64tw-8ecadf-eb0ebfd9.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": false,\n \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e71153a6-5638-4cff-9dc4-b07b0fdd67f1\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/be8fe2a9-f3b5-48af-9ab9-75ee4b36e601\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ea73b7c-c48b-49c2-81e2-32de3cbc04b6?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7565b804-7508-464d-b9e9-6cf471a2bc0b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3544' + - '4002' content-type: - application/json date: - - Tue, 19 Oct 2021 07:00:36 GMT + - Wed, 01 Dec 2021 15:56:00 GMT expires: - '-1' pragma: @@ -705,7 +670,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -723,14 +688,14 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ea73b7c-c48b-49c2-81e2-32de3cbc04b6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7565b804-7508-464d-b9e9-6cf471a2bc0b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7c3ba73e-8bc4-c249-81e2-32de3cbc04b6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:00:36.9933333Z\"\n }" + string: "{\n \"name\": \"04b86575-0875-4d46-b9e9-6cf471a2bc0b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:56:00.5233333Z\"\n }" headers: cache-control: - no-cache @@ -739,7 +704,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:07 GMT + - Wed, 01 Dec 2021 15:56:30 GMT expires: - '-1' pragma: @@ -771,24 +736,23 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ea73b7c-c48b-49c2-81e2-32de3cbc04b6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7565b804-7508-464d-b9e9-6cf471a2bc0b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7c3ba73e-8bc4-c249-81e2-32de3cbc04b6\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:00:36.9933333Z\",\n \"endTime\": - \"2021-10-19T07:01:36.47411Z\"\n }" + string: "{\n \"name\": \"04b86575-0875-4d46-b9e9-6cf471a2bc0b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:56:00.5233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '168' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:37 GMT + - Wed, 01 Dec 2021 15:57:01 GMT expires: - '-1' pragma: @@ -820,58 +784,110 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7565b804-7508-464d-b9e9-6cf471a2bc0b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"04b86575-0875-4d46-b9e9-6cf471a2bc0b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:56:00.5233333Z\",\n \"endTime\": + \"2021-12-01T15:57:06.0793972Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 15:57:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks addon disable + Connection: + - keep-alive + ParameterSetName: + - --addon --resource-group --name -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesty5ruuws5q-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesty5ruuws5q-8ecadf-15743466.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesty5ruuws5q-8ecadf-15743466.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestv3wtf64tw-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestv3wtf64tw-8ecadf-eb0ebfd9.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestv3wtf64tw-8ecadf-eb0ebfd9.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": false,\n \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e71153a6-5638-4cff-9dc4-b07b0fdd67f1\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/be8fe2a9-f3b5-48af-9ab9-75ee4b36e601\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3546' + - '4004' content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:37 GMT + - Wed, 01 Dec 2021 15:57:31 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_openservicemesh.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_openservicemesh.yaml old mode 100755 new mode 100644 index a1d87c3335c..9dd10ad8e17 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_openservicemesh.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_disable_openservicemesh.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:01:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T15:34:45Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:01:03 GMT + - Wed, 01 Dec 2021 15:34:45 GMT expires: - '-1' pragma: @@ -43,19 +43,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest2bjakphws-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest4hgw3mdwy-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": - {"enabled": true, "config": {}}}, "enableRBAC": true, "enablePodSecurityPolicy": - false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": true, + "config": {}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": + "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -66,62 +66,65 @@ interactions: Connection: - keep-alive Content-Length: - - '1441' + - '1798' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest2bjakphws-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest2bjakphws-8ecadf-427382dd.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest2bjakphws-8ecadf-427382dd.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest4hgw3mdwy-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest4hgw3mdwy-8ecadf-dc057f04.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest4hgw3mdwy-8ecadf-dc057f04.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": {}\n + {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null\n \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c65bb271-27ae-413e-a8de-84a1ef2b7863?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8bc43052-458b-490c-908b-c25197823a87?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2877' + - '3337' content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:06 GMT + - Wed, 01 Dec 2021 15:34:50 GMT expires: - '-1' pragma: @@ -151,14 +154,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c65bb271-27ae-413e-a8de-84a1ef2b7863?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8bc43052-458b-490c-908b-c25197823a87?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71b25bc6-ae27-3e41-a8de-84a1ef2b7863\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:01:07.06Z\"\n }" + string: "{\n \"name\": \"5230c48b-8b45-0c49-908b-c25197823a87\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:34:50.48Z\"\n }" headers: cache-control: - no-cache @@ -167,7 +170,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:37 GMT + - Wed, 01 Dec 2021 15:35:20 GMT expires: - '-1' pragma: @@ -199,14 +202,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c65bb271-27ae-413e-a8de-84a1ef2b7863?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8bc43052-458b-490c-908b-c25197823a87?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71b25bc6-ae27-3e41-a8de-84a1ef2b7863\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:01:07.06Z\"\n }" + string: "{\n \"name\": \"5230c48b-8b45-0c49-908b-c25197823a87\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:34:50.48Z\"\n }" headers: cache-control: - no-cache @@ -215,7 +218,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:02:06 GMT + - Wed, 01 Dec 2021 15:35:50 GMT expires: - '-1' pragma: @@ -247,14 +250,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c65bb271-27ae-413e-a8de-84a1ef2b7863?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8bc43052-458b-490c-908b-c25197823a87?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71b25bc6-ae27-3e41-a8de-84a1ef2b7863\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:01:07.06Z\"\n }" + string: "{\n \"name\": \"5230c48b-8b45-0c49-908b-c25197823a87\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:34:50.48Z\"\n }" headers: cache-control: - no-cache @@ -263,7 +266,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:02:36 GMT + - Wed, 01 Dec 2021 15:36:21 GMT expires: - '-1' pragma: @@ -295,14 +298,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c65bb271-27ae-413e-a8de-84a1ef2b7863?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8bc43052-458b-490c-908b-c25197823a87?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71b25bc6-ae27-3e41-a8de-84a1ef2b7863\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:01:07.06Z\"\n }" + string: "{\n \"name\": \"5230c48b-8b45-0c49-908b-c25197823a87\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:34:50.48Z\"\n }" headers: cache-control: - no-cache @@ -311,7 +314,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:03:07 GMT + - Wed, 01 Dec 2021 15:36:51 GMT expires: - '-1' pragma: @@ -343,14 +346,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c65bb271-27ae-413e-a8de-84a1ef2b7863?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8bc43052-458b-490c-908b-c25197823a87?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71b25bc6-ae27-3e41-a8de-84a1ef2b7863\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:01:07.06Z\"\n }" + string: "{\n \"name\": \"5230c48b-8b45-0c49-908b-c25197823a87\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:34:50.48Z\"\n }" headers: cache-control: - no-cache @@ -359,7 +362,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:03:37 GMT + - Wed, 01 Dec 2021 15:37:21 GMT expires: - '-1' pragma: @@ -391,14 +394,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c65bb271-27ae-413e-a8de-84a1ef2b7863?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8bc43052-458b-490c-908b-c25197823a87?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71b25bc6-ae27-3e41-a8de-84a1ef2b7863\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:01:07.06Z\"\n }" + string: "{\n \"name\": \"5230c48b-8b45-0c49-908b-c25197823a87\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:34:50.48Z\"\n }" headers: cache-control: - no-cache @@ -407,7 +410,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:04:07 GMT + - Wed, 01 Dec 2021 15:37:50 GMT expires: - '-1' pragma: @@ -439,24 +442,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c65bb271-27ae-413e-a8de-84a1ef2b7863?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8bc43052-458b-490c-908b-c25197823a87?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71b25bc6-ae27-3e41-a8de-84a1ef2b7863\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:01:07.06Z\",\n \"endTime\": - \"2021-10-19T07:04:32.092331Z\"\n }" + string: "{\n \"name\": \"5230c48b-8b45-0c49-908b-c25197823a87\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:34:50.48Z\",\n \"endTime\": + \"2021-12-01T15:38:21.6050236Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '165' content-type: - application/json date: - - Tue, 19 Oct 2021 07:04:37 GMT + - Wed, 01 Dec 2021 15:38:22 GMT expires: - '-1' pragma: @@ -488,60 +491,63 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest2bjakphws-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest2bjakphws-8ecadf-427382dd.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest2bjakphws-8ecadf-427382dd.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest4hgw3mdwy-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest4hgw3mdwy-8ecadf-dc057f04.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest4hgw3mdwy-8ecadf-dc057f04.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": {},\n + {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null,\n \ \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/openservicemesh-cliakstest000002\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ebb23df4-78e4-4b0c-889b-758ecb1e4e96\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cbb35445-a7d9-465b-a261-d78621d4cb5a\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3910' + - '4370' content-type: - application/json date: - - Tue, 19 Oct 2021 07:04:37 GMT + - Wed, 01 Dec 2021 15:38:22 GMT expires: - '-1' pragma: @@ -573,60 +579,63 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest2bjakphws-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest2bjakphws-8ecadf-427382dd.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest2bjakphws-8ecadf-427382dd.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest4hgw3mdwy-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest4hgw3mdwy-8ecadf-dc057f04.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest4hgw3mdwy-8ecadf-dc057f04.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": {},\n + {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null,\n \ \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/openservicemesh-cliakstest000002\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ebb23df4-78e4-4b0c-889b-758ecb1e4e96\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cbb35445-a7d9-465b-a261-d78621d4cb5a\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3910' + - '4370' content-type: - application/json date: - - Tue, 19 Oct 2021 07:04:38 GMT + - Wed, 01 Dec 2021 15:38:22 GMT expires: - '-1' pragma: @@ -647,24 +656,25 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitest2bjakphws-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitest4hgw3mdwy-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": - {"enabled": false}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": false}}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ebb23df4-78e4-4b0c-889b-758ecb1e4e96"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cbb35445-a7d9-465b-a261-d78621d4cb5a"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -675,66 +685,69 @@ interactions: Connection: - keep-alive Content-Length: - - '2321' + - '2732' Content-Type: - application/json ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest2bjakphws-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest2bjakphws-8ecadf-427382dd.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest2bjakphws-8ecadf-427382dd.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest4hgw3mdwy-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest4hgw3mdwy-8ecadf-dc057f04.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest4hgw3mdwy-8ecadf-dc057f04.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"openServiceMesh\": {\n \"enabled\": false,\n \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ebb23df4-78e4-4b0c-889b-758ecb1e4e96\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cbb35445-a7d9-465b-a261-d78621d4cb5a\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84460ecb-8a8e-4652-a3c6-b16009a0d3b1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74aaaa72-7a13-4fc5-a9c8-978fac25dac8?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3541' + - '3999' content-type: - application/json date: - - Tue, 19 Oct 2021 07:04:40 GMT + - Wed, 01 Dec 2021 15:38:25 GMT expires: - '-1' pragma: @@ -750,7 +763,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 200 message: OK @@ -768,23 +781,23 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84460ecb-8a8e-4652-a3c6-b16009a0d3b1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74aaaa72-7a13-4fc5-a9c8-978fac25dac8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cb0e4684-8e8a-5246-a3c6-b16009a0d3b1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:04:40.5466666Z\"\n }" + string: "{\n \"name\": \"72aaaa74-137a-c54f-a9c8-978fac25dac8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:38:26.28Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:05:10 GMT + - Wed, 01 Dec 2021 15:38:56 GMT expires: - '-1' pragma: @@ -816,23 +829,23 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84460ecb-8a8e-4652-a3c6-b16009a0d3b1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74aaaa72-7a13-4fc5-a9c8-978fac25dac8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cb0e4684-8e8a-5246-a3c6-b16009a0d3b1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:04:40.5466666Z\"\n }" + string: "{\n \"name\": \"72aaaa74-137a-c54f-a9c8-978fac25dac8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:38:26.28Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:05:40 GMT + - Wed, 01 Dec 2021 15:39:26 GMT expires: - '-1' pragma: @@ -864,24 +877,24 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84460ecb-8a8e-4652-a3c6-b16009a0d3b1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74aaaa72-7a13-4fc5-a9c8-978fac25dac8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cb0e4684-8e8a-5246-a3c6-b16009a0d3b1\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:04:40.5466666Z\",\n \"endTime\": - \"2021-10-19T07:05:43.0376724Z\"\n }" + string: "{\n \"name\": \"72aaaa74-137a-c54f-a9c8-978fac25dac8\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:38:26.28Z\",\n \"endTime\": + \"2021-12-01T15:39:57.1041924Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:09 GMT + - Wed, 01 Dec 2021 15:39:56 GMT expires: - '-1' pragma: @@ -913,58 +926,61 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest2bjakphws-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest2bjakphws-8ecadf-427382dd.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest2bjakphws-8ecadf-427382dd.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest4hgw3mdwy-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest4hgw3mdwy-8ecadf-dc057f04.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest4hgw3mdwy-8ecadf-dc057f04.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"openServiceMesh\": {\n \"enabled\": false,\n \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ebb23df4-78e4-4b0c-889b-758ecb1e4e96\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cbb35445-a7d9-465b-a261-d78621d4cb5a\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3543' + - '4001' content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:11 GMT + - Wed, 01 Dec 2021 15:39:57 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_confcom_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_confcom_addon.yaml old mode 100755 new mode 100644 index 586ff00ba64..518d3003055 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_confcom_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_confcom_addon.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:55:20Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T15:17:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 06:55:21 GMT + - Wed, 01 Dec 2021 15:17:45 GMT expires: - '-1' pragma: @@ -43,18 +43,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest6rqg2s54j-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestz3usxlc6b-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -65,38 +66,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1391' + - '1748' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6rqg2s54j-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6rqg2s54j-8ecadf-3793c27d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6rqg2s54j-8ecadf-3793c27d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestz3usxlc6b-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestz3usxlc6b-8ecadf-d10f6716.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestz3usxlc6b-8ecadf-d10f6716.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -104,22 +106,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/99af5e26-c51e-4cb7-8a28-c9219cc078cc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7425a277-ebba-46ce-9fde-376b33bb5498?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2778' + - '3236' content-type: - application/json date: - - Tue, 19 Oct 2021 06:55:24 GMT + - Wed, 01 Dec 2021 15:17:49 GMT expires: - '-1' pragma: @@ -131,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -149,62 +152,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/99af5e26-c51e-4cb7-8a28-c9219cc078cc?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"265eaf99-1ec5-b74c-8a28-c9219cc078cc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:55:24.1866666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 06:55:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/99af5e26-c51e-4cb7-8a28-c9219cc078cc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7425a277-ebba-46ce-9fde-376b33bb5498?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"265eaf99-1ec5-b74c-8a28-c9219cc078cc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:55:24.1866666Z\"\n }" + string: "{\n \"name\": \"77a22574-baeb-ce46-9fde-376b33bb5498\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:17:49.8333333Z\"\n }" headers: cache-control: - no-cache @@ -213,7 +168,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:24 GMT + - Wed, 01 Dec 2021 15:18:19 GMT expires: - '-1' pragma: @@ -245,14 +200,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/99af5e26-c51e-4cb7-8a28-c9219cc078cc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7425a277-ebba-46ce-9fde-376b33bb5498?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"265eaf99-1ec5-b74c-8a28-c9219cc078cc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:55:24.1866666Z\"\n }" + string: "{\n \"name\": \"77a22574-baeb-ce46-9fde-376b33bb5498\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:17:49.8333333Z\"\n }" headers: cache-control: - no-cache @@ -261,7 +216,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:54 GMT + - Wed, 01 Dec 2021 15:18:50 GMT expires: - '-1' pragma: @@ -293,14 +248,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/99af5e26-c51e-4cb7-8a28-c9219cc078cc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7425a277-ebba-46ce-9fde-376b33bb5498?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"265eaf99-1ec5-b74c-8a28-c9219cc078cc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:55:24.1866666Z\"\n }" + string: "{\n \"name\": \"77a22574-baeb-ce46-9fde-376b33bb5498\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:17:49.8333333Z\"\n }" headers: cache-control: - no-cache @@ -309,7 +264,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:57:23 GMT + - Wed, 01 Dec 2021 15:19:20 GMT expires: - '-1' pragma: @@ -341,14 +296,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/99af5e26-c51e-4cb7-8a28-c9219cc078cc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7425a277-ebba-46ce-9fde-376b33bb5498?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"265eaf99-1ec5-b74c-8a28-c9219cc078cc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:55:24.1866666Z\"\n }" + string: "{\n \"name\": \"77a22574-baeb-ce46-9fde-376b33bb5498\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:17:49.8333333Z\"\n }" headers: cache-control: - no-cache @@ -357,7 +312,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:57:54 GMT + - Wed, 01 Dec 2021 15:19:50 GMT expires: - '-1' pragma: @@ -389,15 +344,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/99af5e26-c51e-4cb7-8a28-c9219cc078cc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7425a277-ebba-46ce-9fde-376b33bb5498?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"265eaf99-1ec5-b74c-8a28-c9219cc078cc\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:55:24.1866666Z\",\n \"endTime\": - \"2021-10-19T06:58:01.5422471Z\"\n }" + string: "{\n \"name\": \"77a22574-baeb-ce46-9fde-376b33bb5498\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:17:49.8333333Z\",\n \"endTime\": + \"2021-12-01T15:20:14.1980856Z\"\n }" headers: cache-control: - no-cache @@ -406,7 +361,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:58:24 GMT + - Wed, 01 Dec 2021 15:20:20 GMT expires: - '-1' pragma: @@ -438,57 +393,60 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6rqg2s54j-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6rqg2s54j-8ecadf-3793c27d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6rqg2s54j-8ecadf-3793c27d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestz3usxlc6b-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestz3usxlc6b-8ecadf-d10f6716.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestz3usxlc6b-8ecadf-d10f6716.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8b5b8ee7-d708-41de-a537-940d3ab4b3ab\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bee5725a-8bb0-4561-8b97-f2738bdc89cf\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 06:58:25 GMT + - Wed, 01 Dec 2021 15:20:20 GMT expires: - '-1' pragma: @@ -520,57 +478,60 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6rqg2s54j-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6rqg2s54j-8ecadf-3793c27d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6rqg2s54j-8ecadf-3793c27d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestz3usxlc6b-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestz3usxlc6b-8ecadf-d10f6716.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestz3usxlc6b-8ecadf-d10f6716.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8b5b8ee7-d708-41de-a537-940d3ab4b3ab\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bee5725a-8bb0-4561-8b97-f2738bdc89cf\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 06:58:25 GMT + - Wed, 01 Dec 2021 15:20:21 GMT expires: - '-1' pragma: @@ -591,25 +552,26 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitest6rqg2s54j-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestz3usxlc6b-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": - {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "nodeResourceGroup": + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": + true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8b5b8ee7-d708-41de-a537-940d3ab4b3ab"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bee5725a-8bb0-4561-8b97-f2738bdc89cf"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -620,38 +582,39 @@ interactions: Connection: - keep-alive Content-Length: - - '2372' + - '2783' Content-Type: - application/json ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6rqg2s54j-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6rqg2s54j-8ecadf-3793c27d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6rqg2s54j-8ecadf-3793c27d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestz3usxlc6b-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestz3usxlc6b-8ecadf-d10f6716.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestz3usxlc6b-8ecadf-d10f6716.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n }\n },\n \"nodeResourceGroup\": @@ -659,28 +622,30 @@ interactions: \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8b5b8ee7-d708-41de-a537-940d3ab4b3ab\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bee5725a-8bb0-4561-8b97-f2738bdc89cf\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c7eacd3c-84b8-4245-bf97-64f6af27c36d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ec21884-c5ad-43f7-bb28-801be8386b0d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3589' + - '4047' content-type: - application/json date: - - Tue, 19 Oct 2021 06:58:27 GMT + - Wed, 01 Dec 2021 15:20:24 GMT expires: - '-1' pragma: @@ -696,7 +661,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 200 message: OK @@ -714,14 +679,14 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c7eacd3c-84b8-4245-bf97-64f6af27c36d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ec21884-c5ad-43f7-bb28-801be8386b0d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3ccdeac7-b884-4542-bf97-64f6af27c36d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:58:28.0766666Z\"\n }" + string: "{\n \"name\": \"8418c23e-adc5-f743-bb28-801be8386b0d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:20:25.0966666Z\"\n }" headers: cache-control: - no-cache @@ -730,7 +695,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:58:57 GMT + - Wed, 01 Dec 2021 15:20:55 GMT expires: - '-1' pragma: @@ -762,24 +727,24 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c7eacd3c-84b8-4245-bf97-64f6af27c36d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ec21884-c5ad-43f7-bb28-801be8386b0d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3ccdeac7-b884-4542-bf97-64f6af27c36d\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:58:28.0766666Z\",\n \"endTime\": - \"2021-10-19T06:59:26.746751Z\"\n }" + string: "{\n \"name\": \"8418c23e-adc5-f743-bb28-801be8386b0d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:20:25.0966666Z\",\n \"endTime\": + \"2021-12-01T15:21:19.7629371Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 06:59:27 GMT + - Wed, 01 Dec 2021 15:21:25 GMT expires: - '-1' pragma: @@ -811,32 +776,33 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6rqg2s54j-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6rqg2s54j-8ecadf-3793c27d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6rqg2s54j-8ecadf-3793c27d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestz3usxlc6b-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestz3usxlc6b-8ecadf-d10f6716.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestz3usxlc6b-8ecadf-d10f6716.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n },\n \"identity\": @@ -846,26 +812,28 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8b5b8ee7-d708-41de-a537-940d3ab4b3ab\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bee5725a-8bb0-4561-8b97-f2738bdc89cf\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3964' + - '4422' content-type: - application/json date: - - Tue, 19 Oct 2021 06:59:27 GMT + - Wed, 01 Dec 2021 15:21:26 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_azurekeyvaultsecretsprovider.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_azurekeyvaultsecretsprovider.yaml old mode 100755 new mode 100644 index 1dc168ab072..168e45df752 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_azurekeyvaultsecretsprovider.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_azurekeyvaultsecretsprovider.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:53:47Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T15:24:52Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 06:53:47 GMT + - Wed, 01 Dec 2021 15:24:52 GMT expires: - '-1' pragma: @@ -43,18 +43,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesth7jkk7oag-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestdo25layz7-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -65,38 +66,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1391' + - '1748' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesth7jkk7oag-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdo25layz7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -104,22 +106,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b85bbfe2-f108-4473-9d65-f919c5b85f5a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc712e13-2546-4874-b7a1-fd7ffa39c659?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2778' + - '3236' content-type: - application/json date: - - Tue, 19 Oct 2021 06:53:50 GMT + - Wed, 01 Dec 2021 15:24:57 GMT expires: - '-1' pragma: @@ -131,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -149,23 +152,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b85bbfe2-f108-4473-9d65-f919c5b85f5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc712e13-2546-4874-b7a1-fd7ffa39c659?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2bf5bb8-08f1-7344-9d65-f919c5b85f5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:53:51.13Z\"\n }" + string: "{\n \"name\": \"132e71bc-4625-7448-b7a1-fd7ffa39c659\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:24:57.3Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:54:20 GMT + - Wed, 01 Dec 2021 15:25:27 GMT expires: - '-1' pragma: @@ -197,23 +200,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b85bbfe2-f108-4473-9d65-f919c5b85f5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc712e13-2546-4874-b7a1-fd7ffa39c659?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2bf5bb8-08f1-7344-9d65-f919c5b85f5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:53:51.13Z\"\n }" + string: "{\n \"name\": \"132e71bc-4625-7448-b7a1-fd7ffa39c659\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:24:57.3Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:54:51 GMT + - Wed, 01 Dec 2021 15:25:57 GMT expires: - '-1' pragma: @@ -245,23 +248,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b85bbfe2-f108-4473-9d65-f919c5b85f5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc712e13-2546-4874-b7a1-fd7ffa39c659?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2bf5bb8-08f1-7344-9d65-f919c5b85f5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:53:51.13Z\"\n }" + string: "{\n \"name\": \"132e71bc-4625-7448-b7a1-fd7ffa39c659\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:24:57.3Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:55:21 GMT + - Wed, 01 Dec 2021 15:26:28 GMT expires: - '-1' pragma: @@ -293,23 +296,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b85bbfe2-f108-4473-9d65-f919c5b85f5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc712e13-2546-4874-b7a1-fd7ffa39c659?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2bf5bb8-08f1-7344-9d65-f919c5b85f5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:53:51.13Z\"\n }" + string: "{\n \"name\": \"132e71bc-4625-7448-b7a1-fd7ffa39c659\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:24:57.3Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:55:50 GMT + - Wed, 01 Dec 2021 15:26:58 GMT expires: - '-1' pragma: @@ -341,23 +344,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b85bbfe2-f108-4473-9d65-f919c5b85f5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc712e13-2546-4874-b7a1-fd7ffa39c659?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2bf5bb8-08f1-7344-9d65-f919c5b85f5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:53:51.13Z\"\n }" + string: "{\n \"name\": \"132e71bc-4625-7448-b7a1-fd7ffa39c659\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:24:57.3Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:21 GMT + - Wed, 01 Dec 2021 15:27:28 GMT expires: - '-1' pragma: @@ -389,24 +392,24 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b85bbfe2-f108-4473-9d65-f919c5b85f5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc712e13-2546-4874-b7a1-fd7ffa39c659?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2bf5bb8-08f1-7344-9d65-f919c5b85f5a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:53:51.13Z\",\n \"endTime\": - \"2021-10-19T06:56:34.5961743Z\"\n }" + string: "{\n \"name\": \"132e71bc-4625-7448-b7a1-fd7ffa39c659\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:24:57.3Z\",\n \"endTime\": + \"2021-12-01T15:27:39.5444954Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '164' content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:51 GMT + - Wed, 01 Dec 2021 15:27:58 GMT expires: - '-1' pragma: @@ -438,57 +441,60 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesth7jkk7oag-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdo25layz7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e3d90699-e34e-4a61-858e-8ce44cb57572\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5696d037-2d34-4206-8b76-a0176bb32821\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:51 GMT + - Wed, 01 Dec 2021 15:27:58 GMT expires: - '-1' pragma: @@ -520,57 +526,60 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesth7jkk7oag-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdo25layz7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e3d90699-e34e-4a61-858e-8ce44cb57572\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5696d037-2d34-4206-8b76-a0176bb32821\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:52 GMT + - Wed, 01 Dec 2021 15:27:59 GMT expires: - '-1' pragma: @@ -591,25 +600,26 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitesth7jkk7oag-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestdo25layz7-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": - {"enabled": true, "config": {"enableSecretRotation": "false"}}}, "nodeResourceGroup": - "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": - false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", - "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e3d90699-e34e-4a61-858e-8ce44cb57572"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": + true, "config": {"enableSecretRotation": "false", "rotationPollInterval": "2m"}}}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5696d037-2d34-4206-8b76-a0176bb32821"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -620,67 +630,70 @@ interactions: Connection: - keep-alive Content-Length: - - '2378' + - '2819' Content-Type: - application/json ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesth7jkk7oag-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdo25layz7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"false\"\n }\n }\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e3d90699-e34e-4a61-858e-8ce44cb57572\"\n + {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": + \"2m\"\n }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5696d037-2d34-4206-8b76-a0176bb32821\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b92d125-3733-417f-8e24-f83415cc4db8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d6beeb04-5565-462a-8b07-3dfe37e40263?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3595' + - '4089' content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:54 GMT + - Wed, 01 Dec 2021 15:28:02 GMT expires: - '-1' pragma: @@ -696,55 +709,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks addon enable - Connection: - - keep-alive - ParameterSetName: - - --addon --resource-group --name -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b92d125-3733-417f-8e24-f83415cc4db8?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"25d1920b-3337-7f41-8e24-f83415cc4db8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:54.6Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '120' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 06:57:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff + - '1198' status: code: 200 message: OK @@ -762,23 +727,23 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b92d125-3733-417f-8e24-f83415cc4db8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d6beeb04-5565-462a-8b07-3dfe37e40263?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"25d1920b-3337-7f41-8e24-f83415cc4db8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:54.6Z\"\n }" + string: "{\n \"name\": \"04ebbed6-6555-2a46-8b07-3dfe37e40263\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:28:02.93Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:57:54 GMT + - Wed, 01 Dec 2021 15:28:33 GMT expires: - '-1' pragma: @@ -810,24 +775,24 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b92d125-3733-417f-8e24-f83415cc4db8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d6beeb04-5565-462a-8b07-3dfe37e40263?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"25d1920b-3337-7f41-8e24-f83415cc4db8\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:56:54.6Z\",\n \"endTime\": - \"2021-10-19T06:57:55.3588795Z\"\n }" + string: "{\n \"name\": \"04ebbed6-6555-2a46-8b07-3dfe37e40263\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:28:02.93Z\",\n \"endTime\": + \"2021-12-01T15:29:00.1182921Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '165' content-type: - application/json date: - - Tue, 19 Oct 2021 06:58:24 GMT + - Wed, 01 Dec 2021 15:29:03 GMT expires: - '-1' pragma: @@ -859,61 +824,64 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesth7jkk7oag-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdo25layz7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"false\"\n },\n \"identity\": - {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n + {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": + \"2m\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e3d90699-e34e-4a61-858e-8ce44cb57572\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5696d037-2d34-4206-8b76-a0176bb32821\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3980' + - '4474' content-type: - application/json date: - - Tue, 19 Oct 2021 06:58:24 GMT + - Wed, 01 Dec 2021 15:29:04 GMT expires: - '-1' pragma: @@ -945,61 +913,64 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesth7jkk7oag-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdo25layz7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"false\"\n },\n \"identity\": - {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n + {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": + \"2m\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e3d90699-e34e-4a61-858e-8ce44cb57572\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5696d037-2d34-4206-8b76-a0176bb32821\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3980' + - '4474' content-type: - application/json date: - - Tue, 19 Oct 2021 06:58:25 GMT + - Wed, 01 Dec 2021 15:29:04 GMT expires: - '-1' pragma: @@ -1020,24 +991,25 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitesth7jkk7oag-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestdo25layz7-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": - {"enabled": false}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": + false}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e3d90699-e34e-4a61-858e-8ce44cb57572"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5696d037-2d34-4206-8b76-a0176bb32821"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -1048,66 +1020,69 @@ interactions: Connection: - keep-alive Content-Length: - - '2334' + - '2745' Content-Type: - application/json ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesth7jkk7oag-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdo25layz7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": false,\n \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e3d90699-e34e-4a61-858e-8ce44cb57572\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5696d037-2d34-4206-8b76-a0176bb32821\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8f87ebff-c3b7-457e-8d3e-ffd29e465210?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d65ac62f-da66-4304-b739-0a38521c2645?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3554' + - '4012' content-type: - application/json date: - - Tue, 19 Oct 2021 06:58:27 GMT + - Wed, 01 Dec 2021 15:29:09 GMT expires: - '-1' pragma: @@ -1123,7 +1098,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 200 message: OK @@ -1141,14 +1116,14 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8f87ebff-c3b7-457e-8d3e-ffd29e465210?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d65ac62f-da66-4304-b739-0a38521c2645?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ffeb878f-b7c3-7e45-8d3e-ffd29e465210\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:58:27.78Z\"\n }" + string: "{\n \"name\": \"2fc65ad6-66da-0443-b739-0a38521c2645\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:29:08.43Z\"\n }" headers: cache-control: - no-cache @@ -1157,7 +1132,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:58:57 GMT + - Wed, 01 Dec 2021 15:29:39 GMT expires: - '-1' pragma: @@ -1189,14 +1164,14 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8f87ebff-c3b7-457e-8d3e-ffd29e465210?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d65ac62f-da66-4304-b739-0a38521c2645?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ffeb878f-b7c3-7e45-8d3e-ffd29e465210\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:58:27.78Z\"\n }" + string: "{\n \"name\": \"2fc65ad6-66da-0443-b739-0a38521c2645\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:29:08.43Z\"\n }" headers: cache-control: - no-cache @@ -1205,7 +1180,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:59:27 GMT + - Wed, 01 Dec 2021 15:30:09 GMT expires: - '-1' pragma: @@ -1237,15 +1212,15 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8f87ebff-c3b7-457e-8d3e-ffd29e465210?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d65ac62f-da66-4304-b739-0a38521c2645?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ffeb878f-b7c3-7e45-8d3e-ffd29e465210\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:58:27.78Z\",\n \"endTime\": - \"2021-10-19T06:59:32.5172008Z\"\n }" + string: "{\n \"name\": \"2fc65ad6-66da-0443-b739-0a38521c2645\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:29:08.43Z\",\n \"endTime\": + \"2021-12-01T15:30:11.3409853Z\"\n }" headers: cache-control: - no-cache @@ -1254,7 +1229,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:59:57 GMT + - Wed, 01 Dec 2021 15:30:39 GMT expires: - '-1' pragma: @@ -1286,58 +1261,61 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesth7jkk7oag-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdo25layz7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": false,\n \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e3d90699-e34e-4a61-858e-8ce44cb57572\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5696d037-2d34-4206-8b76-a0176bb32821\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3556' + - '4014' content-type: - application/json date: - - Tue, 19 Oct 2021 06:59:57 GMT + - Wed, 01 Dec 2021 15:30:39 GMT expires: - '-1' pragma: @@ -1369,58 +1347,61 @@ interactions: ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesth7jkk7oag-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdo25layz7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": false,\n \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e3d90699-e34e-4a61-858e-8ce44cb57572\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5696d037-2d34-4206-8b76-a0176bb32821\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3556' + - '4014' content-type: - application/json date: - - Tue, 19 Oct 2021 06:59:58 GMT + - Wed, 01 Dec 2021 15:30:40 GMT expires: - '-1' pragma: @@ -1441,25 +1422,26 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitesth7jkk7oag-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestdo25layz7-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": - {"enabled": true, "config": {"enableSecretRotation": "true"}}}, "nodeResourceGroup": - "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": - false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", - "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e3d90699-e34e-4a61-858e-8ce44cb57572"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": + true, "config": {"enableSecretRotation": "true", "rotationPollInterval": "2m"}}}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5696d037-2d34-4206-8b76-a0176bb32821"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -1470,67 +1452,70 @@ interactions: Connection: - keep-alive Content-Length: - - '2377' + - '2818' Content-Type: - application/json ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesth7jkk7oag-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdo25layz7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"true\"\n }\n }\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e3d90699-e34e-4a61-858e-8ce44cb57572\"\n + {\n \"enableSecretRotation\": \"true\",\n \"rotationPollInterval\": + \"2m\"\n }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5696d037-2d34-4206-8b76-a0176bb32821\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9773cc27-dfd1-470b-82ec-33ef830fcd6f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a56bca75-8944-48cd-ad39-c357ae8e40b1?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3594' + - '4088' content-type: - application/json date: - - Tue, 19 Oct 2021 07:00:00 GMT + - Wed, 01 Dec 2021 15:30:44 GMT expires: - '-1' pragma: @@ -1546,7 +1531,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -1564,23 +1549,23 @@ interactions: ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9773cc27-dfd1-470b-82ec-33ef830fcd6f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a56bca75-8944-48cd-ad39-c357ae8e40b1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"27cc7397-d1df-0b47-82ec-33ef830fcd6f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:00:01.01Z\"\n }" + string: "{\n \"name\": \"75ca6ba5-4489-cd48-ad39-c357ae8e40b1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:30:44.0866666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:00:31 GMT + - Wed, 01 Dec 2021 15:31:15 GMT expires: - '-1' pragma: @@ -1612,24 +1597,23 @@ interactions: ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9773cc27-dfd1-470b-82ec-33ef830fcd6f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a56bca75-8944-48cd-ad39-c357ae8e40b1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"27cc7397-d1df-0b47-82ec-33ef830fcd6f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:00:01.01Z\",\n \"endTime\": - \"2021-10-19T07:00:58.970173Z\"\n }" + string: "{\n \"name\": \"75ca6ba5-4489-cd48-ad39-c357ae8e40b1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:30:44.0866666Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:01 GMT + - Wed, 01 Dec 2021 15:31:45 GMT expires: - '-1' pragma: @@ -1661,61 +1645,209 @@ interactions: ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a56bca75-8944-48cd-ad39-c357ae8e40b1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"75ca6ba5-4489-cd48-ad39-c357ae8e40b1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:30:44.0866666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 15:32:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks addon enable + Connection: + - keep-alive + ParameterSetName: + - --addon --enable-secret-rotation --resource-group --name -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a56bca75-8944-48cd-ad39-c357ae8e40b1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"75ca6ba5-4489-cd48-ad39-c357ae8e40b1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:30:44.0866666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 15:32:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks addon enable + Connection: + - keep-alive + ParameterSetName: + - --addon --enable-secret-rotation --resource-group --name -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a56bca75-8944-48cd-ad39-c357ae8e40b1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"75ca6ba5-4489-cd48-ad39-c357ae8e40b1\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:30:44.0866666Z\",\n \"endTime\": + \"2021-12-01T15:33:10.0178057Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 15:33:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks addon enable + Connection: + - keep-alive + ParameterSetName: + - --addon --enable-secret-rotation --resource-group --name -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesth7jkk7oag-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesth7jkk7oag-8ecadf-77534e4b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdo25layz7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdo25layz7-8ecadf-22368a39.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"true\"\n },\n \"identity\": {\n - \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n + {\n \"enableSecretRotation\": \"true\",\n \"rotationPollInterval\": + \"2m\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e3d90699-e34e-4a61-858e-8ce44cb57572\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5696d037-2d34-4206-8b76-a0176bb32821\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3979' + - '4473' content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:01 GMT + - Wed, 01 Dec 2021 15:33:16 GMT expires: - '-1' pragma: @@ -1749,8 +1881,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -1758,17 +1890,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dd22494c-a176-45b6-9923-03b526db2499?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb17f5fb-875e-4a11-af8d-6eee58dca51b?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 07:01:02 GMT + - Wed, 01 Dec 2021 15:33:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/dd22494c-a176-45b6-9923-03b526db2499?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/cb17f5fb-875e-4a11-af8d-6eee58dca51b?api-version=2016-03-30 pragma: - no-cache server: @@ -1778,7 +1910,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14998' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_openservicemesh.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_openservicemesh.yaml old mode 100755 new mode 100644 index 76fe29ec1b5..43b563d46d2 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_openservicemesh.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_enable_with_openservicemesh.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:06:43Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T15:24:03Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:06:47 GMT + - Wed, 01 Dec 2021 15:24:03 GMT expires: - '-1' pragma: @@ -43,18 +43,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestdnwlp4zq2-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestxnjaphxck-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -65,38 +66,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1391' + - '1748' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdnwlp4zq2-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestdnwlp4zq2-8ecadf-91be4e49.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestdnwlp4zq2-8ecadf-91be4e49.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestxnjaphxck-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestxnjaphxck-8ecadf-d6347d8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestxnjaphxck-8ecadf-d6347d8d.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -104,22 +106,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/353d6454-f211-49f2-ad50-ba335973e2fc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1a6b40b-a8c1-4f3c-b874-261268ab483b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2778' + - '3236' content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:49 GMT + - Wed, 01 Dec 2021 15:24:09 GMT expires: - '-1' pragma: @@ -131,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -149,23 +152,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/353d6454-f211-49f2-ad50-ba335973e2fc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1a6b40b-a8c1-4f3c-b874-261268ab483b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"54643d35-11f2-f249-ad50-ba335973e2fc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:49.93Z\"\n }" + string: "{\n \"name\": \"0bb4a6b1-c1a8-3c4f-b874-261268ab483b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:24:09.1266666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:07:19 GMT + - Wed, 01 Dec 2021 15:24:38 GMT expires: - '-1' pragma: @@ -197,23 +200,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/353d6454-f211-49f2-ad50-ba335973e2fc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1a6b40b-a8c1-4f3c-b874-261268ab483b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"54643d35-11f2-f249-ad50-ba335973e2fc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:49.93Z\"\n }" + string: "{\n \"name\": \"0bb4a6b1-c1a8-3c4f-b874-261268ab483b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:24:09.1266666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:07:49 GMT + - Wed, 01 Dec 2021 15:25:09 GMT expires: - '-1' pragma: @@ -245,23 +248,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/353d6454-f211-49f2-ad50-ba335973e2fc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1a6b40b-a8c1-4f3c-b874-261268ab483b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"54643d35-11f2-f249-ad50-ba335973e2fc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:49.93Z\"\n }" + string: "{\n \"name\": \"0bb4a6b1-c1a8-3c4f-b874-261268ab483b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:24:09.1266666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:08:20 GMT + - Wed, 01 Dec 2021 15:25:39 GMT expires: - '-1' pragma: @@ -293,23 +296,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/353d6454-f211-49f2-ad50-ba335973e2fc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1a6b40b-a8c1-4f3c-b874-261268ab483b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"54643d35-11f2-f249-ad50-ba335973e2fc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:49.93Z\"\n }" + string: "{\n \"name\": \"0bb4a6b1-c1a8-3c4f-b874-261268ab483b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:24:09.1266666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:08:49 GMT + - Wed, 01 Dec 2021 15:26:09 GMT expires: - '-1' pragma: @@ -341,23 +344,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/353d6454-f211-49f2-ad50-ba335973e2fc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1a6b40b-a8c1-4f3c-b874-261268ab483b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"54643d35-11f2-f249-ad50-ba335973e2fc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:49.93Z\"\n }" + string: "{\n \"name\": \"0bb4a6b1-c1a8-3c4f-b874-261268ab483b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:24:09.1266666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:09:19 GMT + - Wed, 01 Dec 2021 15:26:39 GMT expires: - '-1' pragma: @@ -389,24 +392,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/353d6454-f211-49f2-ad50-ba335973e2fc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1a6b40b-a8c1-4f3c-b874-261268ab483b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"54643d35-11f2-f249-ad50-ba335973e2fc\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:06:49.93Z\",\n \"endTime\": - \"2021-10-19T07:09:44.2991024Z\"\n }" + string: "{\n \"name\": \"0bb4a6b1-c1a8-3c4f-b874-261268ab483b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:24:09.1266666Z\",\n \"endTime\": + \"2021-12-01T15:26:50.0565078Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 07:09:50 GMT + - Wed, 01 Dec 2021 15:27:10 GMT expires: - '-1' pragma: @@ -438,57 +441,60 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdnwlp4zq2-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestdnwlp4zq2-8ecadf-91be4e49.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestdnwlp4zq2-8ecadf-91be4e49.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestxnjaphxck-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestxnjaphxck-8ecadf-d6347d8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestxnjaphxck-8ecadf-d6347d8d.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6ea40d4b-d6bb-4cd3-a62a-4e285407c9a9\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b15f9f53-4ce3-4ad9-97ad-3586b8a689fc\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 07:09:50 GMT + - Wed, 01 Dec 2021 15:27:11 GMT expires: - '-1' pragma: @@ -520,57 +526,60 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdnwlp4zq2-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestdnwlp4zq2-8ecadf-91be4e49.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestdnwlp4zq2-8ecadf-91be4e49.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestxnjaphxck-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestxnjaphxck-8ecadf-d6347d8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestxnjaphxck-8ecadf-d6347d8d.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6ea40d4b-d6bb-4cd3-a62a-4e285407c9a9\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b15f9f53-4ce3-4ad9-97ad-3586b8a689fc\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 07:09:51 GMT + - Wed, 01 Dec 2021 15:27:12 GMT expires: - '-1' pragma: @@ -591,24 +600,25 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestdnwlp4zq2-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestxnjaphxck-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": - {"enabled": true, "config": {}}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": true, + "config": {}}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6ea40d4b-d6bb-4cd3-a62a-4e285407c9a9"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b15f9f53-4ce3-4ad9-97ad-3586b8a689fc"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -619,66 +629,69 @@ interactions: Connection: - keep-alive Content-Length: - - '2334' + - '2745' Content-Type: - application/json ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdnwlp4zq2-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestdnwlp4zq2-8ecadf-91be4e49.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestdnwlp4zq2-8ecadf-91be4e49.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestxnjaphxck-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestxnjaphxck-8ecadf-d6347d8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestxnjaphxck-8ecadf-d6347d8d.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": {}\n + {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null\n \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6ea40d4b-d6bb-4cd3-a62a-4e285407c9a9\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b15f9f53-4ce3-4ad9-97ad-3586b8a689fc\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3bb46795-c39f-4165-a7bb-fe0d95b4746e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc2d9600-53ca-4e3c-8590-bcc8f4a528c9?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3538' + - '3998' content-type: - application/json date: - - Tue, 19 Oct 2021 07:09:52 GMT + - Wed, 01 Dec 2021 15:27:15 GMT expires: - '-1' pragma: @@ -694,7 +707,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 200 message: OK @@ -712,23 +725,23 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3bb46795-c39f-4165-a7bb-fe0d95b4746e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc2d9600-53ca-4e3c-8590-bcc8f4a528c9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9567b43b-9fc3-6541-a7bb-fe0d95b4746e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:09:53.65Z\"\n }" + string: "{\n \"name\": \"00962dbc-ca53-3c4e-8590-bcc8f4a528c9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:27:15.1466666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:23 GMT + - Wed, 01 Dec 2021 15:27:45 GMT expires: - '-1' pragma: @@ -760,23 +773,23 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3bb46795-c39f-4165-a7bb-fe0d95b4746e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc2d9600-53ca-4e3c-8590-bcc8f4a528c9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9567b43b-9fc3-6541-a7bb-fe0d95b4746e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:09:53.65Z\"\n }" + string: "{\n \"name\": \"00962dbc-ca53-3c4e-8590-bcc8f4a528c9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:27:15.1466666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:53 GMT + - Wed, 01 Dec 2021 15:28:15 GMT expires: - '-1' pragma: @@ -808,24 +821,24 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3bb46795-c39f-4165-a7bb-fe0d95b4746e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc2d9600-53ca-4e3c-8590-bcc8f4a528c9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9567b43b-9fc3-6541-a7bb-fe0d95b4746e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:09:53.65Z\",\n \"endTime\": - \"2021-10-19T07:11:04.6673481Z\"\n }" + string: "{\n \"name\": \"00962dbc-ca53-3c4e-8590-bcc8f4a528c9\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:27:15.1466666Z\",\n \"endTime\": + \"2021-12-01T15:28:18.1293837Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 07:11:23 GMT + - Wed, 01 Dec 2021 15:28:46 GMT expires: - '-1' pragma: @@ -857,60 +870,63 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdnwlp4zq2-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestdnwlp4zq2-8ecadf-91be4e49.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestdnwlp4zq2-8ecadf-91be4e49.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestxnjaphxck-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestxnjaphxck-8ecadf-d6347d8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestxnjaphxck-8ecadf-d6347d8d.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": {},\n + {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null,\n \ \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/openservicemesh-cliakstest000002\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6ea40d4b-d6bb-4cd3-a62a-4e285407c9a9\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b15f9f53-4ce3-4ad9-97ad-3586b8a689fc\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3910' + - '4370' content-type: - application/json date: - - Tue, 19 Oct 2021 07:11:23 GMT + - Wed, 01 Dec 2021 15:28:46 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_all_disabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_all_disabled.yaml old mode 100755 new mode 100644 index 756f643a22f..681109e0943 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_all_disabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_all_disabled.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:47:06Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T15:40:16Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 06:47:06 GMT + - Wed, 01 Dec 2021 15:40:16 GMT expires: - '-1' pragma: @@ -43,18 +43,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesttkcvdjmlt-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestcb4wlz2hv-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -65,38 +66,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1391' + - '1748' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesttkcvdjmlt-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesttkcvdjmlt-8ecadf-9236c813.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesttkcvdjmlt-8ecadf-9236c813.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestcb4wlz2hv-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestcb4wlz2hv-8ecadf-2f72bb5e.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestcb4wlz2hv-8ecadf-2f72bb5e.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -104,22 +106,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/059f5ba9-21d0-40ed-ba50-21d6df4f2565?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/572353af-435c-43de-a132-b3014ef596c5?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2778' + - '3236' content-type: - application/json date: - - Tue, 19 Oct 2021 06:47:10 GMT + - Wed, 01 Dec 2021 15:40:25 GMT expires: - '-1' pragma: @@ -131,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -149,71 +152,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/059f5ba9-21d0-40ed-ba50-21d6df4f2565?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"a95b9f05-d021-ed40-ba50-21d6df4f2565\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:47:10.35Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 06:47:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/059f5ba9-21d0-40ed-ba50-21d6df4f2565?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/572353af-435c-43de-a132-b3014ef596c5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a95b9f05-d021-ed40-ba50-21d6df4f2565\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:47:10.35Z\"\n }" + string: "{\n \"name\": \"af532357-5c43-de43-a132-b3014ef596c5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:40:22.2Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:48:10 GMT + - Wed, 01 Dec 2021 15:40:55 GMT expires: - '-1' pragma: @@ -245,23 +200,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/059f5ba9-21d0-40ed-ba50-21d6df4f2565?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/572353af-435c-43de-a132-b3014ef596c5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a95b9f05-d021-ed40-ba50-21d6df4f2565\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:47:10.35Z\"\n }" + string: "{\n \"name\": \"af532357-5c43-de43-a132-b3014ef596c5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:40:22.2Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:48:40 GMT + - Wed, 01 Dec 2021 15:41:25 GMT expires: - '-1' pragma: @@ -293,23 +248,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/059f5ba9-21d0-40ed-ba50-21d6df4f2565?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/572353af-435c-43de-a132-b3014ef596c5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a95b9f05-d021-ed40-ba50-21d6df4f2565\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:47:10.35Z\"\n }" + string: "{\n \"name\": \"af532357-5c43-de43-a132-b3014ef596c5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:40:22.2Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:49:10 GMT + - Wed, 01 Dec 2021 15:41:55 GMT expires: - '-1' pragma: @@ -341,23 +296,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/059f5ba9-21d0-40ed-ba50-21d6df4f2565?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/572353af-435c-43de-a132-b3014ef596c5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a95b9f05-d021-ed40-ba50-21d6df4f2565\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:47:10.35Z\"\n }" + string: "{\n \"name\": \"af532357-5c43-de43-a132-b3014ef596c5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:40:22.2Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:49:40 GMT + - Wed, 01 Dec 2021 15:42:25 GMT expires: - '-1' pragma: @@ -389,23 +344,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/059f5ba9-21d0-40ed-ba50-21d6df4f2565?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/572353af-435c-43de-a132-b3014ef596c5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a95b9f05-d021-ed40-ba50-21d6df4f2565\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:47:10.35Z\"\n }" + string: "{\n \"name\": \"af532357-5c43-de43-a132-b3014ef596c5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:40:22.2Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:50:10 GMT + - Wed, 01 Dec 2021 15:42:56 GMT expires: - '-1' pragma: @@ -437,23 +392,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/059f5ba9-21d0-40ed-ba50-21d6df4f2565?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/572353af-435c-43de-a132-b3014ef596c5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a95b9f05-d021-ed40-ba50-21d6df4f2565\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:47:10.35Z\"\n }" + string: "{\n \"name\": \"af532357-5c43-de43-a132-b3014ef596c5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:40:22.2Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:50:40 GMT + - Wed, 01 Dec 2021 15:43:26 GMT expires: - '-1' pragma: @@ -485,24 +440,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/059f5ba9-21d0-40ed-ba50-21d6df4f2565?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/572353af-435c-43de-a132-b3014ef596c5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a95b9f05-d021-ed40-ba50-21d6df4f2565\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:47:10.35Z\",\n \"endTime\": - \"2021-10-19T06:50:42.0807162Z\"\n }" + string: "{\n \"name\": \"af532357-5c43-de43-a132-b3014ef596c5\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:40:22.2Z\",\n \"endTime\": + \"2021-12-01T15:43:34.7455375Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '164' content-type: - application/json date: - - Tue, 19 Oct 2021 06:51:10 GMT + - Wed, 01 Dec 2021 15:43:56 GMT expires: - '-1' pragma: @@ -534,57 +489,60 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesttkcvdjmlt-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesttkcvdjmlt-8ecadf-9236c813.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesttkcvdjmlt-8ecadf-9236c813.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestcb4wlz2hv-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestcb4wlz2hv-8ecadf-2f72bb5e.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestcb4wlz2hv-8ecadf-2f72bb5e.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c89941c2-78a3-4bdb-be4b-90a82f1fa94e\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6aa8aa68-baee-4d64-b410-09dcba8ba0c0\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 06:51:10 GMT + - Wed, 01 Dec 2021 15:43:57 GMT expires: - '-1' pragma: @@ -616,57 +574,60 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesttkcvdjmlt-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesttkcvdjmlt-8ecadf-9236c813.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesttkcvdjmlt-8ecadf-9236c813.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestcb4wlz2hv-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestcb4wlz2hv-8ecadf-2f72bb5e.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestcb4wlz2hv-8ecadf-2f72bb5e.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c89941c2-78a3-4bdb-be4b-90a82f1fa94e\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6aa8aa68-baee-4d64-b410-09dcba8ba0c0\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 06:51:11 GMT + - Wed, 01 Dec 2021 15:43:58 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_confcom_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_confcom_enabled.yaml old mode 100755 new mode 100644 index 12595543493..54d1997a7d5 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_confcom_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_confcom_enabled.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:14:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:02:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:14:10 GMT + - Wed, 01 Dec 2021 14:02:25 GMT expires: - '-1' pragma: @@ -43,19 +43,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest5yekqubl4-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestoyc5py5sc-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": - {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "enableRBAC": - true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": - "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": - "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": + true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "enableRBAC": true, + "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", + "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -66,38 +67,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1479' + - '1836' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest5yekqubl4-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest5yekqubl4-8ecadf-38c333f0.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest5yekqubl4-8ecadf-38c333f0.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestoyc5py5sc-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestoyc5py5sc-8ecadf-9b050e22.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestoyc5py5sc-8ecadf-9b050e22.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n }\n },\n \"nodeResourceGroup\": @@ -107,22 +109,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b54e015d-0c86-4c74-bbc4-015988fdc725?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b56b7d7b-38f5-4ae5-80cd-e84fc89a5954?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2928' + - '3386' content-type: - application/json date: - - Tue, 19 Oct 2021 07:14:13 GMT + - Wed, 01 Dec 2021 14:02:30 GMT expires: - '-1' pragma: @@ -134,7 +137,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 201 message: Created @@ -152,14 +155,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b54e015d-0c86-4c74-bbc4-015988fdc725?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b56b7d7b-38f5-4ae5-80cd-e84fc89a5954?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5d014eb5-860c-744c-bbc4-015988fdc725\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:14:13.97Z\"\n }" + string: "{\n \"name\": \"7b7d6bb5-f538-e54a-80cd-e84fc89a5954\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.66Z\"\n }" headers: cache-control: - no-cache @@ -168,7 +171,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:14:43 GMT + - Wed, 01 Dec 2021 14:03:00 GMT expires: - '-1' pragma: @@ -200,14 +203,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b54e015d-0c86-4c74-bbc4-015988fdc725?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b56b7d7b-38f5-4ae5-80cd-e84fc89a5954?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5d014eb5-860c-744c-bbc4-015988fdc725\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:14:13.97Z\"\n }" + string: "{\n \"name\": \"7b7d6bb5-f538-e54a-80cd-e84fc89a5954\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.66Z\"\n }" headers: cache-control: - no-cache @@ -216,7 +219,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:15:14 GMT + - Wed, 01 Dec 2021 14:03:30 GMT expires: - '-1' pragma: @@ -248,14 +251,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b54e015d-0c86-4c74-bbc4-015988fdc725?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b56b7d7b-38f5-4ae5-80cd-e84fc89a5954?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5d014eb5-860c-744c-bbc4-015988fdc725\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:14:13.97Z\"\n }" + string: "{\n \"name\": \"7b7d6bb5-f538-e54a-80cd-e84fc89a5954\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.66Z\"\n }" headers: cache-control: - no-cache @@ -264,7 +267,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:15:43 GMT + - Wed, 01 Dec 2021 14:04:01 GMT expires: - '-1' pragma: @@ -296,14 +299,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b54e015d-0c86-4c74-bbc4-015988fdc725?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b56b7d7b-38f5-4ae5-80cd-e84fc89a5954?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5d014eb5-860c-744c-bbc4-015988fdc725\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:14:13.97Z\"\n }" + string: "{\n \"name\": \"7b7d6bb5-f538-e54a-80cd-e84fc89a5954\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.66Z\"\n }" headers: cache-control: - no-cache @@ -312,7 +315,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:16:13 GMT + - Wed, 01 Dec 2021 14:04:31 GMT expires: - '-1' pragma: @@ -344,14 +347,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b54e015d-0c86-4c74-bbc4-015988fdc725?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b56b7d7b-38f5-4ae5-80cd-e84fc89a5954?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5d014eb5-860c-744c-bbc4-015988fdc725\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:14:13.97Z\"\n }" + string: "{\n \"name\": \"7b7d6bb5-f538-e54a-80cd-e84fc89a5954\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.66Z\"\n }" headers: cache-control: - no-cache @@ -360,7 +363,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:16:44 GMT + - Wed, 01 Dec 2021 14:05:01 GMT expires: - '-1' pragma: @@ -392,14 +395,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b54e015d-0c86-4c74-bbc4-015988fdc725?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b56b7d7b-38f5-4ae5-80cd-e84fc89a5954?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5d014eb5-860c-744c-bbc4-015988fdc725\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:14:13.97Z\"\n }" + string: "{\n \"name\": \"7b7d6bb5-f538-e54a-80cd-e84fc89a5954\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.66Z\"\n }" headers: cache-control: - no-cache @@ -408,7 +411,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:17:14 GMT + - Wed, 01 Dec 2021 14:05:32 GMT expires: - '-1' pragma: @@ -440,14 +443,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b54e015d-0c86-4c74-bbc4-015988fdc725?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b56b7d7b-38f5-4ae5-80cd-e84fc89a5954?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5d014eb5-860c-744c-bbc4-015988fdc725\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:14:13.97Z\"\n }" + string: "{\n \"name\": \"7b7d6bb5-f538-e54a-80cd-e84fc89a5954\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.66Z\"\n }" headers: cache-control: - no-cache @@ -456,7 +459,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:17:43 GMT + - Wed, 01 Dec 2021 14:06:01 GMT expires: - '-1' pragma: @@ -488,63 +491,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b54e015d-0c86-4c74-bbc4-015988fdc725?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b56b7d7b-38f5-4ae5-80cd-e84fc89a5954?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5d014eb5-860c-744c-bbc4-015988fdc725\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:14:13.97Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:18:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --ssh-key-value -a -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b54e015d-0c86-4c74-bbc4-015988fdc725?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"5d014eb5-860c-744c-bbc4-015988fdc725\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:14:13.97Z\",\n \"endTime\": - \"2021-10-19T07:18:35.3252539Z\"\n }" + string: "{\n \"name\": \"7b7d6bb5-f538-e54a-80cd-e84fc89a5954\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:02:30.66Z\",\n \"endTime\": + \"2021-12-01T14:06:18.8141713Z\"\n }" headers: cache-control: - no-cache @@ -553,7 +508,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:18:44 GMT + - Wed, 01 Dec 2021 14:06:31 GMT expires: - '-1' pragma: @@ -585,32 +540,33 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest5yekqubl4-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest5yekqubl4-8ecadf-38c333f0.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest5yekqubl4-8ecadf-38c333f0.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestoyc5py5sc-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestoyc5py5sc-8ecadf-9b050e22.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestoyc5py5sc-8ecadf-9b050e22.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n },\n \"identity\": @@ -620,26 +576,28 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6648ed87-222d-44dc-ac63-0c71e07c2ca7\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/52f6c9ef-d87a-4828-b401-d32bf726fbf5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3964' + - '4422' content-type: - application/json date: - - Tue, 19 Oct 2021 07:18:44 GMT + - Wed, 01 Dec 2021 14:06:32 GMT expires: - '-1' pragma: @@ -671,32 +629,33 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest5yekqubl4-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest5yekqubl4-8ecadf-38c333f0.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest5yekqubl4-8ecadf-38c333f0.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestoyc5py5sc-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestoyc5py5sc-8ecadf-9b050e22.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestoyc5py5sc-8ecadf-9b050e22.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n },\n \"identity\": @@ -706,26 +665,28 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6648ed87-222d-44dc-ac63-0c71e07c2ca7\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/52f6c9ef-d87a-4828-b401-d32bf726fbf5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3964' + - '4422' content-type: - application/json date: - - Tue, 19 Oct 2021 07:18:45 GMT + - Wed, 01 Dec 2021 14:06:33 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_openservicemesh_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_openservicemesh_enabled.yaml old mode 100755 new mode 100644 index d2a80b3e61b..98ec8e04afe --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_openservicemesh_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_list_openservicemesh_enabled.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:06:11Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T15:24:03Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:06:12 GMT + - Wed, 01 Dec 2021 15:24:04 GMT expires: - '-1' pragma: @@ -43,19 +43,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestxswsxgzpj-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestjyt4atu4x-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": - {"enabled": true, "config": {}}}, "enableRBAC": true, "enablePodSecurityPolicy": - false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": true, + "config": {}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": + "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -66,62 +66,65 @@ interactions: Connection: - keep-alive Content-Length: - - '1441' + - '1798' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestxswsxgzpj-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestxswsxgzpj-8ecadf-2f0ef80a.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestxswsxgzpj-8ecadf-2f0ef80a.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestjyt4atu4x-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestjyt4atu4x-8ecadf-1b02d7c8.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestjyt4atu4x-8ecadf-1b02d7c8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": {}\n + {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null\n \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd4df9f7-a902-4f40-a821-62be88429e56?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8737b42d-24c8-44bb-9da9-e093604e0166?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2877' + - '3337' content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:15 GMT + - Wed, 01 Dec 2021 15:24:09 GMT expires: - '-1' pragma: @@ -133,7 +136,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 201 message: Created @@ -151,23 +154,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd4df9f7-a902-4f40-a821-62be88429e56?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8737b42d-24c8-44bb-9da9-e093604e0166?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f7f94dfd-02a9-404f-a821-62be88429e56\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:15.2733333Z\"\n }" + string: "{\n \"name\": \"2db43787-c824-bb44-9da9-e093604e0166\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:24:09.08Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:45 GMT + - Wed, 01 Dec 2021 15:24:39 GMT expires: - '-1' pragma: @@ -199,23 +202,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd4df9f7-a902-4f40-a821-62be88429e56?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8737b42d-24c8-44bb-9da9-e093604e0166?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f7f94dfd-02a9-404f-a821-62be88429e56\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:15.2733333Z\"\n }" + string: "{\n \"name\": \"2db43787-c824-bb44-9da9-e093604e0166\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:24:09.08Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:07:14 GMT + - Wed, 01 Dec 2021 15:25:09 GMT expires: - '-1' pragma: @@ -247,23 +250,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd4df9f7-a902-4f40-a821-62be88429e56?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8737b42d-24c8-44bb-9da9-e093604e0166?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f7f94dfd-02a9-404f-a821-62be88429e56\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:15.2733333Z\"\n }" + string: "{\n \"name\": \"2db43787-c824-bb44-9da9-e093604e0166\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:24:09.08Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:07:45 GMT + - Wed, 01 Dec 2021 15:25:39 GMT expires: - '-1' pragma: @@ -295,23 +298,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd4df9f7-a902-4f40-a821-62be88429e56?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8737b42d-24c8-44bb-9da9-e093604e0166?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f7f94dfd-02a9-404f-a821-62be88429e56\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:15.2733333Z\"\n }" + string: "{\n \"name\": \"2db43787-c824-bb44-9da9-e093604e0166\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:24:09.08Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:08:15 GMT + - Wed, 01 Dec 2021 15:26:09 GMT expires: - '-1' pragma: @@ -343,23 +346,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd4df9f7-a902-4f40-a821-62be88429e56?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8737b42d-24c8-44bb-9da9-e093604e0166?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f7f94dfd-02a9-404f-a821-62be88429e56\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:15.2733333Z\"\n }" + string: "{\n \"name\": \"2db43787-c824-bb44-9da9-e093604e0166\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:24:09.08Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:08:45 GMT + - Wed, 01 Dec 2021 15:26:40 GMT expires: - '-1' pragma: @@ -391,24 +394,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd4df9f7-a902-4f40-a821-62be88429e56?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8737b42d-24c8-44bb-9da9-e093604e0166?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f7f94dfd-02a9-404f-a821-62be88429e56\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:06:15.2733333Z\",\n \"endTime\": - \"2021-10-19T07:08:56.682154Z\"\n }" + string: "{\n \"name\": \"2db43787-c824-bb44-9da9-e093604e0166\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:24:09.08Z\",\n \"endTime\": + \"2021-12-01T15:26:43.5537168Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '165' content-type: - application/json date: - - Tue, 19 Oct 2021 07:09:15 GMT + - Wed, 01 Dec 2021 15:27:10 GMT expires: - '-1' pragma: @@ -440,60 +443,63 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestxswsxgzpj-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestxswsxgzpj-8ecadf-2f0ef80a.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestxswsxgzpj-8ecadf-2f0ef80a.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestjyt4atu4x-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestjyt4atu4x-8ecadf-1b02d7c8.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestjyt4atu4x-8ecadf-1b02d7c8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": {},\n + {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null,\n \ \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/openservicemesh-cliakstest000002\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0caa5ea9-e678-41a9-a285-6f573ce0b8aa\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1f1bb75e-37af-4775-9929-9a2928b7c7e4\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3910' + - '4370' content-type: - application/json date: - - Tue, 19 Oct 2021 07:09:16 GMT + - Wed, 01 Dec 2021 15:27:10 GMT expires: - '-1' pragma: @@ -525,60 +531,63 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestxswsxgzpj-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestxswsxgzpj-8ecadf-2f0ef80a.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestxswsxgzpj-8ecadf-2f0ef80a.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestjyt4atu4x-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestjyt4atu4x-8ecadf-1b02d7c8.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestjyt4atu4x-8ecadf-1b02d7c8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": {},\n + {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null,\n \ \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/openservicemesh-cliakstest000002\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0caa5ea9-e678-41a9-a285-6f573ce0b8aa\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1f1bb75e-37af-4775-9929-9a2928b7c7e4\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3910' + - '4370' content-type: - application/json date: - - Tue, 19 Oct 2021 07:09:16 GMT + - Wed, 01 Dec 2021 15:27:11 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_all_disabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_all_disabled.yaml old mode 100755 new mode 100644 index 3ee0ad2b044..a29f7a29642 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_all_disabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_all_disabled.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:36:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T15:33:38Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 06:36:14 GMT + - Wed, 01 Dec 2021 15:33:38 GMT expires: - '-1' pragma: @@ -43,18 +43,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestifhc4h6sm-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestmlslo6fy4-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -65,38 +66,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1391' + - '1748' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestifhc4h6sm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestifhc4h6sm-8ecadf-5516667b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestifhc4h6sm-8ecadf-5516667b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestmlslo6fy4-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestmlslo6fy4-8ecadf-4a1b3e04.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestmlslo6fy4-8ecadf-4a1b3e04.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -104,22 +106,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3295820-17e0-4f0e-bf83-2151cbd424bd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2b159ce-211c-4fd0-98b9-80edc678a99c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2778' + - '3236' content-type: - application/json date: - - Tue, 19 Oct 2021 06:36:18 GMT + - Wed, 01 Dec 2021 15:33:43 GMT expires: - '-1' pragma: @@ -131,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -149,14 +152,62 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2b159ce-211c-4fd0-98b9-80edc678a99c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ce59b1d2-1c21-d04f-98b9-80edc678a99c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:33:43.9466666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 15:34:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3295820-17e0-4f0e-bf83-2151cbd424bd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2b159ce-211c-4fd0-98b9-80edc678a99c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"205829e3-e017-0e4f-bf83-2151cbd424bd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:18.6466666Z\"\n }" + string: "{\n \"name\": \"ce59b1d2-1c21-d04f-98b9-80edc678a99c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:33:43.9466666Z\"\n }" headers: cache-control: - no-cache @@ -165,7 +216,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:36:48 GMT + - Wed, 01 Dec 2021 15:34:44 GMT expires: - '-1' pragma: @@ -197,14 +248,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3295820-17e0-4f0e-bf83-2151cbd424bd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2b159ce-211c-4fd0-98b9-80edc678a99c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"205829e3-e017-0e4f-bf83-2151cbd424bd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:18.6466666Z\"\n }" + string: "{\n \"name\": \"ce59b1d2-1c21-d04f-98b9-80edc678a99c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:33:43.9466666Z\"\n }" headers: cache-control: - no-cache @@ -213,7 +264,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:37:18 GMT + - Wed, 01 Dec 2021 15:35:14 GMT expires: - '-1' pragma: @@ -245,14 +296,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3295820-17e0-4f0e-bf83-2151cbd424bd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2b159ce-211c-4fd0-98b9-80edc678a99c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"205829e3-e017-0e4f-bf83-2151cbd424bd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:18.6466666Z\"\n }" + string: "{\n \"name\": \"ce59b1d2-1c21-d04f-98b9-80edc678a99c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:33:43.9466666Z\"\n }" headers: cache-control: - no-cache @@ -261,7 +312,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:37:48 GMT + - Wed, 01 Dec 2021 15:35:44 GMT expires: - '-1' pragma: @@ -293,14 +344,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3295820-17e0-4f0e-bf83-2151cbd424bd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2b159ce-211c-4fd0-98b9-80edc678a99c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"205829e3-e017-0e4f-bf83-2151cbd424bd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:18.6466666Z\"\n }" + string: "{\n \"name\": \"ce59b1d2-1c21-d04f-98b9-80edc678a99c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:33:43.9466666Z\"\n }" headers: cache-control: - no-cache @@ -309,7 +360,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:38:18 GMT + - Wed, 01 Dec 2021 15:36:15 GMT expires: - '-1' pragma: @@ -341,14 +392,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3295820-17e0-4f0e-bf83-2151cbd424bd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2b159ce-211c-4fd0-98b9-80edc678a99c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"205829e3-e017-0e4f-bf83-2151cbd424bd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:18.6466666Z\"\n }" + string: "{\n \"name\": \"ce59b1d2-1c21-d04f-98b9-80edc678a99c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:33:43.9466666Z\"\n }" headers: cache-control: - no-cache @@ -357,7 +408,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:38:49 GMT + - Wed, 01 Dec 2021 15:36:46 GMT expires: - '-1' pragma: @@ -389,15 +440,63 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3295820-17e0-4f0e-bf83-2151cbd424bd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2b159ce-211c-4fd0-98b9-80edc678a99c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"205829e3-e017-0e4f-bf83-2151cbd424bd\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:36:18.6466666Z\",\n \"endTime\": - \"2021-10-19T06:39:16.2167304Z\"\n }" + string: "{\n \"name\": \"ce59b1d2-1c21-d04f-98b9-80edc678a99c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:33:43.9466666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 15:37:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2b159ce-211c-4fd0-98b9-80edc678a99c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ce59b1d2-1c21-d04f-98b9-80edc678a99c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:33:43.9466666Z\",\n \"endTime\": + \"2021-12-01T15:37:27.8453465Z\"\n }" headers: cache-control: - no-cache @@ -406,7 +505,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:39:18 GMT + - Wed, 01 Dec 2021 15:37:46 GMT expires: - '-1' pragma: @@ -438,57 +537,60 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestifhc4h6sm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestifhc4h6sm-8ecadf-5516667b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestifhc4h6sm-8ecadf-5516667b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestmlslo6fy4-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestmlslo6fy4-8ecadf-4a1b3e04.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestmlslo6fy4-8ecadf-4a1b3e04.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8867a6f4-6863-46c6-98ce-8f9a244b676e\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2caa04f1-1bc0-4554-935e-ecdd788a7cae\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 06:39:19 GMT + - Wed, 01 Dec 2021 15:37:46 GMT expires: - '-1' pragma: @@ -520,57 +622,60 @@ interactions: ParameterSetName: - --resource-group --name -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestifhc4h6sm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestifhc4h6sm-8ecadf-5516667b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestifhc4h6sm-8ecadf-5516667b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestmlslo6fy4-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestmlslo6fy4-8ecadf-4a1b3e04.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestmlslo6fy4-8ecadf-4a1b3e04.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8867a6f4-6863-46c6-98ce-8f9a244b676e\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2caa04f1-1bc0-4554-935e-ecdd788a7cae\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 06:39:19 GMT + - Wed, 01 Dec 2021 15:37:47 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_confcom_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_confcom_enabled.yaml old mode 100755 new mode 100644 index c11aa3d8cbc..dbc5f573f1a --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_confcom_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_confcom_enabled.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:13:38Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:02:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:13:39 GMT + - Wed, 01 Dec 2021 14:02:25 GMT expires: - '-1' pragma: @@ -43,19 +43,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestjdsuiblph-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesttt4dsq2ae-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": - {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "enableRBAC": - true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": - "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": - "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": + true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "enableRBAC": true, + "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", + "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -66,38 +67,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1479' + - '1836' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestjdsuiblph-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestjdsuiblph-8ecadf-4c19f160.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestjdsuiblph-8ecadf-4c19f160.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesttt4dsq2ae-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesttt4dsq2ae-8ecadf-7620dc26.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesttt4dsq2ae-8ecadf-7620dc26.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n }\n },\n \"nodeResourceGroup\": @@ -107,22 +109,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34307bac-2ba2-4473-99b2-d68e9804e187?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cdeffbea-6519-4057-a2eb-39b02987d2bb?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2928' + - '3386' content-type: - application/json date: - - Tue, 19 Oct 2021 07:13:41 GMT + - Wed, 01 Dec 2021 14:02:31 GMT expires: - '-1' pragma: @@ -134,7 +137,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 201 message: Created @@ -152,23 +155,71 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cdeffbea-6519-4057-a2eb-39b02987d2bb?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"eafbefcd-1965-5740-a2eb-39b02987d2bb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.9666666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:03:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity --ssh-key-value -a -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34307bac-2ba2-4473-99b2-d68e9804e187?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cdeffbea-6519-4057-a2eb-39b02987d2bb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac7b3034-a22b-7344-99b2-d68e9804e187\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:13:41.94Z\"\n }" + string: "{\n \"name\": \"eafbefcd-1965-5740-a2eb-39b02987d2bb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.9666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:14:11 GMT + - Wed, 01 Dec 2021 14:03:31 GMT expires: - '-1' pragma: @@ -200,23 +251,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34307bac-2ba2-4473-99b2-d68e9804e187?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cdeffbea-6519-4057-a2eb-39b02987d2bb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac7b3034-a22b-7344-99b2-d68e9804e187\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:13:41.94Z\"\n }" + string: "{\n \"name\": \"eafbefcd-1965-5740-a2eb-39b02987d2bb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.9666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:14:41 GMT + - Wed, 01 Dec 2021 14:04:01 GMT expires: - '-1' pragma: @@ -248,23 +299,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34307bac-2ba2-4473-99b2-d68e9804e187?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cdeffbea-6519-4057-a2eb-39b02987d2bb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac7b3034-a22b-7344-99b2-d68e9804e187\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:13:41.94Z\"\n }" + string: "{\n \"name\": \"eafbefcd-1965-5740-a2eb-39b02987d2bb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.9666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:15:12 GMT + - Wed, 01 Dec 2021 14:04:31 GMT expires: - '-1' pragma: @@ -296,23 +347,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34307bac-2ba2-4473-99b2-d68e9804e187?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cdeffbea-6519-4057-a2eb-39b02987d2bb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac7b3034-a22b-7344-99b2-d68e9804e187\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:13:41.94Z\"\n }" + string: "{\n \"name\": \"eafbefcd-1965-5740-a2eb-39b02987d2bb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.9666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:15:41 GMT + - Wed, 01 Dec 2021 14:05:02 GMT expires: - '-1' pragma: @@ -344,23 +395,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34307bac-2ba2-4473-99b2-d68e9804e187?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cdeffbea-6519-4057-a2eb-39b02987d2bb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac7b3034-a22b-7344-99b2-d68e9804e187\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:13:41.94Z\"\n }" + string: "{\n \"name\": \"eafbefcd-1965-5740-a2eb-39b02987d2bb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.9666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:16:11 GMT + - Wed, 01 Dec 2021 14:05:31 GMT expires: - '-1' pragma: @@ -392,23 +443,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34307bac-2ba2-4473-99b2-d68e9804e187?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cdeffbea-6519-4057-a2eb-39b02987d2bb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac7b3034-a22b-7344-99b2-d68e9804e187\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:13:41.94Z\"\n }" + string: "{\n \"name\": \"eafbefcd-1965-5740-a2eb-39b02987d2bb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.9666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:16:42 GMT + - Wed, 01 Dec 2021 14:06:01 GMT expires: - '-1' pragma: @@ -440,24 +491,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34307bac-2ba2-4473-99b2-d68e9804e187?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cdeffbea-6519-4057-a2eb-39b02987d2bb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ac7b3034-a22b-7344-99b2-d68e9804e187\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:13:41.94Z\",\n \"endTime\": - \"2021-10-19T07:16:56.0236316Z\"\n }" + string: "{\n \"name\": \"eafbefcd-1965-5740-a2eb-39b02987d2bb\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:02:30.9666666Z\",\n \"endTime\": + \"2021-12-01T14:06:27.0374916Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 07:17:12 GMT + - Wed, 01 Dec 2021 14:06:32 GMT expires: - '-1' pragma: @@ -489,32 +540,33 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestjdsuiblph-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestjdsuiblph-8ecadf-4c19f160.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestjdsuiblph-8ecadf-4c19f160.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesttt4dsq2ae-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesttt4dsq2ae-8ecadf-7620dc26.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesttt4dsq2ae-8ecadf-7620dc26.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n },\n \"identity\": @@ -524,26 +576,28 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4f16443c-4434-49a4-9b9f-1542132fe411\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/57be5390-ee5e-4e8b-b3ef-0b7c6295c466\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3964' + - '4422' content-type: - application/json date: - - Tue, 19 Oct 2021 07:17:12 GMT + - Wed, 01 Dec 2021 14:06:33 GMT expires: - '-1' pragma: @@ -575,32 +629,33 @@ interactions: ParameterSetName: - --resource-group --name -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestjdsuiblph-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestjdsuiblph-8ecadf-4c19f160.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestjdsuiblph-8ecadf-4c19f160.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesttt4dsq2ae-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesttt4dsq2ae-8ecadf-7620dc26.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesttt4dsq2ae-8ecadf-7620dc26.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n },\n \"identity\": @@ -610,26 +665,28 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4f16443c-4434-49a4-9b9f-1542132fe411\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/57be5390-ee5e-4e8b-b3ef-0b7c6295c466\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3964' + - '4422' content-type: - application/json date: - - Tue, 19 Oct 2021 07:17:13 GMT + - Wed, 01 Dec 2021 14:06:33 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_openservicemesh_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_openservicemesh_enabled.yaml old mode 100755 new mode 100644 index 9a2569631fe..b78f953b390 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_openservicemesh_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_show_openservicemesh_enabled.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:03:07Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T15:40:16Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:03:07 GMT + - Wed, 01 Dec 2021 15:40:16 GMT expires: - '-1' pragma: @@ -43,19 +43,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesta345uxfmd-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest5qtibqeps-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": - {"enabled": true, "config": {}}}, "enableRBAC": true, "enablePodSecurityPolicy": - false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": true, + "config": {}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": + "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -66,62 +66,65 @@ interactions: Connection: - keep-alive Content-Length: - - '1441' + - '1798' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesta345uxfmd-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesta345uxfmd-8ecadf-01d26e30.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesta345uxfmd-8ecadf-01d26e30.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest5qtibqeps-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest5qtibqeps-8ecadf-e8ac76ef.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest5qtibqeps-8ecadf-e8ac76ef.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": {}\n + {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null\n \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/340c61c6-7281-4deb-99ef-d7edf9186dc1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/994e05de-f757-4073-a560-586e932dca9a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2877' + - '3337' content-type: - application/json date: - - Tue, 19 Oct 2021 07:03:10 GMT + - Wed, 01 Dec 2021 15:40:21 GMT expires: - '-1' pragma: @@ -133,7 +136,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created @@ -151,23 +154,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/340c61c6-7281-4deb-99ef-d7edf9186dc1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/994e05de-f757-4073-a560-586e932dca9a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c6610c34-8172-eb4d-99ef-d7edf9186dc1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:11.35Z\"\n }" + string: "{\n \"name\": \"de054e99-57f7-7340-a560-586e932dca9a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:40:21.5033333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:03:41 GMT + - Wed, 01 Dec 2021 15:40:52 GMT expires: - '-1' pragma: @@ -199,23 +202,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/340c61c6-7281-4deb-99ef-d7edf9186dc1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/994e05de-f757-4073-a560-586e932dca9a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c6610c34-8172-eb4d-99ef-d7edf9186dc1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:11.35Z\"\n }" + string: "{\n \"name\": \"de054e99-57f7-7340-a560-586e932dca9a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:40:21.5033333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:04:11 GMT + - Wed, 01 Dec 2021 15:41:21 GMT expires: - '-1' pragma: @@ -247,23 +250,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/340c61c6-7281-4deb-99ef-d7edf9186dc1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/994e05de-f757-4073-a560-586e932dca9a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c6610c34-8172-eb4d-99ef-d7edf9186dc1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:11.35Z\"\n }" + string: "{\n \"name\": \"de054e99-57f7-7340-a560-586e932dca9a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:40:21.5033333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:04:41 GMT + - Wed, 01 Dec 2021 15:41:51 GMT expires: - '-1' pragma: @@ -295,23 +298,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/340c61c6-7281-4deb-99ef-d7edf9186dc1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/994e05de-f757-4073-a560-586e932dca9a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c6610c34-8172-eb4d-99ef-d7edf9186dc1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:11.35Z\"\n }" + string: "{\n \"name\": \"de054e99-57f7-7340-a560-586e932dca9a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:40:21.5033333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:05:10 GMT + - Wed, 01 Dec 2021 15:42:21 GMT expires: - '-1' pragma: @@ -343,23 +346,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/340c61c6-7281-4deb-99ef-d7edf9186dc1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/994e05de-f757-4073-a560-586e932dca9a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c6610c34-8172-eb4d-99ef-d7edf9186dc1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:11.35Z\"\n }" + string: "{\n \"name\": \"de054e99-57f7-7340-a560-586e932dca9a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:40:21.5033333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:05:41 GMT + - Wed, 01 Dec 2021 15:42:52 GMT expires: - '-1' pragma: @@ -391,24 +394,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/340c61c6-7281-4deb-99ef-d7edf9186dc1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/994e05de-f757-4073-a560-586e932dca9a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c6610c34-8172-eb4d-99ef-d7edf9186dc1\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:03:11.35Z\",\n \"endTime\": - \"2021-10-19T07:05:49.884355Z\"\n }" + string: "{\n \"name\": \"de054e99-57f7-7340-a560-586e932dca9a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:40:21.5033333Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:11 GMT + - Wed, 01 Dec 2021 15:43:22 GMT expires: - '-1' pragma: @@ -440,60 +442,112 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/994e05de-f757-4073-a560-586e932dca9a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"de054e99-57f7-7340-a560-586e932dca9a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:40:21.5033333Z\",\n \"endTime\": + \"2021-12-01T15:43:34.8479056Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 15:43:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity --ssh-key-value -a -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesta345uxfmd-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesta345uxfmd-8ecadf-01d26e30.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesta345uxfmd-8ecadf-01d26e30.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest5qtibqeps-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest5qtibqeps-8ecadf-e8ac76ef.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest5qtibqeps-8ecadf-e8ac76ef.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": {},\n + {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null,\n \ \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/openservicemesh-cliakstest000002\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2d79aec5-15ef-41ee-b48f-282f2759f99f\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/05b486fe-62b8-4013-a3ca-b48dcf1e458b\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3910' + - '4370' content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:11 GMT + - Wed, 01 Dec 2021 15:43:53 GMT expires: - '-1' pragma: @@ -525,60 +579,63 @@ interactions: ParameterSetName: - --resource-group --name -a -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesta345uxfmd-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesta345uxfmd-8ecadf-01d26e30.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesta345uxfmd-8ecadf-01d26e30.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest5qtibqeps-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest5qtibqeps-8ecadf-e8ac76ef.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest5qtibqeps-8ecadf-e8ac76ef.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": {},\n + {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null,\n \ \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/openservicemesh-cliakstest000002\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2d79aec5-15ef-41ee-b48f-282f2759f99f\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/05b486fe-62b8-4013-a3ca-b48dcf1e458b\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3910' + - '4370' content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:12 GMT + - Wed, 01 Dec 2021 15:43:54 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_all_disabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_all_disabled.yaml old mode 100755 new mode 100644 index 3609a50308e..d71a911a1c8 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_all_disabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_all_disabled.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:39:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T15:51:33Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 06:39:48 GMT + - Wed, 01 Dec 2021 15:51:34 GMT expires: - '-1' pragma: @@ -43,18 +43,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestiftafgj22-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestddidscech-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -65,38 +66,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1391' + - '1748' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestiftafgj22-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestiftafgj22-8ecadf-ec66279b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestiftafgj22-8ecadf-ec66279b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestddidscech-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestddidscech-8ecadf-38a4a0c6.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestddidscech-8ecadf-38a4a0c6.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -104,22 +106,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc14552a-9de1-4356-bc48-3f7842e4770a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d37cdf5-3f49-435e-b121-e8fb03ec9dab?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2778' + - '3236' content-type: - application/json date: - - Tue, 19 Oct 2021 06:39:51 GMT + - Wed, 01 Dec 2021 15:51:39 GMT expires: - '-1' pragma: @@ -131,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -149,14 +152,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc14552a-9de1-4356-bc48-3f7842e4770a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d37cdf5-3f49-435e-b121-e8fb03ec9dab?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2a5514cc-e19d-5643-bc48-3f7842e4770a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:52.3133333Z\"\n }" + string: "{\n \"name\": \"f5cd374d-493f-5e43-b121-e8fb03ec9dab\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:51:39.8966666Z\"\n }" headers: cache-control: - no-cache @@ -165,7 +168,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:40:21 GMT + - Wed, 01 Dec 2021 15:52:09 GMT expires: - '-1' pragma: @@ -197,14 +200,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc14552a-9de1-4356-bc48-3f7842e4770a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d37cdf5-3f49-435e-b121-e8fb03ec9dab?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2a5514cc-e19d-5643-bc48-3f7842e4770a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:52.3133333Z\"\n }" + string: "{\n \"name\": \"f5cd374d-493f-5e43-b121-e8fb03ec9dab\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:51:39.8966666Z\"\n }" headers: cache-control: - no-cache @@ -213,7 +216,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:40:52 GMT + - Wed, 01 Dec 2021 15:52:39 GMT expires: - '-1' pragma: @@ -245,14 +248,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc14552a-9de1-4356-bc48-3f7842e4770a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d37cdf5-3f49-435e-b121-e8fb03ec9dab?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2a5514cc-e19d-5643-bc48-3f7842e4770a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:52.3133333Z\"\n }" + string: "{\n \"name\": \"f5cd374d-493f-5e43-b121-e8fb03ec9dab\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:51:39.8966666Z\"\n }" headers: cache-control: - no-cache @@ -261,7 +264,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:41:22 GMT + - Wed, 01 Dec 2021 15:53:10 GMT expires: - '-1' pragma: @@ -293,14 +296,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc14552a-9de1-4356-bc48-3f7842e4770a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d37cdf5-3f49-435e-b121-e8fb03ec9dab?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2a5514cc-e19d-5643-bc48-3f7842e4770a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:52.3133333Z\"\n }" + string: "{\n \"name\": \"f5cd374d-493f-5e43-b121-e8fb03ec9dab\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:51:39.8966666Z\"\n }" headers: cache-control: - no-cache @@ -309,7 +312,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:41:52 GMT + - Wed, 01 Dec 2021 15:53:40 GMT expires: - '-1' pragma: @@ -341,14 +344,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc14552a-9de1-4356-bc48-3f7842e4770a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d37cdf5-3f49-435e-b121-e8fb03ec9dab?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2a5514cc-e19d-5643-bc48-3f7842e4770a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:52.3133333Z\"\n }" + string: "{\n \"name\": \"f5cd374d-493f-5e43-b121-e8fb03ec9dab\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:51:39.8966666Z\"\n }" headers: cache-control: - no-cache @@ -357,7 +360,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:42:22 GMT + - Wed, 01 Dec 2021 15:54:10 GMT expires: - '-1' pragma: @@ -389,15 +392,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc14552a-9de1-4356-bc48-3f7842e4770a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d37cdf5-3f49-435e-b121-e8fb03ec9dab?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2a5514cc-e19d-5643-bc48-3f7842e4770a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:39:52.3133333Z\",\n \"endTime\": - \"2021-10-19T06:42:36.0017374Z\"\n }" + string: "{\n \"name\": \"f5cd374d-493f-5e43-b121-e8fb03ec9dab\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:51:39.8966666Z\",\n \"endTime\": + \"2021-12-01T15:54:22.5766585Z\"\n }" headers: cache-control: - no-cache @@ -406,7 +409,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:42:52 GMT + - Wed, 01 Dec 2021 15:54:40 GMT expires: - '-1' pragma: @@ -438,57 +441,60 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestiftafgj22-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestiftafgj22-8ecadf-ec66279b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestiftafgj22-8ecadf-ec66279b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestddidscech-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestddidscech-8ecadf-38a4a0c6.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestddidscech-8ecadf-38a4a0c6.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fae66aaf-ee64-4ca7-8812-661ae95ec578\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b4ba6733-880a-43b9-b636-a5ac343fd788\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 06:42:52 GMT + - Wed, 01 Dec 2021 15:54:41 GMT expires: - '-1' pragma: @@ -520,57 +526,60 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestiftafgj22-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestiftafgj22-8ecadf-ec66279b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestiftafgj22-8ecadf-ec66279b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestddidscech-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestddidscech-8ecadf-38a4a0c6.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestddidscech-8ecadf-38a4a0c6.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fae66aaf-ee64-4ca7-8812-661ae95ec578\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b4ba6733-880a-43b9-b636-a5ac343fd788\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 06:42:54 GMT + - Wed, 01 Dec 2021 15:54:42 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_azurekeyvaultsecretsprovider.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_azurekeyvaultsecretsprovider.yaml index a3b2482a531..630c3e7467b 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_azurekeyvaultsecretsprovider.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_azurekeyvaultsecretsprovider.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:01:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T15:57:43Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:01:39 GMT + - Wed, 01 Dec 2021 15:57:44 GMT expires: - '-1' pragma: @@ -43,18 +43,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestij6lrdm57-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest3vxqblq5y-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -65,38 +66,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1391' + - '1748' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestij6lrdm57-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestij6lrdm57-8ecadf-2776199f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestij6lrdm57-8ecadf-2776199f.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest3vxqblq5y-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest3vxqblq5y-8ecadf-471878bd.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest3vxqblq5y-8ecadf-471878bd.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -104,22 +106,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e03999ca-fe9d-4883-9a3f-d66bab7b808e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3932893e-3d6a-4177-a9ed-6bc511008277?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2778' + - '3236' content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:43 GMT + - Wed, 01 Dec 2021 15:57:49 GMT expires: - '-1' pragma: @@ -131,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -149,14 +152,62 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3932893e-3d6a-4177-a9ed-6bc511008277?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"3e893239-6a3d-7741-a9ed-6bc511008277\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:57:49.6333333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 15:58:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e03999ca-fe9d-4883-9a3f-d66bab7b808e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3932893e-3d6a-4177-a9ed-6bc511008277?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca9939e0-9dfe-8348-9a3f-d66bab7b808e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:01:43.1933333Z\"\n }" + string: "{\n \"name\": \"3e893239-6a3d-7741-a9ed-6bc511008277\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:57:49.6333333Z\"\n }" headers: cache-control: - no-cache @@ -165,7 +216,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:02:12 GMT + - Wed, 01 Dec 2021 15:58:50 GMT expires: - '-1' pragma: @@ -197,14 +248,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e03999ca-fe9d-4883-9a3f-d66bab7b808e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3932893e-3d6a-4177-a9ed-6bc511008277?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca9939e0-9dfe-8348-9a3f-d66bab7b808e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:01:43.1933333Z\"\n }" + string: "{\n \"name\": \"3e893239-6a3d-7741-a9ed-6bc511008277\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:57:49.6333333Z\"\n }" headers: cache-control: - no-cache @@ -213,7 +264,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:02:42 GMT + - Wed, 01 Dec 2021 15:59:20 GMT expires: - '-1' pragma: @@ -245,14 +296,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e03999ca-fe9d-4883-9a3f-d66bab7b808e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3932893e-3d6a-4177-a9ed-6bc511008277?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca9939e0-9dfe-8348-9a3f-d66bab7b808e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:01:43.1933333Z\"\n }" + string: "{\n \"name\": \"3e893239-6a3d-7741-a9ed-6bc511008277\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:57:49.6333333Z\"\n }" headers: cache-control: - no-cache @@ -261,7 +312,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:03:12 GMT + - Wed, 01 Dec 2021 15:59:50 GMT expires: - '-1' pragma: @@ -293,14 +344,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e03999ca-fe9d-4883-9a3f-d66bab7b808e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3932893e-3d6a-4177-a9ed-6bc511008277?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca9939e0-9dfe-8348-9a3f-d66bab7b808e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:01:43.1933333Z\"\n }" + string: "{\n \"name\": \"3e893239-6a3d-7741-a9ed-6bc511008277\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:57:49.6333333Z\"\n }" headers: cache-control: - no-cache @@ -309,7 +360,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:03:43 GMT + - Wed, 01 Dec 2021 16:00:20 GMT expires: - '-1' pragma: @@ -341,14 +392,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e03999ca-fe9d-4883-9a3f-d66bab7b808e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3932893e-3d6a-4177-a9ed-6bc511008277?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca9939e0-9dfe-8348-9a3f-d66bab7b808e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:01:43.1933333Z\"\n }" + string: "{\n \"name\": \"3e893239-6a3d-7741-a9ed-6bc511008277\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:57:49.6333333Z\"\n }" headers: cache-control: - no-cache @@ -357,7 +408,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:04:13 GMT + - Wed, 01 Dec 2021 16:00:51 GMT expires: - '-1' pragma: @@ -389,15 +440,15 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e03999ca-fe9d-4883-9a3f-d66bab7b808e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3932893e-3d6a-4177-a9ed-6bc511008277?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca9939e0-9dfe-8348-9a3f-d66bab7b808e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:01:43.1933333Z\",\n \"endTime\": - \"2021-10-19T07:04:30.4517704Z\"\n }" + string: "{\n \"name\": \"3e893239-6a3d-7741-a9ed-6bc511008277\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:57:49.6333333Z\",\n \"endTime\": + \"2021-12-01T16:00:52.4689646Z\"\n }" headers: cache-control: - no-cache @@ -406,7 +457,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:04:43 GMT + - Wed, 01 Dec 2021 16:01:20 GMT expires: - '-1' pragma: @@ -438,57 +489,60 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestij6lrdm57-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestij6lrdm57-8ecadf-2776199f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestij6lrdm57-8ecadf-2776199f.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest3vxqblq5y-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest3vxqblq5y-8ecadf-471878bd.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest3vxqblq5y-8ecadf-471878bd.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6f069e42-6741-427a-8acd-4bcb55ccd62e\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6647f1bb-0613-49e1-a9d8-bc6bb012cbea\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 07:04:43 GMT + - Wed, 01 Dec 2021 16:01:21 GMT expires: - '-1' pragma: @@ -520,57 +574,60 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestij6lrdm57-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestij6lrdm57-8ecadf-2776199f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestij6lrdm57-8ecadf-2776199f.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest3vxqblq5y-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest3vxqblq5y-8ecadf-471878bd.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest3vxqblq5y-8ecadf-471878bd.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6f069e42-6741-427a-8acd-4bcb55ccd62e\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6647f1bb-0613-49e1-a9d8-bc6bb012cbea\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 07:04:44 GMT + - Wed, 01 Dec 2021 16:01:22 GMT expires: - '-1' pragma: @@ -591,25 +648,26 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestij6lrdm57-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitest3vxqblq5y-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": - {"enabled": true, "config": {"enableSecretRotation": "false"}}}, "nodeResourceGroup": - "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": - false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", - "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6f069e42-6741-427a-8acd-4bcb55ccd62e"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": + true, "config": {"enableSecretRotation": "false", "rotationPollInterval": "2m"}}}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6647f1bb-0613-49e1-a9d8-bc6bb012cbea"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -620,67 +678,70 @@ interactions: Connection: - keep-alive Content-Length: - - '2378' + - '2819' Content-Type: - application/json ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestij6lrdm57-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestij6lrdm57-8ecadf-2776199f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestij6lrdm57-8ecadf-2776199f.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest3vxqblq5y-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest3vxqblq5y-8ecadf-471878bd.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest3vxqblq5y-8ecadf-471878bd.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"false\"\n }\n }\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6f069e42-6741-427a-8acd-4bcb55ccd62e\"\n + {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": + \"2m\"\n }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6647f1bb-0613-49e1-a9d8-bc6bb012cbea\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/de503f25-4824-4532-9221-bd7fae7363b2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a75a02a-3af1-4f18-abb5-d00b2a8b552d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3595' + - '4089' content-type: - application/json date: - - Tue, 19 Oct 2021 07:04:46 GMT + - Wed, 01 Dec 2021 16:01:26 GMT expires: - '-1' pragma: @@ -696,7 +757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 200 message: OK @@ -714,23 +775,23 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/de503f25-4824-4532-9221-bd7fae7363b2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a75a02a-3af1-4f18-abb5-d00b2a8b552d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"253f50de-2448-3245-9221-bd7fae7363b2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:04:46.9366666Z\"\n }" + string: "{\n \"name\": \"2aa0758a-f13a-184f-abb5-d00b2a8b552d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:01:25.8Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:05:17 GMT + - Wed, 01 Dec 2021 16:01:56 GMT expires: - '-1' pragma: @@ -762,23 +823,23 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/de503f25-4824-4532-9221-bd7fae7363b2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a75a02a-3af1-4f18-abb5-d00b2a8b552d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"253f50de-2448-3245-9221-bd7fae7363b2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:04:46.9366666Z\"\n }" + string: "{\n \"name\": \"2aa0758a-f13a-184f-abb5-d00b2a8b552d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:01:25.8Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:05:46 GMT + - Wed, 01 Dec 2021 16:02:26 GMT expires: - '-1' pragma: @@ -810,24 +871,24 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/de503f25-4824-4532-9221-bd7fae7363b2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a75a02a-3af1-4f18-abb5-d00b2a8b552d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"253f50de-2448-3245-9221-bd7fae7363b2\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:04:46.9366666Z\",\n \"endTime\": - \"2021-10-19T07:05:49.3836191Z\"\n }" + string: "{\n \"name\": \"2aa0758a-f13a-184f-abb5-d00b2a8b552d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T16:01:25.8Z\",\n \"endTime\": + \"2021-12-01T16:02:36.8726343Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '164' content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:16 GMT + - Wed, 01 Dec 2021 16:02:56 GMT expires: - '-1' pragma: @@ -859,61 +920,64 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestij6lrdm57-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestij6lrdm57-8ecadf-2776199f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestij6lrdm57-8ecadf-2776199f.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest3vxqblq5y-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest3vxqblq5y-8ecadf-471878bd.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest3vxqblq5y-8ecadf-471878bd.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"false\"\n },\n \"identity\": - {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n + {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": + \"2m\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6f069e42-6741-427a-8acd-4bcb55ccd62e\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6647f1bb-0613-49e1-a9d8-bc6bb012cbea\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3980' + - '4474' content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:17 GMT + - Wed, 01 Dec 2021 16:02:57 GMT expires: - '-1' pragma: @@ -945,61 +1009,64 @@ interactions: ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestij6lrdm57-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestij6lrdm57-8ecadf-2776199f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestij6lrdm57-8ecadf-2776199f.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest3vxqblq5y-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest3vxqblq5y-8ecadf-471878bd.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest3vxqblq5y-8ecadf-471878bd.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"false\"\n },\n \"identity\": - {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n + {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": + \"2m\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6f069e42-6741-427a-8acd-4bcb55ccd62e\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6647f1bb-0613-49e1-a9d8-bc6bb012cbea\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3980' + - '4474' content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:18 GMT + - Wed, 01 Dec 2021 16:02:58 GMT expires: - '-1' pragma: @@ -1031,61 +1098,64 @@ interactions: ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestij6lrdm57-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestij6lrdm57-8ecadf-2776199f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestij6lrdm57-8ecadf-2776199f.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest3vxqblq5y-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest3vxqblq5y-8ecadf-471878bd.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest3vxqblq5y-8ecadf-471878bd.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"false\"\n },\n \"identity\": - {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n + {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": + \"2m\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6f069e42-6741-427a-8acd-4bcb55ccd62e\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6647f1bb-0613-49e1-a9d8-bc6bb012cbea\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3980' + - '4474' content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:18 GMT + - Wed, 01 Dec 2021 16:02:59 GMT expires: - '-1' pragma: @@ -1106,25 +1176,26 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestij6lrdm57-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitest3vxqblq5y-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": - {"enabled": true, "config": {"enableSecretRotation": "true"}}}, "nodeResourceGroup": - "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": - false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", - "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6f069e42-6741-427a-8acd-4bcb55ccd62e"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": + true, "config": {"enableSecretRotation": "true", "rotationPollInterval": "2m"}}}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6647f1bb-0613-49e1-a9d8-bc6bb012cbea"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -1135,67 +1206,70 @@ interactions: Connection: - keep-alive Content-Length: - - '2377' + - '2818' Content-Type: - application/json ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestij6lrdm57-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestij6lrdm57-8ecadf-2776199f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestij6lrdm57-8ecadf-2776199f.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest3vxqblq5y-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest3vxqblq5y-8ecadf-471878bd.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest3vxqblq5y-8ecadf-471878bd.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"true\"\n }\n }\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6f069e42-6741-427a-8acd-4bcb55ccd62e\"\n + {\n \"enableSecretRotation\": \"true\",\n \"rotationPollInterval\": + \"2m\"\n }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6647f1bb-0613-49e1-a9d8-bc6bb012cbea\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f87525f-5cb6-484b-b99c-0cac26836d7e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cae0c7c4-0c33-48e6-b9e4-955571e92fd1?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3594' + - '4088' content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:20 GMT + - Wed, 01 Dec 2021 16:03:02 GMT expires: - '-1' pragma: @@ -1211,7 +1285,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 200 message: OK @@ -1229,14 +1303,14 @@ interactions: ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f87525f-5cb6-484b-b99c-0cac26836d7e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cae0c7c4-0c33-48e6-b9e4-955571e92fd1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5f52872f-b65c-4b48-b99c-0cac26836d7e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:20.6333333Z\"\n }" + string: "{\n \"name\": \"c4c7e0ca-330c-e648-b9e4-955571e92fd1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:03:02.2933333Z\"\n }" headers: cache-control: - no-cache @@ -1245,7 +1319,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:50 GMT + - Wed, 01 Dec 2021 16:03:32 GMT expires: - '-1' pragma: @@ -1277,14 +1351,14 @@ interactions: ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f87525f-5cb6-484b-b99c-0cac26836d7e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cae0c7c4-0c33-48e6-b9e4-955571e92fd1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5f52872f-b65c-4b48-b99c-0cac26836d7e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:20.6333333Z\"\n }" + string: "{\n \"name\": \"c4c7e0ca-330c-e648-b9e4-955571e92fd1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:03:02.2933333Z\"\n }" headers: cache-control: - no-cache @@ -1293,7 +1367,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:07:20 GMT + - Wed, 01 Dec 2021 16:04:02 GMT expires: - '-1' pragma: @@ -1325,24 +1399,24 @@ interactions: ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f87525f-5cb6-484b-b99c-0cac26836d7e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cae0c7c4-0c33-48e6-b9e4-955571e92fd1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5f52872f-b65c-4b48-b99c-0cac26836d7e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:06:20.6333333Z\",\n \"endTime\": - \"2021-10-19T07:07:27.2375868Z\"\n }" + string: "{\n \"name\": \"c4c7e0ca-330c-e648-b9e4-955571e92fd1\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T16:03:02.2933333Z\",\n \"endTime\": + \"2021-12-01T16:04:27.34269Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '168' content-type: - application/json date: - - Tue, 19 Oct 2021 07:07:50 GMT + - Wed, 01 Dec 2021 16:04:33 GMT expires: - '-1' pragma: @@ -1374,61 +1448,64 @@ interactions: ParameterSetName: - --addon --enable-secret-rotation --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestij6lrdm57-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestij6lrdm57-8ecadf-2776199f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestij6lrdm57-8ecadf-2776199f.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest3vxqblq5y-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest3vxqblq5y-8ecadf-471878bd.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest3vxqblq5y-8ecadf-471878bd.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"true\"\n },\n \"identity\": {\n - \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n + {\n \"enableSecretRotation\": \"true\",\n \"rotationPollInterval\": + \"2m\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6f069e42-6741-427a-8acd-4bcb55ccd62e\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6647f1bb-0613-49e1-a9d8-bc6bb012cbea\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3979' + - '4473' content-type: - application/json date: - - Tue, 19 Oct 2021 07:07:51 GMT + - Wed, 01 Dec 2021 16:04:34 GMT expires: - '-1' pragma: @@ -1462,8 +1539,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -1471,17 +1548,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2e2b4a0-3db6-4fd2-a6e0-8d910ffe9960?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/794d9638-b957-46d7-994b-64e3c6fad9d8?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 07:07:51 GMT + - Wed, 01 Dec 2021 16:04:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/e2e2b4a0-3db6-4fd2-a6e0-8d910ffe9960?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/794d9638-b957-46d7-994b-64e3c6fad9d8?api-version=2016-03-30 pragma: - no-cache server: @@ -1491,7 +1568,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14997' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_confcom.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_confcom.yaml old mode 100755 new mode 100644 index d3c56087a19..ce905e656e6 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_confcom.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_addon_update_with_confcom.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:56:27Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T15:42:14Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 06:56:28 GMT + - Wed, 01 Dec 2021 15:42:14 GMT expires: - '-1' pragma: @@ -43,18 +43,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestsavb2rjim-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestwc55cef4l-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -65,38 +66,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1391' + - '1748' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestsavb2rjim-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestsavb2rjim-8ecadf-9d25ca82.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestsavb2rjim-8ecadf-9d25ca82.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestwc55cef4l-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestwc55cef4l-8ecadf-aa4aa94b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestwc55cef4l-8ecadf-aa4aa94b.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -104,22 +106,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47bac01f-a30a-4f83-8657-c1f049fd3c08?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/04e934fa-7932-40e8-9bdf-fa96556c3170?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2778' + - '3236' content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:31 GMT + - Wed, 01 Dec 2021 15:42:21 GMT expires: - '-1' pragma: @@ -131,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 201 message: Created @@ -149,14 +152,62 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/04e934fa-7932-40e8-9bdf-fa96556c3170?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fa34e904-3279-e840-9bdf-fa96556c3170\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:42:20.9533333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 15:42:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47bac01f-a30a-4f83-8657-c1f049fd3c08?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/04e934fa-7932-40e8-9bdf-fa96556c3170?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fc0ba47-0aa3-834f-8657-c1f049fd3c08\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:31.6466666Z\"\n }" + string: "{\n \"name\": \"fa34e904-3279-e840-9bdf-fa96556c3170\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:42:20.9533333Z\"\n }" headers: cache-control: - no-cache @@ -165,7 +216,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:57:01 GMT + - Wed, 01 Dec 2021 15:43:21 GMT expires: - '-1' pragma: @@ -197,14 +248,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47bac01f-a30a-4f83-8657-c1f049fd3c08?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/04e934fa-7932-40e8-9bdf-fa96556c3170?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fc0ba47-0aa3-834f-8657-c1f049fd3c08\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:31.6466666Z\"\n }" + string: "{\n \"name\": \"fa34e904-3279-e840-9bdf-fa96556c3170\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:42:20.9533333Z\"\n }" headers: cache-control: - no-cache @@ -213,7 +264,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:57:31 GMT + - Wed, 01 Dec 2021 15:43:51 GMT expires: - '-1' pragma: @@ -245,14 +296,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47bac01f-a30a-4f83-8657-c1f049fd3c08?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/04e934fa-7932-40e8-9bdf-fa96556c3170?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fc0ba47-0aa3-834f-8657-c1f049fd3c08\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:31.6466666Z\"\n }" + string: "{\n \"name\": \"fa34e904-3279-e840-9bdf-fa96556c3170\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:42:20.9533333Z\"\n }" headers: cache-control: - no-cache @@ -261,7 +312,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:58:01 GMT + - Wed, 01 Dec 2021 15:44:21 GMT expires: - '-1' pragma: @@ -293,14 +344,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47bac01f-a30a-4f83-8657-c1f049fd3c08?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/04e934fa-7932-40e8-9bdf-fa96556c3170?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fc0ba47-0aa3-834f-8657-c1f049fd3c08\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:31.6466666Z\"\n }" + string: "{\n \"name\": \"fa34e904-3279-e840-9bdf-fa96556c3170\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:42:20.9533333Z\"\n }" headers: cache-control: - no-cache @@ -309,7 +360,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:58:32 GMT + - Wed, 01 Dec 2021 15:44:51 GMT expires: - '-1' pragma: @@ -341,14 +392,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47bac01f-a30a-4f83-8657-c1f049fd3c08?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/04e934fa-7932-40e8-9bdf-fa96556c3170?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fc0ba47-0aa3-834f-8657-c1f049fd3c08\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:31.6466666Z\"\n }" + string: "{\n \"name\": \"fa34e904-3279-e840-9bdf-fa96556c3170\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:42:20.9533333Z\"\n }" headers: cache-control: - no-cache @@ -357,7 +408,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:59:01 GMT + - Wed, 01 Dec 2021 15:45:21 GMT expires: - '-1' pragma: @@ -389,15 +440,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47bac01f-a30a-4f83-8657-c1f049fd3c08?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/04e934fa-7932-40e8-9bdf-fa96556c3170?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fc0ba47-0aa3-834f-8657-c1f049fd3c08\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:56:31.6466666Z\",\n \"endTime\": - \"2021-10-19T06:59:12.7642729Z\"\n }" + string: "{\n \"name\": \"fa34e904-3279-e840-9bdf-fa96556c3170\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:42:20.9533333Z\",\n \"endTime\": + \"2021-12-01T15:45:39.2773296Z\"\n }" headers: cache-control: - no-cache @@ -406,7 +457,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:59:31 GMT + - Wed, 01 Dec 2021 15:45:51 GMT expires: - '-1' pragma: @@ -438,57 +489,60 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestsavb2rjim-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestsavb2rjim-8ecadf-9d25ca82.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestsavb2rjim-8ecadf-9d25ca82.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestwc55cef4l-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestwc55cef4l-8ecadf-aa4aa94b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestwc55cef4l-8ecadf-aa4aa94b.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0b072609-0e8a-417f-b05b-0c2ec80bbcec\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/134fae11-945c-4986-ac65-f8cdb4b68518\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 06:59:32 GMT + - Wed, 01 Dec 2021 15:45:52 GMT expires: - '-1' pragma: @@ -520,57 +574,60 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestsavb2rjim-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestsavb2rjim-8ecadf-9d25ca82.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestsavb2rjim-8ecadf-9d25ca82.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestwc55cef4l-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestwc55cef4l-8ecadf-aa4aa94b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestwc55cef4l-8ecadf-aa4aa94b.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0b072609-0e8a-417f-b05b-0c2ec80bbcec\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/134fae11-945c-4986-ac65-f8cdb4b68518\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 06:59:33 GMT + - Wed, 01 Dec 2021 15:45:53 GMT expires: - '-1' pragma: @@ -591,25 +648,26 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestsavb2rjim-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestwc55cef4l-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": - {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "nodeResourceGroup": + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": + true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0b072609-0e8a-417f-b05b-0c2ec80bbcec"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/134fae11-945c-4986-ac65-f8cdb4b68518"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -620,38 +678,39 @@ interactions: Connection: - keep-alive Content-Length: - - '2372' + - '2783' Content-Type: - application/json ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestsavb2rjim-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestsavb2rjim-8ecadf-9d25ca82.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestsavb2rjim-8ecadf-9d25ca82.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestwc55cef4l-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestwc55cef4l-8ecadf-aa4aa94b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestwc55cef4l-8ecadf-aa4aa94b.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n }\n },\n \"nodeResourceGroup\": @@ -659,28 +718,30 @@ interactions: \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0b072609-0e8a-417f-b05b-0c2ec80bbcec\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/134fae11-945c-4986-ac65-f8cdb4b68518\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dafd3c28-0899-4c94-b903-3598529bb853?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ae52017-170a-4a3a-862a-753399978abf?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3589' + - '4047' content-type: - application/json date: - - Tue, 19 Oct 2021 06:59:35 GMT + - Wed, 01 Dec 2021 15:45:57 GMT expires: - '-1' pragma: @@ -696,7 +757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 200 message: OK @@ -714,14 +775,14 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dafd3c28-0899-4c94-b903-3598529bb853?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ae52017-170a-4a3a-862a-753399978abf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"283cfdda-9908-944c-b903-3598529bb853\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:59:35.7533333Z\"\n }" + string: "{\n \"name\": \"1720e54a-0a17-3a4a-862a-753399978abf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:45:57.0633333Z\"\n }" headers: cache-control: - no-cache @@ -730,7 +791,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:00:05 GMT + - Wed, 01 Dec 2021 15:46:27 GMT expires: - '-1' pragma: @@ -762,14 +823,14 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dafd3c28-0899-4c94-b903-3598529bb853?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ae52017-170a-4a3a-862a-753399978abf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"283cfdda-9908-944c-b903-3598529bb853\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:59:35.7533333Z\"\n }" + string: "{\n \"name\": \"1720e54a-0a17-3a4a-862a-753399978abf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:45:57.0633333Z\"\n }" headers: cache-control: - no-cache @@ -778,7 +839,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:00:36 GMT + - Wed, 01 Dec 2021 15:46:57 GMT expires: - '-1' pragma: @@ -810,15 +871,15 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dafd3c28-0899-4c94-b903-3598529bb853?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ae52017-170a-4a3a-862a-753399978abf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"283cfdda-9908-944c-b903-3598529bb853\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:59:35.7533333Z\",\n \"endTime\": - \"2021-10-19T07:00:40.1181793Z\"\n }" + string: "{\n \"name\": \"1720e54a-0a17-3a4a-862a-753399978abf\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:45:57.0633333Z\",\n \"endTime\": + \"2021-12-01T15:47:05.1037138Z\"\n }" headers: cache-control: - no-cache @@ -827,7 +888,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:05 GMT + - Wed, 01 Dec 2021 15:47:27 GMT expires: - '-1' pragma: @@ -859,32 +920,33 @@ interactions: ParameterSetName: - --addon --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestsavb2rjim-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestsavb2rjim-8ecadf-9d25ca82.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestsavb2rjim-8ecadf-9d25ca82.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestwc55cef4l-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestwc55cef4l-8ecadf-aa4aa94b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestwc55cef4l-8ecadf-aa4aa94b.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n },\n \"identity\": @@ -894,26 +956,28 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0b072609-0e8a-417f-b05b-0c2ec80bbcec\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/134fae11-945c-4986-ac65-f8cdb4b68518\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3964' + - '4422' content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:06 GMT + - Wed, 01 Dec 2021 15:47:28 GMT expires: - '-1' pragma: @@ -945,32 +1009,33 @@ interactions: ParameterSetName: - --resource-group --name -a --enable-sgxquotehelper -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestsavb2rjim-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestsavb2rjim-8ecadf-9d25ca82.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestsavb2rjim-8ecadf-9d25ca82.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestwc55cef4l-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestwc55cef4l-8ecadf-aa4aa94b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestwc55cef4l-8ecadf-aa4aa94b.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n },\n \"identity\": @@ -980,26 +1045,28 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0b072609-0e8a-417f-b05b-0c2ec80bbcec\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/134fae11-945c-4986-ac65-f8cdb4b68518\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3964' + - '4422' content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:07 GMT + - Wed, 01 Dec 2021 15:47:29 GMT expires: - '-1' pragma: @@ -1031,32 +1098,33 @@ interactions: ParameterSetName: - --resource-group --name -a --enable-sgxquotehelper -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestsavb2rjim-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestsavb2rjim-8ecadf-9d25ca82.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestsavb2rjim-8ecadf-9d25ca82.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestwc55cef4l-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestwc55cef4l-8ecadf-aa4aa94b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestwc55cef4l-8ecadf-aa4aa94b.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n },\n \"identity\": @@ -1066,26 +1134,28 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0b072609-0e8a-417f-b05b-0c2ec80bbcec\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/134fae11-945c-4986-ac65-f8cdb4b68518\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3964' + - '4422' content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:07 GMT + - Wed, 01 Dec 2021 15:47:30 GMT expires: - '-1' pragma: @@ -1106,25 +1176,26 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestsavb2rjim-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestwc55cef4l-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": - {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "true"}}}, "nodeResourceGroup": + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": + true, "config": {"ACCSGXQuoteHelperEnabled": "true"}}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0b072609-0e8a-417f-b05b-0c2ec80bbcec"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/134fae11-945c-4986-ac65-f8cdb4b68518"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -1135,38 +1206,39 @@ interactions: Connection: - keep-alive Content-Length: - - '2371' + - '2782' Content-Type: - application/json ParameterSetName: - --resource-group --name -a --enable-sgxquotehelper -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestsavb2rjim-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestsavb2rjim-8ecadf-9d25ca82.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestsavb2rjim-8ecadf-9d25ca82.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestwc55cef4l-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestwc55cef4l-8ecadf-aa4aa94b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestwc55cef4l-8ecadf-aa4aa94b.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"true\"\n }\n }\n },\n \"nodeResourceGroup\": @@ -1174,28 +1246,30 @@ interactions: \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0b072609-0e8a-417f-b05b-0c2ec80bbcec\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/134fae11-945c-4986-ac65-f8cdb4b68518\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6ca0c74d-31ef-475b-8426-82653c1e17cb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c41df109-8d7f-42ed-a238-68f0f2c62b33?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3588' + - '4046' content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:14 GMT + - Wed, 01 Dec 2021 15:47:34 GMT expires: - '-1' pragma: @@ -1211,7 +1285,103 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks addon update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --enable-sgxquotehelper -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c41df109-8d7f-42ed-a238-68f0f2c62b33?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"09f11dc4-7f8d-ed42-a238-68f0f2c62b33\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:47:33.52Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 15:48:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks addon update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --enable-sgxquotehelper -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c41df109-8d7f-42ed-a238-68f0f2c62b33?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"09f11dc4-7f8d-ed42-a238-68f0f2c62b33\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:47:33.52Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 15:48:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1229,14 +1399,14 @@ interactions: ParameterSetName: - --resource-group --name -a --enable-sgxquotehelper -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6ca0c74d-31ef-475b-8426-82653c1e17cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c41df109-8d7f-42ed-a238-68f0f2c62b33?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4dc7a06c-ef31-5b47-8426-82653c1e17cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:01:10.05Z\"\n }" + string: "{\n \"name\": \"09f11dc4-7f8d-ed42-a238-68f0f2c62b33\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:47:33.52Z\"\n }" headers: cache-control: - no-cache @@ -1245,7 +1415,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:45 GMT + - Wed, 01 Dec 2021 15:49:04 GMT expires: - '-1' pragma: @@ -1277,14 +1447,14 @@ interactions: ParameterSetName: - --resource-group --name -a --enable-sgxquotehelper -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6ca0c74d-31ef-475b-8426-82653c1e17cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c41df109-8d7f-42ed-a238-68f0f2c62b33?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4dc7a06c-ef31-5b47-8426-82653c1e17cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:01:10.05Z\"\n }" + string: "{\n \"name\": \"09f11dc4-7f8d-ed42-a238-68f0f2c62b33\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:47:33.52Z\"\n }" headers: cache-control: - no-cache @@ -1293,7 +1463,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:02:15 GMT + - Wed, 01 Dec 2021 15:49:34 GMT expires: - '-1' pragma: @@ -1325,15 +1495,63 @@ interactions: ParameterSetName: - --resource-group --name -a --enable-sgxquotehelper -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6ca0c74d-31ef-475b-8426-82653c1e17cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c41df109-8d7f-42ed-a238-68f0f2c62b33?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4dc7a06c-ef31-5b47-8426-82653c1e17cb\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:01:10.05Z\",\n \"endTime\": - \"2021-10-19T07:02:28.7055363Z\"\n }" + string: "{\n \"name\": \"09f11dc4-7f8d-ed42-a238-68f0f2c62b33\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:47:33.52Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 15:50:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks addon update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --enable-sgxquotehelper -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c41df109-8d7f-42ed-a238-68f0f2c62b33?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"09f11dc4-7f8d-ed42-a238-68f0f2c62b33\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:47:33.52Z\",\n \"endTime\": + \"2021-12-01T15:50:15.5608093Z\"\n }" headers: cache-control: - no-cache @@ -1342,7 +1560,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:02:45 GMT + - Wed, 01 Dec 2021 15:50:34 GMT expires: - '-1' pragma: @@ -1374,32 +1592,33 @@ interactions: ParameterSetName: - --resource-group --name -a --enable-sgxquotehelper -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestsavb2rjim-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestsavb2rjim-8ecadf-9d25ca82.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestsavb2rjim-8ecadf-9d25ca82.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestwc55cef4l-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestwc55cef4l-8ecadf-aa4aa94b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestwc55cef4l-8ecadf-aa4aa94b.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"true\"\n },\n \"identity\": @@ -1409,26 +1628,28 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0b072609-0e8a-417f-b05b-0c2ec80bbcec\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/134fae11-945c-4986-ac65-f8cdb4b68518\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3963' + - '4421' content-type: - application/json date: - - Tue, 19 Oct 2021 07:02:45 GMT + - Wed, 01 Dec 2021 15:50:35 GMT expires: - '-1' pragma: @@ -1462,8 +1683,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -1471,17 +1692,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8bb7962d-511e-4d94-81df-2583cb76d163?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1b486919-0803-42c7-b4a2-a938ffe522eb?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 07:02:46 GMT + - Wed, 01 Dec 2021 15:50:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/8bb7962d-511e-4d94-81df-2583cb76d163?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/1b486919-0803-42c7-b4a2-a938ffe522eb?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_byo_appgw_with_ingress_appgw_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_byo_appgw_with_ingress_appgw_addon.yaml deleted file mode 100755 index f8c6294f0a2..00000000000 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_byo_appgw_with_ingress_appgw_addon.yaml +++ /dev/null @@ -1,2185 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T05:31:55Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '313' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:31:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["11.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"name": "aks-subnet", "properties": - {"addressPrefix": "11.0.0.0/24", "privateEndpointNetworkPolicies": "Enabled", - "privateLinkServiceNetworkPolicies": "Enabled"}}]}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - Content-Length: - - '302' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003?api-version=2021-03-01 - response: - body: - string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"1c3893bc-ba81-40f4-ac83-a11708a33c09\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"7d9db962-3275-4488-af98-daf3776d4f37\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"aks-subnet\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"1c3893bc-ba81-40f4-ac83-a11708a33c09\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4e0bdbd3-3e49-4a90-abe6-b02c0403fb21?api-version=2021-03-01 - cache-control: - - no-cache - content-length: - - '1327' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:32:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - ebea0841-bf28-4c20-bef0-ce325f1e61db - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4e0bdbd3-3e49-4a90-abe6-b02c0403fb21?api-version=2021-03-01 - 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: - - Tue, 19 Oct 2021 05:32: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-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 168f22fe-1c00-4a7d-9117-282b6442067f - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003?api-version=2021-03-01 - response: - body: - string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"118a5e7c-04fc-479a-bc7a-1401b806ce3a\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7d9db962-3275-4488-af98-daf3776d4f37\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"aks-subnet\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"118a5e7c-04fc-479a-bc7a-1401b806ce3a\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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}" - headers: - cache-control: - - no-cache - content-length: - - '1329' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:32:03 GMT - etag: - - W/"118a5e7c-04fc-479a-bc7a-1401b806ce3a" - 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-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 11779c04-f55c-4fee-9e22-dffea39dbf5a - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet create - Connection: - - keep-alive - ParameterSetName: - - -n --resource-group --vnet-name --address-prefixes -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003?api-version=2021-03-01 - response: - body: - string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"118a5e7c-04fc-479a-bc7a-1401b806ce3a\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7d9db962-3275-4488-af98-daf3776d4f37\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"aks-subnet\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"118a5e7c-04fc-479a-bc7a-1401b806ce3a\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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}" - headers: - cache-control: - - no-cache - content-length: - - '1329' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:32:03 GMT - etag: - - W/"118a5e7c-04fc-479a-bc7a-1401b806ce3a" - 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-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 678d7947-4772-46f2-b3d4-439c7ad3d925 - status: - code: 200 - message: OK -- request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003", - "location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["11.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet", - "name": "aks-subnet", "type": "Microsoft.Network/virtualNetworks/subnets", "properties": - {"addressPrefix": "11.0.0.0/24", "delegations": [], "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}, {"name": "appgw-subnet", - "properties": {"addressPrefix": "11.0.1.0/24", "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": - [], "enableDdosProtection": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet create - Connection: - - keep-alive - Content-Length: - - '947' - Content-Type: - - application/json - ParameterSetName: - - -n --resource-group --vnet-name --address-prefixes -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003?api-version=2021-03-01 - response: - body: - string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"d3c4879f-8845-4a9b-b90f-ad17a0c894a5\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"7d9db962-3275-4488-af98-daf3776d4f37\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"aks-subnet\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"d3c4879f-8845-4a9b-b90f-ad17a0c894a5\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ },\r\n {\r\n \"name\": \"appgw-subnet\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet\",\r\n - \ \"etag\": \"W/\\\"d3c4879f-8845-4a9b-b90f-ad17a0c894a5\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"11.0.1.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0ab4f563-92f7-453c-bd78-d8b5054f3108?api-version=2021-03-01 - cache-control: - - no-cache - content-length: - - '1956' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:32:04 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-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 05c2b4c3-8cf0-4f2b-b14f-9146051ea589 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet create - Connection: - - keep-alive - ParameterSetName: - - -n --resource-group --vnet-name --address-prefixes -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0ab4f563-92f7-453c-bd78-d8b5054f3108?api-version=2021-03-01 - 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: - - Tue, 19 Oct 2021 05:32:07 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-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 83d172d8-542e-475d-8cda-fb40be62ec77 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet create - Connection: - - keep-alive - ParameterSetName: - - -n --resource-group --vnet-name --address-prefixes -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003?api-version=2021-03-01 - response: - body: - string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"972c9ea9-6819-40e0-ac7b-461d94525b6a\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7d9db962-3275-4488-af98-daf3776d4f37\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"aks-subnet\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"972c9ea9-6819-40e0-ac7b-461d94525b6a\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ },\r\n {\r\n \"name\": \"appgw-subnet\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet\",\r\n - \ \"etag\": \"W/\\\"972c9ea9-6819-40e0-ac7b-461d94525b6a\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"11.0.1.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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}" - headers: - cache-control: - - no-cache - content-length: - - '1959' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:32:07 GMT - etag: - - W/"972c9ea9-6819-40e0-ac7b-461d94525b6a" - 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-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - aa2ac5c3-be2e-4a2c-bf23-5d7d707463a6 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - ParameterSetName: - - -n -g --allocation-method --sku -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T05:31:55Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '313' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:32:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus2", "sku": {"name": "Standard"}, "properties": {"publicIPAllocationMethod": - "Static", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - Content-Length: - - '167' - Content-Type: - - application/json - ParameterSetName: - - -n -g --allocation-method --sku -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/appgw-ip?api-version=2021-03-01 - response: - body: - string: "{\r\n \"name\": \"appgw-ip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/appgw-ip\",\r\n - \ \"etag\": \"W/\\\"4a9502c0-8c6f-4162-adbf-f0c6dfb01e76\\\"\",\r\n \"location\": - \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"35006cb7-02c2-49b0-8aac-e4b4ab07bd73\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": - 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n - \ }\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2fd24b0b-de12-4686-aaae-50b00dcec958?api-version=2021-03-01 - cache-control: - - no-cache - content-length: - - '634' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:32:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 3e790af5-f34f-4547-baaa-e93322a664b3 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - ParameterSetName: - - -n -g --allocation-method --sku -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2fd24b0b-de12-4686-aaae-50b00dcec958?api-version=2021-03-01 - 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: - - Tue, 19 Oct 2021 05:32:12 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-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 4485eec6-aae5-4323-af2a-f34f618cacd2 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - ParameterSetName: - - -n -g --allocation-method --sku -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/appgw-ip?api-version=2021-03-01 - response: - body: - string: "{\r\n \"name\": \"appgw-ip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/appgw-ip\",\r\n - \ \"etag\": \"W/\\\"6aa130fa-a927-4c0c-9e63-b2605c6f6852\\\"\",\r\n \"location\": - \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"35006cb7-02c2-49b0-8aac-e4b4ab07bd73\",\r\n \"ipAddress\": - \"20.80.188.114\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": - \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n - \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": - {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '670' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:32:12 GMT - etag: - - W/"6aa130fa-a927-4c0c-9e63-b2605c6f6852" - 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-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 09a04763-3d0d-4407-9e8f-456db051a49d - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network application-gateway create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-ip-address --subnet - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T05:31:55Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '313' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:32:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network application-gateway create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-ip-address --subnet - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27clitest000001%27%20and%20name%20eq%20%27cliakstest000003%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FvirtualNetworks%27&api-version=2021-04-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003","name":"cliakstest000003","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{}}]}' - headers: - cache-control: - - no-cache - content-length: - - '266' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:32:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network application-gateway create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-ip-address --subnet - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27clitest000001%27%20and%20name%20eq%20%27appgw-ip%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27&api-version=2021-04-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/appgw-ip","name":"appgw-ip","type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"},"location":"westus2"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:32:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {}, "variables": {"appGwID": "[resourceId(''Microsoft.Network/applicationGateways'', - ''appgw'')]"}, "resources": [{"type": "Microsoft.Network/applicationGateways", - "name": "appgw", "location": "westus2", "tags": {}, "apiVersion": "2021-03-01", - "dependsOn": [], "properties": {"backendAddressPools": [{"name": "appGatewayBackendPool"}], - "backendHttpSettingsCollection": [{"name": "appGatewayBackendHttpSettings", - "properties": {"Port": 80, "Protocol": "Http", "CookieBasedAffinity": "disabled", - "connectionDraining": {"enabled": false, "drainTimeoutInSec": 1}}}], "frontendIPConfigurations": - [{"name": "appGatewayFrontendIP", "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/appgw-ip"}}}], - "frontendPorts": [{"name": "appGatewayFrontendPort", "properties": {"Port": - 80}}], "gatewayIPConfigurations": [{"name": "appGatewayFrontendIP", "properties": - {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet"}}}], - "httpListeners": [{"name": "appGatewayHttpListener", "properties": {"FrontendIpConfiguration": - {"Id": "[concat(variables(''appGwID''), ''/frontendIPConfigurations/appGatewayFrontendIP'')]"}, - "FrontendPort": {"Id": "[concat(variables(''appGwID''), ''/frontendPorts/appGatewayFrontendPort'')]"}, - "Protocol": "http", "SslCertificate": null}}], "sku": {"name": "Standard_v2", - "tier": "Standard_v2", "capacity": 2}, "requestRoutingRules": [{"Name": "rule1", - "properties": {"RuleType": "Basic", "httpListener": {"id": "[concat(variables(''appGwID''), - ''/httpListeners/appGatewayHttpListener'')]"}, "backendAddressPool": {"id": - "[concat(variables(''appGwID''), ''/backendAddressPools/appGatewayBackendPool'')]"}, - "backendHttpSettings": {"id": "[concat(variables(''appGwID''), ''/backendHttpSettingsCollection/appGatewayBackendHttpSettings'')]"}}}], - "privateLinkConfigurations": []}, "zones": null}], "outputs": {"applicationGateway": - {"type": "object", "value": "[reference(''appgw'')]"}}}, "parameters": {}, "mode": - "incremental"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network application-gateway create - Connection: - - keep-alive - Content-Length: - - '2328' - Content-Type: - - application/json - ParameterSetName: - - -n -g --sku --public-ip-address --subnet - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Resources/deployments/ag_deploy_qbThV52myNNCV6IruxasRxUzhQpUTi2w","name":"ag_deploy_qbThV52myNNCV6IruxasRxUzhQpUTi2w","type":"Microsoft.Resources/deployments","properties":{"templateHash":"9589169119059019199","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-10-19T05:32:16.1014428Z","duration":"PT1.1895438S","correlationId":"95d9a55f-daf0-496d-b135-fd41d2995e40","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"applicationGateways","locations":["westus2"]}]}],"dependencies":[]}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/ag_deploy_qbThV52myNNCV6IruxasRxUzhQpUTi2w/operationStatuses/08585669853505657273?api-version=2021-04-01 - cache-control: - - no-cache - content-length: - - '662' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:32:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network application-gateway create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-ip-address --subnet - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585669853505657273?api-version=2021-04-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:32:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network application-gateway create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-ip-address --subnet - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585669853505657273?api-version=2021-04-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:33:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network application-gateway create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-ip-address --subnet - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585669853505657273?api-version=2021-04-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:33:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network application-gateway create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-ip-address --subnet - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585669853505657273?api-version=2021-04-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:34:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network application-gateway create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-ip-address --subnet - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585669853505657273?api-version=2021-04-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:34:47 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network application-gateway create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-ip-address --subnet - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585669853505657273?api-version=2021-04-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:35:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network application-gateway create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-ip-address --subnet - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585669853505657273?api-version=2021-04-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:35:47 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network application-gateway create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-ip-address --subnet - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585669853505657273?api-version=2021-04-01 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:36:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network application-gateway create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --public-ip-address --subnet - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Resources/deployments/ag_deploy_qbThV52myNNCV6IruxasRxUzhQpUTi2w","name":"ag_deploy_qbThV52myNNCV6IruxasRxUzhQpUTi2w","type":"Microsoft.Resources/deployments","properties":{"templateHash":"9589169119059019199","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-10-19T05:36:03.9851553Z","duration":"PT3M49.0732563S","correlationId":"95d9a55f-daf0-496d-b135-fd41d2995e40","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"applicationGateways","locations":["westus2"]}]}],"dependencies":[],"outputs":{"applicationGateway":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"796673e9-2c73-4600-a937-90906f78667d","sku":{"name":"Standard_v2","tier":"Standard_v2","capacity":2},"operationalState":"Running","gatewayIPConfigurations":[{"name":"appGatewayFrontendIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/gatewayIPConfigurations/appGatewayFrontendIP","etag":"W/\"a2a4c714-c1ef-43cd-92c9-3ef250550060\"","properties":{"provisioningState":"Succeeded","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet"}},"type":"Microsoft.Network/applicationGateways/gatewayIPConfigurations"}],"sslCertificates":[],"trustedRootCertificates":[],"trustedClientCertificates":[],"sslProfiles":[],"frontendIPConfigurations":[{"name":"appGatewayFrontendIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/frontendIPConfigurations/appGatewayFrontendIP","etag":"W/\"a2a4c714-c1ef-43cd-92c9-3ef250550060\"","type":"Microsoft.Network/applicationGateways/frontendIPConfigurations","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/appgw-ip"},"httpListeners":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/httpListeners/appGatewayHttpListener"}]}}],"frontendPorts":[{"name":"appGatewayFrontendPort","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/frontendPorts/appGatewayFrontendPort","etag":"W/\"a2a4c714-c1ef-43cd-92c9-3ef250550060\"","properties":{"provisioningState":"Succeeded","port":80,"httpListeners":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/httpListeners/appGatewayHttpListener"}]},"type":"Microsoft.Network/applicationGateways/frontendPorts"}],"backendAddressPools":[{"name":"appGatewayBackendPool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/backendAddressPools/appGatewayBackendPool","etag":"W/\"a2a4c714-c1ef-43cd-92c9-3ef250550060\"","properties":{"provisioningState":"Succeeded","backendAddresses":[],"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/requestRoutingRules/rule1"}]},"type":"Microsoft.Network/applicationGateways/backendAddressPools"}],"loadDistributionPolicies":[],"backendHttpSettingsCollection":[{"name":"appGatewayBackendHttpSettings","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/backendHttpSettingsCollection/appGatewayBackendHttpSettings","etag":"W/\"a2a4c714-c1ef-43cd-92c9-3ef250550060\"","properties":{"provisioningState":"Succeeded","port":80,"protocol":"Http","cookieBasedAffinity":"Disabled","connectionDraining":{"enabled":false,"drainTimeoutInSec":1},"pickHostNameFromBackendAddress":false,"requestTimeout":30,"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/requestRoutingRules/rule1"}]},"type":"Microsoft.Network/applicationGateways/backendHttpSettingsCollection"}],"httpListeners":[{"name":"appGatewayHttpListener","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/httpListeners/appGatewayHttpListener","etag":"W/\"a2a4c714-c1ef-43cd-92c9-3ef250550060\"","properties":{"provisioningState":"Succeeded","frontendIPConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/frontendIPConfigurations/appGatewayFrontendIP"},"frontendPort":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/frontendPorts/appGatewayFrontendPort"},"protocol":"Http","hostNames":[],"requireServerNameIndication":false,"requestRoutingRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/requestRoutingRules/rule1"}]},"type":"Microsoft.Network/applicationGateways/httpListeners"}],"urlPathMaps":[],"requestRoutingRules":[{"name":"rule1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/requestRoutingRules/rule1","etag":"W/\"a2a4c714-c1ef-43cd-92c9-3ef250550060\"","properties":{"provisioningState":"Succeeded","ruleType":"Basic","httpListener":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/httpListeners/appGatewayHttpListener"},"backendAddressPool":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/backendAddressPools/appGatewayBackendPool"},"backendHttpSettings":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw/backendHttpSettingsCollection/appGatewayBackendHttpSettings"}},"type":"Microsoft.Network/applicationGateways/requestRoutingRules"}],"probes":[],"rewriteRuleSets":[],"redirectConfigurations":[],"privateLinkConfigurations":[],"privateEndpointConnections":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw"}]}}' - headers: - cache-control: - - no-cache - content-length: - - '6976' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:36:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value - -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T05:31:55Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '313' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:36:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value - -o - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments?$filter=atScope%28%29&api-version=2020-04-01-preview - response: - body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T05:33:00.7067936Z","updatedOn":"2021-04-26T05:33:00.7067936Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2adf4737-6342-4f63-aeb2-5fcd3426a387","type":"Microsoft.Authorization/roleAssignments","name":"2adf4737-6342-4f63-aeb2-5fcd3426a387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T06:09:24.5972802Z","updatedOn":"2021-04-26T06:09:24.5972802Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4572c05-f69f-4e5c-aac6-79afefcf0e2e","type":"Microsoft.Authorization/roleAssignments","name":"c4572c05-f69f-4e5c-aac6-79afefcf0e2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-18T05:18:40.4643436Z","updatedOn":"2021-06-18T05:18:40.4643436Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f926301-cc14-4a88-a3b7-c159d73d01f6","type":"Microsoft.Authorization/roleAssignments","name":"3f926301-cc14-4a88-a3b7-c159d73d01f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-18T03:09:33.8702688Z","updatedOn":"2021-09-18T03:09:33.8702688Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99d6fd13-909e-4c52-807e-77f7a5af83c8","type":"Microsoft.Authorization/roleAssignments","name":"99d6fd13-909e-4c52-807e-77f7a5af83c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T21:55:07.2303024Z","updatedOn":"2021-10-07T21:55:07.2303024Z","createdBy":"8031e009-cc05-4950-8a8d-78942c4492ac","updatedBy":"8031e009-cc05-4950-8a8d-78942c4492ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de/providers/Microsoft.Authorization/roleAssignments/99c5a294-bfee-468a-ab2f-f6db60b8c8f3","type":"Microsoft.Authorization/roleAssignments","name":"99c5a294-bfee-468a-ab2f-f6db60b8c8f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T17:23:35.8382756Z","updatedOn":"2021-10-08T17:23:35.8382756Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de/providers/Microsoft.Authorization/roleAssignments/ade4333c-4321-4b68-b498-d081d55e2b0c","type":"Microsoft.Authorization/roleAssignments","name":"ade4333c-4321-4b68-b498-d081d55e2b0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/dfe50df8-51fe-4401-daad-efca9fc8f14b","condition":null,"conditionVersion":null,"createdOn":"2021-04-22T14:50:37.5977858Z","updatedOn":"2021-04-22T14:50:37.5977858Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/dfe50df8-51fe-4401-daad-efca9fc8f14b/providers/Microsoft.Authorization/roleAssignments/eb6c03a6-8e33-4d47-807c-9cdf9ef1e3d8","type":"Microsoft.Authorization/roleAssignments","name":"eb6c03a6-8e33-4d47-807c-9cdf9ef1e3d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9136073Z","updatedOn":"2019-03-26T22:01:02.9136073Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6f4de15e-9316-4714-a7c4-40c46cf8e067","type":"Microsoft.Authorization/roleAssignments","name":"6f4de15e-9316-4714-a7c4-40c46cf8e067"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:13.2137492Z","updatedOn":"2020-02-25T18:36:13.2137492Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/18fdd87e-1c01-424e-b380-32310f4940c2","type":"Microsoft.Authorization/roleAssignments","name":"18fdd87e-1c01-424e-b380-32310f4940c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:00.4746112Z","updatedOn":"2020-02-25T18:36:00.4746112Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d9bcf58a-6f24-446d-bf60-20ffe5142396","type":"Microsoft.Authorization/roleAssignments","name":"d9bcf58a-6f24-446d-bf60-20ffe5142396"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:55.7490022Z","updatedOn":"2020-02-25T18:35:55.7490022Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6e2b954b-42b2-48e0-997a-622601f0a4b4","type":"Microsoft.Authorization/roleAssignments","name":"6e2b954b-42b2-48e0-997a-622601f0a4b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:57.9173081Z","updatedOn":"2020-02-25T18:35:57.9173081Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9","type":"Microsoft.Authorization/roleAssignments","name":"8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:23.0673659Z","updatedOn":"2020-02-25T18:36:23.0673659Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d0817c57-3e5b-4363-88b7-52baadd5c362","type":"Microsoft.Authorization/roleAssignments","name":"d0817c57-3e5b-4363-88b7-52baadd5c362"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:31.2596366Z","updatedOn":"2020-02-25T18:36:31.2596366Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0dabf212-a1c7-4af6-ba8b-be045493b368","type":"Microsoft.Authorization/roleAssignments","name":"0dabf212-a1c7-4af6-ba8b-be045493b368"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:52.9188704Z","updatedOn":"2020-02-25T18:35:52.9188704Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d674b853-332e-4437-9ddb-bba8fde7ccce","type":"Microsoft.Authorization/roleAssignments","name":"d674b853-332e-4437-9ddb-bba8fde7ccce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:38.8393742Z","updatedOn":"2020-02-25T18:36:38.8393742Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/00625383-053d-4227-a4db-b098e9bd2289","type":"Microsoft.Authorization/roleAssignments","name":"00625383-053d-4227-a4db-b098e9bd2289"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:05.0954462Z","updatedOn":"2020-02-25T18:36:05.0954462Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/3151fe9c-fcd2-45d3-a256-72fb13b86df5","type":"Microsoft.Authorization/roleAssignments","name":"3151fe9c-fcd2-45d3-a256-72fb13b86df5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-07-06T18:51:23.0753297Z","updatedOn":"2020-07-06T18:51:23.0753297Z","createdBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","updatedBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b3a9e1db-fde1-4ddd-ac1c-91913be67359","type":"Microsoft.Authorization/roleAssignments","name":"b3a9e1db-fde1-4ddd-ac1c-91913be67359"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:33.0012805Z","updatedOn":"2021-08-09T18:17:33.0012805Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/01de8fe7-aae0-4d5c-844a-f0bdb8335252","type":"Microsoft.Authorization/roleAssignments","name":"01de8fe7-aae0-4d5c-844a-f0bdb8335252"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:39.9188336Z","updatedOn":"2021-08-09T18:17:39.9188336Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ab2be506-5489-4c1f-add0-f5ed87a10439","type":"Microsoft.Authorization/roleAssignments","name":"ab2be506-5489-4c1f-add0-f5ed87a10439"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:18.2000692Z","updatedOn":"2021-08-24T19:32:18.2000692Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0ce2f3fb-17ea-4193-9081-09aa4b39fec4","type":"Microsoft.Authorization/roleAssignments","name":"0ce2f3fb-17ea-4193-9081-09aa4b39fec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:36.6775144Z","updatedOn":"2021-08-24T19:32:36.6775144Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2e95b289-99bd-4e68-83de-5433f2a0428c","type":"Microsoft.Authorization/roleAssignments","name":"2e95b289-99bd-4e68-83de-5433f2a0428c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-09-15T21:46:52.6665975Z","updatedOn":"2021-09-15T21:46:52.6665975Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6d2e0600-74af-4aeb-b479-1718dd4dffdf","type":"Microsoft.Authorization/roleAssignments","name":"6d2e0600-74af-4aeb-b479-1718dd4dffdf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-09-23T22:47:24.2398372Z","updatedOn":"2021-09-23T22:47:24.2398372Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/68d8c18e-3dd6-4bf4-ae99-aac6ffb945cc","type":"Microsoft.Authorization/roleAssignments","name":"68d8c18e-3dd6-4bf4-ae99-aac6ffb945cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-09-23T22:48:58.7755038Z","updatedOn":"2021-09-23T22:48:58.7755038Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/1201e06e-7fa6-44c7-bb6b-a4bd82994d4d","type":"Microsoft.Authorization/roleAssignments","name":"1201e06e-7fa6-44c7-bb6b-a4bd82994d4d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-01-26T20:10:13.8998989Z","updatedOn":"2021-01-26T20:10:13.8998989Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b36517ec-61d3-468d-afdc-eceda8adb4ee","type":"Microsoft.Authorization/roleAssignments","name":"b36517ec-61d3-468d-afdc-eceda8adb4ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-06T00:13:19.1780775Z","updatedOn":"2021-02-06T00:13:19.1780775Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5216c1ee-4f58-4d36-b379-6c04b1fbd157","type":"Microsoft.Authorization/roleAssignments","name":"5216c1ee-4f58-4d36-b379-6c04b1fbd157"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-24T01:45:04.0423529Z","updatedOn":"2021-02-24T01:45:04.0423529Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2bcd4a3e-5ac3-4ffa-a529-269be7717766","type":"Microsoft.Authorization/roleAssignments","name":"2bcd4a3e-5ac3-4ffa-a529-269be7717766"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-24T01:45:10.2950077Z","updatedOn":"2021-02-24T01:45:10.2950077Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8f8ed3e8-1b37-4ac1-ad01-7a274f600e79","type":"Microsoft.Authorization/roleAssignments","name":"8f8ed3e8-1b37-4ac1-ad01-7a274f600e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:26:34.3109215Z","updatedOn":"2021-04-16T18:26:34.3109215Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7464f8a3-9f55-443b-a3a5-44a31b100cad","type":"Microsoft.Authorization/roleAssignments","name":"7464f8a3-9f55-443b-a3a5-44a31b100cad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:27:56.4446265Z","updatedOn":"2021-04-16T18:27:56.4446265Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8f430c4c-4317-4495-9f01-4f3d4e1ca111","type":"Microsoft.Authorization/roleAssignments","name":"8f430c4c-4317-4495-9f01-4f3d4e1ca111"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-05-04T19:20:06.7695456Z","updatedOn":"2021-05-04T19:20:06.7695456Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa","type":"Microsoft.Authorization/roleAssignments","name":"fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"}]}' - headers: - cache-control: - - no-cache - content-length: - - '33753' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:36:19 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestdclscfq47-79a739", - "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet", - "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": - false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": - -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDVfdiWPCK7b0PD8/va1l7EvLPBaHEGLDEISGfg3dnpEsOGU/iprRcAL5NFHQ25sALHD73ZjTIH3BcSqI3OfGrmAE4SFB+nohp6gnc0Gd3Hmrl3jdDSHhm10fyAZb+9RPNFKryGFf+7DcgPK3yPJuhoN1SCqV/mMYQuLM5TpXhWEucy0tfTwN2dYyz8N741cPQJ5jdIUzN+bed3yT3d4TYEIcAdR6BlP3JNyfZlCzx5aF43Z2LWnQHdkxcgZGG5yCndaBIRZwAsCOjXuK2iiNszo2ydwD6/HABke+8hGY84bhUSfZy7QPucQIJe5RQcDXDeB7bJGojIz0KVqpHSh4+L - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ingressApplicationGateway": - {"enabled": true, "config": {"applicationGatewayId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw"}}}, - "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": - "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": - "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '1799' - Content-Type: - - application/json - ParameterSetName: - - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value - -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdclscfq47-79a739\",\n \"fqdn\": - \"cliakstest-clitestdclscfq47-79a739-05b27df3.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestdclscfq47-79a739-05b27df3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDVfdiWPCK7b0PD8/va1l7EvLPBaHEGLDEISGfg3dnpEsOGU/iprRcAL5NFHQ25sALHD73ZjTIH3BcSqI3OfGrmAE4SFB+nohp6gnc0Gd3Hmrl3jdDSHhm10fyAZb+9RPNFKryGFf+7DcgPK3yPJuhoN1SCqV/mMYQuLM5TpXhWEucy0tfTwN2dYyz8N741cPQJ5jdIUzN+bed3yT3d4TYEIcAdR6BlP3JNyfZlCzx5aF43Z2LWnQHdkxcgZGG5yCndaBIRZwAsCOjXuK2iiNszo2ydwD6/HABke+8hGY84bhUSfZy7QPucQIJe5RQcDXDeB7bJGojIz0KVqpHSh4+L - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"ingressApplicationGateway\": {\n \"enabled\": true,\n \"config\": - {\n \"applicationGatewayId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw\",\n - \ \"effectiveApplicationGatewayId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw\"\n - \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": - {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n - \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e548f3be-3990-4a05-896f-5a1fd924a7ca?api-version=2016-03-30 - cache-control: - - no-cache - content-length: - - '3434' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:36:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value - -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e548f3be-3990-4a05-896f-5a1fd924a7ca?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bef348e5-9039-054a-896f-5a1fd924a7ca\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:36:25.6366666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:36:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value - -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e548f3be-3990-4a05-896f-5a1fd924a7ca?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bef348e5-9039-054a-896f-5a1fd924a7ca\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:36:25.6366666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:37:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value - -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e548f3be-3990-4a05-896f-5a1fd924a7ca?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bef348e5-9039-054a-896f-5a1fd924a7ca\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:36:25.6366666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:37:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value - -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e548f3be-3990-4a05-896f-5a1fd924a7ca?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bef348e5-9039-054a-896f-5a1fd924a7ca\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:36:25.6366666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:38:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value - -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e548f3be-3990-4a05-896f-5a1fd924a7ca?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bef348e5-9039-054a-896f-5a1fd924a7ca\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:36:25.6366666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:38:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value - -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e548f3be-3990-4a05-896f-5a1fd924a7ca?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bef348e5-9039-054a-896f-5a1fd924a7ca\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:36:25.6366666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:39:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value - -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e548f3be-3990-4a05-896f-5a1fd924a7ca?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bef348e5-9039-054a-896f-5a1fd924a7ca\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:36:25.6366666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:39:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value - -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e548f3be-3990-4a05-896f-5a1fd924a7ca?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bef348e5-9039-054a-896f-5a1fd924a7ca\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T05:36:25.6366666Z\",\n \"endTime\": - \"2021-10-19T05:40:00.5367346Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '170' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:40:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value - -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdclscfq47-79a739\",\n \"fqdn\": - \"cliakstest-clitestdclscfq47-79a739-05b27df3.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestdclscfq47-79a739-05b27df3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDVfdiWPCK7b0PD8/va1l7EvLPBaHEGLDEISGfg3dnpEsOGU/iprRcAL5NFHQ25sALHD73ZjTIH3BcSqI3OfGrmAE4SFB+nohp6gnc0Gd3Hmrl3jdDSHhm10fyAZb+9RPNFKryGFf+7DcgPK3yPJuhoN1SCqV/mMYQuLM5TpXhWEucy0tfTwN2dYyz8N741cPQJ5jdIUzN+bed3yT3d4TYEIcAdR6BlP3JNyfZlCzx5aF43Z2LWnQHdkxcgZGG5yCndaBIRZwAsCOjXuK2iiNszo2ydwD6/HABke+8hGY84bhUSfZy7QPucQIJe5RQcDXDeB7bJGojIz0KVqpHSh4+L - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"ingressApplicationGateway\": {\n \"enabled\": true,\n \"config\": - {\n \"applicationGatewayId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw\",\n - \ \"effectiveApplicationGatewayId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/applicationGateways/appgw\"\n - \ },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ingressapplicationgateway-cliakstest000002\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": - {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n - \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bdb11b19-0548-4b7b-bafa-e5b39dbe2e0b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '4477' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:40:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value - -o - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Grants - full access to manage all resources, but does not allow you to assign roles - in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete","Microsoft.Compute/galleries/share/action"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2020-12-04T00:34:54.8501087Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' - headers: - cache-control: - - no-cache - content-length: - - '984' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:40:28 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value - -o - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Authorization/roleAssignments/6d69d191-7b15-4efc-a599-ef2e611b5c17?api-version=2020-04-01-preview - response: - body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","condition":null,"conditionVersion":null,"createdOn":"2021-10-19T05:40:28.6815299Z","updatedOn":"2021-10-19T05:40:28.9315335Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Authorization/roleAssignments/6d69d191-7b15-4efc-a599-ef2e611b5c17","type":"Microsoft.Authorization/roleAssignments","name":"6d69d191-7b15-4efc-a599-ef2e611b5c17"}' - headers: - cache-control: - - no-cache - content-length: - - '889' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:40:29 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value - -o - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Network Contributor","type":"BuiltInRole","description":"Lets - you manage networks, but not access to them.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Network/*","Microsoft.ResourceHealth/availabilityStatuses/read","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-06-02T00:18:27.3542698Z","updatedOn":"2016-05-31T23:14:00.3326359Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","type":"Microsoft.Authorization/roleDefinitions","name":"4d97b98b-1d4f-4787-a291-c67834d212e7"}]}' - headers: - cache-control: - - no-cache - content-length: - - '873' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:40:29 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - -n -g --enable-managed-identity --vnet-subnet-id -a --appgw-id --yes --ssh-key-value - -o - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/34d28697-a1a0-4b9c-82c6-c2e7a16176f4?api-version=2020-04-01-preview - response: - body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet","condition":null,"conditionVersion":null,"createdOn":"2021-10-19T05:40:30.0586436Z","updatedOn":"2021-10-19T05:40:30.4180764Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/34d28697-a1a0-4b9c-82c6-c2e7a16176f4","type":"Microsoft.Authorization/roleAssignments","name":"34d28697-a1a0-4b9c-82c6-c2e7a16176f4"}' - headers: - cache-control: - - no-cache - content-length: - - '1049' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:40:31 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 201 - message: Created -version: 1 diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_byo_subnet_with_ingress_appgw_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_byo_subnet_with_ingress_appgw_addon.yaml old mode 100755 new mode 100644 index 21119e85139..c57307d0426 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_byo_subnet_with_ingress_appgw_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_byo_subnet_with_ingress_appgw_addon.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T05:11:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:02:26Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:11:05 GMT + - Wed, 01 Dec 2021 14:02:27 GMT expires: - '-1' pragma: @@ -41,1409 +41,4 @@ interactions: status: code: 200 message: OK -- request: - body: '{"location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["11.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"name": "aks-subnet", "properties": - {"addressPrefix": "11.0.0.0/24", "privateEndpointNetworkPolicies": "Enabled", - "privateLinkServiceNetworkPolicies": "Enabled"}}]}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - Content-Length: - - '302' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003?api-version=2021-03-01 - response: - body: - string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"792a51ac-4e48-4ca3-b47f-3cc32a477163\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"6c5db68e-5744-4fc8-a0d3-dcd328ca185b\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"aks-subnet\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"792a51ac-4e48-4ca3-b47f-3cc32a477163\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c474b145-e40f-4af5-9d9e-f6b53bdc5d32?api-version=2021-03-01 - cache-control: - - no-cache - content-length: - - '1327' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:11:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 7a3b7845-2046-458f-be2f-5a7a904a8016 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c474b145-e40f-4af5-9d9e-f6b53bdc5d32?api-version=2021-03-01 - 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: - - Tue, 19 Oct 2021 05:11:11 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-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - d87cbd86-5290-4a04-94a3-2d056fa5ab07 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003?api-version=2021-03-01 - response: - body: - string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"221187b1-493a-4f9b-bd4e-91889747824d\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"6c5db68e-5744-4fc8-a0d3-dcd328ca185b\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"aks-subnet\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"221187b1-493a-4f9b-bd4e-91889747824d\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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}" - headers: - cache-control: - - no-cache - content-length: - - '1329' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:11:11 GMT - etag: - - W/"221187b1-493a-4f9b-bd4e-91889747824d" - 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-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - cbe1be44-2c2d-4f1c-bc50-2ba1bcefb4fb - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet create - Connection: - - keep-alive - ParameterSetName: - - -n --resource-group --vnet-name --address-prefixes -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003?api-version=2021-03-01 - response: - body: - string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"221187b1-493a-4f9b-bd4e-91889747824d\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"6c5db68e-5744-4fc8-a0d3-dcd328ca185b\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"aks-subnet\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"221187b1-493a-4f9b-bd4e-91889747824d\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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}" - headers: - cache-control: - - no-cache - content-length: - - '1329' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:11:12 GMT - etag: - - W/"221187b1-493a-4f9b-bd4e-91889747824d" - 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-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 89861f05-1ba3-47a6-8d06-e835655368b8 - status: - code: 200 - message: OK -- request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003", - "location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["11.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet", - "name": "aks-subnet", "type": "Microsoft.Network/virtualNetworks/subnets", "properties": - {"addressPrefix": "11.0.0.0/24", "delegations": [], "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}, {"name": "appgw-subnet", - "properties": {"addressPrefix": "11.0.1.0/24", "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": - [], "enableDdosProtection": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet create - Connection: - - keep-alive - Content-Length: - - '947' - Content-Type: - - application/json - ParameterSetName: - - -n --resource-group --vnet-name --address-prefixes -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003?api-version=2021-03-01 - response: - body: - string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"0512553c-464a-4781-a29b-c6f32a20cee5\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"6c5db68e-5744-4fc8-a0d3-dcd328ca185b\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"aks-subnet\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"0512553c-464a-4781-a29b-c6f32a20cee5\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ },\r\n {\r\n \"name\": \"appgw-subnet\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet\",\r\n - \ \"etag\": \"W/\\\"0512553c-464a-4781-a29b-c6f32a20cee5\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"11.0.1.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/598de7e5-ad7d-4206-a89c-077a11655446?api-version=2021-03-01 - cache-control: - - no-cache - content-length: - - '1956' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:11:12 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-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - bb10429c-d170-4988-a5fb-1c85b723e4ea - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet create - Connection: - - keep-alive - ParameterSetName: - - -n --resource-group --vnet-name --address-prefixes -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/598de7e5-ad7d-4206-a89c-077a11655446?api-version=2021-03-01 - 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: - - Tue, 19 Oct 2021 05:11:16 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-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - ce34e651-fc8d-48dc-99c0-724bb34ee2ce - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet subnet create - Connection: - - keep-alive - ParameterSetName: - - -n --resource-group --vnet-name --address-prefixes -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003?api-version=2021-03-01 - response: - body: - string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"af39e90d-a0e6-4439-9eb4-56af88791410\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"6c5db68e-5744-4fc8-a0d3-dcd328ca185b\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"aks-subnet\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"af39e90d-a0e6-4439-9eb4-56af88791410\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ },\r\n {\r\n \"name\": \"appgw-subnet\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet\",\r\n - \ \"etag\": \"W/\\\"af39e90d-a0e6-4439-9eb4-56af88791410\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"11.0.1.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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}" - headers: - cache-control: - - no-cache - content-length: - - '1959' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:11:16 GMT - etag: - - W/"af39e90d-a0e6-4439-9eb4-56af88791410" - 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-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - a7555785-c00e-44eb-9690-cb99ce7d73bf - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T05:11:03Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '313' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:11:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments?$filter=atScope%28%29&api-version=2020-04-01-preview - response: - body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T05:33:00.7067936Z","updatedOn":"2021-04-26T05:33:00.7067936Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2adf4737-6342-4f63-aeb2-5fcd3426a387","type":"Microsoft.Authorization/roleAssignments","name":"2adf4737-6342-4f63-aeb2-5fcd3426a387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T06:09:24.5972802Z","updatedOn":"2021-04-26T06:09:24.5972802Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4572c05-f69f-4e5c-aac6-79afefcf0e2e","type":"Microsoft.Authorization/roleAssignments","name":"c4572c05-f69f-4e5c-aac6-79afefcf0e2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-18T05:18:40.4643436Z","updatedOn":"2021-06-18T05:18:40.4643436Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f926301-cc14-4a88-a3b7-c159d73d01f6","type":"Microsoft.Authorization/roleAssignments","name":"3f926301-cc14-4a88-a3b7-c159d73d01f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-18T03:09:33.8702688Z","updatedOn":"2021-09-18T03:09:33.8702688Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99d6fd13-909e-4c52-807e-77f7a5af83c8","type":"Microsoft.Authorization/roleAssignments","name":"99d6fd13-909e-4c52-807e-77f7a5af83c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T21:55:07.2303024Z","updatedOn":"2021-10-07T21:55:07.2303024Z","createdBy":"8031e009-cc05-4950-8a8d-78942c4492ac","updatedBy":"8031e009-cc05-4950-8a8d-78942c4492ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de/providers/Microsoft.Authorization/roleAssignments/99c5a294-bfee-468a-ab2f-f6db60b8c8f3","type":"Microsoft.Authorization/roleAssignments","name":"99c5a294-bfee-468a-ab2f-f6db60b8c8f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T17:23:35.8382756Z","updatedOn":"2021-10-08T17:23:35.8382756Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de/providers/Microsoft.Authorization/roleAssignments/ade4333c-4321-4b68-b498-d081d55e2b0c","type":"Microsoft.Authorization/roleAssignments","name":"ade4333c-4321-4b68-b498-d081d55e2b0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/dfe50df8-51fe-4401-daad-efca9fc8f14b","condition":null,"conditionVersion":null,"createdOn":"2021-04-22T14:50:37.5977858Z","updatedOn":"2021-04-22T14:50:37.5977858Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/dfe50df8-51fe-4401-daad-efca9fc8f14b/providers/Microsoft.Authorization/roleAssignments/eb6c03a6-8e33-4d47-807c-9cdf9ef1e3d8","type":"Microsoft.Authorization/roleAssignments","name":"eb6c03a6-8e33-4d47-807c-9cdf9ef1e3d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9136073Z","updatedOn":"2019-03-26T22:01:02.9136073Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6f4de15e-9316-4714-a7c4-40c46cf8e067","type":"Microsoft.Authorization/roleAssignments","name":"6f4de15e-9316-4714-a7c4-40c46cf8e067"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:13.2137492Z","updatedOn":"2020-02-25T18:36:13.2137492Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/18fdd87e-1c01-424e-b380-32310f4940c2","type":"Microsoft.Authorization/roleAssignments","name":"18fdd87e-1c01-424e-b380-32310f4940c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:00.4746112Z","updatedOn":"2020-02-25T18:36:00.4746112Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d9bcf58a-6f24-446d-bf60-20ffe5142396","type":"Microsoft.Authorization/roleAssignments","name":"d9bcf58a-6f24-446d-bf60-20ffe5142396"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:55.7490022Z","updatedOn":"2020-02-25T18:35:55.7490022Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6e2b954b-42b2-48e0-997a-622601f0a4b4","type":"Microsoft.Authorization/roleAssignments","name":"6e2b954b-42b2-48e0-997a-622601f0a4b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:57.9173081Z","updatedOn":"2020-02-25T18:35:57.9173081Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9","type":"Microsoft.Authorization/roleAssignments","name":"8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:23.0673659Z","updatedOn":"2020-02-25T18:36:23.0673659Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d0817c57-3e5b-4363-88b7-52baadd5c362","type":"Microsoft.Authorization/roleAssignments","name":"d0817c57-3e5b-4363-88b7-52baadd5c362"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:31.2596366Z","updatedOn":"2020-02-25T18:36:31.2596366Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0dabf212-a1c7-4af6-ba8b-be045493b368","type":"Microsoft.Authorization/roleAssignments","name":"0dabf212-a1c7-4af6-ba8b-be045493b368"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:52.9188704Z","updatedOn":"2020-02-25T18:35:52.9188704Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d674b853-332e-4437-9ddb-bba8fde7ccce","type":"Microsoft.Authorization/roleAssignments","name":"d674b853-332e-4437-9ddb-bba8fde7ccce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:38.8393742Z","updatedOn":"2020-02-25T18:36:38.8393742Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/00625383-053d-4227-a4db-b098e9bd2289","type":"Microsoft.Authorization/roleAssignments","name":"00625383-053d-4227-a4db-b098e9bd2289"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:05.0954462Z","updatedOn":"2020-02-25T18:36:05.0954462Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/3151fe9c-fcd2-45d3-a256-72fb13b86df5","type":"Microsoft.Authorization/roleAssignments","name":"3151fe9c-fcd2-45d3-a256-72fb13b86df5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-07-06T18:51:23.0753297Z","updatedOn":"2020-07-06T18:51:23.0753297Z","createdBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","updatedBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b3a9e1db-fde1-4ddd-ac1c-91913be67359","type":"Microsoft.Authorization/roleAssignments","name":"b3a9e1db-fde1-4ddd-ac1c-91913be67359"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:33.0012805Z","updatedOn":"2021-08-09T18:17:33.0012805Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/01de8fe7-aae0-4d5c-844a-f0bdb8335252","type":"Microsoft.Authorization/roleAssignments","name":"01de8fe7-aae0-4d5c-844a-f0bdb8335252"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:39.9188336Z","updatedOn":"2021-08-09T18:17:39.9188336Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ab2be506-5489-4c1f-add0-f5ed87a10439","type":"Microsoft.Authorization/roleAssignments","name":"ab2be506-5489-4c1f-add0-f5ed87a10439"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:18.2000692Z","updatedOn":"2021-08-24T19:32:18.2000692Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0ce2f3fb-17ea-4193-9081-09aa4b39fec4","type":"Microsoft.Authorization/roleAssignments","name":"0ce2f3fb-17ea-4193-9081-09aa4b39fec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:36.6775144Z","updatedOn":"2021-08-24T19:32:36.6775144Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2e95b289-99bd-4e68-83de-5433f2a0428c","type":"Microsoft.Authorization/roleAssignments","name":"2e95b289-99bd-4e68-83de-5433f2a0428c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-09-15T21:46:52.6665975Z","updatedOn":"2021-09-15T21:46:52.6665975Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6d2e0600-74af-4aeb-b479-1718dd4dffdf","type":"Microsoft.Authorization/roleAssignments","name":"6d2e0600-74af-4aeb-b479-1718dd4dffdf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-09-23T22:47:24.2398372Z","updatedOn":"2021-09-23T22:47:24.2398372Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/68d8c18e-3dd6-4bf4-ae99-aac6ffb945cc","type":"Microsoft.Authorization/roleAssignments","name":"68d8c18e-3dd6-4bf4-ae99-aac6ffb945cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-09-23T22:48:58.7755038Z","updatedOn":"2021-09-23T22:48:58.7755038Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/1201e06e-7fa6-44c7-bb6b-a4bd82994d4d","type":"Microsoft.Authorization/roleAssignments","name":"1201e06e-7fa6-44c7-bb6b-a4bd82994d4d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-01-26T20:10:13.8998989Z","updatedOn":"2021-01-26T20:10:13.8998989Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b36517ec-61d3-468d-afdc-eceda8adb4ee","type":"Microsoft.Authorization/roleAssignments","name":"b36517ec-61d3-468d-afdc-eceda8adb4ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-06T00:13:19.1780775Z","updatedOn":"2021-02-06T00:13:19.1780775Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5216c1ee-4f58-4d36-b379-6c04b1fbd157","type":"Microsoft.Authorization/roleAssignments","name":"5216c1ee-4f58-4d36-b379-6c04b1fbd157"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-24T01:45:04.0423529Z","updatedOn":"2021-02-24T01:45:04.0423529Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2bcd4a3e-5ac3-4ffa-a529-269be7717766","type":"Microsoft.Authorization/roleAssignments","name":"2bcd4a3e-5ac3-4ffa-a529-269be7717766"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-24T01:45:10.2950077Z","updatedOn":"2021-02-24T01:45:10.2950077Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8f8ed3e8-1b37-4ac1-ad01-7a274f600e79","type":"Microsoft.Authorization/roleAssignments","name":"8f8ed3e8-1b37-4ac1-ad01-7a274f600e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:26:34.3109215Z","updatedOn":"2021-04-16T18:26:34.3109215Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7464f8a3-9f55-443b-a3a5-44a31b100cad","type":"Microsoft.Authorization/roleAssignments","name":"7464f8a3-9f55-443b-a3a5-44a31b100cad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:27:56.4446265Z","updatedOn":"2021-04-16T18:27:56.4446265Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8f430c4c-4317-4495-9f01-4f3d4e1ca111","type":"Microsoft.Authorization/roleAssignments","name":"8f430c4c-4317-4495-9f01-4f3d4e1ca111"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-05-04T19:20:06.7695456Z","updatedOn":"2021-05-04T19:20:06.7695456Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa","type":"Microsoft.Authorization/roleAssignments","name":"fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"}]}' - headers: - cache-control: - - no-cache - content-length: - - '33753' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:11:17 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitests3a5bwtiz-79a739", - "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet", - "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": - false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": - -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDVfdiWPCK7b0PD8/va1l7EvLPBaHEGLDEISGfg3dnpEsOGU/iprRcAL5NFHQ25sALHD73ZjTIH3BcSqI3OfGrmAE4SFB+nohp6gnc0Gd3Hmrl3jdDSHhm10fyAZb+9RPNFKryGFf+7DcgPK3yPJuhoN1SCqV/mMYQuLM5TpXhWEucy0tfTwN2dYyz8N741cPQJ5jdIUzN+bed3yT3d4TYEIcAdR6BlP3JNyfZlCzx5aF43Z2LWnQHdkxcgZGG5yCndaBIRZwAsCOjXuK2iiNszo2ydwD6/HABke+8hGY84bhUSfZy7QPucQIJe5RQcDXDeB7bJGojIz0KVqpHSh4+L - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ingressApplicationGateway": - {"enabled": true, "config": {"applicationGatewayName": "gateway", "subnetId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet"}}}, - "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": - "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": - "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '1852' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitests3a5bwtiz-79a739\",\n \"fqdn\": - \"cliakstest-clitests3a5bwtiz-79a739-8a0022c8.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitests3a5bwtiz-79a739-8a0022c8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDVfdiWPCK7b0PD8/va1l7EvLPBaHEGLDEISGfg3dnpEsOGU/iprRcAL5NFHQ25sALHD73ZjTIH3BcSqI3OfGrmAE4SFB+nohp6gnc0Gd3Hmrl3jdDSHhm10fyAZb+9RPNFKryGFf+7DcgPK3yPJuhoN1SCqV/mMYQuLM5TpXhWEucy0tfTwN2dYyz8N741cPQJ5jdIUzN+bed3yT3d4TYEIcAdR6BlP3JNyfZlCzx5aF43Z2LWnQHdkxcgZGG5yCndaBIRZwAsCOjXuK2iiNszo2ydwD6/HABke+8hGY84bhUSfZy7QPucQIJe5RQcDXDeB7bJGojIz0KVqpHSh4+L - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"ingressApplicationGateway\": {\n \"enabled\": true,\n \"config\": - {\n \"applicationGatewayName\": \"gateway\",\n \"effectiveApplicationGatewayId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/applicationGateways/gateway\",\n - \ \"subnetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet\"\n - \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": - {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n - \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2d71d164-18cf-40e6-a403-2b48c9a7d1c0?api-version=2016-03-30 - cache-control: - - no-cache - content-length: - - '3523' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:11:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2d71d164-18cf-40e6-a403-2b48c9a7d1c0?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"64d1712d-cf18-e640-a403-2b48c9a7d1c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:11:26.7133333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:11:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2d71d164-18cf-40e6-a403-2b48c9a7d1c0?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"64d1712d-cf18-e640-a403-2b48c9a7d1c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:11:26.7133333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:12:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2d71d164-18cf-40e6-a403-2b48c9a7d1c0?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"64d1712d-cf18-e640-a403-2b48c9a7d1c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:11:26.7133333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:12:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2d71d164-18cf-40e6-a403-2b48c9a7d1c0?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"64d1712d-cf18-e640-a403-2b48c9a7d1c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:11:26.7133333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:13:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2d71d164-18cf-40e6-a403-2b48c9a7d1c0?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"64d1712d-cf18-e640-a403-2b48c9a7d1c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:11:26.7133333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:13:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2d71d164-18cf-40e6-a403-2b48c9a7d1c0?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"64d1712d-cf18-e640-a403-2b48c9a7d1c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:11:26.7133333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:14:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2d71d164-18cf-40e6-a403-2b48c9a7d1c0?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"64d1712d-cf18-e640-a403-2b48c9a7d1c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:11:26.7133333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:14:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2d71d164-18cf-40e6-a403-2b48c9a7d1c0?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"64d1712d-cf18-e640-a403-2b48c9a7d1c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:11:26.7133333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:15:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2d71d164-18cf-40e6-a403-2b48c9a7d1c0?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"64d1712d-cf18-e640-a403-2b48c9a7d1c0\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T05:11:26.7133333Z\",\n \"endTime\": - \"2021-10-19T05:15:33.9630948Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '170' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:15:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitests3a5bwtiz-79a739\",\n \"fqdn\": - \"cliakstest-clitests3a5bwtiz-79a739-8a0022c8.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitests3a5bwtiz-79a739-8a0022c8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDVfdiWPCK7b0PD8/va1l7EvLPBaHEGLDEISGfg3dnpEsOGU/iprRcAL5NFHQ25sALHD73ZjTIH3BcSqI3OfGrmAE4SFB+nohp6gnc0Gd3Hmrl3jdDSHhm10fyAZb+9RPNFKryGFf+7DcgPK3yPJuhoN1SCqV/mMYQuLM5TpXhWEucy0tfTwN2dYyz8N741cPQJ5jdIUzN+bed3yT3d4TYEIcAdR6BlP3JNyfZlCzx5aF43Z2LWnQHdkxcgZGG5yCndaBIRZwAsCOjXuK2iiNszo2ydwD6/HABke+8hGY84bhUSfZy7QPucQIJe5RQcDXDeB7bJGojIz0KVqpHSh4+L - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"ingressApplicationGateway\": {\n \"enabled\": true,\n \"config\": - {\n \"applicationGatewayName\": \"gateway\",\n \"effectiveApplicationGatewayId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/applicationGateways/gateway\",\n - \ \"subnetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet\"\n - \ },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ingressapplicationgateway-cliakstest000002\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": - {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n - \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f81ecb8d-0007-4c29-92e4-1920b1c6ae14\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '4566' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:15:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Network Contributor","type":"BuiltInRole","description":"Lets - you manage networks, but not access to them.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Network/*","Microsoft.ResourceHealth/availabilityStatuses/read","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-06-02T00:18:27.3542698Z","updatedOn":"2016-05-31T23:14:00.3326359Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","type":"Microsoft.Authorization/roleDefinitions","name":"4d97b98b-1d4f-4787-a291-c67834d212e7"}]}' - headers: - cache-control: - - no-cache - content-length: - - '873' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:15:59 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet/providers/Microsoft.Authorization/roleAssignments/a8c96064-c0bd-4ec7-a96f-0437f5a84d4e?api-version=2020-04-01-preview - response: - body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet","condition":null,"conditionVersion":null,"createdOn":"2021-10-19T05:15:59.8963845Z","updatedOn":"2021-10-19T05:16:00.1620101Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/appgw-subnet/providers/Microsoft.Authorization/roleAssignments/a8c96064-c0bd-4ec7-a96f-0437f5a84d4e","type":"Microsoft.Authorization/roleAssignments","name":"a8c96064-c0bd-4ec7-a96f-0437f5a84d4e"}' - headers: - cache-control: - - no-cache - content-length: - - '1053' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:16:01 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Network Contributor","type":"BuiltInRole","description":"Lets - you manage networks, but not access to them.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Network/*","Microsoft.ResourceHealth/availabilityStatuses/read","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-06-02T00:18:27.3542698Z","updatedOn":"2016-05-31T23:14:00.3326359Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","type":"Microsoft.Authorization/roleDefinitions","name":"4d97b98b-1d4f-4787-a291-c67834d212e7"}]}' - headers: - cache-control: - - no-cache - content-length: - - '873' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:16:01 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id -a --appgw-name - --appgw-subnet-id --yes --ssh-key-value -o - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/c52d9ef3-7be7-4fb7-b341-267f4a3cf438?api-version=2020-04-01-preview - response: - body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet","condition":null,"conditionVersion":null,"createdOn":"2021-10-19T05:16:02.3098139Z","updatedOn":"2021-10-19T05:16:02.5599270Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/c52d9ef3-7be7-4fb7-b341-267f4a3cf438","type":"Microsoft.Authorization/roleAssignments","name":"c52d9ef3-7be7-4fb7-b341-267f4a3cf438"}' - headers: - cache-control: - - no-cache - content-length: - - '1049' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:16:03 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created version: 1 diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad.yaml old mode 100755 new mode 100644 index 0a5f072a890..489e9ef1510 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad.yaml @@ -14,21 +14,21 @@ interactions: - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:23:04Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"canadacentral","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:02:25Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '313' + - '319' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:23:05 GMT + - Wed, 01 Dec 2021 14:02:25 GMT expires: - '-1' pragma: @@ -43,90 +43,1169 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestqgfx25fxv-8ecadf", + body: '{"location": "canadacentral", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestzxcyd3soa-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "aadProfile": {"clientAppID": "00000000-0000-0000-0000-000000000002", - "serverAppID": "00000000-0000-0000-0000-000000000001", "serverAppSecret": "fake-secret", - "tenantID": "d5b55040-0c14-48cc-a028-91457fc190d9"}, "disableLocalAccounts": - false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "aadProfile": {"clientAppID": "00000000-0000-0000-0000-000000000002", "serverAppID": + "00000000-0000-0000-0000-000000000001", "serverAppSecret": "fake-secret", "tenantID": + "d5b55040-0c14-48cc-a028-91457fc190d9"}, "disableLocalAccounts": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1966' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"canadacentral\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestzxcyd3soa-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestzxcyd3soa-8ecadf-e541039e.hcp.canadacentral.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzxcyd3soa-8ecadf-e541039e.portal.hcp.canadacentral.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_canadacentral\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"aadProfile\": {\n \"adminGroupObjectIDs\": null,\n \"clientAppID\": + \"00000000-0000-0000-0000-000000000002\",\n \"serverAppID\": \"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantID\": \"d5b55040-0c14-48cc-a028-91457fc190d9\"\n },\n \"maxAgentPools\": + 100,\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '3491' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:02:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:03:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:03:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:04:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:04:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:05:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:05:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:06:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:06:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:07:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:07:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:08:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:08:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:09:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:09:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:10:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:10:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:11:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:11:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:12:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null headers: Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Wed, 01 Dec 2021 14:12:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks create Connection: - keep-alive - Content-Length: - - '1603' - Content-Type: + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Wed, 01 Dec 2021 14:13:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive ParameterSetName: - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestqgfx25fxv-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestqgfx25fxv-8ecadf-aaad543b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestqgfx25fxv-8ecadf-aaad543b.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"aadProfile\": {\n \"adminGroupObjectIDs\": - null,\n \"clientAppID\": \"00000000-0000-0000-0000-000000000002\",\n \"serverAppID\": - \"00000000-0000-0000-0000-000000000001\",\n \"tenantID\": \"d5b55040-0c14-48cc-a028-91457fc190d9\"\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4d2c064-34cc-43ab-bbb4-9a513f1faab0?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3009' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:23:08 GMT + - Wed, 01 Dec 2021 14:13:34 GMT expires: - '-1' pragma: @@ -135,13 +1214,162 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1194' status: - code: 201 - message: Created + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:14:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:14:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret + --aad-client-app-id --aad-tenant-id --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: @@ -157,14 +1385,14 @@ interactions: - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4d2c064-34cc-43ab-bbb4-9a513f1faab0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"64c0d2b4-cc34-ab43-bbb4-9a513f1faab0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:23:08.6133333Z\"\n }" + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" headers: cache-control: - no-cache @@ -173,7 +1401,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:23:38 GMT + - Wed, 01 Dec 2021 14:15:35 GMT expires: - '-1' pragma: @@ -206,14 +1434,14 @@ interactions: - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4d2c064-34cc-43ab-bbb4-9a513f1faab0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"64c0d2b4-cc34-ab43-bbb4-9a513f1faab0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:23:08.6133333Z\"\n }" + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" headers: cache-control: - no-cache @@ -222,7 +1450,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:24:08 GMT + - Wed, 01 Dec 2021 14:16:05 GMT expires: - '-1' pragma: @@ -255,14 +1483,14 @@ interactions: - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4d2c064-34cc-43ab-bbb4-9a513f1faab0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"64c0d2b4-cc34-ab43-bbb4-9a513f1faab0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:23:08.6133333Z\"\n }" + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +1499,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:24:38 GMT + - Wed, 01 Dec 2021 14:16:35 GMT expires: - '-1' pragma: @@ -304,14 +1532,14 @@ interactions: - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4d2c064-34cc-43ab-bbb4-9a513f1faab0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"64c0d2b4-cc34-ab43-bbb4-9a513f1faab0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:23:08.6133333Z\"\n }" + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" headers: cache-control: - no-cache @@ -320,7 +1548,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:25:08 GMT + - Wed, 01 Dec 2021 14:17:05 GMT expires: - '-1' pragma: @@ -353,14 +1581,14 @@ interactions: - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4d2c064-34cc-43ab-bbb4-9a513f1faab0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"64c0d2b4-cc34-ab43-bbb4-9a513f1faab0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:23:08.6133333Z\"\n }" + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" headers: cache-control: - no-cache @@ -369,7 +1597,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:25:38 GMT + - Wed, 01 Dec 2021 14:17:36 GMT expires: - '-1' pragma: @@ -402,14 +1630,14 @@ interactions: - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4d2c064-34cc-43ab-bbb4-9a513f1faab0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"64c0d2b4-cc34-ab43-bbb4-9a513f1faab0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:23:08.6133333Z\"\n }" + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" headers: cache-control: - no-cache @@ -418,7 +1646,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:26:08 GMT + - Wed, 01 Dec 2021 14:18:06 GMT expires: - '-1' pragma: @@ -451,14 +1679,14 @@ interactions: - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4d2c064-34cc-43ab-bbb4-9a513f1faab0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"64c0d2b4-cc34-ab43-bbb4-9a513f1faab0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:23:08.6133333Z\"\n }" + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\"\n }" headers: cache-control: - no-cache @@ -467,7 +1695,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:26:39 GMT + - Wed, 01 Dec 2021 14:18:36 GMT expires: - '-1' pragma: @@ -500,24 +1728,24 @@ interactions: - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4d2c064-34cc-43ab-bbb4-9a513f1faab0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/563fb6f8-fad1-403c-8cc3-7d1bee41c7b2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"64c0d2b4-cc34-ab43-bbb4-9a513f1faab0\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:23:08.6133333Z\",\n \"endTime\": - \"2021-10-19T07:26:50.404029Z\"\n }" + string: "{\n \"name\": \"f8b63f56-d1fa-3c40-8cc3-7d1bee41c7b2\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:02:31.1133333Z\",\n \"endTime\": + \"2021-12-01T14:18:50.8298381Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 07:27:08 GMT + - Wed, 01 Dec 2021 14:19:06 GMT expires: - '-1' pragma: @@ -550,60 +1778,63 @@ interactions: - --resource-group --name --vm-set-type -c --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"canadacentral\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestqgfx25fxv-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestqgfx25fxv-8ecadf-aaad543b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestqgfx25fxv-8ecadf-aaad543b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestzxcyd3soa-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestzxcyd3soa-8ecadf-e541039e.hcp.canadacentral.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzxcyd3soa-8ecadf-e541039e.portal.hcp.canadacentral.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_canadacentral\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/25792612-4102-48ce-825d-50c33534640e\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_canadacentral/providers/Microsoft.Network/publicIPAddresses/c4b3a156-73b0-4259-b700-15326c19e252\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"aadProfile\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"adminGroupObjectIDs\": null,\n \"clientAppID\": \"00000000-0000-0000-0000-000000000002\",\n \ \"serverAppID\": \"00000000-0000-0000-0000-000000000001\",\n \"tenantID\": \"d5b55040-0c14-48cc-a028-91457fc190d9\"\n },\n \"maxAgentPools\": 100,\n \ \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_canadacentral/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3672' + - '4166' content-type: - application/json date: - - Tue, 19 Oct 2021 07:27:09 GMT + - Wed, 01 Dec 2021 14:19:06 GMT expires: - '-1' pragma: @@ -636,60 +1867,63 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"canadacentral\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestqgfx25fxv-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestqgfx25fxv-8ecadf-aaad543b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestqgfx25fxv-8ecadf-aaad543b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestzxcyd3soa-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestzxcyd3soa-8ecadf-e541039e.hcp.canadacentral.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzxcyd3soa-8ecadf-e541039e.portal.hcp.canadacentral.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_canadacentral\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/25792612-4102-48ce-825d-50c33534640e\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_canadacentral/providers/Microsoft.Network/publicIPAddresses/c4b3a156-73b0-4259-b700-15326c19e252\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"aadProfile\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"adminGroupObjectIDs\": null,\n \"clientAppID\": \"00000000-0000-0000-0000-000000000002\",\n \ \"serverAppID\": \"00000000-0000-0000-0000-000000000001\",\n \"tenantID\": \"d5b55040-0c14-48cc-a028-91457fc190d9\"\n },\n \"maxAgentPools\": 100,\n \ \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_canadacentral/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3672' + - '4166' content-type: - application/json date: - - Tue, 19 Oct 2021 07:27:10 GMT + - Wed, 01 Dec 2021 14:19:07 GMT expires: - '-1' pragma: @@ -708,28 +1942,30 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestqgfx25fxv-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": - "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": - "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + body: '{"location": "canadacentral", "sku": {"name": "Basic", "tier": "Free"}, + "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": + "1.20.9", "dnsPrefix": "cliakstest-clitestzxcyd3soa-8ecadf", "agentPoolProfiles": + [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": + "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": + 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.20.9", + "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000002_canadacentral", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/25792612-4102-48ce-825d-50c33534640e"}]}}, - "aadProfile": {"managed": true, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000003"], + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_canadacentral/providers/Microsoft.Network/publicIPAddresses/c4b3a156-73b0-4259-b700-15326c19e252"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "aadProfile": {"managed": true, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000003"], "tenantID": "00000000-0000-0000-0000-000000000004"}, "identityProfile": {"kubeletidentity": - {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_canadacentral/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -740,68 +1976,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2461' + - '2896' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"canadacentral\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestqgfx25fxv-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestqgfx25fxv-8ecadf-aaad543b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestqgfx25fxv-8ecadf-aaad543b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestzxcyd3soa-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestzxcyd3soa-8ecadf-e541039e.hcp.canadacentral.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzxcyd3soa-8ecadf-e541039e.portal.hcp.canadacentral.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_canadacentral\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/25792612-4102-48ce-825d-50c33534640e\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_canadacentral/providers/Microsoft.Network/publicIPAddresses/c4b3a156-73b0-4259-b700-15326c19e252\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"aadProfile\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000003\"\n \ ],\n \"tenantID\": \"00000000-0000-0000-0000-000000000004\"\n },\n \ \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": - {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_canadacentral/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0671c1ec-290b-466d-bd4f-7d88b17238d5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/9e6a27e8-4bad-4d6b-b77b-e0ebd1446a5b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3620' + - '4114' content-type: - application/json date: - - Tue, 19 Oct 2021 07:27:12 GMT + - Wed, 01 Dec 2021 14:19:10 GMT expires: - '-1' pragma: @@ -817,7 +2056,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1195' status: code: 200 message: OK @@ -836,23 +2075,23 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0671c1ec-290b-466d-bd4f-7d88b17238d5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/9e6a27e8-4bad-4d6b-b77b-e0ebd1446a5b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ecc17106-0b29-6d46-bd4f-7d88b17238d5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:27:12.6133333Z\"\n }" + string: "{\n \"name\": \"e8276a9e-ad4b-6b4d-b77b-e0ebd1446a5b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:19:10.88Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:27:42 GMT + - Wed, 01 Dec 2021 14:19:40 GMT expires: - '-1' pragma: @@ -885,23 +2124,23 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0671c1ec-290b-466d-bd4f-7d88b17238d5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/9e6a27e8-4bad-4d6b-b77b-e0ebd1446a5b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ecc17106-0b29-6d46-bd4f-7d88b17238d5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:27:12.6133333Z\"\n }" + string: "{\n \"name\": \"e8276a9e-ad4b-6b4d-b77b-e0ebd1446a5b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:19:10.88Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:28:12 GMT + - Wed, 01 Dec 2021 14:20:11 GMT expires: - '-1' pragma: @@ -934,23 +2173,23 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0671c1ec-290b-466d-bd4f-7d88b17238d5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/9e6a27e8-4bad-4d6b-b77b-e0ebd1446a5b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ecc17106-0b29-6d46-bd4f-7d88b17238d5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:27:12.6133333Z\"\n }" + string: "{\n \"name\": \"e8276a9e-ad4b-6b4d-b77b-e0ebd1446a5b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:19:10.88Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:28:42 GMT + - Wed, 01 Dec 2021 14:20:41 GMT expires: - '-1' pragma: @@ -983,23 +2222,23 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0671c1ec-290b-466d-bd4f-7d88b17238d5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/9e6a27e8-4bad-4d6b-b77b-e0ebd1446a5b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ecc17106-0b29-6d46-bd4f-7d88b17238d5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:27:12.6133333Z\"\n }" + string: "{\n \"name\": \"e8276a9e-ad4b-6b4d-b77b-e0ebd1446a5b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:19:10.88Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:29:13 GMT + - Wed, 01 Dec 2021 14:21:11 GMT expires: - '-1' pragma: @@ -1032,24 +2271,24 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0671c1ec-290b-466d-bd4f-7d88b17238d5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/9e6a27e8-4bad-4d6b-b77b-e0ebd1446a5b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ecc17106-0b29-6d46-bd4f-7d88b17238d5\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:27:12.6133333Z\",\n \"endTime\": - \"2021-10-19T07:29:13.5617757Z\"\n }" + string: "{\n \"name\": \"e8276a9e-ad4b-6b4d-b77b-e0ebd1446a5b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:19:10.88Z\",\n \"endTime\": + \"2021-12-01T14:21:33.3250812Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Tue, 19 Oct 2021 07:29:42 GMT + - Wed, 01 Dec 2021 14:21:42 GMT expires: - '-1' pragma: @@ -1082,59 +2321,62 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"canadacentral\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestqgfx25fxv-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestqgfx25fxv-8ecadf-aaad543b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestqgfx25fxv-8ecadf-aaad543b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestzxcyd3soa-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestzxcyd3soa-8ecadf-e541039e.hcp.canadacentral.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzxcyd3soa-8ecadf-e541039e.portal.hcp.canadacentral.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_canadacentral\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/25792612-4102-48ce-825d-50c33534640e\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_canadacentral/providers/Microsoft.Network/publicIPAddresses/c4b3a156-73b0-4259-b700-15326c19e252\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"aadProfile\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000003\"\n \ ],\n \"tenantID\": \"00000000-0000-0000-0000-000000000004\"\n },\n \ \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": - {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_canadacentral/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3622' + - '4116' content-type: - application/json date: - - Tue, 19 Oct 2021 07:29:43 GMT + - Wed, 01 Dec 2021 14:21:42 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_addon_with_azurekeyvaultsecretsprovider_with_secret_rotation.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_addon_with_azurekeyvaultsecretsprovider_with_secret_rotation.yaml index 8abb5a137be..39256026e8f 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_addon_with_azurekeyvaultsecretsprovider_with_secret_rotation.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_addon_with_azurekeyvaultsecretsprovider_with_secret_rotation.yaml @@ -14,13 +14,12 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-resource/19.0.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-20T15:49:32Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:02:25Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -29,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 15:49:40 GMT + - Wed, 01 Dec 2021 14:02:25 GMT expires: - '-1' pragma: @@ -45,13 +44,14 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestubw6cybvx-26fe00", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest5xqwfulru-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": true, "config": {"enableSecretRotation": "true", "rotationPollInterval": "30m"}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": @@ -68,67 +68,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1844' + - '1872' Content-Type: - application/json ParameterSetName: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestubw6cybvx-26fe00\",\n \"fqdn\": \"cliakstest-clitestubw6cybvx-26fe00-15fbf228.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestubw6cybvx-26fe00-15fbf228.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ - : true,\n \"config\": {\n \"enableSecretRotation\": \"true\",\n \ - \ \"rotationPollInterval\": \"30m\"\n }\n }\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n\ - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"\ - networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \ - \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\"\ - : 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\"\ - : \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n\ - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\"\ - : \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\"\ - : \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest5xqwfulru-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest5xqwfulru-8ecadf-be65bb3e.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest5xqwfulru-8ecadf-be65bb3e.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": + {\n \"enableSecretRotation\": \"true\",\n \"rotationPollInterval\": + \"30m\"\n }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/24855e36-d472-4741-b104-b20760ed7fdc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e6893e0-7e61-4a11-bcb4-f072776bcedc?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3315' + - '3428' content-type: - application/json date: - - Wed, 20 Oct 2021 15:49:53 GMT + - Wed, 01 Dec 2021 14:02:31 GMT expires: - '-1' pragma: @@ -140,7 +140,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 201 message: Created @@ -159,14 +159,14 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/24855e36-d472-4741-b104-b20760ed7fdc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e6893e0-7e61-4a11-bcb4-f072776bcedc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"365e8524-72d4-4147-b104-b20760ed7fdc\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-20T15:49:52.7933333Z\"\n }" + string: "{\n \"name\": \"e093685e-617e-114a-bcb4-f072776bcedc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.4333333Z\"\n }" headers: cache-control: - no-cache @@ -175,7 +175,7 @@ interactions: content-type: - application/json date: - - Wed, 20 Oct 2021 15:50:23 GMT + - Wed, 01 Dec 2021 14:03:01 GMT expires: - '-1' pragma: @@ -208,14 +208,14 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/24855e36-d472-4741-b104-b20760ed7fdc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e6893e0-7e61-4a11-bcb4-f072776bcedc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"365e8524-72d4-4147-b104-b20760ed7fdc\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-20T15:49:52.7933333Z\"\n }" + string: "{\n \"name\": \"e093685e-617e-114a-bcb4-f072776bcedc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.4333333Z\"\n }" headers: cache-control: - no-cache @@ -224,7 +224,7 @@ interactions: content-type: - application/json date: - - Wed, 20 Oct 2021 15:50:53 GMT + - Wed, 01 Dec 2021 14:03:31 GMT expires: - '-1' pragma: @@ -257,14 +257,14 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/24855e36-d472-4741-b104-b20760ed7fdc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e6893e0-7e61-4a11-bcb4-f072776bcedc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"365e8524-72d4-4147-b104-b20760ed7fdc\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-20T15:49:52.7933333Z\"\n }" + string: "{\n \"name\": \"e093685e-617e-114a-bcb4-f072776bcedc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.4333333Z\"\n }" headers: cache-control: - no-cache @@ -273,7 +273,7 @@ interactions: content-type: - application/json date: - - Wed, 20 Oct 2021 15:51:24 GMT + - Wed, 01 Dec 2021 14:04:02 GMT expires: - '-1' pragma: @@ -306,14 +306,14 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/24855e36-d472-4741-b104-b20760ed7fdc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e6893e0-7e61-4a11-bcb4-f072776bcedc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"365e8524-72d4-4147-b104-b20760ed7fdc\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-20T15:49:52.7933333Z\"\n }" + string: "{\n \"name\": \"e093685e-617e-114a-bcb4-f072776bcedc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.4333333Z\"\n }" headers: cache-control: - no-cache @@ -322,7 +322,7 @@ interactions: content-type: - application/json date: - - Wed, 20 Oct 2021 15:51:54 GMT + - Wed, 01 Dec 2021 14:04:32 GMT expires: - '-1' pragma: @@ -355,14 +355,14 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/24855e36-d472-4741-b104-b20760ed7fdc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e6893e0-7e61-4a11-bcb4-f072776bcedc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"365e8524-72d4-4147-b104-b20760ed7fdc\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-20T15:49:52.7933333Z\"\n }" + string: "{\n \"name\": \"e093685e-617e-114a-bcb4-f072776bcedc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.4333333Z\"\n }" headers: cache-control: - no-cache @@ -371,7 +371,7 @@ interactions: content-type: - application/json date: - - Wed, 20 Oct 2021 15:52:24 GMT + - Wed, 01 Dec 2021 14:05:01 GMT expires: - '-1' pragma: @@ -404,14 +404,14 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/24855e36-d472-4741-b104-b20760ed7fdc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e6893e0-7e61-4a11-bcb4-f072776bcedc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"365e8524-72d4-4147-b104-b20760ed7fdc\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-20T15:49:52.7933333Z\"\n }" + string: "{\n \"name\": \"e093685e-617e-114a-bcb4-f072776bcedc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.4333333Z\"\n }" headers: cache-control: - no-cache @@ -420,7 +420,7 @@ interactions: content-type: - application/json date: - - Wed, 20 Oct 2021 15:52:55 GMT + - Wed, 01 Dec 2021 14:05:32 GMT expires: - '-1' pragma: @@ -453,14 +453,14 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/24855e36-d472-4741-b104-b20760ed7fdc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e6893e0-7e61-4a11-bcb4-f072776bcedc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"365e8524-72d4-4147-b104-b20760ed7fdc\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-20T15:49:52.7933333Z\"\n }" + string: "{\n \"name\": \"e093685e-617e-114a-bcb4-f072776bcedc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.4333333Z\"\n }" headers: cache-control: - no-cache @@ -469,7 +469,7 @@ interactions: content-type: - application/json date: - - Wed, 20 Oct 2021 15:53:26 GMT + - Wed, 01 Dec 2021 14:06:02 GMT expires: - '-1' pragma: @@ -502,24 +502,24 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/24855e36-d472-4741-b104-b20760ed7fdc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e6893e0-7e61-4a11-bcb4-f072776bcedc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"365e8524-72d4-4147-b104-b20760ed7fdc\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2021-10-20T15:49:52.7933333Z\",\n \"\ - endTime\": \"2021-10-20T15:53:54.0916303Z\"\n }" + string: "{\n \"name\": \"e093685e-617e-114a-bcb4-f072776bcedc\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:02:31.4333333Z\",\n \"endTime\": + \"2021-12-01T14:06:32.553347Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Wed, 20 Oct 2021 15:53:56 GMT + - Wed, 01 Dec 2021 14:06:32 GMT expires: - '-1' pragma: @@ -552,66 +552,64 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestubw6cybvx-26fe00\",\n \"fqdn\": \"cliakstest-clitestubw6cybvx-26fe00-15fbf228.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestubw6cybvx-26fe00-15fbf228.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ - : true,\n \"config\": {\n \"enableSecretRotation\": \"true\",\n \ - \ \"rotationPollInterval\": \"30m\"\n },\n \"identity\": {\n \ - \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ - objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c8cd1b7f-0993-4ea1-b60e-67bd810fcf75\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest5xqwfulru-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest5xqwfulru-8ecadf-be65bb3e.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest5xqwfulru-8ecadf-be65bb3e.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": + {\n \"enableSecretRotation\": \"true\",\n \"rotationPollInterval\": + \"30m\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2e0d3f51-1593-4736-90c3-e6a800a81fea\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4361' + - '4474' content-type: - application/json date: - - Wed, 20 Oct 2021 15:53:56 GMT + - Wed, 01 Dec 2021 14:06:33 GMT expires: - '-1' pragma: @@ -645,8 +643,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -654,17 +652,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20d86cdb-ae2a-4e9f-9588-cdf27520eeb8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/90b252e4-5e9e-4825-97ca-a1b0c2e7c35a?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Oct 2021 15:54:00 GMT + - Wed, 01 Dec 2021 14:06:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/20d86cdb-ae2a-4e9f-9588-cdf27520eeb8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/90b252e4-5e9e-4825-97ca-a1b0c2e7c35a?api-version=2016-03-30 pragma: - no-cache server: @@ -674,7 +672,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_ipv6_count.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_ipv6_count.yaml new file mode 100644 index 00000000000..1afecfd5e92 --- /dev/null +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_ipv6_count.yaml @@ -0,0 +1,1162 @@ +interactions: +- request: + body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "1.21.2", "dnsPrefix": "cliakstest-clitestioanx2is4-8ecadf", + "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "172.126.0.0/16", + "serviceCidr": "172.56.0.0/16", "dnsServiceIP": "172.56.0.10", "outboundType": + "loadBalancer", "loadBalancerSku": "standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1, "countIPv6": 2}, "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": + 30}, "podCidrs": ["172.126.0.0/16", "2001:abcd:1234::/64"], "serviceCidrs": + ["172.56.0.0/16", "2001:ffff::/108"], "ipFamilies": ["IPv4", "IPv6"]}, "disableLocalAccounts": + false}}' + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-EnableDualStack + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '2003' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count + --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.21.2\",\n \"dnsPrefix\": \"cliakstest-clitestioanx2is4-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestioanx2is4-8ecadf-9e1b01c6.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestioanx2is4-8ecadf-9e1b01c6.portal.hcp.centraluseuap.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.21.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.12.07\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000001_centraluseuap\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1,\n \"countIPv6\": + 2\n },\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": + 30\n },\n \"podCidr\": \"172.126.0.0/16\",\n \"serviceCidr\": \"172.56.0.0/16\",\n + \ \"dnsServiceIP\": \"172.56.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n + \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"172.126.0.0/16\",\n + \ \"2001:abcd:1234::/64\"\n ],\n \"serviceCidrs\": [\n \"172.56.0.0/16\",\n + \ \"2001:ffff::/108\"\n ],\n \"ipFamilies\": [\n \"IPv4\",\n + \ \"IPv6\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": + false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/a243a732-4606-4769-96bc-e83ef641b341?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '3445' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 17:56:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-EnableDualStack + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count + --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/a243a732-4606-4769-96bc-e83ef641b341?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"32a743a2-0646-6947-96bc-e83ef641b341\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-15T17:56:12.7766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 17:56:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-EnableDualStack + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count + --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/a243a732-4606-4769-96bc-e83ef641b341?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"32a743a2-0646-6947-96bc-e83ef641b341\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-15T17:56:12.7766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 17:57:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-EnableDualStack + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count + --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/a243a732-4606-4769-96bc-e83ef641b341?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"32a743a2-0646-6947-96bc-e83ef641b341\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-15T17:56:12.7766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 17:57:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-EnableDualStack + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count + --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/a243a732-4606-4769-96bc-e83ef641b341?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"32a743a2-0646-6947-96bc-e83ef641b341\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-15T17:56:12.7766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 17:58:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-EnableDualStack + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count + --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/a243a732-4606-4769-96bc-e83ef641b341?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"32a743a2-0646-6947-96bc-e83ef641b341\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-15T17:56:12.7766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 17:58:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-EnableDualStack + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count + --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/a243a732-4606-4769-96bc-e83ef641b341?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"32a743a2-0646-6947-96bc-e83ef641b341\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-15T17:56:12.7766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 17:59:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-EnableDualStack + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count + --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/a243a732-4606-4769-96bc-e83ef641b341?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"32a743a2-0646-6947-96bc-e83ef641b341\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-15T17:56:12.7766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 17:59:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-EnableDualStack + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count + --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/a243a732-4606-4769-96bc-e83ef641b341?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"32a743a2-0646-6947-96bc-e83ef641b341\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-15T17:56:12.7766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 18:00:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-EnableDualStack + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count + --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/a243a732-4606-4769-96bc-e83ef641b341?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"32a743a2-0646-6947-96bc-e83ef641b341\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-15T17:56:12.7766666Z\",\n \"endTime\": + \"2021-12-15T18:00:27.491858Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 18:00:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-EnableDualStack + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count + --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.21.2\",\n \"dnsPrefix\": \"cliakstest-clitestioanx2is4-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestioanx2is4-8ecadf-9e1b01c6.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestioanx2is4-8ecadf-9e1b01c6.portal.hcp.centraluseuap.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.21.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.12.07\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000001_centraluseuap\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1,\n \"countIPv6\": + 2\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/48dd4690-2939-4e20-ae21-b638286dc633\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/da0ef783-f8b1-4c01-a7c9-e04880c20e25-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/97962d33-06f0-4ddf-8ffb-fdcc6b4b012c-ipv6\"\n + \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": + 30\n },\n \"podCidr\": \"172.126.0.0/16\",\n \"serviceCidr\": \"172.56.0.0/16\",\n + \ \"dnsServiceIP\": \"172.56.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n + \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"172.126.0.0/16\",\n + \ \"2001:abcd:1234::/64\"\n ],\n \"serviceCidrs\": [\n \"172.56.0.0/16\",\n + \ \"2001:ffff::/108\"\n ],\n \"ipFamilies\": [\n \"IPv4\",\n + \ \"IPv6\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": + {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4580' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 18:00:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --load-balancer-managed-outbound-ipv6-count + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.21.2\",\n \"dnsPrefix\": \"cliakstest-clitestioanx2is4-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestioanx2is4-8ecadf-9e1b01c6.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestioanx2is4-8ecadf-9e1b01c6.portal.hcp.centraluseuap.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.21.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.12.07\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000001_centraluseuap\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1,\n \"countIPv6\": + 2\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/48dd4690-2939-4e20-ae21-b638286dc633\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/da0ef783-f8b1-4c01-a7c9-e04880c20e25-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/97962d33-06f0-4ddf-8ffb-fdcc6b4b012c-ipv6\"\n + \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": + 30\n },\n \"podCidr\": \"172.126.0.0/16\",\n \"serviceCidr\": \"172.56.0.0/16\",\n + \ \"dnsServiceIP\": \"172.56.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n + \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"172.126.0.0/16\",\n + \ \"2001:abcd:1234::/64\"\n ],\n \"serviceCidrs\": [\n \"172.56.0.0/16\",\n + \ \"2001:ffff::/108\"\n ],\n \"ipFamilies\": [\n \"IPv4\",\n + \ \"IPv6\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": + {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4580' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 18:00:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "centraluseuap", "sku": {"name": "Basic", "tier": "Free"}, + "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": + "1.21.2", "dnsPrefix": "cliakstest-clitestioanx2is4-8ecadf", "agentPoolProfiles": + [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": + "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": + 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.21.2", + "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000001_centraluseuap", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "172.126.0.0/16", "serviceCidr": "172.56.0.0/16", "dnsServiceIP": + "172.56.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1, "countIPv6": 4}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/48dd4690-2939-4e20-ae21-b638286dc633"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/da0ef783-f8b1-4c01-a7c9-e04880c20e25-ipv6"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/97962d33-06f0-4ddf-8ffb-fdcc6b4b012c-ipv6"}], + "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30}, "podCidrs": ["172.126.0.0/16", + "2001:abcd:1234::/64"], "serviceCidrs": ["172.56.0.0/16", "2001:ffff::/108"], + "ipFamilies": ["IPv4", "IPv6"]}, "identityProfile": {"kubeletidentity": {"resourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + Content-Length: + - '3323' + Content-Type: + - application/json + ParameterSetName: + - -g -n --load-balancer-managed-outbound-ipv6-count + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.21.2\",\n \"dnsPrefix\": \"cliakstest-clitestioanx2is4-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestioanx2is4-8ecadf-9e1b01c6.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestioanx2is4-8ecadf-9e1b01c6.portal.hcp.centraluseuap.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.21.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.12.07\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000001_centraluseuap\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1,\n \"countIPv6\": + 4\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/48dd4690-2939-4e20-ae21-b638286dc633\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/da0ef783-f8b1-4c01-a7c9-e04880c20e25-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/97962d33-06f0-4ddf-8ffb-fdcc6b4b012c-ipv6\"\n + \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": + 30\n },\n \"podCidr\": \"172.126.0.0/16\",\n \"serviceCidr\": \"172.56.0.0/16\",\n + \ \"dnsServiceIP\": \"172.56.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n + \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"172.126.0.0/16\",\n + \ \"2001:abcd:1234::/64\"\n ],\n \"serviceCidrs\": [\n \"172.56.0.0/16\",\n + \ \"2001:ffff::/108\"\n ],\n \"ipFamilies\": [\n \"IPv4\",\n + \ \"IPv6\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": + {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/5cd5534a-784a-472f-a653-e8b125b8391b?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '4578' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 18:00:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --load-balancer-managed-outbound-ipv6-count + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/5cd5534a-784a-472f-a653-e8b125b8391b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4a53d55c-4a78-2f47-a653-e8b125b8391b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-15T18:00:47.83Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 18:01:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --load-balancer-managed-outbound-ipv6-count + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/5cd5534a-784a-472f-a653-e8b125b8391b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4a53d55c-4a78-2f47-a653-e8b125b8391b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-15T18:00:47.83Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 18:01:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --load-balancer-managed-outbound-ipv6-count + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/5cd5534a-784a-472f-a653-e8b125b8391b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4a53d55c-4a78-2f47-a653-e8b125b8391b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-15T18:00:47.83Z\",\n \"endTime\": + \"2021-12-15T18:01:53.8758998Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '165' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 18:02:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --load-balancer-managed-outbound-ipv6-count + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.21.2\",\n \"dnsPrefix\": \"cliakstest-clitestioanx2is4-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestioanx2is4-8ecadf-9e1b01c6.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestioanx2is4-8ecadf-9e1b01c6.portal.hcp.centraluseuap.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.21.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.12.07\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000001_centraluseuap\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1,\n \"countIPv6\": + 4\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/48dd4690-2939-4e20-ae21-b638286dc633\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/97962d33-06f0-4ddf-8ffb-fdcc6b4b012c-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/da0ef783-f8b1-4c01-a7c9-e04880c20e25-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d84670bf-e3c7-446e-9fef-06732256ceb0-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/95a817bd-8832-44b8-9c34-619f83e48c86-ipv6\"\n + \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": + 30\n },\n \"podCidr\": \"172.126.0.0/16\",\n \"serviceCidr\": \"172.56.0.0/16\",\n + \ \"dnsServiceIP\": \"172.56.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n + \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"172.126.0.0/16\",\n + \ \"2001:abcd:1234::/64\"\n ],\n \"serviceCidrs\": [\n \"172.56.0.0/16\",\n + \ \"2001:ffff::/108\"\n ],\n \"ipFamilies\": [\n \"IPv4\",\n + \ \"IPv6\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": + {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '5050' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 18:02:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --yes --no-wait + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-07-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d5ed6a36-98cb-4a2f-b2d2-5a46496f9de2?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 18:02:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/d5ed6a36-98cb-4a2f-b2d2-5a46496f9de2?api-version=2016-03-30 + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +version: 1 diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_outbound_ips.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_outbound_ips.yaml new file mode 100644 index 00000000000..3ed2619b7e8 --- /dev/null +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_outbound_ips.yaml @@ -0,0 +1,1484 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-13T19:00:51Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '305' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 13 Dec 2021 19:00:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "sku": {"name": "Standard"}, "properties": {"publicIPAllocationMethod": + "Static", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + Content-Length: + - '167' + Content-Type: + - application/json + ParameterSetName: + - -g -n --sku + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003?api-version=2021-05-01 + response: + body: + string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003\",\r\n + \ \"etag\": \"W/\\\"a76dd28f-60ad-46b3-aa7a-834597adde9f\\\"\",\r\n \"location\": + \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"49496636-3d07-4e2e-8f5f-adbf146da68b\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n + \ }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/61f00e3d-48c8-4350-a4bf-3159a9023a77?api-version=2021-05-01 + cache-control: + - no-cache + content-length: + - '646' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 13 Dec 2021 19:00:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d1a2a125-6b7b-4f1a-b534-8e14aefceefa + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/61f00e3d-48c8-4350-a4bf-3159a9023a77?api-version=2021-05-01 + 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: + - Mon, 13 Dec 2021 19:00: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ae529f09-2f08-411f-8e07-5a9c2ba2be0c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003?api-version=2021-05-01 + response: + body: + string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003\",\r\n + \ \"etag\": \"W/\\\"3ee44db2-965a-443a-9c40-59d7189894e3\\\"\",\r\n \"location\": + \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"49496636-3d07-4e2e-8f5f-adbf146da68b\",\r\n \"ipAddress\": + \"20.83.102.213\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n + \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": + {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '682' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 13 Dec 2021 19:00:58 GMT + etag: + - W/"3ee44db2-965a-443a-9c40-59d7189894e3" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 544628fb-bbe9-496d-9369-55df0256034f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-13T19:00:51Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '305' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 13 Dec 2021 19:00:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "sku": {"name": "Standard"}, "properties": {"publicIPAllocationMethod": + "Static", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + Content-Length: + - '167' + Content-Type: + - application/json + ParameterSetName: + - -g -n --sku + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004?api-version=2021-05-01 + response: + body: + string: "{\r\n \"name\": \"cliakstest000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004\",\r\n + \ \"etag\": \"W/\\\"69207371-4665-492d-a4e2-16dc69e80911\\\"\",\r\n \"location\": + \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"08bc68b3-8a6f-4132-b7e2-0c41fe3e53d1\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n + \ }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9100ef45-2105-4210-accb-dc0d6e2bc239?api-version=2021-05-01 + cache-control: + - no-cache + content-length: + - '646' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 13 Dec 2021 19:01:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3506472f-0323-45f9-97b3-198be5838df7 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9100ef45-2105-4210-accb-dc0d6e2bc239?api-version=2021-05-01 + 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: + - Mon, 13 Dec 2021 19:01: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 725bc2aa-128d-4984-bd2c-570c6356cd08 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004?api-version=2021-05-01 + response: + body: + string: "{\r\n \"name\": \"cliakstest000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004\",\r\n + \ \"etag\": \"W/\\\"c3bb7d68-0f64-4f68-872d-97f6f39bdfd7\\\"\",\r\n \"location\": + \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"08bc68b3-8a6f-4132-b7e2-0c41fe3e53d1\",\r\n \"ipAddress\": + \"20.83.103.167\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n + \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": + {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '682' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 13 Dec 2021 19:01:03 GMT + etag: + - W/"c3bb7d68-0f64-4f68-872d-97f6f39bdfd7" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a40707e9-3dfd-4e97-84ca-f34a125fe227 + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestje5unnkf7-8ecadf", + "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard", + "loadBalancerProfile": {"outboundIPs": {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003"}]}, + "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30}}, "disableLocalAccounts": + false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '2017' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestje5unnkf7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestje5unnkf7-8ecadf-b970ec16.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestje5unnkf7-8ecadf-b970ec16.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003\"\n + \ }\n ]\n },\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": + 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n + \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n + \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n + \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": + false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f0476183-7c9a-4a1c-a372-05f0218e4488?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '3509' + content-type: + - application/json + date: + - Mon, 13 Dec 2021 19:01:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f0476183-7c9a-4a1c-a372-05f0218e4488?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"836147f0-9a7c-1c4a-a372-05f0218e4488\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-13T19:01:10.39Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Mon, 13 Dec 2021 19:01:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f0476183-7c9a-4a1c-a372-05f0218e4488?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"836147f0-9a7c-1c4a-a372-05f0218e4488\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-13T19:01:10.39Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Mon, 13 Dec 2021 19:02:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f0476183-7c9a-4a1c-a372-05f0218e4488?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"836147f0-9a7c-1c4a-a372-05f0218e4488\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-13T19:01:10.39Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Mon, 13 Dec 2021 19:02:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f0476183-7c9a-4a1c-a372-05f0218e4488?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"836147f0-9a7c-1c4a-a372-05f0218e4488\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-13T19:01:10.39Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Mon, 13 Dec 2021 19:03:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f0476183-7c9a-4a1c-a372-05f0218e4488?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"836147f0-9a7c-1c4a-a372-05f0218e4488\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-13T19:01:10.39Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Mon, 13 Dec 2021 19:03:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f0476183-7c9a-4a1c-a372-05f0218e4488?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"836147f0-9a7c-1c4a-a372-05f0218e4488\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-13T19:01:10.39Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Mon, 13 Dec 2021 19:04:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f0476183-7c9a-4a1c-a372-05f0218e4488?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"836147f0-9a7c-1c4a-a372-05f0218e4488\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-13T19:01:10.39Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Mon, 13 Dec 2021 19:04:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f0476183-7c9a-4a1c-a372-05f0218e4488?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"836147f0-9a7c-1c4a-a372-05f0218e4488\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-13T19:01:10.39Z\",\n \"endTime\": + \"2021-12-13T19:05:08.575562Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '164' + content-type: + - application/json + date: + - Mon, 13 Dec 2021 19:05:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ssh-key-value --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestje5unnkf7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestje5unnkf7-8ecadf-b970ec16.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestje5unnkf7-8ecadf-b970ec16.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003\"\n + \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003\"\n + \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": + 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n + \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n + \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n + \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": + {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4114' + content-type: + - application/json + date: + - Mon, 13 Dec 2021 19:05:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestje5unnkf7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestje5unnkf7-8ecadf-b970ec16.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestje5unnkf7-8ecadf-b970ec16.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003\"\n + \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003\"\n + \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": + 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n + \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n + \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n + \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": + {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4114' + content-type: + - application/json + date: + - Mon, 13 Dec 2021 19:05:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": + "cliakstest-clitestje5unnkf7-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": + "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"outboundIPs": {"publicIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004"}]}, + "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003"}], + "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30}, "podCidrs": ["10.244.0.0/16"], + "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": + {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + Content-Length: + - '2900' + Content-Type: + - application/json + ParameterSetName: + - -g -n --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestje5unnkf7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestje5unnkf7-8ecadf-b970ec16.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestje5unnkf7-8ecadf-b970ec16.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004\"\n + \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000003\"\n + \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": + 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n + \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n + \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n + \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": + {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc1a8049-eb78-40fc-8f3b-aa72f76f712d?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '4112' + content-type: + - application/json + date: + - Mon, 13 Dec 2021 19:05:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc1a8049-eb78-40fc-8f3b-aa72f76f712d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"49801abc-78eb-fc40-8f3b-aa72f76f712d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-13T19:05:18.3166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 13 Dec 2021 19:05:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc1a8049-eb78-40fc-8f3b-aa72f76f712d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"49801abc-78eb-fc40-8f3b-aa72f76f712d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-13T19:05:18.3166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 13 Dec 2021 19:06:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc1a8049-eb78-40fc-8f3b-aa72f76f712d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"49801abc-78eb-fc40-8f3b-aa72f76f712d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-13T19:05:18.3166666Z\",\n \"endTime\": + \"2021-12-13T19:06:28.9809507Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Mon, 13 Dec 2021 19:06:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestje5unnkf7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestje5unnkf7-8ecadf-b970ec16.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestje5unnkf7-8ecadf-b970ec16.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004\"\n + \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliakstest000004\"\n + \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": + 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n + \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n + \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n + \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": + {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4114' + content-type: + - application/json + date: + - Mon, 13 Dec 2021 19:06:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --yes --no-wait + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/071eec86-73b4-4948-ad11-73829fa3e359?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 13 Dec 2021 19:06:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/071eec86-73b4-4948-ad11-73829fa3e359?api-version=2016-03-30 + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + status: + code: 202 + message: Accepted +version: 1 diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad.yaml old mode 100755 new mode 100644 index b0ac3f38d2f..19e90197398 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:16:11Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:02:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:16:12 GMT + - Wed, 01 Dec 2021 14:02:25 GMT expires: - '-1' pragma: @@ -44,18 +44,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestj3zut7icd-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestqa7rnxgq6-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "aadProfile": {"managed": true, "enableAzureRBAC": false, "adminGroupObjectIDs": + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "aadProfile": {"managed": true, "enableAzureRBAC": false, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000001"]}, "disableLocalAccounts": false}}' headers: Accept: @@ -67,39 +68,40 @@ interactions: Connection: - keep-alive Content-Length: - - '1515' + - '1872' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj3zut7icd-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestj3zut7icd-8ecadf-dea7bc27.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestj3zut7icd-8ecadf-dea7bc27.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestqa7rnxgq6-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestqa7rnxgq6-8ecadf-6487790c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestqa7rnxgq6-8ecadf-6487790c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -107,24 +109,26 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n ],\n \"enableAzureRBAC\": false,\n \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n - \ \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0be843d8-8e37-4fc4-8067-31169e977f26?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b9db23-e437-4712-bdc8-b348a56c82e5?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2989' + - '3447' content-type: - application/json date: - - Tue, 19 Oct 2021 07:16:16 GMT + - Wed, 01 Dec 2021 14:02:30 GMT expires: - '-1' pragma: @@ -155,23 +159,121 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b9db23-e437-4712-bdc8-b348a56c82e5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"23dbb957-37e4-1247-bdc8-b348a56c82e5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.44Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:03:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids + --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b9db23-e437-4712-bdc8-b348a56c82e5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"23dbb957-37e4-1247-bdc8-b348a56c82e5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.44Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:03:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids + --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0be843d8-8e37-4fc4-8067-31169e977f26?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b9db23-e437-4712-bdc8-b348a56c82e5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d843e80b-378e-c44f-8067-31169e977f26\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:16:17.1833333Z\"\n }" + string: "{\n \"name\": \"23dbb957-37e4-1247-bdc8-b348a56c82e5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.44Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:16:47 GMT + - Wed, 01 Dec 2021 14:04:01 GMT expires: - '-1' pragma: @@ -204,23 +306,23 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0be843d8-8e37-4fc4-8067-31169e977f26?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b9db23-e437-4712-bdc8-b348a56c82e5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d843e80b-378e-c44f-8067-31169e977f26\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:16:17.1833333Z\"\n }" + string: "{\n \"name\": \"23dbb957-37e4-1247-bdc8-b348a56c82e5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.44Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:17:17 GMT + - Wed, 01 Dec 2021 14:04:31 GMT expires: - '-1' pragma: @@ -253,23 +355,23 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0be843d8-8e37-4fc4-8067-31169e977f26?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b9db23-e437-4712-bdc8-b348a56c82e5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d843e80b-378e-c44f-8067-31169e977f26\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:16:17.1833333Z\"\n }" + string: "{\n \"name\": \"23dbb957-37e4-1247-bdc8-b348a56c82e5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.44Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:17:46 GMT + - Wed, 01 Dec 2021 14:05:01 GMT expires: - '-1' pragma: @@ -302,23 +404,23 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0be843d8-8e37-4fc4-8067-31169e977f26?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b9db23-e437-4712-bdc8-b348a56c82e5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d843e80b-378e-c44f-8067-31169e977f26\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:16:17.1833333Z\"\n }" + string: "{\n \"name\": \"23dbb957-37e4-1247-bdc8-b348a56c82e5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.44Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:18:16 GMT + - Wed, 01 Dec 2021 14:05:31 GMT expires: - '-1' pragma: @@ -351,24 +453,24 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0be843d8-8e37-4fc4-8067-31169e977f26?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b9db23-e437-4712-bdc8-b348a56c82e5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d843e80b-378e-c44f-8067-31169e977f26\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:16:17.1833333Z\",\n \"endTime\": - \"2021-10-19T07:18:36.1981006Z\"\n }" + string: "{\n \"name\": \"23dbb957-37e4-1247-bdc8-b348a56c82e5\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:02:30.44Z\",\n \"endTime\": + \"2021-12-01T14:05:50.229936Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '164' content-type: - application/json date: - - Tue, 19 Oct 2021 07:18:47 GMT + - Wed, 01 Dec 2021 14:06:01 GMT expires: - '-1' pragma: @@ -401,59 +503,62 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj3zut7icd-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestj3zut7icd-8ecadf-dea7bc27.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestj3zut7icd-8ecadf-dea7bc27.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestqa7rnxgq6-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestqa7rnxgq6-8ecadf-6487790c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestqa7rnxgq6-8ecadf-6487790c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5c6dabc3-d0f1-4421-a02b-0e509a6a9402\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a808422b-d22d-4873-a943-1810627009b3\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"aadProfile\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n \ ],\n \"enableAzureRBAC\": false,\n \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n \ },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3652' + - '4110' content-type: - application/json date: - - Tue, 19 Oct 2021 07:18:47 GMT + - Wed, 01 Dec 2021 14:06:02 GMT expires: - '-1' pragma: @@ -485,59 +590,62 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj3zut7icd-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestj3zut7icd-8ecadf-dea7bc27.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestj3zut7icd-8ecadf-dea7bc27.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestqa7rnxgq6-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestqa7rnxgq6-8ecadf-6487790c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestqa7rnxgq6-8ecadf-6487790c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5c6dabc3-d0f1-4421-a02b-0e509a6a9402\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a808422b-d22d-4873-a943-1810627009b3\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"aadProfile\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n \ ],\n \"enableAzureRBAC\": false,\n \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n \ },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3652' + - '4110' content-type: - application/json date: - - Tue, 19 Oct 2021 07:18:48 GMT + - Wed, 01 Dec 2021 14:06:03 GMT expires: - '-1' pragma: @@ -558,26 +666,27 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestj3zut7icd-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestqa7rnxgq6-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5c6dabc3-d0f1-4421-a02b-0e509a6a9402"}]}}, - "aadProfile": {"managed": true, "enableAzureRBAC": false, "adminGroupObjectIDs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a808422b-d22d-4873-a943-1810627009b3"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "aadProfile": {"managed": true, "enableAzureRBAC": false, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000002"], "tenantID": "00000000-0000-0000-0000-000000000003"}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -588,67 +697,70 @@ interactions: Connection: - keep-alive Content-Length: - - '2487' + - '2898' Content-Type: - application/json ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj3zut7icd-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestj3zut7icd-8ecadf-dea7bc27.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestj3zut7icd-8ecadf-dea7bc27.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestqa7rnxgq6-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestqa7rnxgq6-8ecadf-6487790c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestqa7rnxgq6-8ecadf-6487790c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5c6dabc3-d0f1-4421-a02b-0e509a6a9402\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a808422b-d22d-4873-a943-1810627009b3\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"aadProfile\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000002\"\n \ ],\n \"enableAzureRBAC\": false,\n \"tenantID\": \"00000000-0000-0000-0000-000000000003\"\n \ },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad759040-5683-4e7c-8e8e-d7c7ea9c447f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b71a56be-dd56-4694-a1af-1cbfb3322899?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3650' + - '4108' content-type: - application/json date: - - Tue, 19 Oct 2021 07:18:50 GMT + - Wed, 01 Dec 2021 14:06:06 GMT expires: - '-1' pragma: @@ -664,7 +776,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1194' status: code: 200 message: OK @@ -682,14 +794,14 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad759040-5683-4e7c-8e8e-d7c7ea9c447f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b71a56be-dd56-4694-a1af-1cbfb3322899?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"409075ad-8356-7c4e-8e8e-d7c7ea9c447f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:18:50.68Z\"\n }" + string: "{\n \"name\": \"be561ab7-56dd-9446-a1af-1cbfb3322899\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:05.83Z\"\n }" headers: cache-control: - no-cache @@ -698,7 +810,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:19:20 GMT + - Wed, 01 Dec 2021 14:06:35 GMT expires: - '-1' pragma: @@ -730,14 +842,14 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad759040-5683-4e7c-8e8e-d7c7ea9c447f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b71a56be-dd56-4694-a1af-1cbfb3322899?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"409075ad-8356-7c4e-8e8e-d7c7ea9c447f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:18:50.68Z\"\n }" + string: "{\n \"name\": \"be561ab7-56dd-9446-a1af-1cbfb3322899\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:05.83Z\"\n }" headers: cache-control: - no-cache @@ -746,7 +858,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:19:50 GMT + - Wed, 01 Dec 2021 14:07:06 GMT expires: - '-1' pragma: @@ -778,14 +890,14 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad759040-5683-4e7c-8e8e-d7c7ea9c447f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b71a56be-dd56-4694-a1af-1cbfb3322899?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"409075ad-8356-7c4e-8e8e-d7c7ea9c447f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:18:50.68Z\"\n }" + string: "{\n \"name\": \"be561ab7-56dd-9446-a1af-1cbfb3322899\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:05.83Z\"\n }" headers: cache-control: - no-cache @@ -794,7 +906,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:20 GMT + - Wed, 01 Dec 2021 14:07:36 GMT expires: - '-1' pragma: @@ -826,15 +938,15 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad759040-5683-4e7c-8e8e-d7c7ea9c447f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b71a56be-dd56-4694-a1af-1cbfb3322899?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"409075ad-8356-7c4e-8e8e-d7c7ea9c447f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:18:50.68Z\",\n \"endTime\": - \"2021-10-19T07:20:45.4532631Z\"\n }" + string: "{\n \"name\": \"be561ab7-56dd-9446-a1af-1cbfb3322899\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:06:05.83Z\",\n \"endTime\": + \"2021-12-01T14:07:52.9704428Z\"\n }" headers: cache-control: - no-cache @@ -843,7 +955,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:50 GMT + - Wed, 01 Dec 2021 14:08:06 GMT expires: - '-1' pragma: @@ -875,59 +987,62 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj3zut7icd-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestj3zut7icd-8ecadf-dea7bc27.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestj3zut7icd-8ecadf-dea7bc27.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestqa7rnxgq6-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestqa7rnxgq6-8ecadf-6487790c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestqa7rnxgq6-8ecadf-6487790c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5c6dabc3-d0f1-4421-a02b-0e509a6a9402\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a808422b-d22d-4873-a943-1810627009b3\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"aadProfile\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000002\"\n \ ],\n \"enableAzureRBAC\": false,\n \"tenantID\": \"00000000-0000-0000-0000-000000000003\"\n \ },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3652' + - '4110' content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:51 GMT + - Wed, 01 Dec 2021 14:08:07 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad_enable_azure_rbac.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad_enable_azure_rbac.yaml old mode 100755 new mode 100644 index be61e1fbb53..86c80239f39 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad_enable_azure_rbac.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_aad_enable_azure_rbac.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:19:56Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:02:26Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:19:57 GMT + - Wed, 01 Dec 2021 14:02:27 GMT expires: - '-1' pragma: @@ -44,18 +44,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestiibzhzd4n-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestoxef7nxpn-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "aadProfile": {"managed": true, "enableAzureRBAC": false, "adminGroupObjectIDs": + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "aadProfile": {"managed": true, "enableAzureRBAC": false, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000001"]}, "disableLocalAccounts": false}}' headers: Accept: @@ -67,39 +68,40 @@ interactions: Connection: - keep-alive Content-Length: - - '1515' + - '1872' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestiibzhzd4n-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestiibzhzd4n-8ecadf-b6015a74.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestiibzhzd4n-8ecadf-b6015a74.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestoxef7nxpn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestoxef7nxpn-8ecadf-b0784971.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestoxef7nxpn-8ecadf-b0784971.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -107,24 +109,26 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n ],\n \"enableAzureRBAC\": false,\n \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n - \ \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e55194d-74c6-4e0c-9327-5301cb22a506?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58b227e8-3e01-4125-bd54-d8464245b396?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2989' + - '3447' content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:00 GMT + - Wed, 01 Dec 2021 14:02:32 GMT expires: - '-1' pragma: @@ -136,7 +140,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1195' status: code: 201 message: Created @@ -155,23 +159,23 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e55194d-74c6-4e0c-9327-5301cb22a506?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58b227e8-3e01-4125-bd54-d8464245b396?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d19554e-c674-0c4e-9327-5301cb22a506\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:00.2333333Z\"\n }" + string: "{\n \"name\": \"e827b258-013e-2541-bd54-d8464245b396\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.98Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:29 GMT + - Wed, 01 Dec 2021 14:03:02 GMT expires: - '-1' pragma: @@ -204,23 +208,23 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e55194d-74c6-4e0c-9327-5301cb22a506?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58b227e8-3e01-4125-bd54-d8464245b396?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d19554e-c674-0c4e-9327-5301cb22a506\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:00.2333333Z\"\n }" + string: "{\n \"name\": \"e827b258-013e-2541-bd54-d8464245b396\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.98Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:59 GMT + - Wed, 01 Dec 2021 14:03:32 GMT expires: - '-1' pragma: @@ -253,23 +257,23 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e55194d-74c6-4e0c-9327-5301cb22a506?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58b227e8-3e01-4125-bd54-d8464245b396?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d19554e-c674-0c4e-9327-5301cb22a506\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:00.2333333Z\"\n }" + string: "{\n \"name\": \"e827b258-013e-2541-bd54-d8464245b396\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.98Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:21:30 GMT + - Wed, 01 Dec 2021 14:04:02 GMT expires: - '-1' pragma: @@ -302,23 +306,23 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e55194d-74c6-4e0c-9327-5301cb22a506?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58b227e8-3e01-4125-bd54-d8464245b396?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d19554e-c674-0c4e-9327-5301cb22a506\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:00.2333333Z\"\n }" + string: "{\n \"name\": \"e827b258-013e-2541-bd54-d8464245b396\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.98Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:22:00 GMT + - Wed, 01 Dec 2021 14:04:32 GMT expires: - '-1' pragma: @@ -351,23 +355,23 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e55194d-74c6-4e0c-9327-5301cb22a506?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58b227e8-3e01-4125-bd54-d8464245b396?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d19554e-c674-0c4e-9327-5301cb22a506\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:00.2333333Z\"\n }" + string: "{\n \"name\": \"e827b258-013e-2541-bd54-d8464245b396\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.98Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:22:29 GMT + - Wed, 01 Dec 2021 14:05:02 GMT expires: - '-1' pragma: @@ -400,23 +404,23 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e55194d-74c6-4e0c-9327-5301cb22a506?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58b227e8-3e01-4125-bd54-d8464245b396?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d19554e-c674-0c4e-9327-5301cb22a506\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:00.2333333Z\"\n }" + string: "{\n \"name\": \"e827b258-013e-2541-bd54-d8464245b396\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.98Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:23:00 GMT + - Wed, 01 Dec 2021 14:05:33 GMT expires: - '-1' pragma: @@ -449,24 +453,24 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e55194d-74c6-4e0c-9327-5301cb22a506?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58b227e8-3e01-4125-bd54-d8464245b396?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d19554e-c674-0c4e-9327-5301cb22a506\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:20:00.2333333Z\",\n \"endTime\": - \"2021-10-19T07:23:29.2480361Z\"\n }" + string: "{\n \"name\": \"e827b258-013e-2541-bd54-d8464245b396\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:02:31.98Z\",\n \"endTime\": + \"2021-12-01T14:05:33.837532Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '164' content-type: - application/json date: - - Tue, 19 Oct 2021 07:23:30 GMT + - Wed, 01 Dec 2021 14:06:03 GMT expires: - '-1' pragma: @@ -499,59 +503,62 @@ interactions: - --resource-group --name --vm-set-type -c --enable-aad --aad-admin-group-object-ids --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestiibzhzd4n-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestiibzhzd4n-8ecadf-b6015a74.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestiibzhzd4n-8ecadf-b6015a74.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestoxef7nxpn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestoxef7nxpn-8ecadf-b0784971.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestoxef7nxpn-8ecadf-b0784971.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5c008707-3442-4d39-b291-dc6ca82cc818\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5a042dbc-17bd-4887-9974-5136fa7f4070\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"aadProfile\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n \ ],\n \"enableAzureRBAC\": false,\n \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n \ },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3652' + - '4110' content-type: - application/json date: - - Tue, 19 Oct 2021 07:23:30 GMT + - Wed, 01 Dec 2021 14:06:03 GMT expires: - '-1' pragma: @@ -583,59 +590,62 @@ interactions: ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestiibzhzd4n-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestiibzhzd4n-8ecadf-b6015a74.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestiibzhzd4n-8ecadf-b6015a74.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestoxef7nxpn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestoxef7nxpn-8ecadf-b0784971.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestoxef7nxpn-8ecadf-b0784971.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5c008707-3442-4d39-b291-dc6ca82cc818\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5a042dbc-17bd-4887-9974-5136fa7f4070\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"aadProfile\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n \ ],\n \"enableAzureRBAC\": false,\n \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n \ },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3652' + - '4110' content-type: - application/json date: - - Tue, 19 Oct 2021 07:23:31 GMT + - Wed, 01 Dec 2021 14:06:04 GMT expires: - '-1' pragma: @@ -656,26 +666,27 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestiibzhzd4n-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestoxef7nxpn-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5c008707-3442-4d39-b291-dc6ca82cc818"}]}}, - "aadProfile": {"managed": true, "enableAzureRBAC": true, "adminGroupObjectIDs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5a042dbc-17bd-4887-9974-5136fa7f4070"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "aadProfile": {"managed": true, "enableAzureRBAC": true, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000001"], "tenantID": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -686,67 +697,70 @@ interactions: Connection: - keep-alive Content-Length: - - '2486' + - '2897' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestiibzhzd4n-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestiibzhzd4n-8ecadf-b6015a74.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestiibzhzd4n-8ecadf-b6015a74.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestoxef7nxpn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestoxef7nxpn-8ecadf-b0784971.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestoxef7nxpn-8ecadf-b0784971.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5c008707-3442-4d39-b291-dc6ca82cc818\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5a042dbc-17bd-4887-9974-5136fa7f4070\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"aadProfile\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n \ ],\n \"enableAzureRBAC\": true,\n \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n \ },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/214ebecf-4a85-40bc-b1fd-359258e72699?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0fd9532-e886-4f63-86c0-79e1602a841c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3649' + - '4107' content-type: - application/json date: - - Tue, 19 Oct 2021 07:23:33 GMT + - Wed, 01 Dec 2021 14:06:07 GMT expires: - '-1' pragma: @@ -762,7 +776,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1197' status: code: 200 message: OK @@ -780,23 +794,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/214ebecf-4a85-40bc-b1fd-359258e72699?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0fd9532-e886-4f63-86c0-79e1602a841c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cfbe4e21-854a-bc40-b1fd-359258e72699\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:23:33.5Z\"\n }" + string: "{\n \"name\": \"3295fde0-86e8-634f-86c0-79e1602a841c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:07.0666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:24:03 GMT + - Wed, 01 Dec 2021 14:06:37 GMT expires: - '-1' pragma: @@ -828,23 +842,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/214ebecf-4a85-40bc-b1fd-359258e72699?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0fd9532-e886-4f63-86c0-79e1602a841c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cfbe4e21-854a-bc40-b1fd-359258e72699\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:23:33.5Z\"\n }" + string: "{\n \"name\": \"3295fde0-86e8-634f-86c0-79e1602a841c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:07.0666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:24:33 GMT + - Wed, 01 Dec 2021 14:07:07 GMT expires: - '-1' pragma: @@ -876,23 +890,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/214ebecf-4a85-40bc-b1fd-359258e72699?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0fd9532-e886-4f63-86c0-79e1602a841c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cfbe4e21-854a-bc40-b1fd-359258e72699\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:23:33.5Z\"\n }" + string: "{\n \"name\": \"3295fde0-86e8-634f-86c0-79e1602a841c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:07.0666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:25:03 GMT + - Wed, 01 Dec 2021 14:07:37 GMT expires: - '-1' pragma: @@ -924,24 +938,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/214ebecf-4a85-40bc-b1fd-359258e72699?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0fd9532-e886-4f63-86c0-79e1602a841c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cfbe4e21-854a-bc40-b1fd-359258e72699\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:23:33.5Z\",\n \"endTime\": - \"2021-10-19T07:25:28.5597926Z\"\n }" + string: "{\n \"name\": \"3295fde0-86e8-634f-86c0-79e1602a841c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:06:07.0666666Z\",\n \"endTime\": + \"2021-12-01T14:08:07.4373925Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 07:25:33 GMT + - Wed, 01 Dec 2021 14:08:08 GMT expires: - '-1' pragma: @@ -973,59 +987,62 @@ interactions: ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestiibzhzd4n-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestiibzhzd4n-8ecadf-b6015a74.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestiibzhzd4n-8ecadf-b6015a74.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestoxef7nxpn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestoxef7nxpn-8ecadf-b0784971.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestoxef7nxpn-8ecadf-b0784971.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5c008707-3442-4d39-b291-dc6ca82cc818\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5a042dbc-17bd-4887-9974-5136fa7f4070\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"aadProfile\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n \ ],\n \"enableAzureRBAC\": true,\n \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n \ },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3651' + - '4109' content-type: - application/json date: - - Tue, 19 Oct 2021 07:25:33 GMT + - Wed, 01 Dec 2021 14:08:09 GMT expires: - '-1' pragma: @@ -1057,59 +1074,62 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestiibzhzd4n-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestiibzhzd4n-8ecadf-b6015a74.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestiibzhzd4n-8ecadf-b6015a74.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestoxef7nxpn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestoxef7nxpn-8ecadf-b0784971.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestoxef7nxpn-8ecadf-b0784971.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5c008707-3442-4d39-b291-dc6ca82cc818\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5a042dbc-17bd-4887-9974-5136fa7f4070\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"aadProfile\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n \ ],\n \"enableAzureRBAC\": true,\n \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n \ },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3651' + - '4109' content-type: - application/json date: - - Tue, 19 Oct 2021 07:25:35 GMT + - Wed, 01 Dec 2021 14:08:09 GMT expires: - '-1' pragma: @@ -1130,26 +1150,27 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestiibzhzd4n-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestoxef7nxpn-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5c008707-3442-4d39-b291-dc6ca82cc818"}]}}, - "aadProfile": {"managed": true, "enableAzureRBAC": false, "adminGroupObjectIDs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5a042dbc-17bd-4887-9974-5136fa7f4070"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "aadProfile": {"managed": true, "enableAzureRBAC": false, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000001"], "tenantID": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -1160,67 +1181,70 @@ interactions: Connection: - keep-alive Content-Length: - - '2487' + - '2898' Content-Type: - application/json ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestiibzhzd4n-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestiibzhzd4n-8ecadf-b6015a74.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestiibzhzd4n-8ecadf-b6015a74.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestoxef7nxpn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestoxef7nxpn-8ecadf-b0784971.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestoxef7nxpn-8ecadf-b0784971.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5c008707-3442-4d39-b291-dc6ca82cc818\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5a042dbc-17bd-4887-9974-5136fa7f4070\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"aadProfile\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n \ ],\n \"enableAzureRBAC\": false,\n \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n \ },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9cf52b72-d4e7-48f5-8c9c-98a34decfa60?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15816d2d-adfa-4054-9162-a726d4264579?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3650' + - '4108' content-type: - application/json date: - - Tue, 19 Oct 2021 07:25:37 GMT + - Wed, 01 Dec 2021 14:08:14 GMT expires: - '-1' pragma: @@ -1254,23 +1278,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9cf52b72-d4e7-48f5-8c9c-98a34decfa60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15816d2d-adfa-4054-9162-a726d4264579?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"722bf59c-e7d4-f548-8c9c-98a34decfa60\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:25:37.62Z\"\n }" + string: "{\n \"name\": \"2d6d8115-faad-5440-9162-a726d4264579\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:08:13.2066666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:26:06 GMT + - Wed, 01 Dec 2021 14:08:45 GMT expires: - '-1' pragma: @@ -1302,23 +1326,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9cf52b72-d4e7-48f5-8c9c-98a34decfa60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15816d2d-adfa-4054-9162-a726d4264579?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"722bf59c-e7d4-f548-8c9c-98a34decfa60\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:25:37.62Z\"\n }" + string: "{\n \"name\": \"2d6d8115-faad-5440-9162-a726d4264579\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:08:13.2066666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:26:37 GMT + - Wed, 01 Dec 2021 14:09:15 GMT expires: - '-1' pragma: @@ -1350,23 +1374,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9cf52b72-d4e7-48f5-8c9c-98a34decfa60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15816d2d-adfa-4054-9162-a726d4264579?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"722bf59c-e7d4-f548-8c9c-98a34decfa60\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:25:37.62Z\"\n }" + string: "{\n \"name\": \"2d6d8115-faad-5440-9162-a726d4264579\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:08:13.2066666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:27:07 GMT + - Wed, 01 Dec 2021 14:09:45 GMT expires: - '-1' pragma: @@ -1398,23 +1422,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9cf52b72-d4e7-48f5-8c9c-98a34decfa60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15816d2d-adfa-4054-9162-a726d4264579?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"722bf59c-e7d4-f548-8c9c-98a34decfa60\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:25:37.62Z\"\n }" + string: "{\n \"name\": \"2d6d8115-faad-5440-9162-a726d4264579\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:08:13.2066666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:27:37 GMT + - Wed, 01 Dec 2021 14:10:15 GMT expires: - '-1' pragma: @@ -1446,24 +1470,24 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9cf52b72-d4e7-48f5-8c9c-98a34decfa60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15816d2d-adfa-4054-9162-a726d4264579?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"722bf59c-e7d4-f548-8c9c-98a34decfa60\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:25:37.62Z\",\n \"endTime\": - \"2021-10-19T07:27:39.0017678Z\"\n }" + string: "{\n \"name\": \"2d6d8115-faad-5440-9162-a726d4264579\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:08:13.2066666Z\",\n \"endTime\": + \"2021-12-01T14:10:21.7781269Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 07:28:07 GMT + - Wed, 01 Dec 2021 14:10:46 GMT expires: - '-1' pragma: @@ -1495,59 +1519,62 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestiibzhzd4n-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestiibzhzd4n-8ecadf-b6015a74.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestiibzhzd4n-8ecadf-b6015a74.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestoxef7nxpn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestoxef7nxpn-8ecadf-b0784971.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestoxef7nxpn-8ecadf-b0784971.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5c008707-3442-4d39-b291-dc6ca82cc818\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5a042dbc-17bd-4887-9974-5136fa7f4070\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"aadProfile\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n \ ],\n \"enableAzureRBAC\": false,\n \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n \ },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3652' + - '4110' content-type: - application/json date: - - Tue, 19 Oct 2021 07:28:08 GMT + - Wed, 01 Dec 2021 14:10:46 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_nat_gateway_outbound.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_nat_gateway_outbound.yaml old mode 100755 new mode 100644 index 13d7cc579d7..90f2f38b432 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_nat_gateway_outbound.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_and_update_with_managed_nat_gateway_outbound.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --outbound-type --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:36:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:02:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '313' + - '312' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 06:36:10 GMT + - Wed, 01 Dec 2021 14:02:25 GMT expires: - '-1' pragma: @@ -42,19 +42,20 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestwtujpf5lu-8ecadf", + body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestkirumlvju-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "managedNATGateway", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "managedNATGateway", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -65,61 +66,63 @@ interactions: Connection: - keep-alive Content-Length: - - '1396' + - '1752' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type -c --outbound-type --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestwtujpf5lu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestwtujpf5lu-8ecadf-078f35bf.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestwtujpf5lu-8ecadf-078f35bf.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestkirumlvju-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestkirumlvju-8ecadf-eecb825c.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestkirumlvju-8ecadf-eecb825c.portal.hcp.eastus.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_eastus\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"natGatewayProfile\": {\n \"managedOutboundIPProfile\": {\n \"count\": 1\n },\n \"idleTimeoutInMinutes\": 4\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"managedNATGateway\"\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"outboundType\": \"managedNATGateway\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n + \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": + false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58009a9b-2bb2-4282-9a1b-90a99d487f2d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/8ef72833-1629-43a8-b265-510617715f13?api-version=2017-08-31 cache-control: - no-cache content-length: - - '2819' + - '3273' content-type: - application/json date: - - Tue, 19 Oct 2021 06:36:13 GMT + - Wed, 01 Dec 2021 14:02:30 GMT expires: - '-1' pragma: @@ -131,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -149,14 +152,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --outbound-type --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58009a9b-2bb2-4282-9a1b-90a99d487f2d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/8ef72833-1629-43a8-b265-510617715f13?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"9b9a0058-b22b-8242-9a1b-90a99d487f2d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:14.4766666Z\"\n }" + string: "{\n \"name\": \"3328f78e-2916-a843-b265-510617715f13\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:29.8166666Z\"\n }" headers: cache-control: - no-cache @@ -165,7 +168,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:36:44 GMT + - Wed, 01 Dec 2021 14:03:00 GMT expires: - '-1' pragma: @@ -197,14 +200,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --outbound-type --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58009a9b-2bb2-4282-9a1b-90a99d487f2d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/8ef72833-1629-43a8-b265-510617715f13?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"9b9a0058-b22b-8242-9a1b-90a99d487f2d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:14.4766666Z\"\n }" + string: "{\n \"name\": \"3328f78e-2916-a843-b265-510617715f13\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:29.8166666Z\"\n }" headers: cache-control: - no-cache @@ -213,7 +216,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:37:14 GMT + - Wed, 01 Dec 2021 14:03:29 GMT expires: - '-1' pragma: @@ -245,14 +248,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --outbound-type --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58009a9b-2bb2-4282-9a1b-90a99d487f2d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/8ef72833-1629-43a8-b265-510617715f13?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"9b9a0058-b22b-8242-9a1b-90a99d487f2d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:14.4766666Z\"\n }" + string: "{\n \"name\": \"3328f78e-2916-a843-b265-510617715f13\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:29.8166666Z\"\n }" headers: cache-control: - no-cache @@ -261,7 +264,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:37:44 GMT + - Wed, 01 Dec 2021 14:04:00 GMT expires: - '-1' pragma: @@ -293,14 +296,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --outbound-type --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58009a9b-2bb2-4282-9a1b-90a99d487f2d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/8ef72833-1629-43a8-b265-510617715f13?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"9b9a0058-b22b-8242-9a1b-90a99d487f2d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:14.4766666Z\"\n }" + string: "{\n \"name\": \"3328f78e-2916-a843-b265-510617715f13\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:29.8166666Z\"\n }" headers: cache-control: - no-cache @@ -309,7 +312,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:38:14 GMT + - Wed, 01 Dec 2021 14:04:30 GMT expires: - '-1' pragma: @@ -341,63 +344,15 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --outbound-type --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58009a9b-2bb2-4282-9a1b-90a99d487f2d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/8ef72833-1629-43a8-b265-510617715f13?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"9b9a0058-b22b-8242-9a1b-90a99d487f2d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:14.4766666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 06:38:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --vm-set-type -c --outbound-type --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58009a9b-2bb2-4282-9a1b-90a99d487f2d?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"9b9a0058-b22b-8242-9a1b-90a99d487f2d\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:36:14.4766666Z\",\n \"endTime\": - \"2021-10-19T06:39:00.0814619Z\"\n }" + string: "{\n \"name\": \"3328f78e-2916-a843-b265-510617715f13\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:02:29.8166666Z\",\n \"endTime\": + \"2021-12-01T14:04:51.6873866Z\"\n }" headers: cache-control: - no-cache @@ -406,7 +361,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:39:14 GMT + - Wed, 01 Dec 2021 14:05:00 GMT expires: - '-1' pragma: @@ -438,57 +393,60 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --outbound-type --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestwtujpf5lu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestwtujpf5lu-8ecadf-078f35bf.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestwtujpf5lu-8ecadf-078f35bf.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestkirumlvju-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestkirumlvju-8ecadf-eecb825c.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestkirumlvju-8ecadf-eecb825c.portal.hcp.eastus.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_eastus\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"natGatewayProfile\": {\n \"managedOutboundIPProfile\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9c783611-7cb0-4acc-abf1-a72e306325d3\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/0f0d4a9d-176e-480a-909d-8b510b6e64f6\"\n \ }\n ],\n \"idleTimeoutInMinutes\": 4\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"managedNATGateway\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"managedNATGateway\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": + {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3482' + - '3934' content-type: - application/json date: - - Tue, 19 Oct 2021 06:39:15 GMT + - Wed, 01 Dec 2021 14:05:01 GMT expires: - '-1' pragma: @@ -520,57 +478,60 @@ interactions: ParameterSetName: - --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestwtujpf5lu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestwtujpf5lu-8ecadf-078f35bf.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestwtujpf5lu-8ecadf-078f35bf.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestkirumlvju-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestkirumlvju-8ecadf-eecb825c.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestkirumlvju-8ecadf-eecb825c.portal.hcp.eastus.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_eastus\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"natGatewayProfile\": {\n \"managedOutboundIPProfile\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9c783611-7cb0-4acc-abf1-a72e306325d3\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/0f0d4a9d-176e-480a-909d-8b510b6e64f6\"\n \ }\n ],\n \"idleTimeoutInMinutes\": 4\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"managedNATGateway\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"managedNATGateway\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": + {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3482' + - '3934' content-type: - application/json date: - - Tue, 19 Oct 2021 06:39:16 GMT + - Wed, 01 Dec 2021 14:05:02 GMT expires: - '-1' pragma: @@ -589,27 +550,28 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": + body: '{"location": "eastus", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestwtujpf5lu-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestkirumlvju-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000002_eastus", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "managedNATGateway", "loadBalancerSku": "Standard", "natGatewayProfile": {"managedOutboundIPProfile": - {"count": 2}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9c783611-7cb0-4acc-abf1-a72e306325d3"}], - "idleTimeoutInMinutes": 30}}, "identityProfile": {"kubeletidentity": {"resourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + {"count": 2}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/0f0d4a9d-176e-480a-909d-8b510b6e64f6"}], + "idleTimeoutInMinutes": 30}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": + ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": + {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -620,65 +582,68 @@ interactions: Connection: - keep-alive Content-Length: - - '2348' + - '2755' Content-Type: - application/json ParameterSetName: - --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestwtujpf5lu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestwtujpf5lu-8ecadf-078f35bf.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestwtujpf5lu-8ecadf-078f35bf.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestkirumlvju-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestkirumlvju-8ecadf-eecb825c.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestkirumlvju-8ecadf-eecb825c.portal.hcp.eastus.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_eastus\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"natGatewayProfile\": {\n \"managedOutboundIPProfile\": {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9c783611-7cb0-4acc-abf1-a72e306325d3\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/0f0d4a9d-176e-480a-909d-8b510b6e64f6\"\n \ }\n ],\n \"idleTimeoutInMinutes\": 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"managedNATGateway\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"managedNATGateway\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": + {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e29f975-4036-4edd-b06a-d9c4837bb1a9?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/54bd216c-6105-4baa-904f-796c87a0494b?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3481' + - '3933' content-type: - application/json date: - - Tue, 19 Oct 2021 06:39:18 GMT + - Wed, 01 Dec 2021 14:05:06 GMT expires: - '-1' pragma: @@ -694,7 +659,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 200 message: OK @@ -712,23 +677,23 @@ interactions: ParameterSetName: - --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e29f975-4036-4edd-b06a-d9c4837bb1a9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/54bd216c-6105-4baa-904f-796c87a0494b?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"75f9294e-3640-dd4e-b06a-d9c4837bb1a9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:18.52Z\"\n }" + string: "{\n \"name\": \"6c21bd54-0561-aa4b-904f-796c87a0494b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:05:05.8166666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:39:48 GMT + - Wed, 01 Dec 2021 14:05:35 GMT expires: - '-1' pragma: @@ -760,23 +725,23 @@ interactions: ParameterSetName: - --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e29f975-4036-4edd-b06a-d9c4837bb1a9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/54bd216c-6105-4baa-904f-796c87a0494b?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"75f9294e-3640-dd4e-b06a-d9c4837bb1a9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:18.52Z\"\n }" + string: "{\n \"name\": \"6c21bd54-0561-aa4b-904f-796c87a0494b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:05:05.8166666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:40:17 GMT + - Wed, 01 Dec 2021 14:06:06 GMT expires: - '-1' pragma: @@ -808,24 +773,24 @@ interactions: ParameterSetName: - --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e29f975-4036-4edd-b06a-d9c4837bb1a9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/54bd216c-6105-4baa-904f-796c87a0494b?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"75f9294e-3640-dd4e-b06a-d9c4837bb1a9\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:39:18.52Z\",\n \"endTime\": - \"2021-10-19T06:40:25.5884671Z\"\n }" + string: "{\n \"name\": \"6c21bd54-0561-aa4b-904f-796c87a0494b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:05:05.8166666Z\",\n \"endTime\": + \"2021-12-01T14:06:13.4184216Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 06:40:48 GMT + - Wed, 01 Dec 2021 14:06:36 GMT expires: - '-1' pragma: @@ -857,58 +822,61 @@ interactions: ParameterSetName: - --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestwtujpf5lu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestwtujpf5lu-8ecadf-078f35bf.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestwtujpf5lu-8ecadf-078f35bf.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestkirumlvju-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestkirumlvju-8ecadf-eecb825c.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestkirumlvju-8ecadf-eecb825c.portal.hcp.eastus.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_eastus\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"natGatewayProfile\": {\n \"managedOutboundIPProfile\": {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9c783611-7cb0-4acc-abf1-a72e306325d3\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4292bc60-28e7-49e7-bd3e-fb4d11888af4\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/0f0d4a9d-176e-480a-909d-8b510b6e64f6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/b9014ff9-2d90-46a5-8187-46a4c4140e1c\"\n \ }\n ],\n \"idleTimeoutInMinutes\": 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"managedNATGateway\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"managedNATGateway\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": + {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3711' + - '4162' content-type: - application/json date: - - Tue, 19 Oct 2021 06:40:49 GMT + - Wed, 01 Dec 2021 14:06:36 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_dualstack_with_default_network.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_dualstack_with_default_network.yaml new file mode 100644 index 00000000000..0e339b82bc8 --- /dev/null +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_dualstack_with_default_network.yaml @@ -0,0 +1,550 @@ +interactions: +- request: + body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "1.21.2", "dnsPrefix": "cliakstest-clitestzcmgl7gej-8ecadf", + "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard", + "ipFamilies": ["IPv4", "IPv6"]}, "disableLocalAccounts": false}}' + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-EnableDualStack + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1792' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version + --aks-custom-headers + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.21.2\",\n \"dnsPrefix\": \"cliakstest-clitestzcmgl7gej-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestzcmgl7gej-8ecadf-e9be2d49.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzcmgl7gej-8ecadf-e9be2d49.portal.hcp.centraluseuap.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.21.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.12.07\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000001_centraluseuap\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1,\n \"countIPv6\": + 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\",\n \"fd12:3456:789a::/64\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\",\n \"fd12:3456:789a:1::/108\"\n ],\n \"ipFamilies\": + [\n \"IPv4\",\n \"IPv6\"\n ]\n },\n \"maxAgentPools\": 100,\n + \ \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/91890096-1656-4f97-82f1-6d7db033339b?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '3377' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 19:35:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-EnableDualStack + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version + --aks-custom-headers + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/91890096-1656-4f97-82f1-6d7db033339b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"96008991-5616-974f-82f1-6d7db033339b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-15T19:35:15.1333333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 19:35:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-EnableDualStack + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version + --aks-custom-headers + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/91890096-1656-4f97-82f1-6d7db033339b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"96008991-5616-974f-82f1-6d7db033339b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-15T19:35:15.1333333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 19:36:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-EnableDualStack + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version + --aks-custom-headers + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/91890096-1656-4f97-82f1-6d7db033339b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"96008991-5616-974f-82f1-6d7db033339b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-15T19:35:15.1333333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 19:36:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-EnableDualStack + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version + --aks-custom-headers + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/91890096-1656-4f97-82f1-6d7db033339b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"96008991-5616-974f-82f1-6d7db033339b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-15T19:35:15.1333333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 19:37:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-EnableDualStack + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version + --aks-custom-headers + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/91890096-1656-4f97-82f1-6d7db033339b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"96008991-5616-974f-82f1-6d7db033339b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-15T19:35:15.1333333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 19:37:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-EnableDualStack + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version + --aks-custom-headers + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/91890096-1656-4f97-82f1-6d7db033339b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"96008991-5616-974f-82f1-6d7db033339b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-15T19:35:15.1333333Z\",\n \"endTime\": + \"2021-12-15T19:38:11.557191Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 19:38:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-EnableDualStack + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version + --aks-custom-headers + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.21.2\",\n \"dnsPrefix\": \"cliakstest-clitestzcmgl7gej-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestzcmgl7gej-8ecadf-e9be2d49.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzcmgl7gej-8ecadf-e9be2d49.portal.hcp.centraluseuap.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.21.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.12.07\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000001_centraluseuap\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1,\n \"countIPv6\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17c3dd56-7ef4-4c13-afdf-d738c1700dd0-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/966fcced-bbb0-4b40-a965-9733170f07a0\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\",\n \"fd12:3456:789a::/64\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\",\n \"fd12:3456:789a:1::/108\"\n ],\n \"ipFamilies\": + [\n \"IPv4\",\n \"IPv6\"\n ]\n },\n \"maxAgentPools\": 100,\n + \ \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4277' + content-type: + - application/json + date: + - Wed, 15 Dec 2021 19:38:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --yes --no-wait + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-07-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/fb2abc6b-1df9-4c7e-a70b-245ece8d8cc3?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 15 Dec 2021 19:38:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/fb2abc6b-1df9-4c7e-a70b-245ece8d8cc3?api-version=2016-03-30 + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +version: 1 diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_fqdn_subdomain.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_fqdn_subdomain.yaml old mode 100755 new mode 100644 index e5dab131b1d..605f00744e9 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_fqdn_subdomain.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_fqdn_subdomain.yaml @@ -19,7 +19,7 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io?api-version=2018-09-01 response: @@ -27,7 +27,7 @@ interactions: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTs4YzdmMTVjNi03ZjZmLTQ1ZTAtOTkwMi05NjdhMTIzMjEyNjU=?api-version=2018-09-01 + - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTtkYWFlYjkzNC1jMDI0LTQzMTctOGU3Ny0wZmYxZjdiMWU5MjI=?api-version=2018-09-01 cache-control: - private content-length: @@ -35,9 +35,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:29:04 GMT + - Wed, 01 Dec 2021 14:02:27 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTs4YzdmMTVjNi03ZjZmLTQ1ZTAtOTkwMi05NjdhMTIzMjEyNjU=?api-version=2018-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTtkYWFlYjkzNC1jMDI0LTQzMTctOGU3Ny0wZmYxZjdiMWU5MjI=?api-version=2018-09-01 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -67,9 +67,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTs4YzdmMTVjNi03ZjZmLTQ1ZTAtOTkwMi05NjdhMTIzMjEyNjU=?api-version=2018-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTtkYWFlYjkzNC1jMDI0LTQzMTctOGU3Ny0wZmYxZjdiMWU5MjI=?api-version=2018-09-01 response: body: string: '{"status":"Succeeded"}' @@ -81,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:29:34 GMT + - Wed, 01 Dec 2021 14:02:57 GMT server: - Microsoft-IIS/10.0 strict-transport-security: @@ -115,12 +115,12 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io?api-version=2018-09-01 response: body: - string: '{"id":"\/subscriptions\/00000000-0000-0000-0000-000000000000\/resourceGroups\/clitest000001\/providers\/Microsoft.Network\/privateDnsZones\/privatelink.westus2.azmk8s.io","name":"privatelink.westus2.azmk8s.io","type":"Microsoft.Network\/privateDnsZones","etag":"0bfb99f7-83ab-4091-9ea4-5863b94cffff","location":"global","properties":{"maxNumberOfRecordSets":25000,"maxNumberOfVirtualNetworkLinks":1000,"maxNumberOfVirtualNetworkLinksWithRegistration":100,"numberOfRecordSets":1,"numberOfVirtualNetworkLinks":0,"numberOfVirtualNetworkLinksWithRegistration":0,"provisioningState":"Succeeded"}}' + string: '{"id":"\/subscriptions\/00000000-0000-0000-0000-000000000000\/resourceGroups\/clitest000001\/providers\/Microsoft.Network\/privateDnsZones\/privatelink.westus2.azmk8s.io","name":"privatelink.westus2.azmk8s.io","type":"Microsoft.Network\/privateDnsZones","etag":"e33544e2-396c-4133-8529-918fc43def28","location":"global","properties":{"maxNumberOfRecordSets":25000,"maxNumberOfVirtualNetworkLinks":1000,"maxNumberOfVirtualNetworkLinksWithRegistration":100,"numberOfRecordSets":1,"numberOfVirtualNetworkLinks":0,"numberOfVirtualNetworkLinksWithRegistration":0,"provisioningState":"Succeeded"}}' headers: cache-control: - private @@ -129,9 +129,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:29:34 GMT + - Wed, 01 Dec 2021 14:02:57 GMT etag: - - 0bfb99f7-83ab-4091-9ea4-5863b94cffff + - e33544e2-396c-4133-8529-918fc43def28 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -165,12 +165,12 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T05:29:01Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:02:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -179,7 +179,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:29:35 GMT + - Wed, 01 Dec 2021 14:02:58 GMT expires: - '-1' pragma: @@ -211,15 +211,16 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.29.0 + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-msi/0.2.0 Azure-SDK-For-Python + AZURECLI/2.30.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002?api-version=2015-08-31-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002","name":"cliakstest000002","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001","clientSecretUrl":"https://control-westus2.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=0c7f764d-00b4-4535-bc89-66be219839d9&aid=969bb8e7-c124-459a-aade-43716ded0f36"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002","name":"cliakstest000002","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001","clientSecretUrl":"https://control-westus2.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=29d003e1-b40a-4fcc-ac55-25e66952cf47&aid=0cf4c67d-b5c6-4cd9-8bfd-50510d3901a4"}}' headers: cache-control: - no-cache @@ -228,7 +229,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:29:39 GMT + - Wed, 01 Dec 2021 14:03:01 GMT expires: - '-1' location: @@ -240,7 +241,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -258,8 +259,9 @@ interactions: ParameterSetName: - --assignee-object-id --role --scope --assignee-principal-type User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 accept-language: - en-US method: GET @@ -268,7 +270,7 @@ interactions: body: string: '{"value":[{"properties":{"roleName":"Private DNS Zone Contributor","type":"BuiltInRole","description":"Lets you manage private DNS zone resources, but not the virtual networks they are - linked to.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/alertRules/*","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*","Microsoft.Network/privateDnsZones/*","Microsoft.Network/privateDnsOperationResults/*","Microsoft.Network/privateDnsOperationStatuses/*","Microsoft.Network/virtualNetworks/read","Microsoft.Network/virtualNetworks/join/action","Microsoft.Authorization/*/read"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2019-07-10T19:31:15.5645518Z","updatedOn":"2019-07-11T21:12:01.7260648Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b12aa53e-6015-4669-85d0-8515ebb3ae7f","type":"Microsoft.Authorization/roleDefinitions","name":"b12aa53e-6015-4669-85d0-8515ebb3ae7f"}]}' + linked to.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/alertRules/*","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*","Microsoft.Network/privateDnsZones/*","Microsoft.Network/privateDnsOperationResults/*","Microsoft.Network/privateDnsOperationStatuses/*","Microsoft.Network/virtualNetworks/read","Microsoft.Network/virtualNetworks/join/action","Microsoft.Authorization/*/read"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2019-07-10T19:31:15.5645518Z","updatedOn":"2021-11-11T20:14:04.7342851Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b12aa53e-6015-4669-85d0-8515ebb3ae7f","type":"Microsoft.Authorization/roleDefinitions","name":"b12aa53e-6015-4669-85d0-8515ebb3ae7f"}]}' headers: cache-control: - no-cache @@ -277,7 +279,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:29:40 GMT + - Wed, 01 Dec 2021 14:03:02 GMT expires: - '-1' pragma: @@ -316,15 +318,16 @@ interactions: ParameterSetName: - --assignee-object-id --role --scope --assignee-principal-type User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b12aa53e-6015-4669-85d0-8515ebb3ae7f","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io","condition":null,"conditionVersion":null,"createdOn":"2021-10-19T05:29:40.6462646Z","updatedOn":"2021-10-19T05:29:41.0369127Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b12aa53e-6015-4669-85d0-8515ebb3ae7f","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T14:03:03.2897738Z","updatedOn":"2021-12-01T14:03:03.5710841Z","createdBy":null,"updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -333,7 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:29:42 GMT + - Wed, 01 Dec 2021 14:03:04 GMT expires: - '-1' pragma: @@ -365,12 +368,12 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T05:29:01Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:02:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -379,7 +382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:29:42 GMT + - Wed, 01 Dec 2021 14:03:04 GMT expires: - '-1' pragma: @@ -398,17 +401,18 @@ interactions: {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002": {}}}, "properties": {"kubernetesVersion": "", "fqdnSubdomain": "cliakstest000003", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDVfdiWPCK7b0PD8/va1l7EvLPBaHEGLDEISGfg3dnpEsOGU/iprRcAL5NFHQ25sALHD73ZjTIH3BcSqI3OfGrmAE4SFB+nohp6gnc0Gd3Hmrl3jdDSHhm10fyAZb+9RPNFKryGFf+7DcgPK3yPJuhoN1SCqV/mMYQuLM5TpXhWEucy0tfTwN2dYyz8N741cPQJ5jdIUzN+bed3yT3d4TYEIcAdR6BlP3JNyfZlCzx5aF43Z2LWnQHdkxcgZGG5yCndaBIRZwAsCOjXuK2iiNszo2ydwD6/HABke+8hGY84bhUSfZy7QPucQIJe5RQcDXDeB7bJGojIz0KVqpHSh4+L - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "apiServerAccessProfile": {"enablePrivateCluster": true, "privateDNSZone": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io"}, + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "apiServerAccessProfile": {"authorizedIPRanges": [], "enablePrivateCluster": + true, "privateDNSZone": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io"}, "disableLocalAccounts": false}}' headers: Accept: @@ -420,7 +424,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1809' + - '2192' Content-Type: - application/json ParameterSetName: @@ -428,32 +432,33 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"fqdn\": \"cliakstest000003-ba96f6e0.hcp.westus2.azmk8s.io\",\n - \ \"fqdnSubdomain\": \"cliakstest000003\",\n \"azurePortalFQDN\": \"f3773e6259a31218585878e529971e17-priv.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"fqdn\": \"cliakstest000003-ae8787f8.hcp.westus2.azmk8s.io\",\n + \ \"fqdnSubdomain\": \"cliakstest000003\",\n \"azurePortalFQDN\": \"e38cfa12a8742f6e5d23e9e5f1ebd9d1-priv.portal.hcp.westus2.azmk8s.io\",\n \ \"privateFQDN\": \"cliakstest000003.privatelink.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDVfdiWPCK7b0PD8/va1l7EvLPBaHEGLDEISGfg3dnpEsOGU/iprRcAL5NFHQ25sALHD73ZjTIH3BcSqI3OfGrmAE4SFB+nohp6gnc0Gd3Hmrl3jdDSHhm10fyAZb+9RPNFKryGFf+7DcgPK3yPJuhoN1SCqV/mMYQuLM5TpXhWEucy0tfTwN2dYyz8N741cPQJ5jdIUzN+bed3yT3d4TYEIcAdR6BlP3JNyfZlCzx5aF43Z2LWnQHdkxcgZGG5yCndaBIRZwAsCOjXuK2iiNszo2ydwD6/HABke+8hGY84bhUSfZy7QPucQIJe5RQcDXDeB7bJGojIz0KVqpHSh4+L - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -461,29 +466,30 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\": - [\n {\n \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"privateLinkResources\": [\n {\n + \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io\",\n \ \"enablePrivateClusterPublicFQDN\": true,\n \"privateClusterVersion\": - \"v1\"\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Disabled\"\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": - {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002\": + \"v1\"\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002\": {\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n }\n \ }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n \ }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/063a76d4-3373-4261-ad16-1b93d754fbc8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8590994-7571-4e2a-a5e8-6ff189d17b0c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3535' + - '3992' content-type: - application/json date: - - Tue, 19 Oct 2021 05:29:50 GMT + - Wed, 01 Dec 2021 14:03:11 GMT expires: - '-1' pragma: @@ -495,7 +501,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -515,123 +521,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/063a76d4-3373-4261-ad16-1b93d754fbc8?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"d4763a06-7333-6142-ad16-1b93d754fbc8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:29:50.5466666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:30:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --node-count --fqdn-subdomain --load-balancer-sku - --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity - --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/063a76d4-3373-4261-ad16-1b93d754fbc8?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"d4763a06-7333-6142-ad16-1b93d754fbc8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:29:50.5466666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:30:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --node-count --fqdn-subdomain --load-balancer-sku - --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity - --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/063a76d4-3373-4261-ad16-1b93d754fbc8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8590994-7571-4e2a-a5e8-6ff189d17b0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d4763a06-7333-6142-ad16-1b93d754fbc8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:29:50.5466666Z\"\n }" + string: "{\n \"name\": \"940959d8-7175-2a4e-a5e8-6ff189d17b0c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:03:12.16Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 05:31:21 GMT + - Wed, 01 Dec 2021 14:03:42 GMT expires: - '-1' pragma: @@ -665,23 +571,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/063a76d4-3373-4261-ad16-1b93d754fbc8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8590994-7571-4e2a-a5e8-6ff189d17b0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d4763a06-7333-6142-ad16-1b93d754fbc8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:29:50.5466666Z\"\n }" + string: "{\n \"name\": \"940959d8-7175-2a4e-a5e8-6ff189d17b0c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:03:12.16Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 05:31:51 GMT + - Wed, 01 Dec 2021 14:04:12 GMT expires: - '-1' pragma: @@ -715,23 +621,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/063a76d4-3373-4261-ad16-1b93d754fbc8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8590994-7571-4e2a-a5e8-6ff189d17b0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d4763a06-7333-6142-ad16-1b93d754fbc8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:29:50.5466666Z\"\n }" + string: "{\n \"name\": \"940959d8-7175-2a4e-a5e8-6ff189d17b0c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:03:12.16Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 05:32:21 GMT + - Wed, 01 Dec 2021 14:04:42 GMT expires: - '-1' pragma: @@ -765,23 +671,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/063a76d4-3373-4261-ad16-1b93d754fbc8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8590994-7571-4e2a-a5e8-6ff189d17b0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d4763a06-7333-6142-ad16-1b93d754fbc8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:29:50.5466666Z\"\n }" + string: "{\n \"name\": \"940959d8-7175-2a4e-a5e8-6ff189d17b0c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:03:12.16Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 05:32:51 GMT + - Wed, 01 Dec 2021 14:05:12 GMT expires: - '-1' pragma: @@ -815,23 +721,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/063a76d4-3373-4261-ad16-1b93d754fbc8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8590994-7571-4e2a-a5e8-6ff189d17b0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d4763a06-7333-6142-ad16-1b93d754fbc8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:29:50.5466666Z\"\n }" + string: "{\n \"name\": \"940959d8-7175-2a4e-a5e8-6ff189d17b0c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:03:12.16Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 05:33:21 GMT + - Wed, 01 Dec 2021 14:05:43 GMT expires: - '-1' pragma: @@ -865,23 +771,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/063a76d4-3373-4261-ad16-1b93d754fbc8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8590994-7571-4e2a-a5e8-6ff189d17b0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d4763a06-7333-6142-ad16-1b93d754fbc8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:29:50.5466666Z\"\n }" + string: "{\n \"name\": \"940959d8-7175-2a4e-a5e8-6ff189d17b0c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:03:12.16Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 05:33:51 GMT + - Wed, 01 Dec 2021 14:06:13 GMT expires: - '-1' pragma: @@ -915,23 +821,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/063a76d4-3373-4261-ad16-1b93d754fbc8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8590994-7571-4e2a-a5e8-6ff189d17b0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d4763a06-7333-6142-ad16-1b93d754fbc8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:29:50.5466666Z\"\n }" + string: "{\n \"name\": \"940959d8-7175-2a4e-a5e8-6ff189d17b0c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:03:12.16Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 05:34:22 GMT + - Wed, 01 Dec 2021 14:06:42 GMT expires: - '-1' pragma: @@ -965,23 +871,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/063a76d4-3373-4261-ad16-1b93d754fbc8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8590994-7571-4e2a-a5e8-6ff189d17b0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d4763a06-7333-6142-ad16-1b93d754fbc8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:29:50.5466666Z\"\n }" + string: "{\n \"name\": \"940959d8-7175-2a4e-a5e8-6ff189d17b0c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:03:12.16Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 05:34:51 GMT + - Wed, 01 Dec 2021 14:07:13 GMT expires: - '-1' pragma: @@ -1015,23 +921,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/063a76d4-3373-4261-ad16-1b93d754fbc8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8590994-7571-4e2a-a5e8-6ff189d17b0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d4763a06-7333-6142-ad16-1b93d754fbc8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:29:50.5466666Z\"\n }" + string: "{\n \"name\": \"940959d8-7175-2a4e-a5e8-6ff189d17b0c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:03:12.16Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 05:35:22 GMT + - Wed, 01 Dec 2021 14:07:43 GMT expires: - '-1' pragma: @@ -1065,23 +971,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/063a76d4-3373-4261-ad16-1b93d754fbc8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8590994-7571-4e2a-a5e8-6ff189d17b0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d4763a06-7333-6142-ad16-1b93d754fbc8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:29:50.5466666Z\"\n }" + string: "{\n \"name\": \"940959d8-7175-2a4e-a5e8-6ff189d17b0c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:03:12.16Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 05:35:52 GMT + - Wed, 01 Dec 2021 14:08:13 GMT expires: - '-1' pragma: @@ -1115,23 +1021,23 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/063a76d4-3373-4261-ad16-1b93d754fbc8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8590994-7571-4e2a-a5e8-6ff189d17b0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d4763a06-7333-6142-ad16-1b93d754fbc8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:29:50.5466666Z\"\n }" + string: "{\n \"name\": \"940959d8-7175-2a4e-a5e8-6ff189d17b0c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:03:12.16Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 05:36:22 GMT + - Wed, 01 Dec 2021 14:08:44 GMT expires: - '-1' pragma: @@ -1165,24 +1071,24 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/063a76d4-3373-4261-ad16-1b93d754fbc8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8590994-7571-4e2a-a5e8-6ff189d17b0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d4763a06-7333-6142-ad16-1b93d754fbc8\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T05:29:50.5466666Z\",\n \"endTime\": - \"2021-10-19T05:36:24.248725Z\"\n }" + string: "{\n \"name\": \"940959d8-7175-2a4e-a5e8-6ff189d17b0c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:03:12.16Z\",\n \"endTime\": + \"2021-12-01T14:08:53.2928146Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '165' content-type: - application/json date: - - Tue, 19 Oct 2021 05:36:53 GMT + - Wed, 01 Dec 2021 14:09:14 GMT expires: - '-1' pragma: @@ -1216,41 +1122,44 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"fqdn\": \"cliakstest000003-ba96f6e0.hcp.westus2.azmk8s.io\",\n - \ \"fqdnSubdomain\": \"cliakstest000003\",\n \"azurePortalFQDN\": \"f3773e6259a31218585878e529971e17-priv.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"fqdn\": \"cliakstest000003-ae8787f8.hcp.westus2.azmk8s.io\",\n + \ \"fqdnSubdomain\": \"cliakstest000003\",\n \"azurePortalFQDN\": \"e38cfa12a8742f6e5d23e9e5f1ebd9d1-priv.portal.hcp.westus2.azmk8s.io\",\n \ \"privateFQDN\": \"cliakstest000003.privatelink.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDVfdiWPCK7b0PD8/va1l7EvLPBaHEGLDEISGfg3dnpEsOGU/iprRcAL5NFHQ25sALHD73ZjTIH3BcSqI3OfGrmAE4SFB+nohp6gnc0Gd3Hmrl3jdDSHhm10fyAZb+9RPNFKryGFf+7DcgPK3yPJuhoN1SCqV/mMYQuLM5TpXhWEucy0tfTwN2dYyz8N741cPQJ5jdIUzN+bed3yT3d4TYEIcAdR6BlP3JNyfZlCzx5aF43Z2LWnQHdkxcgZGG5yCndaBIRZwAsCOjXuK2iiNszo2ydwD6/HABke+8hGY84bhUSfZy7QPucQIJe5RQcDXDeB7bJGojIz0KVqpHSh4+L - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5b35747e-c86c-4707-8f4d-8f9d53f33406\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f2e9b2a3-29b5-4a18-b828-d6be96e43dcc\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/privateLinkResources/management\",\n \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n @@ -1260,9 +1169,8 @@ interactions: \"v1\"\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Disabled\"\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": - {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002\": + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n \ }\n }" @@ -1270,11 +1178,11 @@ interactions: cache-control: - no-cache content-length: - - '4456' + - '4913' content-type: - application/json date: - - Tue, 19 Oct 2021 05:36:53 GMT + - Wed, 01 Dec 2021 14:09:14 GMT expires: - '-1' pragma: @@ -1308,8 +1216,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-07-01 response: @@ -1317,17 +1225,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64a0a309-fc53-45e2-88db-f6b2cba248c9?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8df65cac-dbcc-4874-a1f3-cee8a3fc1b35?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 05:36:55 GMT + - Wed, 01 Dec 2021 14:09:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/64a0a309-fc53-45e2-88db-f6b2cba248c9?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/8df65cac-dbcc-4874-a1f3-cee8a3fc1b35?api-version=2016-03-30 pragma: - no-cache server: @@ -1337,7 +1245,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad.yaml old mode 100755 new mode 100644 index 32ec45db514..9090adbe279 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:33:36Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"canadacentral","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:06:36Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '313' + - '319' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:33:37 GMT + - Wed, 01 Dec 2021 14:06:36 GMT expires: - '-1' pragma: @@ -42,19 +42,20 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestj57odotdn-8ecadf", + body: '{"location": "canadacentral", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestkl4gu4p3q-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -65,61 +66,63 @@ interactions: Connection: - keep-alive Content-Length: - - '1391' + - '1754' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"canadacentral\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj57odotdn-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestj57odotdn-8ecadf-90c684e3.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestj57odotdn-8ecadf-90c684e3.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestkl4gu4p3q-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestkl4gu4p3q-8ecadf-05bd70f8.hcp.canadacentral.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkl4gu4p3q-8ecadf-05bd70f8.portal.hcp.canadacentral.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_canadacentral\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6dbb85aa-c7cd-47aa-998e-7797654756b4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/a33f004b-52e0-4c49-8151-fbb99fa5177a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2778' + - '3260' content-type: - application/json date: - - Tue, 19 Oct 2021 07:33:40 GMT + - Wed, 01 Dec 2021 14:06:41 GMT expires: - '-1' pragma: @@ -131,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1196' status: code: 201 message: Created @@ -149,14 +152,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6dbb85aa-c7cd-47aa-998e-7797654756b4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/a33f004b-52e0-4c49-8151-fbb99fa5177a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aa85bb6d-cdc7-aa47-998e-7797654756b4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:33:40.3233333Z\"\n }" + string: "{\n \"name\": \"4b003fa3-e052-494c-8151-fbb99fa5177a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:41.7433333Z\"\n }" headers: cache-control: - no-cache @@ -165,7 +168,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:34:10 GMT + - Wed, 01 Dec 2021 14:07:11 GMT expires: - '-1' pragma: @@ -197,14 +200,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6dbb85aa-c7cd-47aa-998e-7797654756b4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/a33f004b-52e0-4c49-8151-fbb99fa5177a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aa85bb6d-cdc7-aa47-998e-7797654756b4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:33:40.3233333Z\"\n }" + string: "{\n \"name\": \"4b003fa3-e052-494c-8151-fbb99fa5177a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:41.7433333Z\"\n }" headers: cache-control: - no-cache @@ -213,7 +216,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:34:39 GMT + - Wed, 01 Dec 2021 14:07:42 GMT expires: - '-1' pragma: @@ -245,14 +248,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6dbb85aa-c7cd-47aa-998e-7797654756b4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/a33f004b-52e0-4c49-8151-fbb99fa5177a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aa85bb6d-cdc7-aa47-998e-7797654756b4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:33:40.3233333Z\"\n }" + string: "{\n \"name\": \"4b003fa3-e052-494c-8151-fbb99fa5177a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:41.7433333Z\"\n }" headers: cache-control: - no-cache @@ -261,7 +264,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:35:10 GMT + - Wed, 01 Dec 2021 14:08:12 GMT expires: - '-1' pragma: @@ -293,14 +296,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6dbb85aa-c7cd-47aa-998e-7797654756b4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/a33f004b-52e0-4c49-8151-fbb99fa5177a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aa85bb6d-cdc7-aa47-998e-7797654756b4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:33:40.3233333Z\"\n }" + string: "{\n \"name\": \"4b003fa3-e052-494c-8151-fbb99fa5177a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:41.7433333Z\"\n }" headers: cache-control: - no-cache @@ -309,7 +312,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:35:40 GMT + - Wed, 01 Dec 2021 14:08:41 GMT expires: - '-1' pragma: @@ -341,23 +344,24 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6dbb85aa-c7cd-47aa-998e-7797654756b4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/a33f004b-52e0-4c49-8151-fbb99fa5177a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aa85bb6d-cdc7-aa47-998e-7797654756b4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:33:40.3233333Z\"\n }" + string: "{\n \"name\": \"4b003fa3-e052-494c-8151-fbb99fa5177a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:06:41.7433333Z\",\n \"endTime\": + \"2021-12-01T14:08:53.4735836Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 07:36:10 GMT + - Wed, 01 Dec 2021 14:09:12 GMT expires: - '-1' pragma: @@ -389,23 +393,60 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6dbb85aa-c7cd-47aa-998e-7797654756b4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"name\": \"aa85bb6d-cdc7-aa47-998e-7797654756b4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:33:40.3233333Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"canadacentral\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestkl4gu4p3q-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestkl4gu4p3q-8ecadf-05bd70f8.hcp.canadacentral.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkl4gu4p3q-8ecadf-05bd70f8.portal.hcp.canadacentral.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_canadacentral\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_canadacentral/providers/Microsoft.Network/publicIPAddresses/947b58db-674f-424f-9882-c6784fbd6a62\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_canadacentral/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '3935' content-type: - application/json date: - - Tue, 19 Oct 2021 07:36:40 GMT + - Wed, 01 Dec 2021 14:09:13 GMT expires: - '-1' pragma: @@ -427,34 +468,71 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --vm-set-type --node-count --ssh-key-value -o + - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id + -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6dbb85aa-c7cd-47aa-998e-7797654756b4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"name\": \"aa85bb6d-cdc7-aa47-998e-7797654756b4\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:33:40.3233333Z\",\n \"endTime\": - \"2021-10-19T07:36:49.8039347Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"canadacentral\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestkl4gu4p3q-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestkl4gu4p3q-8ecadf-05bd70f8.hcp.canadacentral.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkl4gu4p3q-8ecadf-05bd70f8.portal.hcp.canadacentral.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_canadacentral\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_canadacentral/providers/Microsoft.Network/publicIPAddresses/947b58db-674f-424f-9882-c6784fbd6a62\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_canadacentral/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '170' + - '3935' content-type: - application/json date: - - Tue, 19 Oct 2021 07:37:10 GMT + - Wed, 01 Dec 2021 14:09:13 GMT expires: - '-1' pragma: @@ -473,70 +551,105 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "canadacentral", "sku": {"name": "Basic", "tier": "Free"}, + "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": + "1.20.9", "dnsPrefix": "cliakstest-clitestkl4gu4p3q-8ecadf", "agentPoolProfiles": + [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": + "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": + 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.20.9", + "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000002_canadacentral", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_canadacentral/providers/Microsoft.Network/publicIPAddresses/947b58db-674f-424f-9882-c6784fbd6a62"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "aadProfile": {"managed": true, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000001"], + "tenantID": "00000000-0000-0000-0000-000000000002"}, "identityProfile": {"kubeletidentity": + {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_canadacentral/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive + Content-Length: + - '2896' + Content-Type: + - application/json ParameterSetName: - - --resource-group --name --vm-set-type --node-count --ssh-key-value -o + - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id + -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"canadacentral\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj57odotdn-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestj57odotdn-8ecadf-90c684e3.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestj57odotdn-8ecadf-90c684e3.portal.hcp.westus2.azmk8s.io\",\n + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestkl4gu4p3q-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestkl4gu4p3q-8ecadf-05bd70f8.hcp.canadacentral.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkl4gu4p3q-8ecadf-05bd70f8.portal.hcp.canadacentral.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_canadacentral\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cf8bed28-6860-4271-ad8e-85ae95dcf345\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_canadacentral/providers/Microsoft.Network/publicIPAddresses/947b58db-674f-424f-9882-c6784fbd6a62\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": + {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n + \ ],\n \"tenantID\": \"00000000-0000-0000-0000-000000000002\"\n },\n + \ \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": + {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_canadacentral/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/b75e417e-a887-4b9a-9ad1-78433580d2e4?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3441' + - '4114' content-type: - application/json date: - - Tue, 19 Oct 2021 07:37:10 GMT + - Wed, 01 Dec 2021 14:09:17 GMT expires: - '-1' pragma: @@ -551,6 +664,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: code: 200 message: OK @@ -558,7 +673,56 @@ interactions: body: null headers: Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id + -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/b75e417e-a887-4b9a-9ad1-78433580d2e4?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"7e415eb7-87a8-9a4b-9ad1-78433580d2e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:17.1666666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Wed, 01 Dec 2021 14:09:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -569,57 +733,23 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/b75e417e-a887-4b9a-9ad1-78433580d2e4?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj57odotdn-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestj57odotdn-8ecadf-90c684e3.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestj57odotdn-8ecadf-90c684e3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cf8bed28-6860-4271-ad8e-85ae95dcf345\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"7e415eb7-87a8-9a4b-9ad1-78433580d2e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:17.1666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:37:11 GMT + - Wed, 01 Dec 2021 14:10:17 GMT expires: - '-1' pragma: @@ -638,100 +768,233 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestj57odotdn-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": - "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": - "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": - true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": - "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": - "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cf8bed28-6860-4271-ad8e-85ae95dcf345"}]}}, - "aadProfile": {"managed": true, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000001"], - "tenantID": "00000000-0000-0000-0000-000000000002"}, "identityProfile": {"kubeletidentity": - {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", - "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + body: null headers: Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id + -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/b75e417e-a887-4b9a-9ad1-78433580d2e4?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"7e415eb7-87a8-9a4b-9ad1-78433580d2e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:17.1666666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Wed, 01 Dec 2021 14:10:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks update Connection: - keep-alive - Content-Length: - - '2461' - Content-Type: + ParameterSetName: + - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id + -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/b75e417e-a887-4b9a-9ad1-78433580d2e4?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"7e415eb7-87a8-9a4b-9ad1-78433580d2e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:17.1666666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Wed, 01 Dec 2021 14:11:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive ParameterSetName: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/b75e417e-a887-4b9a-9ad1-78433580d2e4?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj57odotdn-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestj57odotdn-8ecadf-90c684e3.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestj57odotdn-8ecadf-90c684e3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cf8bed28-6860-4271-ad8e-85ae95dcf345\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"aadProfile\": - {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n - \ ],\n \"tenantID\": \"00000000-0000-0000-0000-000000000002\"\n },\n - \ \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": - {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"7e415eb7-87a8-9a4b-9ad1-78433580d2e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:17.1666666Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79003caf-c9c6-4a11-b1c1-aaac363da565?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3620' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:37:14 GMT + - Wed, 01 Dec 2021 14:11:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id + -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/b75e417e-a887-4b9a-9ad1-78433580d2e4?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"7e415eb7-87a8-9a4b-9ad1-78433580d2e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:17.1666666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:12:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id + -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/b75e417e-a887-4b9a-9ad1-78433580d2e4?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"7e415eb7-87a8-9a4b-9ad1-78433580d2e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:17.1666666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:12:48 GMT expires: - '-1' pragma: @@ -746,8 +1009,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' status: code: 200 message: OK @@ -766,14 +1027,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79003caf-c9c6-4a11-b1c1-aaac363da565?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/b75e417e-a887-4b9a-9ad1-78433580d2e4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"af3c0079-c6c9-114a-b1c1-aaac363da565\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:37:14.5566666Z\"\n }" + string: "{\n \"name\": \"7e415eb7-87a8-9a4b-9ad1-78433580d2e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:17.1666666Z\"\n }" headers: cache-control: - no-cache @@ -782,7 +1043,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:37:43 GMT + - Wed, 01 Dec 2021 14:13:18 GMT expires: - '-1' pragma: @@ -815,14 +1076,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79003caf-c9c6-4a11-b1c1-aaac363da565?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/b75e417e-a887-4b9a-9ad1-78433580d2e4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"af3c0079-c6c9-114a-b1c1-aaac363da565\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:37:14.5566666Z\"\n }" + string: "{\n \"name\": \"7e415eb7-87a8-9a4b-9ad1-78433580d2e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:17.1666666Z\"\n }" headers: cache-control: - no-cache @@ -831,7 +1092,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:38:14 GMT + - Wed, 01 Dec 2021 14:13:49 GMT expires: - '-1' pragma: @@ -864,14 +1125,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79003caf-c9c6-4a11-b1c1-aaac363da565?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/b75e417e-a887-4b9a-9ad1-78433580d2e4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"af3c0079-c6c9-114a-b1c1-aaac363da565\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:37:14.5566666Z\"\n }" + string: "{\n \"name\": \"7e415eb7-87a8-9a4b-9ad1-78433580d2e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:17.1666666Z\"\n }" headers: cache-control: - no-cache @@ -880,7 +1141,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:38:44 GMT + - Wed, 01 Dec 2021 14:14:19 GMT expires: - '-1' pragma: @@ -913,14 +1174,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79003caf-c9c6-4a11-b1c1-aaac363da565?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/b75e417e-a887-4b9a-9ad1-78433580d2e4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"af3c0079-c6c9-114a-b1c1-aaac363da565\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:37:14.5566666Z\"\n }" + string: "{\n \"name\": \"7e415eb7-87a8-9a4b-9ad1-78433580d2e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:17.1666666Z\"\n }" headers: cache-control: - no-cache @@ -929,7 +1190,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:39:14 GMT + - Wed, 01 Dec 2021 14:14:49 GMT expires: - '-1' pragma: @@ -962,14 +1223,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79003caf-c9c6-4a11-b1c1-aaac363da565?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/b75e417e-a887-4b9a-9ad1-78433580d2e4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"af3c0079-c6c9-114a-b1c1-aaac363da565\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:37:14.5566666Z\"\n }" + string: "{\n \"name\": \"7e415eb7-87a8-9a4b-9ad1-78433580d2e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:17.1666666Z\"\n }" headers: cache-control: - no-cache @@ -978,7 +1239,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:39:44 GMT + - Wed, 01 Dec 2021 14:15:19 GMT expires: - '-1' pragma: @@ -1011,14 +1272,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79003caf-c9c6-4a11-b1c1-aaac363da565?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/b75e417e-a887-4b9a-9ad1-78433580d2e4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"af3c0079-c6c9-114a-b1c1-aaac363da565\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:37:14.5566666Z\"\n }" + string: "{\n \"name\": \"7e415eb7-87a8-9a4b-9ad1-78433580d2e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:17.1666666Z\"\n }" headers: cache-control: - no-cache @@ -1027,7 +1288,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:40:14 GMT + - Wed, 01 Dec 2021 14:15:49 GMT expires: - '-1' pragma: @@ -1060,14 +1321,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79003caf-c9c6-4a11-b1c1-aaac363da565?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/b75e417e-a887-4b9a-9ad1-78433580d2e4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"af3c0079-c6c9-114a-b1c1-aaac363da565\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:37:14.5566666Z\"\n }" + string: "{\n \"name\": \"7e415eb7-87a8-9a4b-9ad1-78433580d2e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:17.1666666Z\"\n }" headers: cache-control: - no-cache @@ -1076,7 +1337,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:40:44 GMT + - Wed, 01 Dec 2021 14:16:19 GMT expires: - '-1' pragma: @@ -1109,14 +1370,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79003caf-c9c6-4a11-b1c1-aaac363da565?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/b75e417e-a887-4b9a-9ad1-78433580d2e4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"af3c0079-c6c9-114a-b1c1-aaac363da565\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:37:14.5566666Z\"\n }" + string: "{\n \"name\": \"7e415eb7-87a8-9a4b-9ad1-78433580d2e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:17.1666666Z\"\n }" headers: cache-control: - no-cache @@ -1125,7 +1386,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:41:14 GMT + - Wed, 01 Dec 2021 14:16:49 GMT expires: - '-1' pragma: @@ -1158,15 +1419,162 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79003caf-c9c6-4a11-b1c1-aaac363da565?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/b75e417e-a887-4b9a-9ad1-78433580d2e4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"af3c0079-c6c9-114a-b1c1-aaac363da565\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:37:14.5566666Z\",\n \"endTime\": - \"2021-10-19T07:41:35.5841119Z\"\n }" + string: "{\n \"name\": \"7e415eb7-87a8-9a4b-9ad1-78433580d2e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:17.1666666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:17:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id + -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/b75e417e-a887-4b9a-9ad1-78433580d2e4?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"7e415eb7-87a8-9a4b-9ad1-78433580d2e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:17.1666666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:17:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id + -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/b75e417e-a887-4b9a-9ad1-78433580d2e4?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"7e415eb7-87a8-9a4b-9ad1-78433580d2e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:17.1666666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:18:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id + -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/canadacentral/operations/b75e417e-a887-4b9a-9ad1-78433580d2e4?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"7e415eb7-87a8-9a4b-9ad1-78433580d2e4\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:09:17.1666666Z\",\n \"endTime\": + \"2021-12-01T14:18:50.5478099Z\"\n }" headers: cache-control: - no-cache @@ -1175,7 +1583,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:41:44 GMT + - Wed, 01 Dec 2021 14:18:50 GMT expires: - '-1' pragma: @@ -1208,59 +1616,62 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"canadacentral\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj57odotdn-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestj57odotdn-8ecadf-90c684e3.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestj57odotdn-8ecadf-90c684e3.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestkl4gu4p3q-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestkl4gu4p3q-8ecadf-05bd70f8.hcp.canadacentral.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkl4gu4p3q-8ecadf-05bd70f8.portal.hcp.canadacentral.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_canadacentral\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cf8bed28-6860-4271-ad8e-85ae95dcf345\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_canadacentral/providers/Microsoft.Network/publicIPAddresses/947b58db-674f-424f-9882-c6784fbd6a62\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"aadProfile\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n \ ],\n \"tenantID\": \"00000000-0000-0000-0000-000000000002\"\n },\n \ \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": - {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_canadacentral/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3622' + - '4116' content-type: - application/json date: - - Tue, 19 Oct 2021 07:41:44 GMT + - Wed, 01 Dec 2021 14:18:51 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_none_private_dns_zone.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_none_private_dns_zone.yaml old mode 100755 new mode 100644 index 2b2d7c2a2ed..28ea53ffe11 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_none_private_dns_zone.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_none_private_dns_zone.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:20:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:02:25Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:20:53 GMT + - Wed, 01 Dec 2021 14:02:26 GMT expires: - '-1' pragma: @@ -44,19 +44,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestwrzh26njc-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest3mjzma4al-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "apiServerAccessProfile": {"enablePrivateCluster": true, "privateDNSZone": - "none"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "apiServerAccessProfile": {"authorizedIPRanges": [], "enablePrivateCluster": + true, "privateDNSZone": "none"}, "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -67,40 +68,41 @@ interactions: Connection: - keep-alive Content-Length: - - '1475' + - '1858' Content-Type: - application/json ParameterSetName: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestwrzh26njc-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestwrzh26njc-8ecadf-6b1eb6f8.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"08a6c16d99776271b5d1a835d86dc095-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitestwrzh26njc-8ecadf-6b1eb6f8.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest3mjzma4al-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest3mjzma4al-8ecadf-1be5ced9.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"c789f1d9297baac21564290342f96090-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliakstest-clitest3mjzma4al-8ecadf-1be5ced9.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -108,27 +110,28 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\": - [\n {\n \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"privateLinkResources\": [\n {\n + \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"none\",\n \"enablePrivateClusterPublicFQDN\": true,\n \"privateClusterVersion\": \"v1\"\n },\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Disabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f540dbff-f507-4ab2-b8f9-f416e0cd2195?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ebc966e-9998-43e1-a04a-6c07725f46cd?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3275' + - '3732' content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:55 GMT + - Wed, 01 Dec 2021 14:02:31 GMT expires: - '-1' pragma: @@ -140,7 +143,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 201 message: Created @@ -159,23 +162,23 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f540dbff-f507-4ab2-b8f9-f416e0cd2195?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ebc966e-9998-43e1-a04a-6c07725f46cd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ffdb40f5-07f5-b24a-b8f9-f416e0cd2195\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:56.1633333Z\"\n }" + string: "{\n \"name\": \"6e96bc5e-9899-e143-a04a-6c07725f46cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.94Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:21:25 GMT + - Wed, 01 Dec 2021 14:03:01 GMT expires: - '-1' pragma: @@ -208,23 +211,23 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f540dbff-f507-4ab2-b8f9-f416e0cd2195?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ebc966e-9998-43e1-a04a-6c07725f46cd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ffdb40f5-07f5-b24a-b8f9-f416e0cd2195\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:56.1633333Z\"\n }" + string: "{\n \"name\": \"6e96bc5e-9899-e143-a04a-6c07725f46cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.94Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:21:56 GMT + - Wed, 01 Dec 2021 14:03:32 GMT expires: - '-1' pragma: @@ -257,23 +260,23 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f540dbff-f507-4ab2-b8f9-f416e0cd2195?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ebc966e-9998-43e1-a04a-6c07725f46cd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ffdb40f5-07f5-b24a-b8f9-f416e0cd2195\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:56.1633333Z\"\n }" + string: "{\n \"name\": \"6e96bc5e-9899-e143-a04a-6c07725f46cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.94Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:22:26 GMT + - Wed, 01 Dec 2021 14:04:02 GMT expires: - '-1' pragma: @@ -306,23 +309,23 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f540dbff-f507-4ab2-b8f9-f416e0cd2195?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ebc966e-9998-43e1-a04a-6c07725f46cd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ffdb40f5-07f5-b24a-b8f9-f416e0cd2195\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:56.1633333Z\"\n }" + string: "{\n \"name\": \"6e96bc5e-9899-e143-a04a-6c07725f46cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.94Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:22:55 GMT + - Wed, 01 Dec 2021 14:04:32 GMT expires: - '-1' pragma: @@ -355,23 +358,23 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f540dbff-f507-4ab2-b8f9-f416e0cd2195?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ebc966e-9998-43e1-a04a-6c07725f46cd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ffdb40f5-07f5-b24a-b8f9-f416e0cd2195\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:56.1633333Z\"\n }" + string: "{\n \"name\": \"6e96bc5e-9899-e143-a04a-6c07725f46cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.94Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:23:26 GMT + - Wed, 01 Dec 2021 14:05:03 GMT expires: - '-1' pragma: @@ -404,23 +407,23 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f540dbff-f507-4ab2-b8f9-f416e0cd2195?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ebc966e-9998-43e1-a04a-6c07725f46cd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ffdb40f5-07f5-b24a-b8f9-f416e0cd2195\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:56.1633333Z\"\n }" + string: "{\n \"name\": \"6e96bc5e-9899-e143-a04a-6c07725f46cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.94Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:23:56 GMT + - Wed, 01 Dec 2021 14:05:32 GMT expires: - '-1' pragma: @@ -453,23 +456,23 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f540dbff-f507-4ab2-b8f9-f416e0cd2195?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ebc966e-9998-43e1-a04a-6c07725f46cd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ffdb40f5-07f5-b24a-b8f9-f416e0cd2195\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:56.1633333Z\"\n }" + string: "{\n \"name\": \"6e96bc5e-9899-e143-a04a-6c07725f46cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.94Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:24:26 GMT + - Wed, 01 Dec 2021 14:06:02 GMT expires: - '-1' pragma: @@ -502,23 +505,23 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f540dbff-f507-4ab2-b8f9-f416e0cd2195?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ebc966e-9998-43e1-a04a-6c07725f46cd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ffdb40f5-07f5-b24a-b8f9-f416e0cd2195\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:56.1633333Z\"\n }" + string: "{\n \"name\": \"6e96bc5e-9899-e143-a04a-6c07725f46cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.94Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:24:55 GMT + - Wed, 01 Dec 2021 14:06:32 GMT expires: - '-1' pragma: @@ -551,23 +554,23 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f540dbff-f507-4ab2-b8f9-f416e0cd2195?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ebc966e-9998-43e1-a04a-6c07725f46cd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ffdb40f5-07f5-b24a-b8f9-f416e0cd2195\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:56.1633333Z\"\n }" + string: "{\n \"name\": \"6e96bc5e-9899-e143-a04a-6c07725f46cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.94Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:25:26 GMT + - Wed, 01 Dec 2021 14:07:03 GMT expires: - '-1' pragma: @@ -600,23 +603,23 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f540dbff-f507-4ab2-b8f9-f416e0cd2195?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ebc966e-9998-43e1-a04a-6c07725f46cd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ffdb40f5-07f5-b24a-b8f9-f416e0cd2195\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:56.1633333Z\"\n }" + string: "{\n \"name\": \"6e96bc5e-9899-e143-a04a-6c07725f46cd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.94Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:25:56 GMT + - Wed, 01 Dec 2021 14:07:33 GMT expires: - '-1' pragma: @@ -649,24 +652,24 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f540dbff-f507-4ab2-b8f9-f416e0cd2195?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ebc966e-9998-43e1-a04a-6c07725f46cd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ffdb40f5-07f5-b24a-b8f9-f416e0cd2195\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:20:56.1633333Z\",\n \"endTime\": - \"2021-10-19T07:26:27.12498Z\"\n }" + string: "{\n \"name\": \"6e96bc5e-9899-e143-a04a-6c07725f46cd\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:02:31.94Z\",\n \"endTime\": + \"2021-12-01T14:07:55.1515665Z\"\n }" headers: cache-control: - no-cache content-length: - - '168' + - '165' content-type: - application/json date: - - Tue, 19 Oct 2021 07:26:26 GMT + - Wed, 01 Dec 2021 14:08:03 GMT expires: - '-1' pragma: @@ -699,42 +702,45 @@ interactions: - --resource-group --name --node-count --load-balancer-sku --enable-private-cluster --private-dns-zone --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestwrzh26njc-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestwrzh26njc-8ecadf-6b1eb6f8.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"08a6c16d99776271b5d1a835d86dc095-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitestwrzh26njc-8ecadf-6b1eb6f8.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest3mjzma4al-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest3mjzma4al-8ecadf-1be5ced9.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"c789f1d9297baac21564290342f96090-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliakstest-clitest3mjzma4al-8ecadf-1be5ced9.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/829e81be-18b6-4e36-84e2-315cfbe68fed\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e88ab733-29bf-4ac7-be25-9471db4e99d8\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/privateLinkResources/management\",\n \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n @@ -743,20 +749,19 @@ interactions: true,\n \"privateClusterVersion\": \"v1\"\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Disabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4139' + - '4596' content-type: - application/json date: - - Tue, 19 Oct 2021 07:26:26 GMT + - Wed, 01 Dec 2021 14:08:04 GMT expires: - '-1' pragma: @@ -790,8 +795,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-07-01 response: @@ -799,17 +804,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/03773f75-d28b-4c12-9481-b02560486e49?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4322c19b-3086-4947-9c6f-98714e0739eb?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 07:26:44 GMT + - Wed, 01 Dec 2021 14:08:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/03773f75-d28b-4c12-9481-b02560486e49?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/4322c19b-3086-4947-9c6f-98714e0739eb?api-version=2016-03-30 pragma: - no-cache server: @@ -819,7 +824,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14994' + - '14996' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_private_cluster_public_fqdn.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_private_cluster_public_fqdn.yaml old mode 100755 new mode 100644 index 6dfcc422050..4a9f5a7db89 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_private_cluster_public_fqdn.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_private_cluster_public_fqdn.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:21:01Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:02:25Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:21:02 GMT + - Wed, 01 Dec 2021 14:02:26 GMT expires: - '-1' pragma: @@ -43,19 +43,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestollfkqhqm-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesty7en76o67-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "apiServerAccessProfile": {"enablePrivateCluster": true}, "disableLocalAccounts": - false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "apiServerAccessProfile": {"authorizedIPRanges": [], "enablePrivateCluster": + true}, "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -66,39 +67,40 @@ interactions: Connection: - keep-alive Content-Length: - - '1449' + - '1832' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestollfkqhqm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestollfkqhqm-8ecadf-49438204.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"c0099f28ef33ffcf77443b4666dd6250-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitestollfkqhqm-8ecadf-edca9286.865fb39c-758d-4bee-882a-40baca5d2a76.privatelink.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesty7en76o67-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesty7en76o67-8ecadf-ac060a00.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"bb0a282fd6be112e8b6fe3543da3ea4c-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliakstest-clitesty7en76o67-8ecadf-d1ade310.fe05503b-2fd8-41bc-8f9b-b41f461c58aa.privatelink.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -106,27 +108,28 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\": - [\n {\n \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"privateLinkResources\": [\n {\n + \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": true,\n \"privateClusterVersion\": \"v1\"\n },\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Disabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5821d6cc-e4bd-47ef-86f5-bf9f0c7ffcaf?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53bbfd6c-8cb5-45c8-85f7-c39e8678c84e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3322' + - '3779' content-type: - application/json date: - - Tue, 19 Oct 2021 07:21:04 GMT + - Wed, 01 Dec 2021 14:02:31 GMT expires: - '-1' pragma: @@ -138,7 +141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 201 message: Created @@ -156,158 +159,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5821d6cc-e4bd-47ef-86f5-bf9f0c7ffcaf?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"ccd62158-bde4-ef47-86f5-bf9f0c7ffcaf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:21:05.4566666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:21:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-private-cluster --node-count --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5821d6cc-e4bd-47ef-86f5-bf9f0c7ffcaf?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"ccd62158-bde4-ef47-86f5-bf9f0c7ffcaf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:21:05.4566666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:22:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-private-cluster --node-count --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5821d6cc-e4bd-47ef-86f5-bf9f0c7ffcaf?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"ccd62158-bde4-ef47-86f5-bf9f0c7ffcaf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:21:05.4566666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:22:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-private-cluster --node-count --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5821d6cc-e4bd-47ef-86f5-bf9f0c7ffcaf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53bbfd6c-8cb5-45c8-85f7-c39e8678c84e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ccd62158-bde4-ef47-86f5-bf9f0c7ffcaf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:21:05.4566666Z\"\n }" + string: "{\n \"name\": \"6cfdbb53-b58c-c845-85f7-c39e8678c84e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1533333Z\"\n }" headers: cache-control: - no-cache @@ -316,7 +175,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:23:05 GMT + - Wed, 01 Dec 2021 14:03:00 GMT expires: - '-1' pragma: @@ -348,14 +207,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5821d6cc-e4bd-47ef-86f5-bf9f0c7ffcaf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53bbfd6c-8cb5-45c8-85f7-c39e8678c84e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ccd62158-bde4-ef47-86f5-bf9f0c7ffcaf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:21:05.4566666Z\"\n }" + string: "{\n \"name\": \"6cfdbb53-b58c-c845-85f7-c39e8678c84e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1533333Z\"\n }" headers: cache-control: - no-cache @@ -364,7 +223,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:23:35 GMT + - Wed, 01 Dec 2021 14:03:31 GMT expires: - '-1' pragma: @@ -396,14 +255,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5821d6cc-e4bd-47ef-86f5-bf9f0c7ffcaf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53bbfd6c-8cb5-45c8-85f7-c39e8678c84e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ccd62158-bde4-ef47-86f5-bf9f0c7ffcaf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:21:05.4566666Z\"\n }" + string: "{\n \"name\": \"6cfdbb53-b58c-c845-85f7-c39e8678c84e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1533333Z\"\n }" headers: cache-control: - no-cache @@ -412,7 +271,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:24:05 GMT + - Wed, 01 Dec 2021 14:04:01 GMT expires: - '-1' pragma: @@ -444,14 +303,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5821d6cc-e4bd-47ef-86f5-bf9f0c7ffcaf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53bbfd6c-8cb5-45c8-85f7-c39e8678c84e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ccd62158-bde4-ef47-86f5-bf9f0c7ffcaf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:21:05.4566666Z\"\n }" + string: "{\n \"name\": \"6cfdbb53-b58c-c845-85f7-c39e8678c84e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1533333Z\"\n }" headers: cache-control: - no-cache @@ -460,7 +319,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:24:35 GMT + - Wed, 01 Dec 2021 14:04:31 GMT expires: - '-1' pragma: @@ -492,14 +351,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5821d6cc-e4bd-47ef-86f5-bf9f0c7ffcaf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53bbfd6c-8cb5-45c8-85f7-c39e8678c84e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ccd62158-bde4-ef47-86f5-bf9f0c7ffcaf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:21:05.4566666Z\"\n }" + string: "{\n \"name\": \"6cfdbb53-b58c-c845-85f7-c39e8678c84e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1533333Z\"\n }" headers: cache-control: - no-cache @@ -508,7 +367,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:25:05 GMT + - Wed, 01 Dec 2021 14:05:01 GMT expires: - '-1' pragma: @@ -540,14 +399,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5821d6cc-e4bd-47ef-86f5-bf9f0c7ffcaf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53bbfd6c-8cb5-45c8-85f7-c39e8678c84e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ccd62158-bde4-ef47-86f5-bf9f0c7ffcaf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:21:05.4566666Z\"\n }" + string: "{\n \"name\": \"6cfdbb53-b58c-c845-85f7-c39e8678c84e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1533333Z\"\n }" headers: cache-control: - no-cache @@ -556,7 +415,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:25:35 GMT + - Wed, 01 Dec 2021 14:05:32 GMT expires: - '-1' pragma: @@ -588,14 +447,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5821d6cc-e4bd-47ef-86f5-bf9f0c7ffcaf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53bbfd6c-8cb5-45c8-85f7-c39e8678c84e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ccd62158-bde4-ef47-86f5-bf9f0c7ffcaf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:21:05.4566666Z\"\n }" + string: "{\n \"name\": \"6cfdbb53-b58c-c845-85f7-c39e8678c84e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1533333Z\"\n }" headers: cache-control: - no-cache @@ -604,7 +463,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:26:05 GMT + - Wed, 01 Dec 2021 14:06:02 GMT expires: - '-1' pragma: @@ -636,14 +495,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5821d6cc-e4bd-47ef-86f5-bf9f0c7ffcaf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53bbfd6c-8cb5-45c8-85f7-c39e8678c84e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ccd62158-bde4-ef47-86f5-bf9f0c7ffcaf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:21:05.4566666Z\"\n }" + string: "{\n \"name\": \"6cfdbb53-b58c-c845-85f7-c39e8678c84e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1533333Z\"\n }" headers: cache-control: - no-cache @@ -652,7 +511,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:26:35 GMT + - Wed, 01 Dec 2021 14:06:31 GMT expires: - '-1' pragma: @@ -684,14 +543,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5821d6cc-e4bd-47ef-86f5-bf9f0c7ffcaf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53bbfd6c-8cb5-45c8-85f7-c39e8678c84e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ccd62158-bde4-ef47-86f5-bf9f0c7ffcaf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:21:05.4566666Z\"\n }" + string: "{\n \"name\": \"6cfdbb53-b58c-c845-85f7-c39e8678c84e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1533333Z\"\n }" headers: cache-control: - no-cache @@ -700,7 +559,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:27:05 GMT + - Wed, 01 Dec 2021 14:07:02 GMT expires: - '-1' pragma: @@ -732,14 +591,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5821d6cc-e4bd-47ef-86f5-bf9f0c7ffcaf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53bbfd6c-8cb5-45c8-85f7-c39e8678c84e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ccd62158-bde4-ef47-86f5-bf9f0c7ffcaf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:21:05.4566666Z\"\n }" + string: "{\n \"name\": \"6cfdbb53-b58c-c845-85f7-c39e8678c84e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1533333Z\"\n }" headers: cache-control: - no-cache @@ -748,7 +607,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:27:35 GMT + - Wed, 01 Dec 2021 14:07:32 GMT expires: - '-1' pragma: @@ -780,14 +639,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5821d6cc-e4bd-47ef-86f5-bf9f0c7ffcaf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53bbfd6c-8cb5-45c8-85f7-c39e8678c84e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ccd62158-bde4-ef47-86f5-bf9f0c7ffcaf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:21:05.4566666Z\"\n }" + string: "{\n \"name\": \"6cfdbb53-b58c-c845-85f7-c39e8678c84e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1533333Z\"\n }" headers: cache-control: - no-cache @@ -796,7 +655,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:28:06 GMT + - Wed, 01 Dec 2021 14:08:02 GMT expires: - '-1' pragma: @@ -828,14 +687,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5821d6cc-e4bd-47ef-86f5-bf9f0c7ffcaf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53bbfd6c-8cb5-45c8-85f7-c39e8678c84e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ccd62158-bde4-ef47-86f5-bf9f0c7ffcaf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:21:05.4566666Z\"\n }" + string: "{\n \"name\": \"6cfdbb53-b58c-c845-85f7-c39e8678c84e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1533333Z\"\n }" headers: cache-control: - no-cache @@ -844,7 +703,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:28:36 GMT + - Wed, 01 Dec 2021 14:08:33 GMT expires: - '-1' pragma: @@ -876,14 +735,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5821d6cc-e4bd-47ef-86f5-bf9f0c7ffcaf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53bbfd6c-8cb5-45c8-85f7-c39e8678c84e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ccd62158-bde4-ef47-86f5-bf9f0c7ffcaf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:21:05.4566666Z\"\n }" + string: "{\n \"name\": \"6cfdbb53-b58c-c845-85f7-c39e8678c84e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.1533333Z\"\n }" headers: cache-control: - no-cache @@ -892,7 +751,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:29:05 GMT + - Wed, 01 Dec 2021 14:09:03 GMT expires: - '-1' pragma: @@ -924,15 +783,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5821d6cc-e4bd-47ef-86f5-bf9f0c7ffcaf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53bbfd6c-8cb5-45c8-85f7-c39e8678c84e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ccd62158-bde4-ef47-86f5-bf9f0c7ffcaf\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:21:05.4566666Z\",\n \"endTime\": - \"2021-10-19T07:29:12.4309839Z\"\n }" + string: "{\n \"name\": \"6cfdbb53-b58c-c845-85f7-c39e8678c84e\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:02:31.1533333Z\",\n \"endTime\": + \"2021-12-01T14:09:29.4168754Z\"\n }" headers: cache-control: - no-cache @@ -941,7 +800,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:29:36 GMT + - Wed, 01 Dec 2021 14:09:32 GMT expires: - '-1' pragma: @@ -973,42 +832,45 @@ interactions: ParameterSetName: - --resource-group --name --enable-private-cluster --node-count --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestollfkqhqm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestollfkqhqm-8ecadf-49438204.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"c0099f28ef33ffcf77443b4666dd6250-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitestollfkqhqm-8ecadf-edca9286.865fb39c-758d-4bee-882a-40baca5d2a76.privatelink.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesty7en76o67-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesty7en76o67-8ecadf-ac060a00.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"bb0a282fd6be112e8b6fe3543da3ea4c-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliakstest-clitesty7en76o67-8ecadf-d1ade310.fe05503b-2fd8-41bc-8f9b-b41f461c58aa.privatelink.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/24cae00a-fef5-4c70-865f-63ed5e25bb92\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6d9b909c-2f2e-4f47-aa22-659092cbf482\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/privateLinkResources/management\",\n \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n @@ -1017,20 +879,19 @@ interactions: true,\n \"privateClusterVersion\": \"v1\"\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Disabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4186' + - '4643' content-type: - application/json date: - - Tue, 19 Oct 2021 07:29:36 GMT + - Wed, 01 Dec 2021 14:09:33 GMT expires: - '-1' pragma: @@ -1062,42 +923,45 @@ interactions: ParameterSetName: - --resource-group --name --disable-public-fqdn User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestollfkqhqm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestollfkqhqm-8ecadf-49438204.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"c0099f28ef33ffcf77443b4666dd6250-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitestollfkqhqm-8ecadf-edca9286.865fb39c-758d-4bee-882a-40baca5d2a76.privatelink.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesty7en76o67-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesty7en76o67-8ecadf-ac060a00.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"bb0a282fd6be112e8b6fe3543da3ea4c-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliakstest-clitesty7en76o67-8ecadf-d1ade310.fe05503b-2fd8-41bc-8f9b-b41f461c58aa.privatelink.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/24cae00a-fef5-4c70-865f-63ed5e25bb92\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6d9b909c-2f2e-4f47-aa22-659092cbf482\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/privateLinkResources/management\",\n \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n @@ -1106,20 +970,19 @@ interactions: true,\n \"privateClusterVersion\": \"v1\"\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Disabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4186' + - '4643' content-type: - application/json date: - - Tue, 19 Oct 2021 07:29:37 GMT + - Wed, 01 Dec 2021 14:09:35 GMT expires: - '-1' pragma: @@ -1140,29 +1003,30 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestollfkqhqm-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitesty7en76o67-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/24cae00a-fef5-4c70-865f-63ed5e25bb92"}]}}, - "apiServerAccessProfile": {"enablePrivateCluster": true, "privateDNSZone": "system", - "enablePrivateClusterPublicFQDN": false}, "identityProfile": {"kubeletidentity": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6d9b909c-2f2e-4f47-aa22-659092cbf482"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "apiServerAccessProfile": {"enablePrivateCluster": true, "privateDNSZone": + "system", "enablePrivateClusterPublicFQDN": false}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, "privateLinkResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/privateLinkResources/management", "name": "management", "type": "Microsoft.ContainerService/managedClusters/privateLinkResources", "groupId": "management", "requiredMembers": ["management"]}], "disableLocalAccounts": - false, "publicNetworkAccess": "Disabled"}}' + false}}' headers: Accept: - application/json @@ -1173,72 +1037,74 @@ interactions: Connection: - keep-alive Content-Length: - - '2820' + - '3230' Content-Type: - application/json ParameterSetName: - --resource-group --name --disable-public-fqdn User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestollfkqhqm-8ecadf\",\n \"azurePortalFQDN\": - \"c0099f28ef33ffcf77443b4666dd6250-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitestollfkqhqm-8ecadf-edca9286.865fb39c-758d-4bee-882a-40baca5d2a76.privatelink.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesty7en76o67-8ecadf\",\n \"azurePortalFQDN\": + \"bb0a282fd6be112e8b6fe3543da3ea4c-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliakstest-clitesty7en76o67-8ecadf-d1ade310.fe05503b-2fd8-41bc-8f9b-b41f461c58aa.privatelink.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/24cae00a-fef5-4c70-865f-63ed5e25bb92\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6d9b909c-2f2e-4f47-aa22-659092cbf482\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\": [\n {\n \"name\": \"management\",\n \ \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n - \ ],\n \"privateLinkServiceID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hcp-underlay-westus2-cx-82/providers/Microsoft.Network/privateLinkServices/ac715d6fe7f0f4145a86d91e9e56fc19\"\n + \ ],\n \"privateLinkServiceID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hcp-underlay-westus2-cx-185/providers/Microsoft.Network/privateLinkServices/a43ff1e45838b4f6f85fb578eab8baf2\"\n \ }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": false,\n \"privateClusterVersion\": \"v1\"\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Disabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64954b85-f4d1-4378-a571-1301779504ae?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a303db00-eaaa-4b17-ad8b-4a46a4b6c888?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4111' + - '4569' content-type: - application/json date: - - Tue, 19 Oct 2021 07:29:39 GMT + - Wed, 01 Dec 2021 14:09:38 GMT expires: - '-1' pragma: @@ -1254,7 +1120,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1197' status: code: 200 message: OK @@ -1272,14 +1138,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-public-fqdn User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64954b85-f4d1-4378-a571-1301779504ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a303db00-eaaa-4b17-ad8b-4a46a4b6c888?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"854b9564-d1f4-7843-a571-1301779504ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:29:39.7666666Z\"\n }" + string: "{\n \"name\": \"00db03a3-aaea-174b-ad8b-4a46a4b6c888\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:38.0666666Z\"\n }" headers: cache-control: - no-cache @@ -1288,7 +1154,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:30:09 GMT + - Wed, 01 Dec 2021 14:10:08 GMT expires: - '-1' pragma: @@ -1320,14 +1186,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-public-fqdn User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64954b85-f4d1-4378-a571-1301779504ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a303db00-eaaa-4b17-ad8b-4a46a4b6c888?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"854b9564-d1f4-7843-a571-1301779504ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:29:39.7666666Z\"\n }" + string: "{\n \"name\": \"00db03a3-aaea-174b-ad8b-4a46a4b6c888\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:38.0666666Z\"\n }" headers: cache-control: - no-cache @@ -1336,7 +1202,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:30:39 GMT + - Wed, 01 Dec 2021 14:10:38 GMT expires: - '-1' pragma: @@ -1368,14 +1234,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-public-fqdn User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64954b85-f4d1-4378-a571-1301779504ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a303db00-eaaa-4b17-ad8b-4a46a4b6c888?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"854b9564-d1f4-7843-a571-1301779504ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:29:39.7666666Z\"\n }" + string: "{\n \"name\": \"00db03a3-aaea-174b-ad8b-4a46a4b6c888\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:38.0666666Z\"\n }" headers: cache-control: - no-cache @@ -1384,7 +1250,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:31:10 GMT + - Wed, 01 Dec 2021 14:11:08 GMT expires: - '-1' pragma: @@ -1416,14 +1282,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-public-fqdn User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64954b85-f4d1-4378-a571-1301779504ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a303db00-eaaa-4b17-ad8b-4a46a4b6c888?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"854b9564-d1f4-7843-a571-1301779504ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:29:39.7666666Z\"\n }" + string: "{\n \"name\": \"00db03a3-aaea-174b-ad8b-4a46a4b6c888\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:38.0666666Z\"\n }" headers: cache-control: - no-cache @@ -1432,7 +1298,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:31:39 GMT + - Wed, 01 Dec 2021 14:11:39 GMT expires: - '-1' pragma: @@ -1464,15 +1330,15 @@ interactions: ParameterSetName: - --resource-group --name --disable-public-fqdn User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64954b85-f4d1-4378-a571-1301779504ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a303db00-eaaa-4b17-ad8b-4a46a4b6c888?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"854b9564-d1f4-7843-a571-1301779504ae\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:29:39.7666666Z\",\n \"endTime\": - \"2021-10-19T07:32:02.6282717Z\"\n }" + string: "{\n \"name\": \"00db03a3-aaea-174b-ad8b-4a46a4b6c888\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:09:38.0666666Z\",\n \"endTime\": + \"2021-12-01T14:11:46.9309584Z\"\n }" headers: cache-control: - no-cache @@ -1481,7 +1347,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:32:09 GMT + - Wed, 01 Dec 2021 14:12:09 GMT expires: - '-1' pragma: @@ -1513,41 +1379,44 @@ interactions: ParameterSetName: - --resource-group --name --disable-public-fqdn User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestollfkqhqm-8ecadf\",\n \"azurePortalFQDN\": - \"c0099f28ef33ffcf77443b4666dd6250-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitestollfkqhqm-8ecadf-edca9286.865fb39c-758d-4bee-882a-40baca5d2a76.privatelink.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesty7en76o67-8ecadf\",\n \"azurePortalFQDN\": + \"bb0a282fd6be112e8b6fe3543da3ea4c-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliakstest-clitesty7en76o67-8ecadf-d1ade310.fe05503b-2fd8-41bc-8f9b-b41f461c58aa.privatelink.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/24cae00a-fef5-4c70-865f-63ed5e25bb92\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6d9b909c-2f2e-4f47-aa22-659092cbf482\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/privateLinkResources/management\",\n \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n @@ -1556,20 +1425,19 @@ interactions: false,\n \"privateClusterVersion\": \"v1\"\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Disabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4107' + - '4564' content-type: - application/json date: - - Tue, 19 Oct 2021 07:32:10 GMT + - Wed, 01 Dec 2021 14:12:09 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_using_azurecni_with_pod_identity_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_using_azurecni_with_pod_identity_enabled.yaml old mode 100755 new mode 100644 index 585afa557ec..cf919e9af34 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_using_azurecni_with_pod_identity_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_using_azurecni_with_pod_identity_enabled.yaml @@ -1,60 +1,18 @@ interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --enable-managed-identity --enable-pod-identity - --network-plugin --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:46:11Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '313' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 06:46:11 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestge4dhsaqu-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesthx4weyrqn-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "podIdentityProfile": - {"enabled": true}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": - {"networkPlugin": "azure", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "podIdentityProfile": {"enabled": + true, "allowNetworkPluginKubenet": false}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "azure", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -65,39 +23,40 @@ interactions: Connection: - keep-alive Content-Length: - - '1306' + - '1699' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestge4dhsaqu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthx4weyrqn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n @@ -106,22 +65,24 @@ interactions: \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"podIdentityProfile\": - {\n \"enabled\": true\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": + false\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6dc051b1-a3cf-4b49-978d-7f8e3c1be0eb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7f09fba-3294-4808-98c3-084c4192e6e1?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2886' + - '3338' content-type: - application/json date: - - Tue, 19 Oct 2021 06:46:14 GMT + - Wed, 01 Dec 2021 14:06:41 GMT expires: - '-1' pragma: @@ -133,7 +94,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -152,14 +113,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6dc051b1-a3cf-4b49-978d-7f8e3c1be0eb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7f09fba-3294-4808-98c3-084c4192e6e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b151c06d-cfa3-494b-978d-7f8e3c1be0eb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:46:15.2466666Z\"\n }" + string: "{\n \"name\": \"ba9ff0a7-9432-0848-98c3-084c4192e6e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:41.9733333Z\"\n }" headers: cache-control: - no-cache @@ -168,7 +129,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:46:45 GMT + - Wed, 01 Dec 2021 14:07:12 GMT expires: - '-1' pragma: @@ -201,14 +162,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6dc051b1-a3cf-4b49-978d-7f8e3c1be0eb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7f09fba-3294-4808-98c3-084c4192e6e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b151c06d-cfa3-494b-978d-7f8e3c1be0eb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:46:15.2466666Z\"\n }" + string: "{\n \"name\": \"ba9ff0a7-9432-0848-98c3-084c4192e6e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:41.9733333Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +178,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:47:15 GMT + - Wed, 01 Dec 2021 14:07:42 GMT expires: - '-1' pragma: @@ -250,14 +211,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6dc051b1-a3cf-4b49-978d-7f8e3c1be0eb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7f09fba-3294-4808-98c3-084c4192e6e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b151c06d-cfa3-494b-978d-7f8e3c1be0eb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:46:15.2466666Z\"\n }" + string: "{\n \"name\": \"ba9ff0a7-9432-0848-98c3-084c4192e6e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:41.9733333Z\"\n }" headers: cache-control: - no-cache @@ -266,7 +227,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:47:44 GMT + - Wed, 01 Dec 2021 14:08:12 GMT expires: - '-1' pragma: @@ -299,14 +260,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6dc051b1-a3cf-4b49-978d-7f8e3c1be0eb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7f09fba-3294-4808-98c3-084c4192e6e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b151c06d-cfa3-494b-978d-7f8e3c1be0eb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:46:15.2466666Z\"\n }" + string: "{\n \"name\": \"ba9ff0a7-9432-0848-98c3-084c4192e6e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:41.9733333Z\"\n }" headers: cache-control: - no-cache @@ -315,7 +276,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:48:14 GMT + - Wed, 01 Dec 2021 14:08:42 GMT expires: - '-1' pragma: @@ -348,14 +309,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6dc051b1-a3cf-4b49-978d-7f8e3c1be0eb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7f09fba-3294-4808-98c3-084c4192e6e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b151c06d-cfa3-494b-978d-7f8e3c1be0eb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:46:15.2466666Z\"\n }" + string: "{\n \"name\": \"ba9ff0a7-9432-0848-98c3-084c4192e6e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:41.9733333Z\"\n }" headers: cache-control: - no-cache @@ -364,7 +325,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:48:45 GMT + - Wed, 01 Dec 2021 14:09:12 GMT expires: - '-1' pragma: @@ -397,24 +358,24 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6dc051b1-a3cf-4b49-978d-7f8e3c1be0eb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7f09fba-3294-4808-98c3-084c4192e6e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b151c06d-cfa3-494b-978d-7f8e3c1be0eb\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:46:15.2466666Z\",\n \"endTime\": - \"2021-10-19T06:48:47.207183Z\"\n }" + string: "{\n \"name\": \"ba9ff0a7-9432-0848-98c3-084c4192e6e1\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:06:41.9733333Z\",\n \"endTime\": + \"2021-12-01T14:09:17.1068517Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 06:49:15 GMT + - Wed, 01 Dec 2021 14:09:42 GMT expires: - '-1' pragma: @@ -447,58 +408,61 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestge4dhsaqu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthx4weyrqn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fc8fdce-a5b3-4099-954f-e720e5a3f73d\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dceeb47b-7114-4c77-973c-b7ba09ec1556\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true\n },\n - \ \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": + false\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3549' + - '4001' content-type: - application/json date: - - Tue, 19 Oct 2021 06:49:15 GMT + - Wed, 01 Dec 2021 14:09:43 GMT expires: - '-1' pragma: @@ -530,58 +494,61 @@ interactions: ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestge4dhsaqu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthx4weyrqn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fc8fdce-a5b3-4099-954f-e720e5a3f73d\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dceeb47b-7114-4c77-973c-b7ba09ec1556\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true\n },\n - \ \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": + false\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3549' + - '4001' content-type: - application/json date: - - Tue, 19 Oct 2021 06:49:17 GMT + - Wed, 01 Dec 2021 14:09:44 GMT expires: - '-1' pragma: @@ -602,25 +569,26 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestge4dhsaqu-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitesthx4weyrqn-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": - "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser", "enableCSIProxy": true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": + "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser", "enableCSIProxy": + true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fc8fdce-a5b3-4099-954f-e720e5a3f73d"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dceeb47b-7114-4c77-973c-b7ba09ec1556"}]}, + "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": + {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -631,66 +599,68 @@ interactions: Connection: - keep-alive Content-Length: - - '2396' + - '2776' Content-Type: - application/json ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestge4dhsaqu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthx4weyrqn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fc8fdce-a5b3-4099-954f-e720e5a3f73d\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dceeb47b-7114-4c77-973c-b7ba09ec1556\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {},\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e0cc0bd-bce7-4564-87b5-55e2f90b3d0b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/274fb862-3ff0-4d51-b989-8870d34edd04?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3523' + - '3935' content-type: - application/json date: - - Tue, 19 Oct 2021 06:49:40 GMT + - Wed, 01 Dec 2021 14:09:48 GMT expires: - '-1' pragma: @@ -706,7 +676,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' status: code: 200 message: OK @@ -724,23 +694,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e0cc0bd-bce7-4564-87b5-55e2f90b3d0b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/274fb862-3ff0-4d51-b989-8870d34edd04?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bdc00c1e-e7bc-6445-87b5-55e2f90b3d0b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:49:40.39Z\"\n }" + string: "{\n \"name\": \"62b84f27-f03f-514d-b989-8870d34edd04\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:47.6133333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:50:09 GMT + - Wed, 01 Dec 2021 14:10:18 GMT expires: - '-1' pragma: @@ -772,24 +742,24 @@ interactions: ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e0cc0bd-bce7-4564-87b5-55e2f90b3d0b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/274fb862-3ff0-4d51-b989-8870d34edd04?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bdc00c1e-e7bc-6445-87b5-55e2f90b3d0b\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:49:40.39Z\",\n \"endTime\": - \"2021-10-19T06:50:33.3225178Z\"\n }" + string: "{\n \"name\": \"62b84f27-f03f-514d-b989-8870d34edd04\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:09:47.6133333Z\",\n \"endTime\": + \"2021-12-01T14:10:47.1808367Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 06:50:40 GMT + - Wed, 01 Dec 2021 14:10:48 GMT expires: - '-1' pragma: @@ -821,58 +791,60 @@ interactions: ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestge4dhsaqu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthx4weyrqn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fc8fdce-a5b3-4099-954f-e720e5a3f73d\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dceeb47b-7114-4c77-973c-b7ba09ec1556\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {},\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3525' + - '3937' content-type: - application/json date: - - Tue, 19 Oct 2021 06:50:40 GMT + - Wed, 01 Dec 2021 14:10:48 GMT expires: - '-1' pragma: @@ -904,58 +876,60 @@ interactions: ParameterSetName: - --resource-group --name --enable-pod-identity User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestge4dhsaqu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthx4weyrqn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fc8fdce-a5b3-4099-954f-e720e5a3f73d\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dceeb47b-7114-4c77-973c-b7ba09ec1556\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {},\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3525' + - '3937' content-type: - application/json date: - - Tue, 19 Oct 2021 06:50:41 GMT + - Wed, 01 Dec 2021 14:10:50 GMT expires: - '-1' pragma: @@ -976,26 +950,27 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestge4dhsaqu-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitesthx4weyrqn-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": - "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser", "enableCSIProxy": true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": + "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser", "enableCSIProxy": + true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": true, "userAssignedIdentities": [], "userAssignedIdentityExceptions": []}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fc8fdce-a5b3-4099-954f-e720e5a3f73d"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dceeb47b-7114-4c77-973c-b7ba09ec1556"}]}, + "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": + {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -1006,66 +981,69 @@ interactions: Connection: - keep-alive Content-Length: - - '2463' + - '2843' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-pod-identity User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestge4dhsaqu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthx4weyrqn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fc8fdce-a5b3-4099-954f-e720e5a3f73d\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dceeb47b-7114-4c77-973c-b7ba09ec1556\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true\n },\n - \ \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d63a5a42-3b19-4725-b40f-c60728b6cd27?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/39f38cfd-a827-406f-bf27-0f3b2e5b803e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3547' + - '3959' content-type: - application/json date: - - Tue, 19 Oct 2021 06:50:43 GMT + - Wed, 01 Dec 2021 14:10:54 GMT expires: - '-1' pragma: @@ -1081,7 +1059,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 200 message: OK @@ -1099,23 +1077,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-pod-identity User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d63a5a42-3b19-4725-b40f-c60728b6cd27?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/39f38cfd-a827-406f-bf27-0f3b2e5b803e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"425a3ad6-193b-2547-b40f-c60728b6cd27\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:50:43.56Z\"\n }" + string: "{\n \"name\": \"fd8cf339-27a8-6f40-bf27-0f3b2e5b803e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:10:53.1Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:51:13 GMT + - Wed, 01 Dec 2021 14:11:24 GMT expires: - '-1' pragma: @@ -1147,23 +1125,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-pod-identity User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d63a5a42-3b19-4725-b40f-c60728b6cd27?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/39f38cfd-a827-406f-bf27-0f3b2e5b803e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"425a3ad6-193b-2547-b40f-c60728b6cd27\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:50:43.56Z\"\n }" + string: "{\n \"name\": \"fd8cf339-27a8-6f40-bf27-0f3b2e5b803e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:10:53.1Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:51:43 GMT + - Wed, 01 Dec 2021 14:11:54 GMT expires: - '-1' pragma: @@ -1195,15 +1173,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-pod-identity User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d63a5a42-3b19-4725-b40f-c60728b6cd27?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/39f38cfd-a827-406f-bf27-0f3b2e5b803e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"425a3ad6-193b-2547-b40f-c60728b6cd27\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:50:43.56Z\",\n \"endTime\": - \"2021-10-19T06:52:01.132113Z\"\n }" + string: "{\n \"name\": \"fd8cf339-27a8-6f40-bf27-0f3b2e5b803e\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:10:53.1Z\",\n \"endTime\": + \"2021-12-01T14:11:55.6505074Z\"\n }" headers: cache-control: - no-cache @@ -1212,7 +1190,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:52:13 GMT + - Wed, 01 Dec 2021 14:12:24 GMT expires: - '-1' pragma: @@ -1244,58 +1222,61 @@ interactions: ParameterSetName: - --resource-group --name --enable-pod-identity User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestge4dhsaqu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthx4weyrqn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fc8fdce-a5b3-4099-954f-e720e5a3f73d\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dceeb47b-7114-4c77-973c-b7ba09ec1556\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true\n },\n - \ \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3549' + - '3961' content-type: - application/json date: - - Tue, 19 Oct 2021 06:52:14 GMT + - Wed, 01 Dec 2021 14:12:25 GMT expires: - '-1' pragma: @@ -1327,58 +1308,61 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestge4dhsaqu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthx4weyrqn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fc8fdce-a5b3-4099-954f-e720e5a3f73d\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dceeb47b-7114-4c77-973c-b7ba09ec1556\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true\n },\n - \ \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3549' + - '3961' content-type: - application/json date: - - Tue, 19 Oct 2021 06:52:15 GMT + - Wed, 01 Dec 2021 14:12:25 GMT expires: - '-1' pragma: @@ -1399,16 +1383,16 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestge4dhsaqu-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitesthx4weyrqn-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": - "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser", "enableCSIProxy": true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": + "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser", "enableCSIProxy": + true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": true, "userAssignedIdentities": [], "userAssignedIdentityExceptions": [{"name": "test-name", "namespace": "test-namespace", "podLabels": {"foo": "bar"}}]}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": @@ -1416,10 +1400,11 @@ interactions: "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fc8fdce-a5b3-4099-954f-e720e5a3f73d"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dceeb47b-7114-4c77-973c-b7ba09ec1556"}]}, + "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": + {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -1430,68 +1415,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2544' + - '2924' Content-Type: - application/json ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestge4dhsaqu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthx4weyrqn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fc8fdce-a5b3-4099-954f-e720e5a3f73d\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dceeb47b-7114-4c77-973c-b7ba09ec1556\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"userAssignedIdentityExceptions\": [\n {\n \"name\": \"test-name\",\n \"namespace\": \"test-namespace\",\n \ \"podLabels\": {\n \"foo\": \"bar\"\n }\n }\n ]\n - \ },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a732132b-3a69-4017-8e91-152b520dd0bb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79baf366-09b3-49be-ab6f-1e169f2e1ee4?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3721' + - '4133' content-type: - application/json date: - - Tue, 19 Oct 2021 06:52:18 GMT + - Wed, 01 Dec 2021 14:12:28 GMT expires: - '-1' pragma: @@ -1507,7 +1495,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' status: code: 200 message: OK @@ -1525,14 +1513,14 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a732132b-3a69-4017-8e91-152b520dd0bb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79baf366-09b3-49be-ab6f-1e169f2e1ee4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2b1332a7-693a-1740-8e91-152b520dd0bb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:52:19.0833333Z\"\n }" + string: "{\n \"name\": \"66f3ba79-b309-be49-ab6f-1e169f2e1ee4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:28.5066666Z\"\n }" headers: cache-control: - no-cache @@ -1541,7 +1529,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:52:49 GMT + - Wed, 01 Dec 2021 14:12:58 GMT expires: - '-1' pragma: @@ -1573,14 +1561,14 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a732132b-3a69-4017-8e91-152b520dd0bb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79baf366-09b3-49be-ab6f-1e169f2e1ee4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2b1332a7-693a-1740-8e91-152b520dd0bb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:52:19.0833333Z\"\n }" + string: "{\n \"name\": \"66f3ba79-b309-be49-ab6f-1e169f2e1ee4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:28.5066666Z\"\n }" headers: cache-control: - no-cache @@ -1589,7 +1577,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:53:18 GMT + - Wed, 01 Dec 2021 14:13:29 GMT expires: - '-1' pragma: @@ -1621,14 +1609,14 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a732132b-3a69-4017-8e91-152b520dd0bb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79baf366-09b3-49be-ab6f-1e169f2e1ee4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2b1332a7-693a-1740-8e91-152b520dd0bb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:52:19.0833333Z\"\n }" + string: "{\n \"name\": \"66f3ba79-b309-be49-ab6f-1e169f2e1ee4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:28.5066666Z\"\n }" headers: cache-control: - no-cache @@ -1637,7 +1625,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:53:49 GMT + - Wed, 01 Dec 2021 14:13:59 GMT expires: - '-1' pragma: @@ -1669,15 +1657,15 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a732132b-3a69-4017-8e91-152b520dd0bb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79baf366-09b3-49be-ab6f-1e169f2e1ee4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2b1332a7-693a-1740-8e91-152b520dd0bb\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:52:19.0833333Z\",\n \"endTime\": - \"2021-10-19T06:53:52.2341935Z\"\n }" + string: "{\n \"name\": \"66f3ba79-b309-be49-ab6f-1e169f2e1ee4\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:12:28.5066666Z\",\n \"endTime\": + \"2021-12-01T14:14:07.9321364Z\"\n }" headers: cache-control: - no-cache @@ -1686,7 +1674,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:54:18 GMT + - Wed, 01 Dec 2021 14:14:28 GMT expires: - '-1' pragma: @@ -1718,60 +1706,63 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestge4dhsaqu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthx4weyrqn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fc8fdce-a5b3-4099-954f-e720e5a3f73d\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dceeb47b-7114-4c77-973c-b7ba09ec1556\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"userAssignedIdentityExceptions\": [\n {\n \"name\": \"test-name\",\n \"namespace\": \"test-namespace\",\n \ \"podLabels\": {\n \"foo\": \"bar\"\n }\n }\n ]\n - \ },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3723' + - '4135' content-type: - application/json date: - - Tue, 19 Oct 2021 06:54:19 GMT + - Wed, 01 Dec 2021 14:14:29 GMT expires: - '-1' pragma: @@ -1803,60 +1794,63 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestge4dhsaqu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthx4weyrqn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fc8fdce-a5b3-4099-954f-e720e5a3f73d\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dceeb47b-7114-4c77-973c-b7ba09ec1556\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"userAssignedIdentityExceptions\": [\n {\n \"name\": \"test-name\",\n \"namespace\": \"test-namespace\",\n \ \"podLabels\": {\n \"foo\": \"bar\"\n }\n }\n ]\n - \ },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3723' + - '4135' content-type: - application/json date: - - Tue, 19 Oct 2021 06:54:20 GMT + - Wed, 01 Dec 2021 14:14:30 GMT expires: - '-1' pragma: @@ -1877,16 +1871,16 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestge4dhsaqu-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitesthx4weyrqn-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": - "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser", "enableCSIProxy": true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": + "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser", "enableCSIProxy": + true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": true, "userAssignedIdentities": [], "userAssignedIdentityExceptions": [{"name": "test-name", "namespace": "test-namespace", "podLabels": {"foo": "bar", "a": "b"}}]}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", @@ -1894,10 +1888,11 @@ interactions: "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fc8fdce-a5b3-4099-954f-e720e5a3f73d"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dceeb47b-7114-4c77-973c-b7ba09ec1556"}]}, + "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": + {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -1908,68 +1903,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2554' + - '2934' Content-Type: - application/json ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestge4dhsaqu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthx4weyrqn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fc8fdce-a5b3-4099-954f-e720e5a3f73d\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dceeb47b-7114-4c77-973c-b7ba09ec1556\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"userAssignedIdentityExceptions\": [\n {\n \"name\": \"test-name\",\n \"namespace\": \"test-namespace\",\n \ \"podLabels\": {\n \"a\": \"b\",\n \"foo\": \"bar\"\n }\n - \ }\n ]\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n ]\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7774ca15-cfc5-474a-8b7c-d205dfd1ab56?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/65a4bc86-8797-4447-ad21-2cbfc5cc90a4?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3738' + - '4150' content-type: - application/json date: - - Tue, 19 Oct 2021 06:54:23 GMT + - Wed, 01 Dec 2021 14:14:33 GMT expires: - '-1' pragma: @@ -1985,7 +1983,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' status: code: 200 message: OK @@ -2003,23 +2001,23 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7774ca15-cfc5-474a-8b7c-d205dfd1ab56?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/65a4bc86-8797-4447-ad21-2cbfc5cc90a4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"15ca7477-c5cf-4a47-8b7c-d205dfd1ab56\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:54:23.1033333Z\"\n }" + string: "{\n \"name\": \"86bca465-9787-4744-ad21-2cbfc5cc90a4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:33.25Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:54:53 GMT + - Wed, 01 Dec 2021 14:15:03 GMT expires: - '-1' pragma: @@ -2051,23 +2049,23 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7774ca15-cfc5-474a-8b7c-d205dfd1ab56?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/65a4bc86-8797-4447-ad21-2cbfc5cc90a4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"15ca7477-c5cf-4a47-8b7c-d205dfd1ab56\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:54:23.1033333Z\"\n }" + string: "{\n \"name\": \"86bca465-9787-4744-ad21-2cbfc5cc90a4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:33.25Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:55:22 GMT + - Wed, 01 Dec 2021 14:15:34 GMT expires: - '-1' pragma: @@ -2099,24 +2097,24 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7774ca15-cfc5-474a-8b7c-d205dfd1ab56?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/65a4bc86-8797-4447-ad21-2cbfc5cc90a4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"15ca7477-c5cf-4a47-8b7c-d205dfd1ab56\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:54:23.1033333Z\",\n \"endTime\": - \"2021-10-19T06:55:23.6694454Z\"\n }" + string: "{\n \"name\": \"86bca465-9787-4744-ad21-2cbfc5cc90a4\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:14:33.25Z\",\n \"endTime\": + \"2021-12-01T14:15:43.5895622Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Tue, 19 Oct 2021 06:55:52 GMT + - Wed, 01 Dec 2021 14:16:03 GMT expires: - '-1' pragma: @@ -2148,60 +2146,63 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestge4dhsaqu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthx4weyrqn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fc8fdce-a5b3-4099-954f-e720e5a3f73d\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dceeb47b-7114-4c77-973c-b7ba09ec1556\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"userAssignedIdentityExceptions\": [\n {\n \"name\": \"test-name\",\n \"namespace\": \"test-namespace\",\n \ \"podLabels\": {\n \"a\": \"b\",\n \"foo\": \"bar\"\n }\n - \ }\n ]\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n ]\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3740' + - '4152' content-type: - application/json date: - - Tue, 19 Oct 2021 06:55:52 GMT + - Wed, 01 Dec 2021 14:16:04 GMT expires: - '-1' pragma: @@ -2233,60 +2234,63 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestge4dhsaqu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthx4weyrqn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fc8fdce-a5b3-4099-954f-e720e5a3f73d\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dceeb47b-7114-4c77-973c-b7ba09ec1556\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"userAssignedIdentityExceptions\": [\n {\n \"name\": \"test-name\",\n \"namespace\": \"test-namespace\",\n \ \"podLabels\": {\n \"a\": \"b\",\n \"foo\": \"bar\"\n }\n - \ }\n ]\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n ]\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3740' + - '4152' content-type: - application/json date: - - Tue, 19 Oct 2021 06:55:53 GMT + - Wed, 01 Dec 2021 14:16:05 GMT expires: - '-1' pragma: @@ -2307,26 +2311,27 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestge4dhsaqu-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitesthx4weyrqn-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": - "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser", "enableCSIProxy": true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": + "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser", "enableCSIProxy": + true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": true, "userAssignedIdentities": [], "userAssignedIdentityExceptions": []}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fc8fdce-a5b3-4099-954f-e720e5a3f73d"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dceeb47b-7114-4c77-973c-b7ba09ec1556"}]}, + "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": + {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -2337,66 +2342,69 @@ interactions: Connection: - keep-alive Content-Length: - - '2463' + - '2843' Content-Type: - application/json ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestge4dhsaqu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthx4weyrqn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fc8fdce-a5b3-4099-954f-e720e5a3f73d\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dceeb47b-7114-4c77-973c-b7ba09ec1556\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true\n },\n - \ \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0ebeb12-55c5-4bf1-a60e-fe54ced8db95?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ca8e5a5-2c93-4e29-bdc1-525a50760f8e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3547' + - '3959' content-type: - application/json date: - - Tue, 19 Oct 2021 06:55:55 GMT + - Wed, 01 Dec 2021 14:16:09 GMT expires: - '-1' pragma: @@ -2430,71 +2438,23 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0ebeb12-55c5-4bf1-a60e-fe54ced8db95?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"12ebebb0-c555-f14b-a60e-fe54ced8db95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:55:56.25Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 06:56:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks pod-identity exception delete - Connection: - - keep-alive - ParameterSetName: - - --cluster-name --resource-group --namespace --name - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0ebeb12-55c5-4bf1-a60e-fe54ced8db95?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ca8e5a5-2c93-4e29-bdc1-525a50760f8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"12ebebb0-c555-f14b-a60e-fe54ced8db95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:55:56.25Z\"\n }" + string: "{\n \"name\": \"a5e5a89c-932c-294e-bdc1-525a50760f8e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:16:09.2766666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:56 GMT + - Wed, 01 Dec 2021 14:16:40 GMT expires: - '-1' pragma: @@ -2526,24 +2486,24 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0ebeb12-55c5-4bf1-a60e-fe54ced8db95?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ca8e5a5-2c93-4e29-bdc1-525a50760f8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"12ebebb0-c555-f14b-a60e-fe54ced8db95\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:55:56.25Z\",\n \"endTime\": - \"2021-10-19T06:57:00.9389546Z\"\n }" + string: "{\n \"name\": \"a5e5a89c-932c-294e-bdc1-525a50760f8e\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:16:09.2766666Z\",\n \"endTime\": + \"2021-12-01T14:17:05.0887883Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 06:57:25 GMT + - Wed, 01 Dec 2021 14:17:10 GMT expires: - '-1' pragma: @@ -2575,58 +2535,61 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestge4dhsaqu-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestge4dhsaqu-8ecadf-0569cc8d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthx4weyrqn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthx4weyrqn-8ecadf-502d435c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fc8fdce-a5b3-4099-954f-e720e5a3f73d\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dceeb47b-7114-4c77-973c-b7ba09ec1556\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true\n },\n - \ \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3549' + - '3961' content-type: - application/json date: - - Tue, 19 Oct 2021 06:57:26 GMT + - Wed, 01 Dec 2021 14:17:10 GMT expires: - '-1' pragma: @@ -2660,8 +2623,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -2669,17 +2632,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/252dd0ed-2f09-40c3-8146-db595f5c1b17?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e59f013-4a31-47d4-a32b-946cc35146e2?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 06:57:28 GMT + - Wed, 01 Dec 2021 14:17:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/252dd0ed-2f09-40c3-8146-db595f5c1b17?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/9e59f013-4a31-47d4-a32b-946cc35146e2?api-version=2016-03-30 pragma: - no-cache server: @@ -2689,7 +2652,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ahub.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ahub.yaml old mode 100755 new mode 100644 index 7bd49fcd2d9..e1d464c70b0 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ahub.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ahub.yaml @@ -1,60 +1,17 @@ interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username - --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin - --enable-ahub --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:54:02Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '313' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 06:54:03 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", - "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": - false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": - -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser1", "adminPassword": "replace-Password1234$", "licenseType": "Windows_Server"}, - "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": + "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": + "replace-Password1234$", "licenseType": "Windows_Server"}, "addonProfiles": + {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "azure", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' headers: @@ -67,7 +24,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1373' + - '1730' Content-Type: - application/json ParameterSetName: @@ -75,31 +32,32 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-f44772a6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-f44772a6.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-413eeee7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-413eeee7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"Windows_Server\",\n \ \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n @@ -108,22 +66,23 @@ interactions: \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e1612a6-1645-43a9-b8b4-11331b79355e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/31126b80-0667-41fb-b662-09ca82b07b2e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2817' + - '3229' content-type: - application/json date: - - Tue, 19 Oct 2021 06:54:06 GMT + - Wed, 01 Dec 2021 14:02:32 GMT expires: - '-1' pragma: @@ -135,7 +94,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 201 message: Created @@ -155,23 +114,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e1612a6-1645-43a9-b8b4-11331b79355e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/31126b80-0667-41fb-b662-09ca82b07b2e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a612168e-4516-a943-b8b4-11331b79355e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:54:07.07Z\"\n }" + string: "{\n \"name\": \"806b1231-6706-fb41-b662-09ca82b07b2e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:32.5266666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:54:36 GMT + - Wed, 01 Dec 2021 14:03:02 GMT expires: - '-1' pragma: @@ -205,23 +164,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e1612a6-1645-43a9-b8b4-11331b79355e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/31126b80-0667-41fb-b662-09ca82b07b2e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a612168e-4516-a943-b8b4-11331b79355e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:54:07.07Z\"\n }" + string: "{\n \"name\": \"806b1231-6706-fb41-b662-09ca82b07b2e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:32.5266666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:55:07 GMT + - Wed, 01 Dec 2021 14:03:32 GMT expires: - '-1' pragma: @@ -255,23 +214,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e1612a6-1645-43a9-b8b4-11331b79355e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/31126b80-0667-41fb-b662-09ca82b07b2e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a612168e-4516-a943-b8b4-11331b79355e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:54:07.07Z\"\n }" + string: "{\n \"name\": \"806b1231-6706-fb41-b662-09ca82b07b2e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:32.5266666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:55:36 GMT + - Wed, 01 Dec 2021 14:04:03 GMT expires: - '-1' pragma: @@ -305,23 +264,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e1612a6-1645-43a9-b8b4-11331b79355e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/31126b80-0667-41fb-b662-09ca82b07b2e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a612168e-4516-a943-b8b4-11331b79355e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:54:07.07Z\"\n }" + string: "{\n \"name\": \"806b1231-6706-fb41-b662-09ca82b07b2e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:32.5266666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:06 GMT + - Wed, 01 Dec 2021 14:04:33 GMT expires: - '-1' pragma: @@ -355,23 +314,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e1612a6-1645-43a9-b8b4-11331b79355e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/31126b80-0667-41fb-b662-09ca82b07b2e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a612168e-4516-a943-b8b4-11331b79355e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:54:07.07Z\"\n }" + string: "{\n \"name\": \"806b1231-6706-fb41-b662-09ca82b07b2e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:32.5266666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:37 GMT + - Wed, 01 Dec 2021 14:05:03 GMT expires: - '-1' pragma: @@ -405,24 +364,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e1612a6-1645-43a9-b8b4-11331b79355e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/31126b80-0667-41fb-b662-09ca82b07b2e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a612168e-4516-a943-b8b4-11331b79355e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:54:07.07Z\",\n \"endTime\": - \"2021-10-19T06:56:39.7067915Z\"\n }" + string: "{\n \"name\": \"806b1231-6706-fb41-b662-09ca82b07b2e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:32.5266666Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:57:06 GMT + - Wed, 01 Dec 2021 14:05:33 GMT expires: - '-1' pragma: @@ -456,56 +414,110 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/31126b80-0667-41fb-b662-09ca82b07b2e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"806b1231-6706-fb41-b662-09ca82b07b2e\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:02:32.5266666Z\",\n \"endTime\": + \"2021-12-01T14:05:37.2615048Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:06:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --enable-ahub --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-f44772a6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-f44772a6.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-413eeee7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-413eeee7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"Windows_Server\",\n \ \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9fb5badf-dc2a-4c29-80df-b6faa00d2841\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/66b5a625-7bd8-48f7-b0a4-831b143c01ee\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3480' + - '3892' content-type: - application/json date: - - Tue, 19 Oct 2021 06:57:07 GMT + - Wed, 01 Dec 2021 14:06:04 GMT expires: - '-1' pragma: @@ -537,10 +549,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-10-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -548,22 +560,22 @@ interactions: \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n \"enableFIPS\": false\n - \ }\n }\n ]\n }" + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '973' + - '1006' content-type: - application/json date: - - Tue, 19 Oct 2021 06:57:07 GMT + - Wed, 01 Dec 2021 14:06:04 GMT expires: - '-1' pragma: @@ -603,10 +615,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -618,11 +630,11 @@ interactions: \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2300.211110\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d63fc81f-ff15-45da-8f60-abb808974b12?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0d25e46-584c-4f03-b8c2-2cc49b855f0d?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -630,7 +642,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:57:10 GMT + - Wed, 01 Dec 2021 14:06:07 GMT expires: - '-1' pragma: @@ -642,7 +654,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -660,62 +672,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d63fc81f-ff15-45da-8f60-abb808974b12?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"1fc83fd6-15ff-da45-8f60-abb808974b12\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:57:10.59Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 06:57:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --os-type --node-count - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d63fc81f-ff15-45da-8f60-abb808974b12?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0d25e46-584c-4f03-b8c2-2cc49b855f0d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fc83fd6-15ff-da45-8f60-abb808974b12\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:57:10.59Z\"\n }" + string: "{\n \"name\": \"465ed2b0-4c58-034f-b8c2-2cc49b855f0d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:08.13Z\"\n }" headers: cache-control: - no-cache @@ -724,7 +688,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:58:10 GMT + - Wed, 01 Dec 2021 14:06:38 GMT expires: - '-1' pragma: @@ -756,14 +720,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d63fc81f-ff15-45da-8f60-abb808974b12?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0d25e46-584c-4f03-b8c2-2cc49b855f0d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fc83fd6-15ff-da45-8f60-abb808974b12\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:57:10.59Z\"\n }" + string: "{\n \"name\": \"465ed2b0-4c58-034f-b8c2-2cc49b855f0d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:08.13Z\"\n }" headers: cache-control: - no-cache @@ -772,7 +736,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:58:40 GMT + - Wed, 01 Dec 2021 14:07:08 GMT expires: - '-1' pragma: @@ -804,14 +768,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d63fc81f-ff15-45da-8f60-abb808974b12?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0d25e46-584c-4f03-b8c2-2cc49b855f0d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fc83fd6-15ff-da45-8f60-abb808974b12\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:57:10.59Z\"\n }" + string: "{\n \"name\": \"465ed2b0-4c58-034f-b8c2-2cc49b855f0d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:08.13Z\"\n }" headers: cache-control: - no-cache @@ -820,7 +784,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:59:10 GMT + - Wed, 01 Dec 2021 14:07:37 GMT expires: - '-1' pragma: @@ -852,14 +816,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d63fc81f-ff15-45da-8f60-abb808974b12?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0d25e46-584c-4f03-b8c2-2cc49b855f0d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fc83fd6-15ff-da45-8f60-abb808974b12\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:57:10.59Z\"\n }" + string: "{\n \"name\": \"465ed2b0-4c58-034f-b8c2-2cc49b855f0d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:08.13Z\"\n }" headers: cache-control: - no-cache @@ -868,7 +832,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:59:40 GMT + - Wed, 01 Dec 2021 14:08:08 GMT expires: - '-1' pragma: @@ -900,14 +864,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d63fc81f-ff15-45da-8f60-abb808974b12?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0d25e46-584c-4f03-b8c2-2cc49b855f0d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fc83fd6-15ff-da45-8f60-abb808974b12\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:57:10.59Z\"\n }" + string: "{\n \"name\": \"465ed2b0-4c58-034f-b8c2-2cc49b855f0d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:08.13Z\"\n }" headers: cache-control: - no-cache @@ -916,7 +880,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:00:11 GMT + - Wed, 01 Dec 2021 14:08:38 GMT expires: - '-1' pragma: @@ -948,14 +912,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d63fc81f-ff15-45da-8f60-abb808974b12?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0d25e46-584c-4f03-b8c2-2cc49b855f0d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fc83fd6-15ff-da45-8f60-abb808974b12\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:57:10.59Z\"\n }" + string: "{\n \"name\": \"465ed2b0-4c58-034f-b8c2-2cc49b855f0d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:08.13Z\"\n }" headers: cache-control: - no-cache @@ -964,7 +928,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:00:40 GMT + - Wed, 01 Dec 2021 14:09:08 GMT expires: - '-1' pragma: @@ -996,14 +960,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d63fc81f-ff15-45da-8f60-abb808974b12?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0d25e46-584c-4f03-b8c2-2cc49b855f0d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fc83fd6-15ff-da45-8f60-abb808974b12\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:57:10.59Z\"\n }" + string: "{\n \"name\": \"465ed2b0-4c58-034f-b8c2-2cc49b855f0d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:08.13Z\"\n }" headers: cache-control: - no-cache @@ -1012,7 +976,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:10 GMT + - Wed, 01 Dec 2021 14:09:38 GMT expires: - '-1' pragma: @@ -1044,14 +1008,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d63fc81f-ff15-45da-8f60-abb808974b12?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0d25e46-584c-4f03-b8c2-2cc49b855f0d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fc83fd6-15ff-da45-8f60-abb808974b12\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:57:10.59Z\"\n }" + string: "{\n \"name\": \"465ed2b0-4c58-034f-b8c2-2cc49b855f0d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:08.13Z\"\n }" headers: cache-control: - no-cache @@ -1060,7 +1024,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:40 GMT + - Wed, 01 Dec 2021 14:10:09 GMT expires: - '-1' pragma: @@ -1092,14 +1056,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d63fc81f-ff15-45da-8f60-abb808974b12?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0d25e46-584c-4f03-b8c2-2cc49b855f0d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fc83fd6-15ff-da45-8f60-abb808974b12\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:57:10.59Z\"\n }" + string: "{\n \"name\": \"465ed2b0-4c58-034f-b8c2-2cc49b855f0d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:08.13Z\"\n }" headers: cache-control: - no-cache @@ -1108,7 +1072,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:02:11 GMT + - Wed, 01 Dec 2021 14:10:39 GMT expires: - '-1' pragma: @@ -1140,14 +1104,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d63fc81f-ff15-45da-8f60-abb808974b12?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0d25e46-584c-4f03-b8c2-2cc49b855f0d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fc83fd6-15ff-da45-8f60-abb808974b12\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:57:10.59Z\"\n }" + string: "{\n \"name\": \"465ed2b0-4c58-034f-b8c2-2cc49b855f0d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:08.13Z\"\n }" headers: cache-control: - no-cache @@ -1156,7 +1120,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:02:41 GMT + - Wed, 01 Dec 2021 14:11:09 GMT expires: - '-1' pragma: @@ -1188,15 +1152,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d63fc81f-ff15-45da-8f60-abb808974b12?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0d25e46-584c-4f03-b8c2-2cc49b855f0d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fc83fd6-15ff-da45-8f60-abb808974b12\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:57:10.59Z\",\n \"endTime\": - \"2021-10-19T07:03:05.0245811Z\"\n }" + string: "{\n \"name\": \"465ed2b0-4c58-034f-b8c2-2cc49b855f0d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:06:08.13Z\",\n \"endTime\": + \"2021-12-01T14:11:32.1400544Z\"\n }" headers: cache-control: - no-cache @@ -1205,7 +1169,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:03:10 GMT + - Wed, 01 Dec 2021 14:11:39 GMT expires: - '-1' pragma: @@ -1237,10 +1201,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1252,7 +1216,7 @@ interactions: \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2300.211110\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: @@ -1262,7 +1226,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:03:11 GMT + - Wed, 01 Dec 2021 14:11:40 GMT expires: - '-1' pragma: @@ -1294,65 +1258,68 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-f44772a6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-f44772a6.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-413eeee7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-413eeee7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ },\n {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": + \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n + \ \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n + \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": + \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2300.211110\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"Windows_Server\",\n \ \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9fb5badf-dc2a-4c29-80df-b6faa00d2841\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/66b5a625-7bd8-48f7-b0a4-831b143c01ee\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4178' + - '4590' content-type: - application/json date: - - Tue, 19 Oct 2021 07:03:12 GMT + - Wed, 01 Dec 2021 14:11:40 GMT expires: - '-1' pragma: @@ -1375,9 +1342,9 @@ interactions: {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": - "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "type": - "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.20.9", - "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}, {"count": 1, "vmSize": "Standard_D2s_v3", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": @@ -1385,18 +1352,19 @@ interactions: "User", "orchestratorVersion": "1.20.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "npwin"}], "linuxProfile": - {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser1", "licenseType": "None", "enableCSIProxy": true}, "servicePrincipalProfile": - {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", - "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "licenseType": + "None", "enableCSIProxy": true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9fb5badf-dc2a-4c29-80df-b6faa00d2841"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/66b5a625-7bd8-48f7-b0a4-831b143c01ee"}]}, + "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": + {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -1407,73 +1375,76 @@ interactions: Connection: - keep-alive Content-Length: - - '2839' + - '3219' Content-Type: - application/json ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-f44772a6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-f44772a6.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-413eeee7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-413eeee7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Updating\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ },\n {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": + \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n + \ \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n + \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": + \"Delete\",\n \"provisioningState\": \"Updating\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2300.211110\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"None\",\n \ \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9fb5badf-dc2a-4c29-80df-b6faa00d2841\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/66b5a625-7bd8-48f7-b0a4-831b143c01ee\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4165' + - '4577' content-type: - application/json date: - - Tue, 19 Oct 2021 07:03:14 GMT + - Wed, 01 Dec 2021 14:11:44 GMT expires: - '-1' pragma: @@ -1489,7 +1460,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 200 message: OK @@ -1507,23 +1478,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:03:44 GMT + - Wed, 01 Dec 2021 14:12:15 GMT expires: - '-1' pragma: @@ -1555,23 +1526,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:04:15 GMT + - Wed, 01 Dec 2021 14:12:45 GMT expires: - '-1' pragma: @@ -1603,23 +1574,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:04:45 GMT + - Wed, 01 Dec 2021 14:13:15 GMT expires: - '-1' pragma: @@ -1651,23 +1622,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:05:15 GMT + - Wed, 01 Dec 2021 14:13:45 GMT expires: - '-1' pragma: @@ -1699,23 +1670,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:05:44 GMT + - Wed, 01 Dec 2021 14:14:15 GMT expires: - '-1' pragma: @@ -1747,23 +1718,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:15 GMT + - Wed, 01 Dec 2021 14:14:45 GMT expires: - '-1' pragma: @@ -1795,23 +1766,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:45 GMT + - Wed, 01 Dec 2021 14:15:16 GMT expires: - '-1' pragma: @@ -1843,23 +1814,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:07:15 GMT + - Wed, 01 Dec 2021 14:15:46 GMT expires: - '-1' pragma: @@ -1891,23 +1862,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:07:45 GMT + - Wed, 01 Dec 2021 14:16:15 GMT expires: - '-1' pragma: @@ -1939,23 +1910,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:08:15 GMT + - Wed, 01 Dec 2021 14:16:46 GMT expires: - '-1' pragma: @@ -1987,23 +1958,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:08:45 GMT + - Wed, 01 Dec 2021 14:17:16 GMT expires: - '-1' pragma: @@ -2035,23 +2006,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:09:15 GMT + - Wed, 01 Dec 2021 14:17:47 GMT expires: - '-1' pragma: @@ -2083,23 +2054,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:09:46 GMT + - Wed, 01 Dec 2021 14:18:17 GMT expires: - '-1' pragma: @@ -2131,23 +2102,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:15 GMT + - Wed, 01 Dec 2021 14:18:47 GMT expires: - '-1' pragma: @@ -2179,23 +2150,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:45 GMT + - Wed, 01 Dec 2021 14:19:17 GMT expires: - '-1' pragma: @@ -2227,23 +2198,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:11:15 GMT + - Wed, 01 Dec 2021 14:19:47 GMT expires: - '-1' pragma: @@ -2275,23 +2246,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:11:46 GMT + - Wed, 01 Dec 2021 14:20:17 GMT expires: - '-1' pragma: @@ -2323,23 +2294,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:12:16 GMT + - Wed, 01 Dec 2021 14:20:47 GMT expires: - '-1' pragma: @@ -2371,23 +2342,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:12:45 GMT + - Wed, 01 Dec 2021 14:21:18 GMT expires: - '-1' pragma: @@ -2419,23 +2390,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:13:15 GMT + - Wed, 01 Dec 2021 14:21:48 GMT expires: - '-1' pragma: @@ -2467,23 +2438,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:13:46 GMT + - Wed, 01 Dec 2021 14:22:18 GMT expires: - '-1' pragma: @@ -2515,23 +2486,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:14:16 GMT + - Wed, 01 Dec 2021 14:22:48 GMT expires: - '-1' pragma: @@ -2563,23 +2534,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:14:45 GMT + - Wed, 01 Dec 2021 14:23:19 GMT expires: - '-1' pragma: @@ -2611,23 +2582,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:15:16 GMT + - Wed, 01 Dec 2021 14:23:49 GMT expires: - '-1' pragma: @@ -2659,23 +2630,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:15:46 GMT + - Wed, 01 Dec 2021 14:24:19 GMT expires: - '-1' pragma: @@ -2707,23 +2678,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 07:16:16 GMT + - Wed, 01 Dec 2021 14:24:50 GMT expires: - '-1' pragma: @@ -2755,24 +2726,24 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/782af28d-ae96-4634-b307-c435b96fc82b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11e9c7be-a6ac-4c67-9e84-67728d6852b8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8df22a78-96ae-3446-b307-c435b96fc82b\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:03:15.1633333Z\",\n \"endTime\": - \"2021-10-19T07:16:32.0637253Z\"\n }" + string: "{\n \"name\": \"bec7e911-aca6-674c-9e84-67728d6852b8\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:11:44.6Z\",\n \"endTime\": + \"2021-12-01T14:25:13.4282911Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '164' content-type: - application/json date: - - Tue, 19 Oct 2021 07:16:46 GMT + - Wed, 01 Dec 2021 14:25:20 GMT expires: - '-1' pragma: @@ -2804,65 +2775,68 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-f44772a6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-f44772a6.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-413eeee7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-413eeee7.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ },\n {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": + \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n + \ \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n + \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": + \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2300.211110\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"None\",\n \ \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9fb5badf-dc2a-4c29-80df-b6faa00d2841\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/66b5a625-7bd8-48f7-b0a4-831b143c01ee\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4168' + - '4580' content-type: - application/json date: - - Tue, 19 Oct 2021 07:16:46 GMT + - Wed, 01 Dec 2021 14:25:20 GMT expires: - '-1' pragma: @@ -2894,10 +2868,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-10-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -2905,13 +2879,13 @@ interactions: \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n \"enableFIPS\": false\n - \ }\n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false\n }\n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": @@ -2921,17 +2895,17 @@ interactions: \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": - \"AKSWindows-2019-17763.2213.210922\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + \"AKSWindows-2019-17763.2300.211110\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1948' + - '1981' content-type: - application/json date: - - Tue, 19 Oct 2021 07:16:47 GMT + - Wed, 01 Dec 2021 14:25:21 GMT expires: - '-1' pragma: @@ -2965,26 +2939,26 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f347760e-f160-46ad-89e2-6d08e3bc2691?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e367ca65-b93e-4106-87b2-0b8c5cb708b3?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 07:16:48 GMT + - Wed, 01 Dec 2021 14:25:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/f347760e-f160-46ad-89e2-6d08e3bc2691?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/e367ca65-b93e-4106-87b2-0b8c5cb708b3?api-version=2016-03-30 pragma: - no-cache server: @@ -2994,7 +2968,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14993' + - '14997' status: code: 202 message: Accepted @@ -3014,8 +2988,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-07-01 response: @@ -3023,17 +2997,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/754eaf9e-bc0b-484e-8ad0-9ba009d64dd5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/81c67eaa-b7d3-47b3-9b1b-299008c1abc2?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 07:16:49 GMT + - Wed, 01 Dec 2021 14:25:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/754eaf9e-bc0b-484e-8ad0-9ba009d64dd5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/81c67eaa-b7d3-47b3-9b1b-299008c1abc2?api-version=2016-03-30 pragma: - no-cache server: @@ -3043,7 +3017,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14996' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_auto_upgrade_channel.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_auto_upgrade_channel.yaml old mode 100755 new mode 100644 index c8a8b61e2e2..d72a1b7092c --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_auto_upgrade_channel.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_auto_upgrade_channel.yaml @@ -1,62 +1,19 @@ interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel - --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:49:06Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '313' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 06:49:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestxwh44pcaj-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestjfitvdq4p-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "autoUpgradeProfile": {"upgradeChannel": "rapid"}, "disableLocalAccounts": - false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "autoUpgradeProfile": {"upgradeChannel": "rapid"}, "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -67,39 +24,40 @@ interactions: Connection: - keep-alive Content-Length: - - '1442' + - '1799' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestxwh44pcaj-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestxwh44pcaj-8ecadf-b71a9fce.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestxwh44pcaj-8ecadf-b71a9fce.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestjfitvdq4p-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestjfitvdq4p-8ecadf-4f8d5929.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestjfitvdq4p-8ecadf-4f8d5929.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -107,23 +65,24 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"autoUpgradeProfile\": - {\n \"upgradeChannel\": \"rapid\"\n },\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"autoUpgradeProfile\": {\n \"upgradeChannel\": + \"rapid\"\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08a44d44-7b7e-48f6-9545-bdad723b135f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f69d4828-4d8e-4b7f-8366-1a36887aff5f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2841' + - '3299' content-type: - application/json date: - - Tue, 19 Oct 2021 06:49:10 GMT + - Wed, 01 Dec 2021 15:24:09 GMT expires: - '-1' pragma: @@ -135,7 +94,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 201 message: Created @@ -154,72 +113,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08a44d44-7b7e-48f6-9545-bdad723b135f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f69d4828-4d8e-4b7f-8366-1a36887aff5f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"444da408-7e7b-f648-9545-bdad723b135f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:49:10.4633333Z\"\n }" + string: "{\n \"name\": \"28489df6-8e4d-7f4b-8366-1a36887aff5f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:24:09.91Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 06:49:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel - --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08a44d44-7b7e-48f6-9545-bdad723b135f?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"444da408-7e7b-f648-9545-bdad723b135f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:49:10.4633333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:50:09 GMT + - Wed, 01 Dec 2021 15:24:40 GMT expires: - '-1' pragma: @@ -252,23 +162,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08a44d44-7b7e-48f6-9545-bdad723b135f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f69d4828-4d8e-4b7f-8366-1a36887aff5f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"444da408-7e7b-f648-9545-bdad723b135f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:49:10.4633333Z\"\n }" + string: "{\n \"name\": \"28489df6-8e4d-7f4b-8366-1a36887aff5f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:24:09.91Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:50:40 GMT + - Wed, 01 Dec 2021 15:25:10 GMT expires: - '-1' pragma: @@ -301,23 +211,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08a44d44-7b7e-48f6-9545-bdad723b135f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f69d4828-4d8e-4b7f-8366-1a36887aff5f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"444da408-7e7b-f648-9545-bdad723b135f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:49:10.4633333Z\"\n }" + string: "{\n \"name\": \"28489df6-8e4d-7f4b-8366-1a36887aff5f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:24:09.91Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:51:10 GMT + - Wed, 01 Dec 2021 15:25:40 GMT expires: - '-1' pragma: @@ -350,23 +260,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08a44d44-7b7e-48f6-9545-bdad723b135f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f69d4828-4d8e-4b7f-8366-1a36887aff5f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"444da408-7e7b-f648-9545-bdad723b135f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:49:10.4633333Z\"\n }" + string: "{\n \"name\": \"28489df6-8e4d-7f4b-8366-1a36887aff5f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:24:09.91Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:51:40 GMT + - Wed, 01 Dec 2021 15:26:10 GMT expires: - '-1' pragma: @@ -399,23 +309,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08a44d44-7b7e-48f6-9545-bdad723b135f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f69d4828-4d8e-4b7f-8366-1a36887aff5f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"444da408-7e7b-f648-9545-bdad723b135f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:49:10.4633333Z\"\n }" + string: "{\n \"name\": \"28489df6-8e4d-7f4b-8366-1a36887aff5f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:24:09.91Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:52:10 GMT + - Wed, 01 Dec 2021 15:26:40 GMT expires: - '-1' pragma: @@ -448,24 +358,24 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08a44d44-7b7e-48f6-9545-bdad723b135f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f69d4828-4d8e-4b7f-8366-1a36887aff5f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"444da408-7e7b-f648-9545-bdad723b135f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:49:10.4633333Z\",\n \"endTime\": - \"2021-10-19T06:52:19.3904039Z\"\n }" + string: "{\n \"name\": \"28489df6-8e4d-7f4b-8366-1a36887aff5f\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:24:09.91Z\",\n \"endTime\": + \"2021-12-01T15:26:43.9238821Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Tue, 19 Oct 2021 06:52:41 GMT + - Wed, 01 Dec 2021 15:27:10 GMT expires: - '-1' pragma: @@ -498,58 +408,61 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestxwh44pcaj-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestxwh44pcaj-8ecadf-b71a9fce.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestxwh44pcaj-8ecadf-b71a9fce.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestjfitvdq4p-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestjfitvdq4p-8ecadf-4f8d5929.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestjfitvdq4p-8ecadf-4f8d5929.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/da9f6583-0971-4250-afc9-8b5c769d791c\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d015d00b-9132-4a31-b987-1002d39c6339\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"autoUpgradeProfile\": {\n \"upgradeChannel\": \"rapid\"\n - \ },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3504' + - '3962' content-type: - application/json date: - - Tue, 19 Oct 2021 06:52:41 GMT + - Wed, 01 Dec 2021 15:27:11 GMT expires: - '-1' pragma: @@ -581,58 +494,61 @@ interactions: ParameterSetName: - --resource-group --name --auto-upgrade-channel User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestxwh44pcaj-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestxwh44pcaj-8ecadf-b71a9fce.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestxwh44pcaj-8ecadf-b71a9fce.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestjfitvdq4p-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestjfitvdq4p-8ecadf-4f8d5929.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestjfitvdq4p-8ecadf-4f8d5929.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/da9f6583-0971-4250-afc9-8b5c769d791c\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d015d00b-9132-4a31-b987-1002d39c6339\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"autoUpgradeProfile\": {\n \"upgradeChannel\": \"rapid\"\n - \ },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3504' + - '3962' content-type: - application/json date: - - Tue, 19 Oct 2021 06:52:42 GMT + - Wed, 01 Dec 2021 15:27:12 GMT expires: - '-1' pragma: @@ -653,25 +569,26 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestxwh44pcaj-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestjfitvdq4p-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/da9f6583-0971-4250-afc9-8b5c769d791c"}]}}, - "autoUpgradeProfile": {"upgradeChannel": "stable"}, "identityProfile": {"kubeletidentity": - {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d015d00b-9132-4a31-b987-1002d39c6339"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "autoUpgradeProfile": {"upgradeChannel": "stable"}, "identityProfile": + {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -682,66 +599,69 @@ interactions: Connection: - keep-alive Content-Length: - - '2363' + - '2774' Content-Type: - application/json ParameterSetName: - --resource-group --name --auto-upgrade-channel User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestxwh44pcaj-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestxwh44pcaj-8ecadf-b71a9fce.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestxwh44pcaj-8ecadf-b71a9fce.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestjfitvdq4p-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestjfitvdq4p-8ecadf-4f8d5929.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestjfitvdq4p-8ecadf-4f8d5929.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/da9f6583-0971-4250-afc9-8b5c769d791c\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d015d00b-9132-4a31-b987-1002d39c6339\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"autoUpgradeProfile\": {\n \"upgradeChannel\": \"stable\"\n - \ },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/05e388c8-63c5-4d35-90c5-115e3ed09b5c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5cf6af05-03d2-41c6-b85b-cd938877b5fd?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3503' + - '3961' content-type: - application/json date: - - Tue, 19 Oct 2021 06:52:44 GMT + - Wed, 01 Dec 2021 15:27:15 GMT expires: - '-1' pragma: @@ -757,7 +677,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1198' status: code: 200 message: OK @@ -775,23 +695,23 @@ interactions: ParameterSetName: - --resource-group --name --auto-upgrade-channel User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/05e388c8-63c5-4d35-90c5-115e3ed09b5c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5cf6af05-03d2-41c6-b85b-cd938877b5fd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c888e305-c563-354d-90c5-115e3ed09b5c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:52:44.23Z\"\n }" + string: "{\n \"name\": \"05aff65c-d203-c641-b85b-cd938877b5fd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:27:15.4Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:53:14 GMT + - Wed, 01 Dec 2021 15:27:45 GMT expires: - '-1' pragma: @@ -823,24 +743,24 @@ interactions: ParameterSetName: - --resource-group --name --auto-upgrade-channel User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/05e388c8-63c5-4d35-90c5-115e3ed09b5c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5cf6af05-03d2-41c6-b85b-cd938877b5fd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c888e305-c563-354d-90c5-115e3ed09b5c\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:52:44.23Z\",\n \"endTime\": - \"2021-10-19T06:53:38.4865922Z\"\n }" + string: "{\n \"name\": \"05aff65c-d203-c641-b85b-cd938877b5fd\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:27:15.4Z\",\n \"endTime\": + \"2021-12-01T15:28:11.7329992Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '164' content-type: - application/json date: - - Tue, 19 Oct 2021 06:53:44 GMT + - Wed, 01 Dec 2021 15:28:16 GMT expires: - '-1' pragma: @@ -872,58 +792,61 @@ interactions: ParameterSetName: - --resource-group --name --auto-upgrade-channel User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestxwh44pcaj-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestxwh44pcaj-8ecadf-b71a9fce.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestxwh44pcaj-8ecadf-b71a9fce.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestjfitvdq4p-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestjfitvdq4p-8ecadf-4f8d5929.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestjfitvdq4p-8ecadf-4f8d5929.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/da9f6583-0971-4250-afc9-8b5c769d791c\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d015d00b-9132-4a31-b987-1002d39c6339\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"autoUpgradeProfile\": {\n \"upgradeChannel\": \"stable\"\n - \ },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3505' + - '3963' content-type: - application/json date: - - Tue, 19 Oct 2021 06:53:44 GMT + - Wed, 01 Dec 2021 15:28:17 GMT expires: - '-1' pragma: @@ -957,8 +880,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -966,17 +889,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9f2958ba-7f2d-4727-a539-d1b8aa7e722d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0a4f242-a76b-4dd4-b5a1-f5d14006b7eb?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 06:53:45 GMT + - Wed, 01 Dec 2021 15:28:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/9f2958ba-7f2d-4727-a539-d1b8aa7e722d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b0a4f242-a76b-4dd4-b5a1-f5d14006b7eb?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azurekeyvaultsecretsprovider_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azurekeyvaultsecretsprovider_addon.yaml index 5a6e62a09b1..a21377c5203 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azurekeyvaultsecretsprovider_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_azurekeyvaultsecretsprovider_addon.yaml @@ -13,13 +13,12 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-resource/19.0.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-20T14:32:18Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:02:26Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 14:32:27 GMT + - Wed, 01 Dec 2021 14:02:27 GMT expires: - '-1' pragma: @@ -44,13 +43,14 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesto762754pw-26fe00", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestjvk7aed5u-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": true, "config": {"enableSecretRotation": "false", "rotationPollInterval": "2m"}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": @@ -67,66 +67,66 @@ interactions: Connection: - keep-alive Content-Length: - - '1844' + - '1872' Content-Type: - application/json ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitesto762754pw-26fe00\",\n \"fqdn\": \"cliakstest-clitesto762754pw-26fe00-ee4dde8f.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitesto762754pw-26fe00-ee4dde8f.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ - : true,\n \"config\": {\n \"enableSecretRotation\": \"false\",\n\ - \ \"rotationPollInterval\": \"2m\"\n }\n }\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n\ - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"\ - networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \ - \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\"\ - : 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\"\ - : \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n\ - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\"\ - : \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\"\ - : \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestjvk7aed5u-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestjvk7aed5u-8ecadf-7e4c4b83.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestjvk7aed5u-8ecadf-7e4c4b83.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": + {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": + \"2m\"\n }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a4d87e1-d757-47af-a91e-efc16b1afc9e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6e2bfe18-4824-4162-941f-3c622530fc3a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3315' + - '3428' content-type: - application/json date: - - Wed, 20 Oct 2021 14:32:38 GMT + - Wed, 01 Dec 2021 14:02:31 GMT expires: - '-1' pragma: @@ -138,7 +138,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -156,23 +156,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a4d87e1-d757-47af-a91e-efc16b1afc9e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6e2bfe18-4824-4162-941f-3c622530fc3a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e1874d6a-57d7-af47-a91e-efc16b1afc9e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-20T14:32:37.89Z\"\n }" + string: "{\n \"name\": \"18fe2b6e-2448-6241-941f-3c622530fc3a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.8933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Wed, 20 Oct 2021 14:33:09 GMT + - Wed, 01 Dec 2021 14:03:02 GMT expires: - '-1' pragma: @@ -204,23 +204,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a4d87e1-d757-47af-a91e-efc16b1afc9e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6e2bfe18-4824-4162-941f-3c622530fc3a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e1874d6a-57d7-af47-a91e-efc16b1afc9e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-20T14:32:37.89Z\"\n }" + string: "{\n \"name\": \"18fe2b6e-2448-6241-941f-3c622530fc3a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.8933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Wed, 20 Oct 2021 14:33:39 GMT + - Wed, 01 Dec 2021 14:03:32 GMT expires: - '-1' pragma: @@ -252,23 +252,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a4d87e1-d757-47af-a91e-efc16b1afc9e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6e2bfe18-4824-4162-941f-3c622530fc3a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e1874d6a-57d7-af47-a91e-efc16b1afc9e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-20T14:32:37.89Z\"\n }" + string: "{\n \"name\": \"18fe2b6e-2448-6241-941f-3c622530fc3a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.8933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Wed, 20 Oct 2021 14:34:10 GMT + - Wed, 01 Dec 2021 14:04:02 GMT expires: - '-1' pragma: @@ -300,23 +300,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a4d87e1-d757-47af-a91e-efc16b1afc9e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6e2bfe18-4824-4162-941f-3c622530fc3a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e1874d6a-57d7-af47-a91e-efc16b1afc9e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-20T14:32:37.89Z\"\n }" + string: "{\n \"name\": \"18fe2b6e-2448-6241-941f-3c622530fc3a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.8933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Wed, 20 Oct 2021 14:34:40 GMT + - Wed, 01 Dec 2021 14:04:32 GMT expires: - '-1' pragma: @@ -348,23 +348,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a4d87e1-d757-47af-a91e-efc16b1afc9e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6e2bfe18-4824-4162-941f-3c622530fc3a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e1874d6a-57d7-af47-a91e-efc16b1afc9e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-20T14:32:37.89Z\"\n }" + string: "{\n \"name\": \"18fe2b6e-2448-6241-941f-3c622530fc3a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.8933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Wed, 20 Oct 2021 14:35:10 GMT + - Wed, 01 Dec 2021 14:05:03 GMT expires: - '-1' pragma: @@ -396,23 +396,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a4d87e1-d757-47af-a91e-efc16b1afc9e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6e2bfe18-4824-4162-941f-3c622530fc3a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e1874d6a-57d7-af47-a91e-efc16b1afc9e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-20T14:32:37.89Z\"\n }" + string: "{\n \"name\": \"18fe2b6e-2448-6241-941f-3c622530fc3a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.8933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Wed, 20 Oct 2021 14:35:40 GMT + - Wed, 01 Dec 2021 14:05:33 GMT expires: - '-1' pragma: @@ -444,23 +444,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a4d87e1-d757-47af-a91e-efc16b1afc9e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6e2bfe18-4824-4162-941f-3c622530fc3a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e1874d6a-57d7-af47-a91e-efc16b1afc9e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-20T14:32:37.89Z\"\n }" + string: "{\n \"name\": \"18fe2b6e-2448-6241-941f-3c622530fc3a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:31.8933333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Wed, 20 Oct 2021 14:36:12 GMT + - Wed, 01 Dec 2021 14:06:03 GMT expires: - '-1' pragma: @@ -492,23 +492,24 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a4d87e1-d757-47af-a91e-efc16b1afc9e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6e2bfe18-4824-4162-941f-3c622530fc3a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e1874d6a-57d7-af47-a91e-efc16b1afc9e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-20T14:32:37.89Z\"\n }" + string: "{\n \"name\": \"18fe2b6e-2448-6241-941f-3c622530fc3a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:02:31.8933333Z\",\n \"endTime\": + \"2021-12-01T14:06:30.0213411Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '170' content-type: - application/json date: - - Wed, 20 Oct 2021 14:36:42 GMT + - Wed, 01 Dec 2021 14:06:33 GMT expires: - '-1' pragma: @@ -540,115 +541,64 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a4d87e1-d757-47af-a91e-efc16b1afc9e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"name\": \"e1874d6a-57d7-af47-a91e-efc16b1afc9e\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2021-10-20T14:32:37.89Z\",\n \"endTime\"\ - : \"2021-10-20T14:37:02.2508988Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestjvk7aed5u-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestjvk7aed5u-8ecadf-7e4c4b83.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestjvk7aed5u-8ecadf-7e4c4b83.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": + {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": + \"2m\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/60319b17-f07c-4348-aff2-993bd09efdf0\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '165' + - '4474' content-type: - application/json date: - - Wed, 20 Oct 2021 14:37:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name -a --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitesto762754pw-26fe00\",\n \"fqdn\": \"cliakstest-clitesto762754pw-26fe00-ee4dde8f.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitesto762754pw-26fe00-ee4dde8f.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ - : true,\n \"config\": {\n \"enableSecretRotation\": \"false\",\n\ - \ \"rotationPollInterval\": \"2m\"\n },\n \"identity\": {\n \ - \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ - objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1bff40d3-2169-4412-a300-a7d829c3dfef\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '4361' - content-type: - - application/json - date: - - Wed, 20 Oct 2021 14:37:12 GMT + - Wed, 01 Dec 2021 14:06:34 GMT expires: - '-1' pragma: @@ -682,8 +632,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -691,17 +641,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d402b5f6-a4ad-481b-8612-634b8e28a5ca?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e9650f6-8214-4ed3-89cd-2deb8ea8a7fa?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Oct 2021 14:37:16 GMT + - Wed, 01 Dec 2021 14:06:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/d402b5f6-a4ad-481b-8612-634b8e28a5ca?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/8e9650f6-8214-4ed3-89cd-2deb8ea8a7fa?api-version=2016-03-30 pragma: - no-cache server: @@ -711,7 +661,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon.yaml old mode 100755 new mode 100644 index 0a77dd3a827..969e3d8e8d2 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:04:08Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T15:17:46Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:04:09 GMT + - Wed, 01 Dec 2021 15:17:46 GMT expires: - '-1' pragma: @@ -43,19 +43,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestxow7ue5hl-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestgijmhodpx-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": - {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "enableRBAC": - true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": - "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": - "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": + true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "enableRBAC": true, + "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", + "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -66,38 +67,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1479' + - '1836' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestxow7ue5hl-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestxow7ue5hl-8ecadf-292cc910.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestxow7ue5hl-8ecadf-292cc910.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestgijmhodpx-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestgijmhodpx-8ecadf-b7df22f8.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestgijmhodpx-8ecadf-b7df22f8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n }\n },\n \"nodeResourceGroup\": @@ -107,22 +109,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e841178b-93df-43cf-84d3-81eb68338bed?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be67003a-5b17-4142-a460-6787983402d6?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2928' + - '3386' content-type: - application/json date: - - Tue, 19 Oct 2021 07:04:11 GMT + - Wed, 01 Dec 2021 15:17:51 GMT expires: - '-1' pragma: @@ -134,7 +137,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' status: code: 201 message: Created @@ -152,14 +155,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e841178b-93df-43cf-84d3-81eb68338bed?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be67003a-5b17-4142-a460-6787983402d6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8b1741e8-df93-cf43-84d3-81eb68338bed\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:04:12.5133333Z\"\n }" + string: "{\n \"name\": \"3a0067be-175b-4241-a460-6787983402d6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:17:51.2033333Z\"\n }" headers: cache-control: - no-cache @@ -168,7 +171,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:04:42 GMT + - Wed, 01 Dec 2021 15:18:21 GMT expires: - '-1' pragma: @@ -200,14 +203,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e841178b-93df-43cf-84d3-81eb68338bed?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be67003a-5b17-4142-a460-6787983402d6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8b1741e8-df93-cf43-84d3-81eb68338bed\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:04:12.5133333Z\"\n }" + string: "{\n \"name\": \"3a0067be-175b-4241-a460-6787983402d6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:17:51.2033333Z\"\n }" headers: cache-control: - no-cache @@ -216,7 +219,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:05:12 GMT + - Wed, 01 Dec 2021 15:18:51 GMT expires: - '-1' pragma: @@ -248,14 +251,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e841178b-93df-43cf-84d3-81eb68338bed?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be67003a-5b17-4142-a460-6787983402d6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8b1741e8-df93-cf43-84d3-81eb68338bed\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:04:12.5133333Z\"\n }" + string: "{\n \"name\": \"3a0067be-175b-4241-a460-6787983402d6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:17:51.2033333Z\"\n }" headers: cache-control: - no-cache @@ -264,7 +267,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:05:42 GMT + - Wed, 01 Dec 2021 15:19:21 GMT expires: - '-1' pragma: @@ -296,14 +299,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e841178b-93df-43cf-84d3-81eb68338bed?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be67003a-5b17-4142-a460-6787983402d6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8b1741e8-df93-cf43-84d3-81eb68338bed\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:04:12.5133333Z\"\n }" + string: "{\n \"name\": \"3a0067be-175b-4241-a460-6787983402d6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T15:17:51.2033333Z\"\n }" headers: cache-control: - no-cache @@ -312,7 +315,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:11 GMT + - Wed, 01 Dec 2021 15:19:52 GMT expires: - '-1' pragma: @@ -344,15 +347,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e841178b-93df-43cf-84d3-81eb68338bed?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be67003a-5b17-4142-a460-6787983402d6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8b1741e8-df93-cf43-84d3-81eb68338bed\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:04:12.5133333Z\",\n \"endTime\": - \"2021-10-19T07:06:28.0333695Z\"\n }" + string: "{\n \"name\": \"3a0067be-175b-4241-a460-6787983402d6\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T15:17:51.2033333Z\",\n \"endTime\": + \"2021-12-01T15:20:07.6223459Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +364,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:42 GMT + - Wed, 01 Dec 2021 15:20:21 GMT expires: - '-1' pragma: @@ -393,32 +396,33 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestxow7ue5hl-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestxow7ue5hl-8ecadf-292cc910.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestxow7ue5hl-8ecadf-292cc910.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestgijmhodpx-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestgijmhodpx-8ecadf-b7df22f8.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestgijmhodpx-8ecadf-b7df22f8.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n },\n \"identity\": @@ -428,26 +432,28 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b327306f-4cad-4716-bde0-76aa1d52d055\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9ef68250-6cdd-4e10-ab99-b0511d884304\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3964' + - '4422' content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:43 GMT + - Wed, 01 Dec 2021 15:20:22 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon_helper_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon_helper_enabled.yaml old mode 100755 new mode 100644 index 85fd350bc0c..ca7448ec883 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon_helper_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_confcom_addon_helper_enabled.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:24:31Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:02:25Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:24:32 GMT + - Wed, 01 Dec 2021 14:02:25 GMT expires: - '-1' pragma: @@ -44,19 +44,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestraq7hswkw-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestptqttmjur-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": - {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "true"}}}, "enableRBAC": - true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": - "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": - "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": + true, "config": {"ACCSGXQuoteHelperEnabled": "true"}}}, "enableRBAC": true, + "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", + "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -67,39 +68,40 @@ interactions: Connection: - keep-alive Content-Length: - - '1478' + - '1835' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestraq7hswkw-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestraq7hswkw-8ecadf-23e667d6.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestraq7hswkw-8ecadf-23e667d6.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestptqttmjur-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestptqttmjur-8ecadf-6c806964.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestptqttmjur-8ecadf-6c806964.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"true\"\n }\n }\n },\n \"nodeResourceGroup\": @@ -109,22 +111,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cf52c91-b667-4723-9399-80f2264107d9?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/082893ea-1363-4e23-8f6c-c4cdc39d5e5a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2927' + - '3385' content-type: - application/json date: - - Tue, 19 Oct 2021 07:24:36 GMT + - Wed, 01 Dec 2021 14:02:31 GMT expires: - '-1' pragma: @@ -136,7 +139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1196' status: code: 201 message: Created @@ -155,14 +158,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cf52c91-b667-4723-9399-80f2264107d9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/082893ea-1363-4e23-8f6c-c4cdc39d5e5a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"912cf53c-67b6-2347-9399-80f2264107d9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:24:36.8033333Z\"\n }" + string: "{\n \"name\": \"ea932808-6313-234e-8f6c-c4cdc39d5e5a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.9333333Z\"\n }" headers: cache-control: - no-cache @@ -171,7 +174,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:25:06 GMT + - Wed, 01 Dec 2021 14:03:01 GMT expires: - '-1' pragma: @@ -204,14 +207,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cf52c91-b667-4723-9399-80f2264107d9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/082893ea-1363-4e23-8f6c-c4cdc39d5e5a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"912cf53c-67b6-2347-9399-80f2264107d9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:24:36.8033333Z\"\n }" + string: "{\n \"name\": \"ea932808-6313-234e-8f6c-c4cdc39d5e5a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.9333333Z\"\n }" headers: cache-control: - no-cache @@ -220,7 +223,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:25:36 GMT + - Wed, 01 Dec 2021 14:03:30 GMT expires: - '-1' pragma: @@ -253,14 +256,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cf52c91-b667-4723-9399-80f2264107d9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/082893ea-1363-4e23-8f6c-c4cdc39d5e5a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"912cf53c-67b6-2347-9399-80f2264107d9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:24:36.8033333Z\"\n }" + string: "{\n \"name\": \"ea932808-6313-234e-8f6c-c4cdc39d5e5a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.9333333Z\"\n }" headers: cache-control: - no-cache @@ -269,7 +272,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:26:06 GMT + - Wed, 01 Dec 2021 14:04:01 GMT expires: - '-1' pragma: @@ -302,14 +305,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cf52c91-b667-4723-9399-80f2264107d9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/082893ea-1363-4e23-8f6c-c4cdc39d5e5a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"912cf53c-67b6-2347-9399-80f2264107d9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:24:36.8033333Z\"\n }" + string: "{\n \"name\": \"ea932808-6313-234e-8f6c-c4cdc39d5e5a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.9333333Z\"\n }" headers: cache-control: - no-cache @@ -318,7 +321,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:26:36 GMT + - Wed, 01 Dec 2021 14:04:31 GMT expires: - '-1' pragma: @@ -351,14 +354,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cf52c91-b667-4723-9399-80f2264107d9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/082893ea-1363-4e23-8f6c-c4cdc39d5e5a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"912cf53c-67b6-2347-9399-80f2264107d9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:24:36.8033333Z\"\n }" + string: "{\n \"name\": \"ea932808-6313-234e-8f6c-c4cdc39d5e5a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.9333333Z\"\n }" headers: cache-control: - no-cache @@ -367,7 +370,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:27:07 GMT + - Wed, 01 Dec 2021 14:05:01 GMT expires: - '-1' pragma: @@ -400,15 +403,64 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cf52c91-b667-4723-9399-80f2264107d9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/082893ea-1363-4e23-8f6c-c4cdc39d5e5a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"912cf53c-67b6-2347-9399-80f2264107d9\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:24:36.8033333Z\",\n \"endTime\": - \"2021-10-19T07:27:28.1169544Z\"\n }" + string: "{\n \"name\": \"ea932808-6313-234e-8f6c-c4cdc39d5e5a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.9333333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:05:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper + --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/082893ea-1363-4e23-8f6c-c4cdc39d5e5a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea932808-6313-234e-8f6c-c4cdc39d5e5a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:02:30.9333333Z\",\n \"endTime\": + \"2021-12-01T14:05:56.7858572Z\"\n }" headers: cache-control: - no-cache @@ -417,7 +469,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:27:36 GMT + - Wed, 01 Dec 2021 14:06:02 GMT expires: - '-1' pragma: @@ -450,32 +502,33 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestraq7hswkw-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestraq7hswkw-8ecadf-23e667d6.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestraq7hswkw-8ecadf-23e667d6.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestptqttmjur-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestptqttmjur-8ecadf-6c806964.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestptqttmjur-8ecadf-6c806964.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"true\"\n },\n \"identity\": @@ -485,26 +538,28 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2e3e5e8c-570c-4a54-8c03-3fc49dcda743\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5f04a5e5-26b3-423d-b38e-5bd8f5937f53\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3963' + - '4421' content-type: - application/json date: - - Tue, 19 Oct 2021 07:27:37 GMT + - Wed, 01 Dec 2021 14:06:03 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_default_network.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_default_network.yaml new file mode 100644 index 00000000000..9d23ececf37 --- /dev/null +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_default_network.yaml @@ -0,0 +1,580 @@ +interactions: +- request: + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest4yngoa7lc-8ecadf", + "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "172.126.0.0/16", + "serviceCidr": "172.56.0.0/16", "dnsServiceIP": "172.56.0.10", "outboundType": + "loadBalancer", "loadBalancerSku": "standard", "podCidrs": ["172.126.0.0/16"], + "serviceCidrs": ["172.56.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": + false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1807' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --network-plugin --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest4yngoa7lc-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest4yngoa7lc-8ecadf-94f2eeaf.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest4yngoa7lc-8ecadf-94f2eeaf.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"172.126.0.0/16\",\n \"serviceCidr\": \"172.56.0.0/16\",\n \"dnsServiceIP\": + \"172.56.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"172.126.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"172.56.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": + false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3fcbe319-9bc3-452a-8d2d-8b3e11b83c71?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '3244' + content-type: + - application/json + date: + - Fri, 03 Dec 2021 15:27:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --network-plugin --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3fcbe319-9bc3-452a-8d2d-8b3e11b83c71?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"19e3cb3f-c39b-2a45-8d2d-8b3e11b83c71\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-03T15:27:43.1266666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 03 Dec 2021 15:28:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --network-plugin --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3fcbe319-9bc3-452a-8d2d-8b3e11b83c71?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"19e3cb3f-c39b-2a45-8d2d-8b3e11b83c71\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-03T15:27:43.1266666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 03 Dec 2021 15:28:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --network-plugin --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3fcbe319-9bc3-452a-8d2d-8b3e11b83c71?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"19e3cb3f-c39b-2a45-8d2d-8b3e11b83c71\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-03T15:27:43.1266666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 03 Dec 2021 15:29:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --network-plugin --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3fcbe319-9bc3-452a-8d2d-8b3e11b83c71?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"19e3cb3f-c39b-2a45-8d2d-8b3e11b83c71\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-03T15:27:43.1266666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 03 Dec 2021 15:29:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --network-plugin --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3fcbe319-9bc3-452a-8d2d-8b3e11b83c71?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"19e3cb3f-c39b-2a45-8d2d-8b3e11b83c71\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-03T15:27:43.1266666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 03 Dec 2021 15:30:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --network-plugin --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3fcbe319-9bc3-452a-8d2d-8b3e11b83c71?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"19e3cb3f-c39b-2a45-8d2d-8b3e11b83c71\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-03T15:27:43.1266666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 03 Dec 2021 15:30:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --network-plugin --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3fcbe319-9bc3-452a-8d2d-8b3e11b83c71?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"19e3cb3f-c39b-2a45-8d2d-8b3e11b83c71\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-03T15:27:43.1266666Z\",\n \"endTime\": + \"2021-12-03T15:31:07.5756209Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Fri, 03 Dec 2021 15:31:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --network-plugin --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest4yngoa7lc-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest4yngoa7lc-8ecadf-94f2eeaf.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest4yngoa7lc-8ecadf-94f2eeaf.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5e1ccd87-110a-4cca-a49f-994d36358456\"\n + \ }\n ]\n },\n \"podCidr\": \"172.126.0.0/16\",\n \"serviceCidr\": + \"172.56.0.0/16\",\n \"dnsServiceIP\": \"172.56.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"172.126.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"172.56.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '3907' + content-type: + - application/json + date: + - Fri, 03 Dec 2021 15:31:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --yes --no-wait + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-07-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a84970af-4454-4e31-93ea-06f7aca065ce?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 03 Dec 2021 15:31:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/a84970af-4454-4e31-93ea-06f7aca065ce?api-version=2016-03-30 + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +version: 1 diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml old mode 100755 new mode 100644 index e8900db266f..90b27e68500 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:16:50Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:02:30Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:16:52 GMT + - Wed, 01 Dec 2021 14:02:30 GMT expires: - '-1' pragma: @@ -44,19 +44,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestjgwpui4bs-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestzjx3436rq-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 60, "osDiskType": "Ephemeral", "workloadRuntime": "OCIContainer", "osType": - "Linux", "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": - false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": - -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": + "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": + "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -67,39 +67,40 @@ interactions: Connection: - keep-alive Content-Length: - - '1438' + - '1795' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestjgwpui4bs-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestjgwpui4bs-8ecadf-979c76e9.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestjgwpui4bs-8ecadf-979c76e9.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestzjx3436rq-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestzjx3436rq-8ecadf-179c1f65.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestzjx3436rq-8ecadf-179c1f65.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 60,\n \"osDiskType\": \"Ephemeral\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -107,22 +108,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7af54d4-4add-46f5-b63d-f34843657b74?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b7260a4-cfab-469d-b554-a3094de1ed0d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2779' + - '3237' content-type: - application/json date: - - Tue, 19 Oct 2021 07:16:54 GMT + - Wed, 01 Dec 2021 14:02:36 GMT expires: - '-1' pragma: @@ -134,7 +136,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -153,14 +155,112 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b7260a4-cfab-469d-b554-a3094de1ed0d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a460728b-abcf-9d46-b554-a3094de1ed0d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:36.2766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:03:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size + --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b7260a4-cfab-469d-b554-a3094de1ed0d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a460728b-abcf-9d46-b554-a3094de1ed0d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:36.2766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:03:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size + --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7af54d4-4add-46f5-b63d-f34843657b74?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b7260a4-cfab-469d-b554-a3094de1ed0d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d454aff7-dd4a-f546-b63d-f34843657b74\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:16:55.1233333Z\"\n }" + string: "{\n \"name\": \"a460728b-abcf-9d46-b554-a3094de1ed0d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:36.2766666Z\"\n }" headers: cache-control: - no-cache @@ -169,7 +269,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:17:24 GMT + - Wed, 01 Dec 2021 14:04:06 GMT expires: - '-1' pragma: @@ -202,14 +302,14 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7af54d4-4add-46f5-b63d-f34843657b74?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b7260a4-cfab-469d-b554-a3094de1ed0d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d454aff7-dd4a-f546-b63d-f34843657b74\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:16:55.1233333Z\"\n }" + string: "{\n \"name\": \"a460728b-abcf-9d46-b554-a3094de1ed0d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:36.2766666Z\"\n }" headers: cache-control: - no-cache @@ -218,7 +318,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:17:55 GMT + - Wed, 01 Dec 2021 14:04:37 GMT expires: - '-1' pragma: @@ -251,14 +351,14 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7af54d4-4add-46f5-b63d-f34843657b74?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b7260a4-cfab-469d-b554-a3094de1ed0d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d454aff7-dd4a-f546-b63d-f34843657b74\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:16:55.1233333Z\"\n }" + string: "{\n \"name\": \"a460728b-abcf-9d46-b554-a3094de1ed0d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:36.2766666Z\"\n }" headers: cache-control: - no-cache @@ -267,7 +367,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:18:24 GMT + - Wed, 01 Dec 2021 14:05:07 GMT expires: - '-1' pragma: @@ -300,14 +400,14 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7af54d4-4add-46f5-b63d-f34843657b74?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b7260a4-cfab-469d-b554-a3094de1ed0d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d454aff7-dd4a-f546-b63d-f34843657b74\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:16:55.1233333Z\"\n }" + string: "{\n \"name\": \"a460728b-abcf-9d46-b554-a3094de1ed0d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:36.2766666Z\"\n }" headers: cache-control: - no-cache @@ -316,7 +416,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:18:55 GMT + - Wed, 01 Dec 2021 14:05:37 GMT expires: - '-1' pragma: @@ -349,14 +449,14 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7af54d4-4add-46f5-b63d-f34843657b74?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b7260a4-cfab-469d-b554-a3094de1ed0d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d454aff7-dd4a-f546-b63d-f34843657b74\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:16:55.1233333Z\"\n }" + string: "{\n \"name\": \"a460728b-abcf-9d46-b554-a3094de1ed0d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:36.2766666Z\"\n }" headers: cache-control: - no-cache @@ -365,7 +465,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:19:25 GMT + - Wed, 01 Dec 2021 14:06:07 GMT expires: - '-1' pragma: @@ -398,15 +498,113 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7af54d4-4add-46f5-b63d-f34843657b74?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b7260a4-cfab-469d-b554-a3094de1ed0d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d454aff7-dd4a-f546-b63d-f34843657b74\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:16:55.1233333Z\",\n \"endTime\": - \"2021-10-19T07:19:39.4163755Z\"\n }" + string: "{\n \"name\": \"a460728b-abcf-9d46-b554-a3094de1ed0d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:36.2766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:06:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size + --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b7260a4-cfab-469d-b554-a3094de1ed0d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a460728b-abcf-9d46-b554-a3094de1ed0d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:36.2766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:07:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size + --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b7260a4-cfab-469d-b554-a3094de1ed0d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a460728b-abcf-9d46-b554-a3094de1ed0d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:02:36.2766666Z\",\n \"endTime\": + \"2021-12-01T14:07:26.5337702Z\"\n }" headers: cache-control: - no-cache @@ -415,7 +613,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:19:54 GMT + - Wed, 01 Dec 2021 14:07:37 GMT expires: - '-1' pragma: @@ -448,57 +646,60 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestjgwpui4bs-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestjgwpui4bs-8ecadf-979c76e9.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestjgwpui4bs-8ecadf-979c76e9.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestzjx3436rq-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestzjx3436rq-8ecadf-179c1f65.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestzjx3436rq-8ecadf-179c1f65.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 60,\n \"osDiskType\": \"Ephemeral\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/01a64c06-5388-4c08-8077-de3ddf5fcee6\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ec77055a-0a0b-4819-83e9-0fd11c59bac4\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3442' + - '3900' content-type: - application/json date: - - Tue, 19 Oct 2021 07:19:55 GMT + - Wed, 01 Dec 2021 14:07:38 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_fips.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_fips.yaml old mode 100755 new mode 100644 index 71162529d6c..48689d093aa --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_fips.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_fips.yaml @@ -13,21 +13,22 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-resource/20.0.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:39:25Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-12-14T05:52:47Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '313' + - '304' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 06:39:26 GMT + - Tue, 14 Dec 2021 05:52:49 GMT expires: - '-1' pragma: @@ -42,19 +43,19 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesth6dw4li34-8ecadf", + body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestccagtg3xp-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": true, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": true, "name": "nodepool1"}], "linuxProfile": + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -65,61 +66,65 @@ interactions: Connection: - keep-alive Content-Length: - - '1390' + - '1746' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-fips-image --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesth6dw4li34-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesth6dw4li34-8ecadf-a7b3ff02.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesth6dw4li34-8ecadf-a7b3ff02.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2fipscontainerd-2021.10.02\",\n - \ \"enableFIPS\": true\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ + : \"cliakstest-clitestccagtg3xp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestccagtg3xp-8ecadf-29b2b8c6.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestccagtg3xp-8ecadf-29b2b8c6.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\"\ + ,\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ + enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ + osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-1804gen2fipscontainerd-2021.11.27\",\n \"enableFIPS\": true\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n \ + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ + : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ + : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\"\ + : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ + : 100,\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"\ + type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e651ebf6-860e-4764-9bef-9f8baa5884c1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/7cdffe1e-6815-46a5-8613-81dcd7f09b0d?api-version=2017-08-31 cache-control: - no-cache content-length: - - '2781' + - '3258' content-type: - application/json date: - - Tue, 19 Oct 2021 06:39:29 GMT + - Tue, 14 Dec 2021 05:52:55 GMT expires: - '-1' pragma: @@ -149,23 +154,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e651ebf6-860e-4764-9bef-9f8baa5884c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/7cdffe1e-6815-46a5-8613-81dcd7f09b0d?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f6eb51e6-0e86-6447-9bef-9f8baa5884c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:29.71Z\"\n }" + string: "{\n \"name\": \"1efedf7c-1568-a546-8613-81dcd7f09b0d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-12-14T05:52:55.4Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:39:59 GMT + - Tue, 14 Dec 2021 05:53:26 GMT expires: - '-1' pragma: @@ -197,23 +202,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e651ebf6-860e-4764-9bef-9f8baa5884c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/7cdffe1e-6815-46a5-8613-81dcd7f09b0d?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f6eb51e6-0e86-6447-9bef-9f8baa5884c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:29.71Z\"\n }" + string: "{\n \"name\": \"1efedf7c-1568-a546-8613-81dcd7f09b0d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-12-14T05:52:55.4Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:40:29 GMT + - Tue, 14 Dec 2021 05:53:55 GMT expires: - '-1' pragma: @@ -245,23 +250,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e651ebf6-860e-4764-9bef-9f8baa5884c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/7cdffe1e-6815-46a5-8613-81dcd7f09b0d?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f6eb51e6-0e86-6447-9bef-9f8baa5884c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:29.71Z\"\n }" + string: "{\n \"name\": \"1efedf7c-1568-a546-8613-81dcd7f09b0d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-12-14T05:52:55.4Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:41:00 GMT + - Tue, 14 Dec 2021 05:54:26 GMT expires: - '-1' pragma: @@ -293,23 +298,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e651ebf6-860e-4764-9bef-9f8baa5884c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/7cdffe1e-6815-46a5-8613-81dcd7f09b0d?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f6eb51e6-0e86-6447-9bef-9f8baa5884c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:29.71Z\"\n }" + string: "{\n \"name\": \"1efedf7c-1568-a546-8613-81dcd7f09b0d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-12-14T05:52:55.4Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:41:29 GMT + - Tue, 14 Dec 2021 05:54:56 GMT expires: - '-1' pragma: @@ -341,23 +346,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e651ebf6-860e-4764-9bef-9f8baa5884c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/7cdffe1e-6815-46a5-8613-81dcd7f09b0d?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f6eb51e6-0e86-6447-9bef-9f8baa5884c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:29.71Z\"\n }" + string: "{\n \"name\": \"1efedf7c-1568-a546-8613-81dcd7f09b0d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-12-14T05:52:55.4Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:41:59 GMT + - Tue, 14 Dec 2021 05:55:26 GMT expires: - '-1' pragma: @@ -389,23 +394,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e651ebf6-860e-4764-9bef-9f8baa5884c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/7cdffe1e-6815-46a5-8613-81dcd7f09b0d?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f6eb51e6-0e86-6447-9bef-9f8baa5884c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:29.71Z\"\n }" + string: "{\n \"name\": \"1efedf7c-1568-a546-8613-81dcd7f09b0d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-12-14T05:52:55.4Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:42:29 GMT + - Tue, 14 Dec 2021 05:55:56 GMT expires: - '-1' pragma: @@ -437,15 +442,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e651ebf6-860e-4764-9bef-9f8baa5884c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/7cdffe1e-6815-46a5-8613-81dcd7f09b0d?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f6eb51e6-0e86-6447-9bef-9f8baa5884c1\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:39:29.71Z\",\n \"endTime\": - \"2021-10-19T06:42:58.618033Z\"\n }" + string: "{\n \"name\": \"1efedf7c-1568-a546-8613-81dcd7f09b0d\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2021-12-14T05:52:55.4Z\",\n \"endTime\"\ + : \"2021-12-14T05:56:25.9904988Z\"\n }" headers: cache-control: - no-cache @@ -454,7 +459,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:43:00 GMT + - Tue, 14 Dec 2021 05:56:26 GMT expires: - '-1' pragma: @@ -486,57 +491,63 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesth6dw4li34-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesth6dw4li34-8ecadf-a7b3ff02.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesth6dw4li34-8ecadf-a7b3ff02.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2fipscontainerd-2021.10.02\",\n - \ \"enableFIPS\": true\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/549b3691-099b-4910-8170-33c2bde10f96\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ + : \"cliakstest-clitestccagtg3xp-8ecadf\",\n \"fqdn\": \"cliakstest-clitestccagtg3xp-8ecadf-29b2b8c6.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestccagtg3xp-8ecadf-29b2b8c6.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n\ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\"\ + ,\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ + enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ + osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-1804gen2fipscontainerd-2021.11.27\",\n \"enableFIPS\": true\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n \ + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ + : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.Network/publicIPAddresses/760f15b4-8579-4d30-94dc-93c135e766ca\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ + : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\"\ + : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ + : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"\ + principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\":\ + \ \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\"\ + : \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3444' + - '3909' content-type: - application/json date: - - Tue, 19 Oct 2021 06:43:00 GMT + - Tue, 14 Dec 2021 05:56:27 GMT expires: - '-1' pragma: @@ -568,33 +579,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-10-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2fipscontainerd-2021.10.02\",\n \"enableFIPS\": true\n - \ }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n\ + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-1804gen2fipscontainerd-2021.11.27\",\n \"enableFIPS\": true\n\ + \ }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '977' + - '1006' content-type: - application/json date: - - Tue, 19 Oct 2021 06:43:01 GMT + - Tue, 14 Dec 2021 05:56:28 GMT expires: - '-1' pragma: @@ -634,35 +646,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2\",\n - \ \"name\": \"np2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2fipscontainerd-2021.10.02\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": true\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2\"\ + ,\n \"name\": \"np2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n\ + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2fipscontainerd-2021.11.27\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": true\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b00a486-e9ed-4e2f-9ab8-0f4185db88f3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/022ba07f-bcce-429d-ba06-e3c135dc5828?api-version=2017-08-31 cache-control: - no-cache content-length: - - '939' + - '935' content-type: - application/json date: - - Tue, 19 Oct 2021 06:43:03 GMT + - Tue, 14 Dec 2021 05:56:31 GMT expires: - '-1' pragma: @@ -674,7 +686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -692,23 +704,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b00a486-e9ed-4e2f-9ab8-0f4185db88f3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/022ba07f-bcce-429d-ba06-e3c135dc5828?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"86a4000b-ede9-2f4e-9ab8-0f4185db88f3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:43:03.9633333Z\"\n }" + string: "{\n \"name\": \"7fa02b02-cebc-9d42-ba06-e3c135dc5828\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-12-14T05:56:31.46Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:43:33 GMT + - Tue, 14 Dec 2021 05:57:01 GMT expires: - '-1' pragma: @@ -740,23 +752,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b00a486-e9ed-4e2f-9ab8-0f4185db88f3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/022ba07f-bcce-429d-ba06-e3c135dc5828?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"86a4000b-ede9-2f4e-9ab8-0f4185db88f3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:43:03.9633333Z\"\n }" + string: "{\n \"name\": \"7fa02b02-cebc-9d42-ba06-e3c135dc5828\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-12-14T05:56:31.46Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:44:03 GMT + - Tue, 14 Dec 2021 05:57:30 GMT expires: - '-1' pragma: @@ -788,23 +800,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b00a486-e9ed-4e2f-9ab8-0f4185db88f3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/022ba07f-bcce-429d-ba06-e3c135dc5828?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"86a4000b-ede9-2f4e-9ab8-0f4185db88f3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:43:03.9633333Z\"\n }" + string: "{\n \"name\": \"7fa02b02-cebc-9d42-ba06-e3c135dc5828\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-12-14T05:56:31.46Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:44:34 GMT + - Tue, 14 Dec 2021 05:58:01 GMT expires: - '-1' pragma: @@ -836,23 +848,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b00a486-e9ed-4e2f-9ab8-0f4185db88f3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/022ba07f-bcce-429d-ba06-e3c135dc5828?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"86a4000b-ede9-2f4e-9ab8-0f4185db88f3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:43:03.9633333Z\"\n }" + string: "{\n \"name\": \"7fa02b02-cebc-9d42-ba06-e3c135dc5828\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-12-14T05:56:31.46Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:45:03 GMT + - Tue, 14 Dec 2021 05:58:31 GMT expires: - '-1' pragma: @@ -884,23 +896,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b00a486-e9ed-4e2f-9ab8-0f4185db88f3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/022ba07f-bcce-429d-ba06-e3c135dc5828?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"86a4000b-ede9-2f4e-9ab8-0f4185db88f3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:43:03.9633333Z\"\n }" + string: "{\n \"name\": \"7fa02b02-cebc-9d42-ba06-e3c135dc5828\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-12-14T05:56:31.46Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:45:33 GMT + - Tue, 14 Dec 2021 05:59:01 GMT expires: - '-1' pragma: @@ -932,23 +944,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b00a486-e9ed-4e2f-9ab8-0f4185db88f3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/022ba07f-bcce-429d-ba06-e3c135dc5828?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"86a4000b-ede9-2f4e-9ab8-0f4185db88f3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:43:03.9633333Z\"\n }" + string: "{\n \"name\": \"7fa02b02-cebc-9d42-ba06-e3c135dc5828\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-12-14T05:56:31.46Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:46:04 GMT + - Tue, 14 Dec 2021 05:59:32 GMT expires: - '-1' pragma: @@ -980,23 +992,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b00a486-e9ed-4e2f-9ab8-0f4185db88f3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/022ba07f-bcce-429d-ba06-e3c135dc5828?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"86a4000b-ede9-2f4e-9ab8-0f4185db88f3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:43:03.9633333Z\"\n }" + string: "{\n \"name\": \"7fa02b02-cebc-9d42-ba06-e3c135dc5828\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-12-14T05:56:31.46Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:46:34 GMT + - Tue, 14 Dec 2021 06:00:02 GMT expires: - '-1' pragma: @@ -1028,24 +1040,72 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b00a486-e9ed-4e2f-9ab8-0f4185db88f3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/022ba07f-bcce-429d-ba06-e3c135dc5828?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"86a4000b-ede9-2f4e-9ab8-0f4185db88f3\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:43:03.9633333Z\",\n \"endTime\": - \"2021-10-19T06:47:02.6471982Z\"\n }" + string: "{\n \"name\": \"7fa02b02-cebc-9d42-ba06-e3c135dc5828\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2021-12-14T05:56:31.46Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '121' + content-type: + - application/json + date: + - Tue, 14 Dec 2021 06:00:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --enable-fips-image + User-Agent: + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/022ba07f-bcce-429d-ba06-e3c135dc5828?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"7fa02b02-cebc-9d42-ba06-e3c135dc5828\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2021-12-14T05:56:31.46Z\",\n \"endTime\"\ + : \"2021-12-14T06:00:33.724889Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '164' content-type: - application/json date: - - Tue, 19 Oct 2021 06:47:04 GMT + - Tue, 14 Dec 2021 06:01:02 GMT expires: - '-1' pragma: @@ -1077,33 +1137,33 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2\",\n - \ \"name\": \"np2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2fipscontainerd-2021.10.02\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": true\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2\"\ + ,\n \"name\": \"np2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n\ + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"\ + enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"\ + osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2fipscontainerd-2021.11.27\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": true\n }\n }" headers: cache-control: - no-cache content-length: - - '940' + - '936' content-type: - application/json date: - - Tue, 19 Oct 2021 06:47:04 GMT + - Tue, 14 Dec 2021 06:01:03 GMT expires: - '-1' pragma: @@ -1137,8 +1197,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.31.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.9.6 + (Linux-5.4.0-1055-azure-x86_64-with) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-07-01 response: @@ -1146,17 +1206,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1029a9ea-ba50-470a-9cc7-23361c6735cc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d53e3adf-37b5-4df3-acec-61be425312bc?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 06:47:06 GMT + - Tue, 14 Dec 2021 06:01:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/1029a9ea-ba50-470a-9cc7-23361c6735cc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/d53e3adf-37b5-4df3-acec-61be425312bc?api-version=2017-08-31 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_gitops_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_gitops_addon.yaml new file mode 100644 index 00000000000..4b3d6e83138 --- /dev/null +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_gitops_addon.yaml @@ -0,0 +1,1048 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:06:37Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '312' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:06:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestwwby26dpj-8ecadf", + "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"gitops": {"enabled": true}}, "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1774' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestwwby26dpj-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestwwby26dpj-8ecadf-af584f71.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestwwby26dpj-8ecadf-af584f71.portal.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"gitops\": {\n \"enabled\": true,\n \"config\": null\n }\n + \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d24d62c8-010a-4179-a5fc-9d977194a349?api-version=2017-08-31 + cache-control: + - no-cache + content-length: + - '3324' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:06:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d24d62c8-010a-4179-a5fc-9d977194a349?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c8624dd2-0a01-7941-a5fc-9d977194a349\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:46.52Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:07:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d24d62c8-010a-4179-a5fc-9d977194a349?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c8624dd2-0a01-7941-a5fc-9d977194a349\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:46.52Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:07:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d24d62c8-010a-4179-a5fc-9d977194a349?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c8624dd2-0a01-7941-a5fc-9d977194a349\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:46.52Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:08:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d24d62c8-010a-4179-a5fc-9d977194a349?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c8624dd2-0a01-7941-a5fc-9d977194a349\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:46.52Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:08:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d24d62c8-010a-4179-a5fc-9d977194a349?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c8624dd2-0a01-7941-a5fc-9d977194a349\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:46.52Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:09:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d24d62c8-010a-4179-a5fc-9d977194a349?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c8624dd2-0a01-7941-a5fc-9d977194a349\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:46.52Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:09:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d24d62c8-010a-4179-a5fc-9d977194a349?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c8624dd2-0a01-7941-a5fc-9d977194a349\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:46.52Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:10:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d24d62c8-010a-4179-a5fc-9d977194a349?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c8624dd2-0a01-7941-a5fc-9d977194a349\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:46.52Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:10:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d24d62c8-010a-4179-a5fc-9d977194a349?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c8624dd2-0a01-7941-a5fc-9d977194a349\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:46.52Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:11:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d24d62c8-010a-4179-a5fc-9d977194a349?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c8624dd2-0a01-7941-a5fc-9d977194a349\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:46.52Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:11:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d24d62c8-010a-4179-a5fc-9d977194a349?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c8624dd2-0a01-7941-a5fc-9d977194a349\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:46.52Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:12:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d24d62c8-010a-4179-a5fc-9d977194a349?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c8624dd2-0a01-7941-a5fc-9d977194a349\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:46.52Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:12:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d24d62c8-010a-4179-a5fc-9d977194a349?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c8624dd2-0a01-7941-a5fc-9d977194a349\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:46.52Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:13:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d24d62c8-010a-4179-a5fc-9d977194a349?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c8624dd2-0a01-7941-a5fc-9d977194a349\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:46.52Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:13:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d24d62c8-010a-4179-a5fc-9d977194a349?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c8624dd2-0a01-7941-a5fc-9d977194a349\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:46.52Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:14:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d24d62c8-010a-4179-a5fc-9d977194a349?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c8624dd2-0a01-7941-a5fc-9d977194a349\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:46.52Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:14:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d24d62c8-010a-4179-a5fc-9d977194a349?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c8624dd2-0a01-7941-a5fc-9d977194a349\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:06:46.52Z\",\n \"endTime\": + \"2021-12-01T14:15:05.8710579Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '165' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestwwby26dpj-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestwwby26dpj-8ecadf-af584f71.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestwwby26dpj-8ecadf-af584f71.portal.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"gitops\": {\n \"enabled\": true,\n \"config\": null,\n \"identity\": + {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gitops-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/bdd85d10-2ae7-44c0-a5b2-1ad8dab9eef0\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4345' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +version: 1 diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_http_proxy_config.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_http_proxy_config.yaml index 1ade0a24720..fbd8e81cd93 100755 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_http_proxy_config.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_http_proxy_config.yaml @@ -76,7 +76,7 @@ interactions: - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n @@ -491,7 +491,7 @@ interactions: - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon.yaml old mode 100755 new mode 100644 index 76810aae895..6d32053cde0 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:52:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:10:48Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 06:52:22 GMT + - Wed, 01 Dec 2021 14:10:49 GMT expires: - '-1' pragma: @@ -44,19 +44,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestp6rqascsh-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestww6mu5tws-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ingressApplicationGateway": - {"enabled": true, "config": {"subnetCIDR": "10.2.0.0/16"}}}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"ingressApplicationGateway": {"enabled": + true, "config": {"subnetCIDR": "10.2.0.0/16"}}}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -67,39 +68,40 @@ interactions: Connection: - keep-alive Content-Length: - - '1478' + - '1835' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestp6rqascsh-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestp6rqascsh-8ecadf-d7eff4d8.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestp6rqascsh-8ecadf-d7eff4d8.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestww6mu5tws-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestww6mu5tws-8ecadf-c91667cf.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestww6mu5tws-8ecadf-c91667cf.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ingressApplicationGateway\": {\n \"enabled\": true,\n \"config\": {\n \"effectiveApplicationGatewayId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/applicationGateways/applicationgateway\",\n @@ -110,22 +112,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79fb1ca4-2aa9-4221-9b26-44c1f6e35296?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73cd8ec2-8019-487d-95e3-0832d20e9bf5?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3149' + - '3607' content-type: - application/json date: - - Tue, 19 Oct 2021 06:52:25 GMT + - Wed, 01 Dec 2021 14:10:55 GMT expires: - '-1' pragma: @@ -137,7 +140,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' status: code: 201 message: Created @@ -156,63 +159,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79fb1ca4-2aa9-4221-9b26-44c1f6e35296?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"a41cfb79-a92a-2142-9b26-44c1f6e35296\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:52:25.92Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 06:52:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value - -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79fb1ca4-2aa9-4221-9b26-44c1f6e35296?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73cd8ec2-8019-487d-95e3-0832d20e9bf5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a41cfb79-a92a-2142-9b26-44c1f6e35296\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:52:25.92Z\"\n }" + string: "{\n \"name\": \"c28ecd73-1980-7d48-95e3-0832d20e9bf5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:10:54.71Z\"\n }" headers: cache-control: - no-cache @@ -221,7 +175,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:53:25 GMT + - Wed, 01 Dec 2021 14:11:24 GMT expires: - '-1' pragma: @@ -254,14 +208,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79fb1ca4-2aa9-4221-9b26-44c1f6e35296?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73cd8ec2-8019-487d-95e3-0832d20e9bf5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a41cfb79-a92a-2142-9b26-44c1f6e35296\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:52:25.92Z\"\n }" + string: "{\n \"name\": \"c28ecd73-1980-7d48-95e3-0832d20e9bf5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:10:54.71Z\"\n }" headers: cache-control: - no-cache @@ -270,7 +224,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:53:55 GMT + - Wed, 01 Dec 2021 14:11:54 GMT expires: - '-1' pragma: @@ -303,14 +257,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79fb1ca4-2aa9-4221-9b26-44c1f6e35296?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73cd8ec2-8019-487d-95e3-0832d20e9bf5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a41cfb79-a92a-2142-9b26-44c1f6e35296\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:52:25.92Z\"\n }" + string: "{\n \"name\": \"c28ecd73-1980-7d48-95e3-0832d20e9bf5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:10:54.71Z\"\n }" headers: cache-control: - no-cache @@ -319,7 +273,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:54:26 GMT + - Wed, 01 Dec 2021 14:12:25 GMT expires: - '-1' pragma: @@ -352,14 +306,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79fb1ca4-2aa9-4221-9b26-44c1f6e35296?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73cd8ec2-8019-487d-95e3-0832d20e9bf5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a41cfb79-a92a-2142-9b26-44c1f6e35296\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:52:25.92Z\"\n }" + string: "{\n \"name\": \"c28ecd73-1980-7d48-95e3-0832d20e9bf5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:10:54.71Z\"\n }" headers: cache-control: - no-cache @@ -368,7 +322,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:54:55 GMT + - Wed, 01 Dec 2021 14:12:55 GMT expires: - '-1' pragma: @@ -401,14 +355,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79fb1ca4-2aa9-4221-9b26-44c1f6e35296?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73cd8ec2-8019-487d-95e3-0832d20e9bf5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a41cfb79-a92a-2142-9b26-44c1f6e35296\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:52:25.92Z\"\n }" + string: "{\n \"name\": \"c28ecd73-1980-7d48-95e3-0832d20e9bf5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:10:54.71Z\"\n }" headers: cache-control: - no-cache @@ -417,7 +371,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:55:25 GMT + - Wed, 01 Dec 2021 14:13:25 GMT expires: - '-1' pragma: @@ -450,73 +404,24 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79fb1ca4-2aa9-4221-9b26-44c1f6e35296?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73cd8ec2-8019-487d-95e3-0832d20e9bf5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a41cfb79-a92a-2142-9b26-44c1f6e35296\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:52:25.92Z\"\n }" + string: "{\n \"name\": \"c28ecd73-1980-7d48-95e3-0832d20e9bf5\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:10:54.71Z\",\n \"endTime\": + \"2021-12-01T14:13:41.6905541Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 06:55:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value - -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79fb1ca4-2aa9-4221-9b26-44c1f6e35296?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"a41cfb79-a92a-2142-9b26-44c1f6e35296\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:52:25.92Z\",\n \"endTime\": - \"2021-10-19T06:56:06.593428Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '164' + - '165' content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:25 GMT + - Wed, 01 Dec 2021 14:13:56 GMT expires: - '-1' pragma: @@ -549,32 +454,33 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestp6rqascsh-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestp6rqascsh-8ecadf-d7eff4d8.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestp6rqascsh-8ecadf-d7eff4d8.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestww6mu5tws-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestww6mu5tws-8ecadf-c91667cf.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestww6mu5tws-8ecadf-c91667cf.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ingressApplicationGateway\": {\n \"enabled\": true,\n \"config\": {\n \"effectiveApplicationGatewayId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/applicationGateways/applicationgateway\",\n @@ -585,26 +491,28 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4c376c9e-81b2-4f7a-b538-80218a767aed\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/210ede18-a13b-469f-9209-8d6b47657954\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4192' + - '4650' content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:26 GMT + - Wed, 01 Dec 2021 14:13:56 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon_with_deprecated_subet_prefix.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon_with_deprecated_subet_prefix.yaml old mode 100755 new mode 100644 index d6f9fff3224..17a6e9ed4ed --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon_with_deprecated_subet_prefix.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon_with_deprecated_subet_prefix.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-prefix --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:36:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:06:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 06:36:10 GMT + - Wed, 01 Dec 2021 14:06:38 GMT expires: - '-1' pragma: @@ -44,19 +44,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest3ak6pv627-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestacs7lfiew-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ingressApplicationGateway": - {"enabled": true, "config": {"subnetCIDR": "10.2.0.0/16"}}}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"ingressApplicationGateway": {"enabled": + true, "config": {"subnetCIDR": "10.2.0.0/16"}}}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -67,39 +68,40 @@ interactions: Connection: - keep-alive Content-Length: - - '1478' + - '1835' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity -a --appgw-subnet-prefix --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest3ak6pv627-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest3ak6pv627-8ecadf-d2724db0.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest3ak6pv627-8ecadf-d2724db0.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestacs7lfiew-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestacs7lfiew-8ecadf-c4797e66.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestacs7lfiew-8ecadf-c4797e66.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ingressApplicationGateway\": {\n \"enabled\": true,\n \"config\": {\n \"effectiveApplicationGatewayId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/applicationGateways/applicationgateway\",\n @@ -110,22 +112,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2dedc03-176c-4cd1-9788-f0e97a7041c1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f24fb72c-e90a-464e-a01b-dc39abc0572c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3149' + - '3607' content-type: - application/json date: - - Tue, 19 Oct 2021 06:36:13 GMT + - Wed, 01 Dec 2021 14:06:44 GMT expires: - '-1' pragma: @@ -137,7 +140,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -156,72 +159,23 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-prefix --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2dedc03-176c-4cd1-9788-f0e97a7041c1?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"03dcdec2-6c17-d14c-9788-f0e97a7041c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:14.13Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 06:36:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity -a --appgw-subnet-prefix - --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2dedc03-176c-4cd1-9788-f0e97a7041c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f24fb72c-e90a-464e-a01b-dc39abc0572c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"03dcdec2-6c17-d14c-9788-f0e97a7041c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:14.13Z\"\n }" + string: "{\n \"name\": \"2cb74ff2-0ae9-4e46-a01b-dc39abc0572c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:44.0833333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:37:13 GMT + - Wed, 01 Dec 2021 14:07:14 GMT expires: - '-1' pragma: @@ -254,23 +208,23 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-prefix --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2dedc03-176c-4cd1-9788-f0e97a7041c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f24fb72c-e90a-464e-a01b-dc39abc0572c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"03dcdec2-6c17-d14c-9788-f0e97a7041c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:14.13Z\"\n }" + string: "{\n \"name\": \"2cb74ff2-0ae9-4e46-a01b-dc39abc0572c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:44.0833333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:37:44 GMT + - Wed, 01 Dec 2021 14:07:43 GMT expires: - '-1' pragma: @@ -303,23 +257,23 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-prefix --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2dedc03-176c-4cd1-9788-f0e97a7041c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f24fb72c-e90a-464e-a01b-dc39abc0572c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"03dcdec2-6c17-d14c-9788-f0e97a7041c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:14.13Z\"\n }" + string: "{\n \"name\": \"2cb74ff2-0ae9-4e46-a01b-dc39abc0572c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:44.0833333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:38:14 GMT + - Wed, 01 Dec 2021 14:08:14 GMT expires: - '-1' pragma: @@ -352,23 +306,23 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-prefix --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2dedc03-176c-4cd1-9788-f0e97a7041c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f24fb72c-e90a-464e-a01b-dc39abc0572c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"03dcdec2-6c17-d14c-9788-f0e97a7041c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:14.13Z\"\n }" + string: "{\n \"name\": \"2cb74ff2-0ae9-4e46-a01b-dc39abc0572c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:44.0833333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:38:43 GMT + - Wed, 01 Dec 2021 14:08:44 GMT expires: - '-1' pragma: @@ -401,23 +355,23 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-prefix --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2dedc03-176c-4cd1-9788-f0e97a7041c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f24fb72c-e90a-464e-a01b-dc39abc0572c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"03dcdec2-6c17-d14c-9788-f0e97a7041c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:14.13Z\"\n }" + string: "{\n \"name\": \"2cb74ff2-0ae9-4e46-a01b-dc39abc0572c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:44.0833333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:39:13 GMT + - Wed, 01 Dec 2021 14:09:14 GMT expires: - '-1' pragma: @@ -450,24 +404,24 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-prefix --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2dedc03-176c-4cd1-9788-f0e97a7041c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f24fb72c-e90a-464e-a01b-dc39abc0572c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"03dcdec2-6c17-d14c-9788-f0e97a7041c1\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:36:14.13Z\",\n \"endTime\": - \"2021-10-19T06:39:24.2560981Z\"\n }" + string: "{\n \"name\": \"2cb74ff2-0ae9-4e46-a01b-dc39abc0572c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:06:44.0833333Z\",\n \"endTime\": + \"2021-12-01T14:09:32.8383379Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 06:39:44 GMT + - Wed, 01 Dec 2021 14:09:45 GMT expires: - '-1' pragma: @@ -500,32 +454,33 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-prefix --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest3ak6pv627-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest3ak6pv627-8ecadf-d2724db0.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest3ak6pv627-8ecadf-d2724db0.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestacs7lfiew-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestacs7lfiew-8ecadf-c4797e66.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestacs7lfiew-8ecadf-c4797e66.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ingressApplicationGateway\": {\n \"enabled\": true,\n \"config\": {\n \"effectiveApplicationGatewayId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/applicationGateways/applicationgateway\",\n @@ -536,26 +491,28 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/39144500-44b4-4ec4-bf8a-dbd29a89c37b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8e4e9642-74db-4ed0-8415-0c08f5cfe8fa\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4192' + - '4650' content-type: - application/json date: - - Tue, 19 Oct 2021 06:39:44 GMT + - Wed, 01 Dec 2021 14:09:45 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_managed_disk.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_managed_disk.yaml old mode 100755 new mode 100644 index 4d27f85de9b..ea345b07e02 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_managed_disk.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_managed_disk.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:18:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:09:20Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:18:53 GMT + - Wed, 01 Dec 2021 14:09:20 GMT expires: - '-1' pragma: @@ -43,19 +43,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestamidfq5l3-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest7wbtnc2us-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskType": - "Managed", "workloadRuntime": "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", - "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "Managed", "workloadRuntime": "OCIContainer", "osType": "Linux", "enableAutoScaling": + false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": + false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": + -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -66,38 +66,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1416' + - '1773' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestamidfq5l3-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestamidfq5l3-8ecadf-239562fb.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestamidfq5l3-8ecadf-239562fb.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest7wbtnc2us-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest7wbtnc2us-8ecadf-22ea5182.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest7wbtnc2us-8ecadf-22ea5182.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -105,22 +106,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/444c9a1d-bdc0-4a04-a093-03ba4d85ced1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c7445b9-f835-48d1-9c36-0ccac40a6330?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2778' + - '3236' content-type: - application/json date: - - Tue, 19 Oct 2021 07:18:57 GMT + - Wed, 01 Dec 2021 14:09:25 GMT expires: - '-1' pragma: @@ -132,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created @@ -150,62 +152,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/444c9a1d-bdc0-4a04-a093-03ba4d85ced1?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"1d9a4c44-c0bd-044a-a093-03ba4d85ced1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:18:57.4633333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:19:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/444c9a1d-bdc0-4a04-a093-03ba4d85ced1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c7445b9-f835-48d1-9c36-0ccac40a6330?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1d9a4c44-c0bd-044a-a093-03ba4d85ced1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:18:57.4633333Z\"\n }" + string: "{\n \"name\": \"b945745c-35f8-d148-9c36-0ccac40a6330\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:25.4566666Z\"\n }" headers: cache-control: - no-cache @@ -214,7 +168,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:19:56 GMT + - Wed, 01 Dec 2021 14:09:55 GMT expires: - '-1' pragma: @@ -246,14 +200,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/444c9a1d-bdc0-4a04-a093-03ba4d85ced1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c7445b9-f835-48d1-9c36-0ccac40a6330?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1d9a4c44-c0bd-044a-a093-03ba4d85ced1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:18:57.4633333Z\"\n }" + string: "{\n \"name\": \"b945745c-35f8-d148-9c36-0ccac40a6330\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:25.4566666Z\"\n }" headers: cache-control: - no-cache @@ -262,7 +216,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:27 GMT + - Wed, 01 Dec 2021 14:10:25 GMT expires: - '-1' pragma: @@ -294,14 +248,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/444c9a1d-bdc0-4a04-a093-03ba4d85ced1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c7445b9-f835-48d1-9c36-0ccac40a6330?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1d9a4c44-c0bd-044a-a093-03ba4d85ced1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:18:57.4633333Z\"\n }" + string: "{\n \"name\": \"b945745c-35f8-d148-9c36-0ccac40a6330\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:25.4566666Z\"\n }" headers: cache-control: - no-cache @@ -310,7 +264,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:57 GMT + - Wed, 01 Dec 2021 14:10:56 GMT expires: - '-1' pragma: @@ -342,14 +296,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/444c9a1d-bdc0-4a04-a093-03ba4d85ced1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c7445b9-f835-48d1-9c36-0ccac40a6330?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1d9a4c44-c0bd-044a-a093-03ba4d85ced1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:18:57.4633333Z\"\n }" + string: "{\n \"name\": \"b945745c-35f8-d148-9c36-0ccac40a6330\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:25.4566666Z\"\n }" headers: cache-control: - no-cache @@ -358,7 +312,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:21:27 GMT + - Wed, 01 Dec 2021 14:11:25 GMT expires: - '-1' pragma: @@ -390,24 +344,24 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/444c9a1d-bdc0-4a04-a093-03ba4d85ced1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c7445b9-f835-48d1-9c36-0ccac40a6330?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1d9a4c44-c0bd-044a-a093-03ba4d85ced1\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:18:57.4633333Z\",\n \"endTime\": - \"2021-10-19T07:21:48.325851Z\"\n }" + string: "{\n \"name\": \"b945745c-35f8-d148-9c36-0ccac40a6330\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:09:25.4566666Z\",\n \"endTime\": + \"2021-12-01T14:11:51.7625806Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 07:21:57 GMT + - Wed, 01 Dec 2021 14:11:56 GMT expires: - '-1' pragma: @@ -439,57 +393,60 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestamidfq5l3-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestamidfq5l3-8ecadf-239562fb.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestamidfq5l3-8ecadf-239562fb.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest7wbtnc2us-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest7wbtnc2us-8ecadf-22ea5182.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest7wbtnc2us-8ecadf-22ea5182.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e7be696d-10a4-4947-870c-cdee6f011c5e\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1c84511e-de24-4fc3-8792-9a32a5cc57b0\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 07:21:57 GMT + - Wed, 01 Dec 2021 14:11:57 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_aad_auth_msi.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_aad_auth_msi.yaml new file mode 100644 index 00000000000..838c96fbc13 --- /dev/null +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_aad_auth_msi.yaml @@ -0,0 +1,1947 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '313' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:18:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 01 Dec 2021 14:18:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2?api-version=2015-11-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": + \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"sku\": {\r\n \"name\": \"standalone\",\r\n \"lastSkuUpdate\": + \"Mon, 02 Aug 2021 07:30:13 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n + \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n + \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": + \"Wed, 01 Dec 2021 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": + \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n + \ \"modifiedDate\": \"Mon, 29 Nov 2021 09:57:04 GMT\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n + \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n + \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": + \"westus2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1162' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:18:54 GMT + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2015-11-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": + \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"sku\": {\r\n \"name\": \"standalone\",\r\n \"lastSkuUpdate\": + \"Mon, 02 Aug 2021 07:30:13 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n + \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n + \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": + \"Wed, 01 Dec 2021 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": + \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n + \ \"modifiedDate\": \"Mon, 29 Nov 2021 09:57:04 GMT\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n + \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n + \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": + \"westus2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1162' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:18:54 GMT + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-11-01 + response: + body: + string: "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\",\"name\":\"eastus\",\"displayName\":\"East + US\",\"regionalDisplayName\":\"(US) East US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"westus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\",\"name\":\"eastus2\",\"displayName\":\"East + US 2\",\"regionalDisplayName\":\"(US) East US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"centralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstg\",\"name\":\"eastusstg\",\"displayName\":\"East + US STG\",\"regionalDisplayName\":\"(US) East US STG\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"southcentralusstg\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstg\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\",\"name\":\"southcentralus\",\"displayName\":\"South + Central US\",\"regionalDisplayName\":\"(US) South Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\":\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"northcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstg\",\"name\":\"southcentralusstg\",\"displayName\":\"South + Central US STG\",\"regionalDisplayName\":\"(US) South Central US STG\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\":\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"eastusstg\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstg\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\",\"name\":\"westus2\",\"displayName\":\"West + US 2\",\"regionalDisplayName\":\"(US) West US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-119.852\",\"latitude\":\"47.233\",\"physicalLocation\":\"Washington\",\"pairedRegion\":[{\"name\":\"westcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus3\",\"name\":\"westus3\",\"displayName\":\"West + US 3\",\"regionalDisplayName\":\"(US) West US 3\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-112.074036\",\"latitude\":\"33.448376\",\"physicalLocation\":\"Phoenix\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\",\"name\":\"australiaeast\",\"displayName\":\"Australia + East\",\"regionalDisplayName\":\"(Asia Pacific) Australia East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"151.2094\",\"latitude\":\"-33.86\",\"physicalLocation\":\"New + South Wales\",\"pairedRegion\":[{\"name\":\"australiasoutheast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\",\"name\":\"southeastasia\",\"displayName\":\"Southeast + Asia\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"103.833\",\"latitude\":\"1.283\",\"physicalLocation\":\"Singapore\",\"pairedRegion\":[{\"name\":\"eastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\",\"name\":\"northeurope\",\"displayName\":\"North + Europe\",\"regionalDisplayName\":\"(Europe) North Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-6.2597\",\"latitude\":\"53.3478\",\"physicalLocation\":\"Ireland\",\"pairedRegion\":[{\"name\":\"westeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedencentral\",\"name\":\"swedencentral\",\"displayName\":\"Sweden + Central\",\"regionalDisplayName\":\"(Europe) Sweden Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"17.14127\",\"latitude\":\"60.67488\",\"physicalLocation\":\"G\xE4vle\",\"pairedRegion\":[{\"name\":\"swedensouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedensouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\",\"name\":\"uksouth\",\"displayName\":\"UK + South\",\"regionalDisplayName\":\"(Europe) UK South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-0.799\",\"latitude\":\"50.941\",\"physicalLocation\":\"London\",\"pairedRegion\":[{\"name\":\"ukwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\",\"name\":\"westeurope\",\"displayName\":\"West + Europe\",\"regionalDisplayName\":\"(Europe) West Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"4.9\",\"latitude\":\"52.3667\",\"physicalLocation\":\"Netherlands\",\"pairedRegion\":[{\"name\":\"northeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\",\"name\":\"centralus\",\"displayName\":\"Central + US\",\"regionalDisplayName\":\"(US) Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"physicalLocation\":\"Iowa\",\"pairedRegion\":[{\"name\":\"eastus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\",\"name\":\"northcentralus\",\"displayName\":\"North + Central US\",\"regionalDisplayName\":\"(US) North Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-87.6278\",\"latitude\":\"41.8819\",\"physicalLocation\":\"Illinois\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\",\"name\":\"westus\",\"displayName\":\"West + US\",\"regionalDisplayName\":\"(US) West US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-122.417\",\"latitude\":\"37.783\",\"physicalLocation\":\"California\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\",\"name\":\"southafricanorth\",\"displayName\":\"South + Africa North\",\"regionalDisplayName\":\"(Africa) South Africa North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Africa\",\"longitude\":\"28.218370\",\"latitude\":\"-25.731340\",\"physicalLocation\":\"Johannesburg\",\"pairedRegion\":[{\"name\":\"southafricawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\",\"name\":\"centralindia\",\"displayName\":\"Central + India\",\"regionalDisplayName\":\"(Asia Pacific) Central India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"73.9197\",\"latitude\":\"18.5822\",\"physicalLocation\":\"Pune\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\",\"name\":\"eastasia\",\"displayName\":\"East + Asia\",\"regionalDisplayName\":\"(Asia Pacific) East Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"114.188\",\"latitude\":\"22.267\",\"physicalLocation\":\"Hong + Kong\",\"pairedRegion\":[{\"name\":\"southeastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\",\"name\":\"japaneast\",\"displayName\":\"Japan + East\",\"regionalDisplayName\":\"(Asia Pacific) Japan East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"139.77\",\"latitude\":\"35.68\",\"physicalLocation\":\"Tokyo, + Saitama\",\"pairedRegion\":[{\"name\":\"japanwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\",\"name\":\"jioindiawest\",\"displayName\":\"Jio + India West\",\"regionalDisplayName\":\"(Asia Pacific) Jio India West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"70.05773\",\"latitude\":\"22.470701\",\"physicalLocation\":\"Jamnagar\",\"pairedRegion\":[{\"name\":\"jioindiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\",\"name\":\"koreacentral\",\"displayName\":\"Korea + Central\",\"regionalDisplayName\":\"(Asia Pacific) Korea Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"126.9780\",\"latitude\":\"37.5665\",\"physicalLocation\":\"Seoul\",\"pairedRegion\":[{\"name\":\"koreasouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\",\"name\":\"canadacentral\",\"displayName\":\"Canada + Central\",\"regionalDisplayName\":\"(Canada) Canada Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Canada\",\"longitude\":\"-79.383\",\"latitude\":\"43.653\",\"physicalLocation\":\"Toronto\",\"pairedRegion\":[{\"name\":\"canadaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\",\"name\":\"francecentral\",\"displayName\":\"France + Central\",\"regionalDisplayName\":\"(Europe) France Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.3730\",\"latitude\":\"46.3772\",\"physicalLocation\":\"Paris\",\"pairedRegion\":[{\"name\":\"francesouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\",\"name\":\"germanywestcentral\",\"displayName\":\"Germany + West Central\",\"regionalDisplayName\":\"(Europe) Germany West Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.682127\",\"latitude\":\"50.110924\",\"physicalLocation\":\"Frankfurt\",\"pairedRegion\":[{\"name\":\"germanynorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\",\"name\":\"norwayeast\",\"displayName\":\"Norway + East\",\"regionalDisplayName\":\"(Europe) Norway East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"10.752245\",\"latitude\":\"59.913868\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwaywest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\",\"name\":\"switzerlandnorth\",\"displayName\":\"Switzerland + North\",\"regionalDisplayName\":\"(Europe) Switzerland North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.564572\",\"latitude\":\"47.451542\",\"physicalLocation\":\"Zurich\",\"pairedRegion\":[{\"name\":\"switzerlandwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\",\"name\":\"uaenorth\",\"displayName\":\"UAE + North\",\"regionalDisplayName\":\"(Middle East) UAE North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Middle + East\",\"longitude\":\"55.316666\",\"latitude\":\"25.266666\",\"physicalLocation\":\"Dubai\",\"pairedRegion\":[{\"name\":\"uaecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\",\"name\":\"brazilsouth\",\"displayName\":\"Brazil + South\",\"regionalDisplayName\":\"(South America) Brazil South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"South + America\",\"longitude\":\"-46.633\",\"latitude\":\"-23.55\",\"physicalLocation\":\"Sao + Paulo State\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralusstage\",\"name\":\"centralusstage\",\"displayName\":\"Central + US (Stage)\",\"regionalDisplayName\":\"(US) Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstage\",\"name\":\"eastusstage\",\"displayName\":\"East + US (Stage)\",\"regionalDisplayName\":\"(US) East US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2stage\",\"name\":\"eastus2stage\",\"displayName\":\"East + US 2 (Stage)\",\"regionalDisplayName\":\"(US) East US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralusstage\",\"name\":\"northcentralusstage\",\"displayName\":\"North + Central US (Stage)\",\"regionalDisplayName\":\"(US) North Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstage\",\"name\":\"southcentralusstage\",\"displayName\":\"South + Central US (Stage)\",\"regionalDisplayName\":\"(US) South Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westusstage\",\"name\":\"westusstage\",\"displayName\":\"West + US (Stage)\",\"regionalDisplayName\":\"(US) West US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2stage\",\"name\":\"westus2stage\",\"displayName\":\"West + US 2 (Stage)\",\"regionalDisplayName\":\"(US) West US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asia\",\"name\":\"asia\",\"displayName\":\"Asia\",\"regionalDisplayName\":\"Asia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asiapacific\",\"name\":\"asiapacific\",\"displayName\":\"Asia + Pacific\",\"regionalDisplayName\":\"Asia Pacific\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australia\",\"name\":\"australia\",\"displayName\":\"Australia\",\"regionalDisplayName\":\"Australia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazil\",\"name\":\"brazil\",\"displayName\":\"Brazil\",\"regionalDisplayName\":\"Brazil\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canada\",\"name\":\"canada\",\"displayName\":\"Canada\",\"regionalDisplayName\":\"Canada\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/europe\",\"name\":\"europe\",\"displayName\":\"Europe\",\"regionalDisplayName\":\"Europe\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/france\",\"name\":\"france\",\"displayName\":\"France\",\"regionalDisplayName\":\"France\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germany\",\"name\":\"germany\",\"displayName\":\"Germany\",\"regionalDisplayName\":\"Germany\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/global\",\"name\":\"global\",\"displayName\":\"Global\",\"regionalDisplayName\":\"Global\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/india\",\"name\":\"india\",\"displayName\":\"India\",\"regionalDisplayName\":\"India\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japan\",\"name\":\"japan\",\"displayName\":\"Japan\",\"regionalDisplayName\":\"Japan\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/korea\",\"name\":\"korea\",\"displayName\":\"Korea\",\"regionalDisplayName\":\"Korea\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norway\",\"name\":\"norway\",\"displayName\":\"Norway\",\"regionalDisplayName\":\"Norway\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafrica\",\"name\":\"southafrica\",\"displayName\":\"South + Africa\",\"regionalDisplayName\":\"South Africa\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerland\",\"name\":\"switzerland\",\"displayName\":\"Switzerland\",\"regionalDisplayName\":\"Switzerland\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uae\",\"name\":\"uae\",\"displayName\":\"United + Arab Emirates\",\"regionalDisplayName\":\"United Arab Emirates\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uk\",\"name\":\"uk\",\"displayName\":\"United + Kingdom\",\"regionalDisplayName\":\"United Kingdom\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstates\",\"name\":\"unitedstates\",\"displayName\":\"United + States\",\"regionalDisplayName\":\"United States\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasiastage\",\"name\":\"eastasiastage\",\"displayName\":\"East + Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) East Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasiastage\",\"name\":\"southeastasiastage\",\"displayName\":\"Southeast + Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\",\"name\":\"centraluseuap\",\"displayName\":\"Central + US EUAP\",\"regionalDisplayName\":\"(US) Central US EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"pairedRegion\":[{\"name\":\"eastus2euap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\",\"name\":\"eastus2euap\",\"displayName\":\"East + US 2 EUAP\",\"regionalDisplayName\":\"(US) East US 2 EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"pairedRegion\":[{\"name\":\"centraluseuap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\",\"name\":\"westcentralus\",\"displayName\":\"West + Central US\",\"regionalDisplayName\":\"(US) West Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-110.234\",\"latitude\":\"40.890\",\"physicalLocation\":\"Wyoming\",\"pairedRegion\":[{\"name\":\"westus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\",\"name\":\"southafricawest\",\"displayName\":\"South + Africa West\",\"regionalDisplayName\":\"(Africa) South Africa West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Africa\",\"longitude\":\"18.843266\",\"latitude\":\"-34.075691\",\"physicalLocation\":\"Cape + Town\",\"pairedRegion\":[{\"name\":\"southafricanorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\",\"name\":\"australiacentral\",\"displayName\":\"Australia + Central\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\",\"name\":\"australiacentral2\",\"displayName\":\"Australia + Central 2\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\",\"name\":\"australiasoutheast\",\"displayName\":\"Australia + Southeast\",\"regionalDisplayName\":\"(Asia Pacific) Australia Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"144.9631\",\"latitude\":\"-37.8136\",\"physicalLocation\":\"Victoria\",\"pairedRegion\":[{\"name\":\"australiaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\",\"name\":\"japanwest\",\"displayName\":\"Japan + West\",\"regionalDisplayName\":\"(Asia Pacific) Japan West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"135.5022\",\"latitude\":\"34.6939\",\"physicalLocation\":\"Osaka\",\"pairedRegion\":[{\"name\":\"japaneast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral\",\"name\":\"jioindiacentral\",\"displayName\":\"Jio + India Central\",\"regionalDisplayName\":\"(Asia Pacific) Jio India Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"79.08886\",\"latitude\":\"21.146633\",\"physicalLocation\":\"Nagpur\",\"pairedRegion\":[{\"name\":\"jioindiawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\",\"name\":\"koreasouth\",\"displayName\":\"Korea + South\",\"regionalDisplayName\":\"(Asia Pacific) Korea South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"129.0756\",\"latitude\":\"35.1796\",\"physicalLocation\":\"Busan\",\"pairedRegion\":[{\"name\":\"koreacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\",\"name\":\"southindia\",\"displayName\":\"South + India\",\"regionalDisplayName\":\"(Asia Pacific) South India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"80.1636\",\"latitude\":\"12.9822\",\"physicalLocation\":\"Chennai\",\"pairedRegion\":[{\"name\":\"centralindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westindia\",\"name\":\"westindia\",\"displayName\":\"West + India\",\"regionalDisplayName\":\"(Asia Pacific) West India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"72.868\",\"latitude\":\"19.088\",\"physicalLocation\":\"Mumbai\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\",\"name\":\"canadaeast\",\"displayName\":\"Canada + East\",\"regionalDisplayName\":\"(Canada) Canada East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Canada\",\"longitude\":\"-71.217\",\"latitude\":\"46.817\",\"physicalLocation\":\"Quebec\",\"pairedRegion\":[{\"name\":\"canadacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\",\"name\":\"francesouth\",\"displayName\":\"France + South\",\"regionalDisplayName\":\"(Europe) France South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.1972\",\"latitude\":\"43.8345\",\"physicalLocation\":\"Marseille\",\"pairedRegion\":[{\"name\":\"francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\",\"name\":\"germanynorth\",\"displayName\":\"Germany + North\",\"regionalDisplayName\":\"(Europe) Germany North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.806422\",\"latitude\":\"53.073635\",\"physicalLocation\":\"Berlin\",\"pairedRegion\":[{\"name\":\"germanywestcentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\",\"name\":\"norwaywest\",\"displayName\":\"Norway + West\",\"regionalDisplayName\":\"(Europe) Norway West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"5.733107\",\"latitude\":\"58.969975\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwayeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedensouth\",\"name\":\"swedensouth\",\"displayName\":\"Sweden + South\",\"regionalDisplayName\":\"(Europe) Sweden South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"13.0007\",\"latitude\":\"55.6059\",\"physicalLocation\":\"Malmo\",\"pairedRegion\":[{\"name\":\"swedencentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedencentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\",\"name\":\"switzerlandwest\",\"displayName\":\"Switzerland + West\",\"regionalDisplayName\":\"(Europe) Switzerland West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"6.143158\",\"latitude\":\"46.204391\",\"physicalLocation\":\"Geneva\",\"pairedRegion\":[{\"name\":\"switzerlandnorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\",\"name\":\"ukwest\",\"displayName\":\"UK + West\",\"regionalDisplayName\":\"(Europe) UK West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"-3.084\",\"latitude\":\"53.427\",\"physicalLocation\":\"Cardiff\",\"pairedRegion\":[{\"name\":\"uksouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\",\"name\":\"uaecentral\",\"displayName\":\"UAE + Central\",\"regionalDisplayName\":\"(Middle East) UAE Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Middle + East\",\"longitude\":\"54.366669\",\"latitude\":\"24.466667\",\"physicalLocation\":\"Abu + Dhabi\",\"pairedRegion\":[{\"name\":\"uaenorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsoutheast\",\"name\":\"brazilsoutheast\",\"displayName\":\"Brazil + Southeast\",\"regionalDisplayName\":\"(South America) Brazil Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"South + America\",\"longitude\":\"-43.2075\",\"latitude\":\"-22.90278\",\"physicalLocation\":\"Rio\",\"pairedRegion\":[{\"name\":\"brazilsouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusslv\",\"name\":\"eastusslv\",\"displayName\":\"East + US SLV\",\"regionalDisplayName\":\"(South America) East US SLV\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"South + America\",\"longitude\":\"-43.2075\",\"latitude\":\"-22.90278\",\"physicalLocation\":\"Silverstone\",\"pairedRegion\":[{\"name\":\"eastusslv\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusslv\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/qatarcentral\",\"name\":\"qatarcentral\",\"displayName\":\"Qatar + Central\",\"regionalDisplayName\":\"(Europe) Qatar Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"51.439327\",\"latitude\":\"25.551462\",\"physicalLocation\":\"Doha\",\"pairedRegion\":[{\"name\":\"westeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"}]}}]}" + headers: + cache-control: + - no-cache + content-length: + - '30870' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:18:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Insights?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights","namespace":"microsoft.insights","authorizations":[{"applicationId":"6bccf540-eb86-4037-af03-7fa058c2db75","roleDefinitionId":"89dcede2-9219-403a-9723-d3c6473f9472"},{"applicationId":"11c174dc-1945-4a9a-a36b-c79a0f246b9b","roleDefinitionId":"dd9d4347-f397-45f2-b538-85f21c90037b"},{"applicationId":"035f9e1d-4f00-4419-bf50-bf2d87eb4878","roleDefinitionId":"323795fe-ba3d-4f5a-ad42-afb4e1ea9485"},{"applicationId":"f5c26e74-f226-4ae8-85f0-b4af0080ac9e","roleDefinitionId":"529d7ae6-e892-4d43-809d-8547aeb90643"},{"applicationId":"b503eb83-1222-4dcc-b116-b98ed5216e05","roleDefinitionId":"68699c37-c689-44d4-9248-494b782d46ae"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"},{"applicationId":"3af5a1e8-2459-45cb-8683-bcd6cccbcc13","roleDefinitionId":"b1309299-720d-4159-9897-6158a61aee41"},{"applicationId":"6a0a243c-0886-468a-a4c2-eff52c7445da","roleDefinitionId":"d2eda64b-c5e6-4930-8642-2d80ecd7c2e2"},{"applicationId":"707be275-6b9d-4ee7-88f9-c0c2bd646e0f","roleDefinitionId":"fa027d90-6ba0-4c33-9a54-59edaf2327e7"},{"applicationId":"461e8683-5575-4561-ac7f-899cc907d62a","roleDefinitionId":"68699c37-c689-44d4-9248-494b782d46ae"},{"applicationId":"562db366-1b96-45d2-aa4a-f2148cef2240","roleDefinitionId":"4109c8be-c1c8-4be0-af52-9d3c76c140ab"},{"applicationId":"e933bd07-d2ee-4f1d-933c-3752b819567b","roleDefinitionId":"abbcfd44-e662-419a-9b5a-478f8e2f57c9"},{"applicationId":"f6b60513-f290-450e-a2f3-9930de61c5e7","roleDefinitionId":"4ef11659-08ac-48af-98a7-25fb6b1e1bc4"},{"applicationId":"12743ff8-d3de-49d0-a4ce-6c91a4245ea0","roleDefinitionId":"207b20a7-6802-4ae4-aaa2-1a36dd45bba0"},{"applicationId":"58ef1dbd-684c-47d6-8ffc-61ea7a197b95","roleDefinitionId":"dd9d4347-f397-45f2-b538-85f21c90037b"}],"resourceTypes":[{"resourceType":"components","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Norway West","Australia Southeast","Australia Central 2","Germany West + Central","Switzerland West","UAE Central","UK West","Japan West","Brazil Southeast","UAE + North","Australia Central","France South","South India","West US 3","Canada + East","Jio India West","Korea South"],"apiVersions":["2020-02-02-preview","2020-02-02","2018-05-01-preview","2015-05-01","2014-12-01-preview","2014-08-01","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"components/query","locations":[],"apiVersions":["2018-04-20"],"capabilities":"None"},{"resourceType":"components/metadata","locations":[],"apiVersions":["2018-04-20"],"capabilities":"None"},{"resourceType":"components/metrics","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","East US 2","East Asia","West US","Central + US","South Africa North","North Central US","Brazil South","Switzerland North","Australia + Southeast","Norway East","Norway West"],"apiVersions":["2018-04-20","2014-04-01"],"capabilities":"None"},{"resourceType":"components/events","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","East US 2","East Asia","West US","Central + US","South Africa North","North Central US"],"apiVersions":["2018-04-20"],"capabilities":"None"},{"resourceType":"components/syntheticmonitorlocations","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Norway West","Australia Southeast","Australia Central 2","Germany West + Central","Switzerland West","UAE Central","UK West","Japan West","Brazil Southeast","UAE + North","Australia Central","France South","South India","West US 3","Canada + East","Jio India West","Korea South"],"apiVersions":["2020-02-02-preview","2020-02-02","2018-05-01-preview","2015-05-01","2014-12-01-preview","2014-08-01","2014-04-01"],"capabilities":"None"},{"resourceType":"webtests","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Norway West","Australia Southeast","Australia Central 2","Germany West + Central","Switzerland West","UAE Central","UK West","Brazil Southeast","Japan + West","UAE North","Australia Central","France South","South India","West US + 3","Canada East","Jio India West","Korea South"],"apiVersions":["2018-05-01-preview","2015-05-01","2014-08-01","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"webtests/getTestResultFile","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","East US 2","East Asia","West US","Central + US","South Africa North","North Central US"],"apiVersions":["2020-02-10-preview"],"capabilities":"None"},{"resourceType":"scheduledqueryrules","locations":["West + Central US","Australia East","Central US","East US","East US 2","France Central","Japan + East","North Europe","South Africa North","Southeast Asia","UK South","West + Europe","West US 2","Central India","Canada Central","Australia Southeast","South + Central US","Australia Central","Korea Central","East Asia","West US","North + Central US","Brazil South","UK West","Switzerland North","Switzerland West","UAE + Central","Germany West Central","Australia Central 2","Brazil SouthEast","Norway + East","UAE North","Japan West","South India","France South","Norway West","East + US 2 EUAP"],"apiVersions":["2021-08-01","2021-02-01-preview","2020-05-01-preview","2018-04-16","2017-09-01-preview"],"defaultApiVersion":"2018-04-16","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"components/pricingPlans","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"migrateToNewPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"rollbackToLegacyPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"listMigrationdate","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"logprofiles","locations":[],"apiVersions":["2016-03-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"}],"capabilities":"None"},{"resourceType":"migratealertrules","locations":[],"apiVersions":["2018-03-01"],"capabilities":"None"},{"resourceType":"metricalerts","locations":["Global"],"apiVersions":["2018-03-01","2017-09-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"alertrules","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Central US","Australia + East","Australia Southeast","Brazil South","UK South","UK West","South India","Central + India","West India","Canada East","Canada Central","West Central US","West + US 2","Korea Central","Australia Central","Australia Central 2","France Central","South + Africa North","UAE North","Korea South","France South","East US 2 EUAP","Central + US EUAP","South Africa West","UAE Central"],"apiVersions":["2016-03-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"autoscalesettings","locations":["West + US","East US","North Europe","South Central US","East US 2","Central US","Australia + Southeast","Brazil South","UK South","UK West","South India","Central India","West + India","Canada East","Canada Central","West Central US","West US 2","Korea + Central","Australia Central","Australia Central 2","France Central","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","North Central + US","Australia East","South Africa North","UAE North","Switzerland North","Germany + West Central","Norway East","West US 3","Jio India West","Korea South","France + South","East US 2 EUAP","Central US EUAP","South Africa West","UAE Central","Switzerland + West","Germany North","Norway West","Brazil Southeast","Jio India Central","Sweden + South","Sweden Central"],"apiVersions":["2021-05-01-preview","2015-04-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"eventtypes","locations":[],"apiVersions":["2017-03-01-preview","2016-09-01-preview","2015-04-01","2014-11-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-01"}],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":["East + US"],"apiVersions":["2015-04-01","2014-04-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2015-04-01","2014-04-01"],"capabilities":"None"},{"resourceType":"vmInsightsOnboardingStatuses","locations":[],"apiVersions":["2018-11-27-preview"],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-04-01","2014-06-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-01"}],"capabilities":"None"},{"resourceType":"diagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea Central","Australia Central","Australia Central 2","France + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Korea South","East US + 2 EUAP","Central US EUAP","France South","South Africa West","UAE Central","Switzerland + West","Germany North","Norway West","Brazil Southeast","Jio India Central","Sweden + South","Sweden Central"],"apiVersions":["2021-05-01-preview","2017-05-01-preview","2016-09-01","2015-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-09-01"}],"capabilities":"SupportsExtension"},{"resourceType":"diagnosticSettingsCategories","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea Central","Australia Central","Australia Central 2","France + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Korea South","East US + 2 EUAP","Central US EUAP","France South","South Africa West","UAE Central","Switzerland + West","Germany North","Norway West","Brazil Southeast","Jio India Central","Sweden + South","Sweden Central"],"apiVersions":["2021-05-01-preview","2017-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"extendedDiagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea Central","Australia Central","Australia Central 2","France + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Korea South","France + South","East US 2 EUAP","Central US EUAP","South Africa West","UAE Central","Switzerland + West","Germany North","Norway West","Brazil Southeast","Jio India Central","Sweden + South","Sweden Central"],"apiVersions":["2017-02-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-02-01"}],"capabilities":"SupportsExtension"},{"resourceType":"metricDefinitions","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Australia Central","Australia + Central 2","Brazil South","Brazil Southeast","South India","Central India","West + India","North Europe","West US 2","Jio India West","West US 3","West Central + US","Korea Central","UK South","UK West","France Central","South Africa North","South + Africa West","UAE North","Switzerland North","Germany West Central","Norway + East","Jio India Central","Sweden Central","Sweden South","Korea South","East + US 2 EUAP","Central US EUAP","France South","UAE Central","Switzerland West","Germany + North","Norway West"],"apiVersions":["2018-01-01","2017-12-01-preview","2017-09-01-preview","2017-05-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-01"}],"capabilities":"SupportsExtension"},{"resourceType":"logDefinitions","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea Central","Australia Central","Australia Central 2","France + Central","Korea South","France South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2015-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-07-01"}],"capabilities":"SupportsExtension"},{"resourceType":"eventCategories","locations":[],"apiVersions":["2015-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-01"}],"capabilities":"None"},{"resourceType":"metrics","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Australia Central","Australia + Central 2","Brazil South","Brazil Southeast","South India","Central India","West + India","North Europe","West US 2","Jio India West","West US 3","West Central + US","Korea Central","UK South","UK West","France Central","South Africa North","South + Africa West","UAE North","Switzerland North","Germany West Central","Norway + East","Jio India Central","Sweden Central","Sweden South","Korea South","East + US 2 EUAP","Central US EUAP","France South","UAE Central","Switzerland West","Germany + North","Norway West"],"apiVersions":["2021-05-01","2019-07-01","2018-01-01","2017-12-01-preview","2017-09-01-preview","2017-05-01-preview","2016-09-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-01"}],"capabilities":"SupportsExtension"},{"resourceType":"metricbatch","locations":[],"apiVersions":["2019-01-01-preview"],"capabilities":"None"},{"resourceType":"metricNamespaces","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Australia Central","Australia + Central 2","Brazil South","Brazil Southeast","South India","Central India","West + India","North Europe","West US 2","Jio India West","West US 3","West Central + US","Korea Central","UK South","UK West","France Central","South Africa North","South + Africa West","UAE North","Switzerland North","Germany West Central","Norway + East","Jio India Central","Sweden Central","Sweden South","Korea South","East + US 2 EUAP","Central US EUAP","France South","UAE Central","Switzerland West","Germany + North","Norway West"],"apiVersions":["2017-12-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"notificationstatus","locations":[],"apiVersions":["2021-09-01"],"capabilities":"None"},{"resourceType":"createnotifications","locations":[],"apiVersions":["2021-09-01"],"capabilities":"None"},{"resourceType":"actiongroups","locations":["Global"],"apiVersions":["2021-09-01","2019-06-01","2019-03-01","2018-09-01","2018-03-01","2017-04-01","2017-03-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"activityLogAlerts","locations":["Global"],"apiVersions":["2020-10-01","2017-04-01","2017-03-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-04-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"baseline","locations":[],"apiVersions":["2018-09-01","2017-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"metricbaselines","locations":[],"apiVersions":["2019-03-01","2018-09-01"],"capabilities":"SupportsExtension"},{"resourceType":"calculatebaseline","locations":[],"apiVersions":["2018-09-01","2017-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"workbooks","locations":["West + Europe","South Central US","East US","North Europe","Southeast Asia","West + US 2","Japan East","Australia East","Korea Central","France Central","Central + US","East US 2","East Asia","West US","Canada Central","Central India","UK + South","UK West","South Africa North","North Central US","Brazil South","Switzerland + North","Norway East","Norway West","Australia Southeast","Australia Central + 2","Germany West Central","Switzerland West","UAE Central","Japan West","Brazil + Southeast","UAE North","Australia Central","France South","South India","West + Central US","West US 3","Canada East","Jio India West","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-08-01","2021-03-08","2020-10-20","2020-02-12","2018-06-17-preview","2018-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"workbooktemplates","locations":["West + Europe","South Central US","East US","North Europe","Southeast Asia","West + US 2","Japan East","Australia East","Korea Central","France Central","Central + US","East US 2","East Asia","West US","Canada Central","Central India","UK + South","UK West","South Africa North","North Central US","Brazil South","Switzerland + North","Norway East","Norway West","Australia Southeast","Australia Central + 2","Germany West Central","Switzerland West","UAE Central","Japan West","Brazil + Southeast","UAE North","Australia Central","France South","South India","West + Central US","West US 3","Canada East","Jio India West","Korea South"],"apiVersions":["2020-11-20","2019-10-17-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"myWorkbooks","locations":["West + Europe","South Central US","East US","North Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Norway West","Australia Southeast","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-03-08","2020-10-20","2020-02-12","2018-06-17-preview","2018-06-15-preview","2018-06-01-preview","2016-06-15-preview"],"capabilities":"SupportsExtension"},{"resourceType":"logs","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","France Central","France South","Australia Central","South + Africa North","Korea South","Central US EUAP","East US 2 EUAP","Australia + Central 2","South Africa West","UAE Central","UAE North"],"apiVersions":["2018-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"transactions","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","East US 2","East Asia","West US","Central + US","South Africa North","North Central US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-10-17-preview"],"capabilities":"SupportsExtension"},{"resourceType":"topology","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","East US 2","East Asia","West US","Central + US","South Africa North","North Central US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-10-17-preview"],"capabilities":"SupportsExtension"},{"resourceType":"generateLiveToken","locations":[],"apiVersions":["2021-10-14","2020-06-02-preview"],"capabilities":"SupportsExtension"},{"resourceType":"dataCollectionRules","locations":["Australia + Southeast","Canada Central","Japan East","Australia East","Central India","Germany + West Central","North Central US","South Central US","East US","Central US","West + Europe","West US 2","Southeast Asia","East US 2","UK South","North Europe","West + US","Australia Central","West Central US","East Asia","UK West","Korea Central","France + Central","South Africa North","Switzerland North","Australia Central 2","Brazil + Southeast","France South","Norway West","UAE North","Japan West","Norway East","Switzerland + West","Brazil South","East US 2 EUAP"],"apiVersions":["2021-04-01","2019-11-01-preview"],"defaultApiVersion":"2021-04-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dataCollectionRuleAssociations","locations":["Australia + Southeast","Canada Central","Japan East","Australia East","Central India","Germany + West Central","North Central US","South Central US","East US","Central US","West + Europe","West US 2","Southeast Asia","East US 2","UK South","North Europe","West + US","Australia Central","West Central US","East Asia","UK West","Korea Central","France + Central","South Africa North","Switzerland North","Brazil South","Australia + Central 2","Brazil Southeast","Canada East","France South","Norway West","UAE + North","Japan West","Norway East","Switzerland West","Korea South","East US + 2 EUAP"],"apiVersions":["2021-04-01","2019-11-01-preview"],"defaultApiVersion":"2021-04-01","capabilities":"SupportsExtension"},{"resourceType":"dataCollectionEndpoints","locations":["Australia + Southeast","Canada Central","Japan East","Australia East","Central India","Germany + West Central","North Central US","South Central US","East US","Central US","West + Europe","West US 2","Southeast Asia","East US 2","UK South","North Europe","West + US","Australia Central","West Central US","East Asia","UK West","Korea Central","France + Central","South Africa North","Switzerland North","Brazil South","Australia + Central 2","Brazil Southeast","Canada East","France South","Norway West","UAE + North","Japan West","Norway East","Switzerland West","Korea South","East US + 2 EUAP"],"apiVersions":["2021-04-01"],"defaultApiVersion":"2021-04-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dataCollectionEndpoints/scopedPrivateLinkProxies","locations":["Australia + Southeast","Canada Central","Japan East","Australia East","Central India","Germany + West Central","North Central US","South Central US","East US","Central US","West + Europe","West US 2","Southeast Asia","East US 2","UK South","North Europe","West + US","Australia Central","West Central US","East Asia","UK West","Korea Central","France + Central","South Africa North","Switzerland North","Brazil South","Australia + Central 2","Brazil Southeast","Canada East","France South","Norway West","UAE + North","Japan West","Norway East","Switzerland West","Korea South","East US + 2 EUAP"],"apiVersions":["2021-04-01"],"defaultApiVersion":"2021-04-01","capabilities":"None"},{"resourceType":"privateLinkScopes","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateLinkScopes/privateEndpointConnections","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"},{"resourceType":"privateLinkScopes/privateEndpointConnectionProxies","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"},{"resourceType":"privateLinkScopes/scopedResources","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"},{"resourceType":"components/linkedstorageaccounts","locations":["East + US","West Central US","South Central US","North Europe","West Europe","Southeast + Asia","West US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Norway West","Australia Southeast"],"apiVersions":["2020-03-01-preview"],"capabilities":"None"},{"resourceType":"privateLinkScopeOperationStatuses","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '27917' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:18:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"dataSources": {"extensions": [{"name": + "ContainerInsightsExtension", "streams": ["Microsoft-Perf", "Microsoft-ContainerInventory", + "Microsoft-ContainerLog", "Microsoft-ContainerLogV2", "Microsoft-ContainerNodeInventory", + "Microsoft-KubeEvents", "Microsoft-KubeHealth", "Microsoft-KubeMonAgentEvents", + "Microsoft-KubeNodeInventory", "Microsoft-KubePodInventory", "Microsoft-KubePVInventory", + "Microsoft-KubeServices", "Microsoft-InsightsMetrics"], "extensionName": "ContainerInsights"}]}, + "dataFlows": [{"streams": ["Microsoft-Perf", "Microsoft-ContainerInventory", + "Microsoft-ContainerLog", "Microsoft-ContainerLogV2", "Microsoft-ContainerNodeInventory", + "Microsoft-KubeEvents", "Microsoft-KubeHealth", "Microsoft-KubeMonAgentEvents", + "Microsoft-KubeNodeInventory", "Microsoft-KubePodInventory", "Microsoft-KubePVInventory", + "Microsoft-KubeServices", "Microsoft-InsightsMetrics"], "destinations": ["la-workspace"]}], + "destinations": {"logAnalytics": [{"workspaceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", + "name": "la-workspace"}]}}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1248' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"immutableId":"dcr-78b5a913da4f4d5cb0c12d527d2ef9dd","dataSources":{"extensions":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"extensionName":"ContainerInsights","name":"ContainerInsightsExtension"}]},"destinations":{"logAnalytics":[{"workspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","workspaceId":"e897efd7-55de-4860-ac51-7403ccb7e3cf","name":"la-workspace"}]},"dataFlows":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"destinations":["la-workspace"]}],"provisioningState":"Succeeded"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRules","etag":"\"d80024f2-0000-0800-0000-61a784520000\""}' + headers: + api-supported-versions: + - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview + cache-control: + - no-cache + content-length: + - '1725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:18:58 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2bbfbac8-e1b0-44af-b9c6-3a40669d37e3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '59' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestg3n3rswlk-8ecadf", + "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"omsagent": {"enabled": true, "config": + {"logAnalyticsWorkspaceResourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", + "useAADAuth": "True"}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, + "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": + "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", + "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": + false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '2052' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestg3n3rswlk-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestg3n3rswlk-8ecadf-78333762.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestg3n3rswlk-8ecadf-78333762.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n + \ \"useAADAuth\": \"True\"\n }\n }\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2887a7b9-ec80-4e35-a432-15088a7b7409?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '3608' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2887a7b9-ec80-4e35-a432-15088a7b7409?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b9a78728-80ec-354e-a432-15088a7b7409\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:19:03.3566666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2887a7b9-ec80-4e35-a432-15088a7b7409?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b9a78728-80ec-354e-a432-15088a7b7409\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:19:03.3566666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:20:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2887a7b9-ec80-4e35-a432-15088a7b7409?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b9a78728-80ec-354e-a432-15088a7b7409\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:19:03.3566666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:20:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2887a7b9-ec80-4e35-a432-15088a7b7409?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b9a78728-80ec-354e-a432-15088a7b7409\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:19:03.3566666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:21:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2887a7b9-ec80-4e35-a432-15088a7b7409?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b9a78728-80ec-354e-a432-15088a7b7409\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:19:03.3566666Z\",\n \"endTime\": + \"2021-12-01T14:21:17.9217645Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:21:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestg3n3rswlk-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestg3n3rswlk-8ecadf-78333762.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestg3n3rswlk-8ecadf-78333762.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n + \ \"useAADAuth\": \"True\"\n },\n \"identity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omsagent-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/06c15b47-e875-4670-b352-fefcbc47b415\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4634' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:21:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables + publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2021-11-11T20:13:44.2828715Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' + headers: + cache-control: + - no-cache + content-length: + - '776' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:21:35 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", + "principalId":"00000000-0000-0000-0000-000000000001"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + Cookie: + - x-ms-gateway-slice=Production + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/8bac35c7-3fa5-4d55-9d1a-b181904dbc8b?api-version=2020-04-01-preview + response: + body: + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T14:21:36.0340656Z","updatedOn":"2021-12-01T14:21:36.3153672Z","createdBy":null,"updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/8bac35c7-3fa5-4d55-9d1a-b181904dbc8b","type":"Microsoft.Authorization/roleAssignments","name":"8bac35c7-3fa5-4d55-9d1a-b181904dbc8b"}' + headers: + cache-control: + - no-cache + content-length: + - '1029' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:21:37 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2015-11-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": + \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"sku\": {\r\n \"name\": \"standalone\",\r\n \"lastSkuUpdate\": + \"Mon, 02 Aug 2021 07:30:13 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n + \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n + \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": + \"Wed, 01 Dec 2021 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": + \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n + \ \"modifiedDate\": \"Mon, 29 Nov 2021 09:57:04 GMT\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n + \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n + \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": + \"westus2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1162' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:21:38 GMT + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"dataCollectionRuleId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", + "description": "routes monitoring data to a Log Analytics workspace"}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '342' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"description":"routes monitoring data to a Log Analytics + workspace","dataCollectionRuleId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRuleAssociations","etag":"\"d800a7f5-0000-0800-0000-61a784f40000\""}' + headers: + api-supported-versions: + - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:21:40 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2bbfbac8-e1b0-44af-b9c6-3a40669d37e3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '59' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - rest + Connection: + - keep-alive + ParameterSetName: + - --method --url + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"immutableId":"dcr-78b5a913da4f4d5cb0c12d527d2ef9dd","dataSources":{"extensions":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"extensionName":"ContainerInsights","name":"ContainerInsightsExtension"}]},"destinations":{"logAnalytics":[{"workspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","workspaceId":"e897efd7-55de-4860-ac51-7403ccb7e3cf","name":"la-workspace"}]},"dataFlows":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"destinations":["la-workspace"]}],"provisioningState":"Succeeded"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRules","etag":"\"d80024f2-0000-0800-0000-61a784520000\""}' + headers: + api-supported-versions: + - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview + cache-control: + - no-cache + content-length: + - '1725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:21:40 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2bbfbac8-e1b0-44af-b9c6-3a40669d37e3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - rest + Connection: + - keep-alive + ParameterSetName: + - --method --url + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"description":"routes monitoring data to a Log Analytics + workspace","dataCollectionRuleId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRuleAssociations","etag":"\"d800a7f5-0000-0800-0000-61a784f40000\""}' + headers: + api-supported-versions: + - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:21:41 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2bbfbac8-e1b0-44af-b9c6-3a40669d37e3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestg3n3rswlk-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestg3n3rswlk-8ecadf-78333762.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestg3n3rswlk-8ecadf-78333762.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n + \ \"useAADAuth\": \"True\"\n },\n \"identity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omsagent-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/06c15b47-e875-4670-b352-fefcbc47b415\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4634' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:21:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"dataCollectionRuleId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", + "description": "routes monitoring data to a Log Analytics workspace"}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + Content-Length: + - '342' + Content-Type: + - application/json + ParameterSetName: + - -a -g -n + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + response: + body: + string: '' + headers: + api-supported-versions: + - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 01 Dec 2021 14:21:43 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2bbfbac8-e1b0-44af-b9c6-3a40669d37e3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": + "cliakstest-clitestg3n3rswlk-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": + "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"omsagent": {"enabled": false}}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/06c15b47-e875-4670-b352-fefcbc47b415"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + Content-Length: + - '2725' + Content-Type: + - application/json + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestg3n3rswlk-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestg3n3rswlk-8ecadf-78333762.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestg3n3rswlk-8ecadf-78333762.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": false,\n \"config\": null\n + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/06c15b47-e875-4670-b352-fefcbc47b415\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cf6a102c-64bf-4f26-a764-7445210b1bb3?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '3992' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:21:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cf6a102c-64bf-4f26-a764-7445210b1bb3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2c106acf-bf64-264f-a764-7445210b1bb3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:21:46.29Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:22:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cf6a102c-64bf-4f26-a764-7445210b1bb3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2c106acf-bf64-264f-a764-7445210b1bb3\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:21:46.29Z\",\n \"endTime\": + \"2021-12-01T14:22:44.9110584Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '165' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:22:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestg3n3rswlk-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestg3n3rswlk-8ecadf-78333762.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestg3n3rswlk-8ecadf-78333762.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": false,\n \"config\": null\n + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/06c15b47-e875-4670-b352-fefcbc47b415\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '3994' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:22:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --yes --no-wait + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1b804ee-52a3-40f4-a42f-c99b757d497e?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 01 Dec 2021 14:22:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b1b804ee-52a3-40f4-a42f-c99b757d497e?api-version=2016-03-30 + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14996' + status: + code: 202 + message: Accepted +version: 1 diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_aad_auth_uai.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_aad_auth_uai.yaml new file mode 100644 index 00000000000..6f6d8270348 --- /dev/null +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_aad_auth_uai.yaml @@ -0,0 +1,2048 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - identity create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:08:08Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '313' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:08:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - identity create + Connection: + - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-msi/0.2.0 Azure-SDK-For-Python + AZURECLI/2.30.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai?api-version=2015-08-31-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai","name":"cliakstest000002_uai","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001","clientSecretUrl":"https://control-westus2.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=96320849-20ea-4180-9f2f-9382dbb89a05&aid=7b7f2e38-726d-4fe0-9fd3-72eb9542491c"}}' + headers: + cache-control: + - no-cache + content-length: + - '822' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:08:11 GMT + expires: + - '-1' + location: + - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value --assign-identity + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:08:08Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '313' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:08:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value --assign-identity + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 01 Dec 2021 14:08:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value --assign-identity + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2?api-version=2015-11-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": + \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"sku\": {\r\n \"name\": \"standalone\",\r\n \"lastSkuUpdate\": + \"Mon, 02 Aug 2021 07:30:13 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n + \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n + \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": + \"Wed, 01 Dec 2021 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": + \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n + \ \"modifiedDate\": \"Mon, 29 Nov 2021 09:57:04 GMT\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n + \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n + \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": + \"westus2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1162' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:08:12 GMT + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value --assign-identity + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2015-11-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": + \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"sku\": {\r\n \"name\": \"standalone\",\r\n \"lastSkuUpdate\": + \"Mon, 02 Aug 2021 07:30:13 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n + \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n + \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": + \"Wed, 01 Dec 2021 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": + \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n + \ \"modifiedDate\": \"Mon, 29 Nov 2021 09:57:04 GMT\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n + \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n + \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": + \"westus2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1162' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:08:13 GMT + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value --assign-identity + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-11-01 + response: + body: + string: "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\",\"name\":\"eastus\",\"displayName\":\"East + US\",\"regionalDisplayName\":\"(US) East US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"westus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\",\"name\":\"eastus2\",\"displayName\":\"East + US 2\",\"regionalDisplayName\":\"(US) East US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"centralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstg\",\"name\":\"eastusstg\",\"displayName\":\"East + US STG\",\"regionalDisplayName\":\"(US) East US STG\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"southcentralusstg\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstg\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\",\"name\":\"southcentralus\",\"displayName\":\"South + Central US\",\"regionalDisplayName\":\"(US) South Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\":\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"northcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstg\",\"name\":\"southcentralusstg\",\"displayName\":\"South + Central US STG\",\"regionalDisplayName\":\"(US) South Central US STG\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\":\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"eastusstg\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstg\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\",\"name\":\"westus2\",\"displayName\":\"West + US 2\",\"regionalDisplayName\":\"(US) West US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-119.852\",\"latitude\":\"47.233\",\"physicalLocation\":\"Washington\",\"pairedRegion\":[{\"name\":\"westcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus3\",\"name\":\"westus3\",\"displayName\":\"West + US 3\",\"regionalDisplayName\":\"(US) West US 3\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-112.074036\",\"latitude\":\"33.448376\",\"physicalLocation\":\"Phoenix\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\",\"name\":\"australiaeast\",\"displayName\":\"Australia + East\",\"regionalDisplayName\":\"(Asia Pacific) Australia East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"151.2094\",\"latitude\":\"-33.86\",\"physicalLocation\":\"New + South Wales\",\"pairedRegion\":[{\"name\":\"australiasoutheast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\",\"name\":\"southeastasia\",\"displayName\":\"Southeast + Asia\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"103.833\",\"latitude\":\"1.283\",\"physicalLocation\":\"Singapore\",\"pairedRegion\":[{\"name\":\"eastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\",\"name\":\"northeurope\",\"displayName\":\"North + Europe\",\"regionalDisplayName\":\"(Europe) North Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-6.2597\",\"latitude\":\"53.3478\",\"physicalLocation\":\"Ireland\",\"pairedRegion\":[{\"name\":\"westeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedencentral\",\"name\":\"swedencentral\",\"displayName\":\"Sweden + Central\",\"regionalDisplayName\":\"(Europe) Sweden Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"17.14127\",\"latitude\":\"60.67488\",\"physicalLocation\":\"G\xE4vle\",\"pairedRegion\":[{\"name\":\"swedensouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedensouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\",\"name\":\"uksouth\",\"displayName\":\"UK + South\",\"regionalDisplayName\":\"(Europe) UK South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-0.799\",\"latitude\":\"50.941\",\"physicalLocation\":\"London\",\"pairedRegion\":[{\"name\":\"ukwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\",\"name\":\"westeurope\",\"displayName\":\"West + Europe\",\"regionalDisplayName\":\"(Europe) West Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"4.9\",\"latitude\":\"52.3667\",\"physicalLocation\":\"Netherlands\",\"pairedRegion\":[{\"name\":\"northeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\",\"name\":\"centralus\",\"displayName\":\"Central + US\",\"regionalDisplayName\":\"(US) Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"physicalLocation\":\"Iowa\",\"pairedRegion\":[{\"name\":\"eastus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\",\"name\":\"northcentralus\",\"displayName\":\"North + Central US\",\"regionalDisplayName\":\"(US) North Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-87.6278\",\"latitude\":\"41.8819\",\"physicalLocation\":\"Illinois\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\",\"name\":\"westus\",\"displayName\":\"West + US\",\"regionalDisplayName\":\"(US) West US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-122.417\",\"latitude\":\"37.783\",\"physicalLocation\":\"California\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\",\"name\":\"southafricanorth\",\"displayName\":\"South + Africa North\",\"regionalDisplayName\":\"(Africa) South Africa North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Africa\",\"longitude\":\"28.218370\",\"latitude\":\"-25.731340\",\"physicalLocation\":\"Johannesburg\",\"pairedRegion\":[{\"name\":\"southafricawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\",\"name\":\"centralindia\",\"displayName\":\"Central + India\",\"regionalDisplayName\":\"(Asia Pacific) Central India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"73.9197\",\"latitude\":\"18.5822\",\"physicalLocation\":\"Pune\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\",\"name\":\"eastasia\",\"displayName\":\"East + Asia\",\"regionalDisplayName\":\"(Asia Pacific) East Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"114.188\",\"latitude\":\"22.267\",\"physicalLocation\":\"Hong + Kong\",\"pairedRegion\":[{\"name\":\"southeastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\",\"name\":\"japaneast\",\"displayName\":\"Japan + East\",\"regionalDisplayName\":\"(Asia Pacific) Japan East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"139.77\",\"latitude\":\"35.68\",\"physicalLocation\":\"Tokyo, + Saitama\",\"pairedRegion\":[{\"name\":\"japanwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\",\"name\":\"jioindiawest\",\"displayName\":\"Jio + India West\",\"regionalDisplayName\":\"(Asia Pacific) Jio India West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"70.05773\",\"latitude\":\"22.470701\",\"physicalLocation\":\"Jamnagar\",\"pairedRegion\":[{\"name\":\"jioindiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\",\"name\":\"koreacentral\",\"displayName\":\"Korea + Central\",\"regionalDisplayName\":\"(Asia Pacific) Korea Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"126.9780\",\"latitude\":\"37.5665\",\"physicalLocation\":\"Seoul\",\"pairedRegion\":[{\"name\":\"koreasouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\",\"name\":\"canadacentral\",\"displayName\":\"Canada + Central\",\"regionalDisplayName\":\"(Canada) Canada Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Canada\",\"longitude\":\"-79.383\",\"latitude\":\"43.653\",\"physicalLocation\":\"Toronto\",\"pairedRegion\":[{\"name\":\"canadaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\",\"name\":\"francecentral\",\"displayName\":\"France + Central\",\"regionalDisplayName\":\"(Europe) France Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.3730\",\"latitude\":\"46.3772\",\"physicalLocation\":\"Paris\",\"pairedRegion\":[{\"name\":\"francesouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\",\"name\":\"germanywestcentral\",\"displayName\":\"Germany + West Central\",\"regionalDisplayName\":\"(Europe) Germany West Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.682127\",\"latitude\":\"50.110924\",\"physicalLocation\":\"Frankfurt\",\"pairedRegion\":[{\"name\":\"germanynorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\",\"name\":\"norwayeast\",\"displayName\":\"Norway + East\",\"regionalDisplayName\":\"(Europe) Norway East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"10.752245\",\"latitude\":\"59.913868\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwaywest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\",\"name\":\"switzerlandnorth\",\"displayName\":\"Switzerland + North\",\"regionalDisplayName\":\"(Europe) Switzerland North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.564572\",\"latitude\":\"47.451542\",\"physicalLocation\":\"Zurich\",\"pairedRegion\":[{\"name\":\"switzerlandwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\",\"name\":\"uaenorth\",\"displayName\":\"UAE + North\",\"regionalDisplayName\":\"(Middle East) UAE North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Middle + East\",\"longitude\":\"55.316666\",\"latitude\":\"25.266666\",\"physicalLocation\":\"Dubai\",\"pairedRegion\":[{\"name\":\"uaecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\",\"name\":\"brazilsouth\",\"displayName\":\"Brazil + South\",\"regionalDisplayName\":\"(South America) Brazil South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"South + America\",\"longitude\":\"-46.633\",\"latitude\":\"-23.55\",\"physicalLocation\":\"Sao + Paulo State\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralusstage\",\"name\":\"centralusstage\",\"displayName\":\"Central + US (Stage)\",\"regionalDisplayName\":\"(US) Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstage\",\"name\":\"eastusstage\",\"displayName\":\"East + US (Stage)\",\"regionalDisplayName\":\"(US) East US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2stage\",\"name\":\"eastus2stage\",\"displayName\":\"East + US 2 (Stage)\",\"regionalDisplayName\":\"(US) East US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralusstage\",\"name\":\"northcentralusstage\",\"displayName\":\"North + Central US (Stage)\",\"regionalDisplayName\":\"(US) North Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstage\",\"name\":\"southcentralusstage\",\"displayName\":\"South + Central US (Stage)\",\"regionalDisplayName\":\"(US) South Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westusstage\",\"name\":\"westusstage\",\"displayName\":\"West + US (Stage)\",\"regionalDisplayName\":\"(US) West US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2stage\",\"name\":\"westus2stage\",\"displayName\":\"West + US 2 (Stage)\",\"regionalDisplayName\":\"(US) West US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asia\",\"name\":\"asia\",\"displayName\":\"Asia\",\"regionalDisplayName\":\"Asia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asiapacific\",\"name\":\"asiapacific\",\"displayName\":\"Asia + Pacific\",\"regionalDisplayName\":\"Asia Pacific\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australia\",\"name\":\"australia\",\"displayName\":\"Australia\",\"regionalDisplayName\":\"Australia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazil\",\"name\":\"brazil\",\"displayName\":\"Brazil\",\"regionalDisplayName\":\"Brazil\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canada\",\"name\":\"canada\",\"displayName\":\"Canada\",\"regionalDisplayName\":\"Canada\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/europe\",\"name\":\"europe\",\"displayName\":\"Europe\",\"regionalDisplayName\":\"Europe\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/france\",\"name\":\"france\",\"displayName\":\"France\",\"regionalDisplayName\":\"France\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germany\",\"name\":\"germany\",\"displayName\":\"Germany\",\"regionalDisplayName\":\"Germany\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/global\",\"name\":\"global\",\"displayName\":\"Global\",\"regionalDisplayName\":\"Global\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/india\",\"name\":\"india\",\"displayName\":\"India\",\"regionalDisplayName\":\"India\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japan\",\"name\":\"japan\",\"displayName\":\"Japan\",\"regionalDisplayName\":\"Japan\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/korea\",\"name\":\"korea\",\"displayName\":\"Korea\",\"regionalDisplayName\":\"Korea\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norway\",\"name\":\"norway\",\"displayName\":\"Norway\",\"regionalDisplayName\":\"Norway\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafrica\",\"name\":\"southafrica\",\"displayName\":\"South + Africa\",\"regionalDisplayName\":\"South Africa\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerland\",\"name\":\"switzerland\",\"displayName\":\"Switzerland\",\"regionalDisplayName\":\"Switzerland\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uae\",\"name\":\"uae\",\"displayName\":\"United + Arab Emirates\",\"regionalDisplayName\":\"United Arab Emirates\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uk\",\"name\":\"uk\",\"displayName\":\"United + Kingdom\",\"regionalDisplayName\":\"United Kingdom\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstates\",\"name\":\"unitedstates\",\"displayName\":\"United + States\",\"regionalDisplayName\":\"United States\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasiastage\",\"name\":\"eastasiastage\",\"displayName\":\"East + Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) East Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasiastage\",\"name\":\"southeastasiastage\",\"displayName\":\"Southeast + Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\",\"name\":\"centraluseuap\",\"displayName\":\"Central + US EUAP\",\"regionalDisplayName\":\"(US) Central US EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"pairedRegion\":[{\"name\":\"eastus2euap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\",\"name\":\"eastus2euap\",\"displayName\":\"East + US 2 EUAP\",\"regionalDisplayName\":\"(US) East US 2 EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"pairedRegion\":[{\"name\":\"centraluseuap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\",\"name\":\"westcentralus\",\"displayName\":\"West + Central US\",\"regionalDisplayName\":\"(US) West Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-110.234\",\"latitude\":\"40.890\",\"physicalLocation\":\"Wyoming\",\"pairedRegion\":[{\"name\":\"westus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\",\"name\":\"southafricawest\",\"displayName\":\"South + Africa West\",\"regionalDisplayName\":\"(Africa) South Africa West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Africa\",\"longitude\":\"18.843266\",\"latitude\":\"-34.075691\",\"physicalLocation\":\"Cape + Town\",\"pairedRegion\":[{\"name\":\"southafricanorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\",\"name\":\"australiacentral\",\"displayName\":\"Australia + Central\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\",\"name\":\"australiacentral2\",\"displayName\":\"Australia + Central 2\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\",\"name\":\"australiasoutheast\",\"displayName\":\"Australia + Southeast\",\"regionalDisplayName\":\"(Asia Pacific) Australia Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"144.9631\",\"latitude\":\"-37.8136\",\"physicalLocation\":\"Victoria\",\"pairedRegion\":[{\"name\":\"australiaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\",\"name\":\"japanwest\",\"displayName\":\"Japan + West\",\"regionalDisplayName\":\"(Asia Pacific) Japan West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"135.5022\",\"latitude\":\"34.6939\",\"physicalLocation\":\"Osaka\",\"pairedRegion\":[{\"name\":\"japaneast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral\",\"name\":\"jioindiacentral\",\"displayName\":\"Jio + India Central\",\"regionalDisplayName\":\"(Asia Pacific) Jio India Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"79.08886\",\"latitude\":\"21.146633\",\"physicalLocation\":\"Nagpur\",\"pairedRegion\":[{\"name\":\"jioindiawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\",\"name\":\"koreasouth\",\"displayName\":\"Korea + South\",\"regionalDisplayName\":\"(Asia Pacific) Korea South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"129.0756\",\"latitude\":\"35.1796\",\"physicalLocation\":\"Busan\",\"pairedRegion\":[{\"name\":\"koreacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\",\"name\":\"southindia\",\"displayName\":\"South + India\",\"regionalDisplayName\":\"(Asia Pacific) South India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"80.1636\",\"latitude\":\"12.9822\",\"physicalLocation\":\"Chennai\",\"pairedRegion\":[{\"name\":\"centralindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westindia\",\"name\":\"westindia\",\"displayName\":\"West + India\",\"regionalDisplayName\":\"(Asia Pacific) West India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"72.868\",\"latitude\":\"19.088\",\"physicalLocation\":\"Mumbai\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\",\"name\":\"canadaeast\",\"displayName\":\"Canada + East\",\"regionalDisplayName\":\"(Canada) Canada East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Canada\",\"longitude\":\"-71.217\",\"latitude\":\"46.817\",\"physicalLocation\":\"Quebec\",\"pairedRegion\":[{\"name\":\"canadacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\",\"name\":\"francesouth\",\"displayName\":\"France + South\",\"regionalDisplayName\":\"(Europe) France South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.1972\",\"latitude\":\"43.8345\",\"physicalLocation\":\"Marseille\",\"pairedRegion\":[{\"name\":\"francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\",\"name\":\"germanynorth\",\"displayName\":\"Germany + North\",\"regionalDisplayName\":\"(Europe) Germany North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.806422\",\"latitude\":\"53.073635\",\"physicalLocation\":\"Berlin\",\"pairedRegion\":[{\"name\":\"germanywestcentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\",\"name\":\"norwaywest\",\"displayName\":\"Norway + West\",\"regionalDisplayName\":\"(Europe) Norway West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"5.733107\",\"latitude\":\"58.969975\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwayeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedensouth\",\"name\":\"swedensouth\",\"displayName\":\"Sweden + South\",\"regionalDisplayName\":\"(Europe) Sweden South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"13.0007\",\"latitude\":\"55.6059\",\"physicalLocation\":\"Malmo\",\"pairedRegion\":[{\"name\":\"swedencentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedencentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\",\"name\":\"switzerlandwest\",\"displayName\":\"Switzerland + West\",\"regionalDisplayName\":\"(Europe) Switzerland West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"6.143158\",\"latitude\":\"46.204391\",\"physicalLocation\":\"Geneva\",\"pairedRegion\":[{\"name\":\"switzerlandnorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\",\"name\":\"ukwest\",\"displayName\":\"UK + West\",\"regionalDisplayName\":\"(Europe) UK West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"-3.084\",\"latitude\":\"53.427\",\"physicalLocation\":\"Cardiff\",\"pairedRegion\":[{\"name\":\"uksouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\",\"name\":\"uaecentral\",\"displayName\":\"UAE + Central\",\"regionalDisplayName\":\"(Middle East) UAE Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Middle + East\",\"longitude\":\"54.366669\",\"latitude\":\"24.466667\",\"physicalLocation\":\"Abu + Dhabi\",\"pairedRegion\":[{\"name\":\"uaenorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsoutheast\",\"name\":\"brazilsoutheast\",\"displayName\":\"Brazil + Southeast\",\"regionalDisplayName\":\"(South America) Brazil Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"South + America\",\"longitude\":\"-43.2075\",\"latitude\":\"-22.90278\",\"physicalLocation\":\"Rio\",\"pairedRegion\":[{\"name\":\"brazilsouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusslv\",\"name\":\"eastusslv\",\"displayName\":\"East + US SLV\",\"regionalDisplayName\":\"(South America) East US SLV\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"South + America\",\"longitude\":\"-43.2075\",\"latitude\":\"-22.90278\",\"physicalLocation\":\"Silverstone\",\"pairedRegion\":[{\"name\":\"eastusslv\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusslv\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/qatarcentral\",\"name\":\"qatarcentral\",\"displayName\":\"Qatar + Central\",\"regionalDisplayName\":\"(Europe) Qatar Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"51.439327\",\"latitude\":\"25.551462\",\"physicalLocation\":\"Doha\",\"pairedRegion\":[{\"name\":\"westeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"}]}}]}" + headers: + cache-control: + - no-cache + content-length: + - '30870' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:08:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value --assign-identity + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Insights?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights","namespace":"microsoft.insights","authorizations":[{"applicationId":"6bccf540-eb86-4037-af03-7fa058c2db75","roleDefinitionId":"89dcede2-9219-403a-9723-d3c6473f9472"},{"applicationId":"11c174dc-1945-4a9a-a36b-c79a0f246b9b","roleDefinitionId":"dd9d4347-f397-45f2-b538-85f21c90037b"},{"applicationId":"035f9e1d-4f00-4419-bf50-bf2d87eb4878","roleDefinitionId":"323795fe-ba3d-4f5a-ad42-afb4e1ea9485"},{"applicationId":"f5c26e74-f226-4ae8-85f0-b4af0080ac9e","roleDefinitionId":"529d7ae6-e892-4d43-809d-8547aeb90643"},{"applicationId":"b503eb83-1222-4dcc-b116-b98ed5216e05","roleDefinitionId":"68699c37-c689-44d4-9248-494b782d46ae"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"},{"applicationId":"3af5a1e8-2459-45cb-8683-bcd6cccbcc13","roleDefinitionId":"b1309299-720d-4159-9897-6158a61aee41"},{"applicationId":"6a0a243c-0886-468a-a4c2-eff52c7445da","roleDefinitionId":"d2eda64b-c5e6-4930-8642-2d80ecd7c2e2"},{"applicationId":"707be275-6b9d-4ee7-88f9-c0c2bd646e0f","roleDefinitionId":"fa027d90-6ba0-4c33-9a54-59edaf2327e7"},{"applicationId":"461e8683-5575-4561-ac7f-899cc907d62a","roleDefinitionId":"68699c37-c689-44d4-9248-494b782d46ae"},{"applicationId":"562db366-1b96-45d2-aa4a-f2148cef2240","roleDefinitionId":"4109c8be-c1c8-4be0-af52-9d3c76c140ab"},{"applicationId":"e933bd07-d2ee-4f1d-933c-3752b819567b","roleDefinitionId":"abbcfd44-e662-419a-9b5a-478f8e2f57c9"},{"applicationId":"f6b60513-f290-450e-a2f3-9930de61c5e7","roleDefinitionId":"4ef11659-08ac-48af-98a7-25fb6b1e1bc4"},{"applicationId":"12743ff8-d3de-49d0-a4ce-6c91a4245ea0","roleDefinitionId":"207b20a7-6802-4ae4-aaa2-1a36dd45bba0"},{"applicationId":"58ef1dbd-684c-47d6-8ffc-61ea7a197b95","roleDefinitionId":"dd9d4347-f397-45f2-b538-85f21c90037b"}],"resourceTypes":[{"resourceType":"components","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Norway West","Australia Southeast","Australia Central 2","Germany West + Central","Switzerland West","UAE Central","UK West","Japan West","Brazil Southeast","UAE + North","Australia Central","France South","South India","West US 3","Canada + East","Jio India West","Korea South"],"apiVersions":["2020-02-02-preview","2020-02-02","2018-05-01-preview","2015-05-01","2014-12-01-preview","2014-08-01","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"components/query","locations":[],"apiVersions":["2018-04-20"],"capabilities":"None"},{"resourceType":"components/metadata","locations":[],"apiVersions":["2018-04-20"],"capabilities":"None"},{"resourceType":"components/metrics","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","East US 2","East Asia","West US","Central + US","South Africa North","North Central US","Brazil South","Switzerland North","Australia + Southeast","Norway East","Norway West"],"apiVersions":["2018-04-20","2014-04-01"],"capabilities":"None"},{"resourceType":"components/events","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","East US 2","East Asia","West US","Central + US","South Africa North","North Central US"],"apiVersions":["2018-04-20"],"capabilities":"None"},{"resourceType":"components/syntheticmonitorlocations","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Norway West","Australia Southeast","Australia Central 2","Germany West + Central","Switzerland West","UAE Central","UK West","Japan West","Brazil Southeast","UAE + North","Australia Central","France South","South India","West US 3","Canada + East","Jio India West","Korea South"],"apiVersions":["2020-02-02-preview","2020-02-02","2018-05-01-preview","2015-05-01","2014-12-01-preview","2014-08-01","2014-04-01"],"capabilities":"None"},{"resourceType":"webtests","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Norway West","Australia Southeast","Australia Central 2","Germany West + Central","Switzerland West","UAE Central","UK West","Brazil Southeast","Japan + West","UAE North","Australia Central","France South","South India","West US + 3","Canada East","Jio India West","Korea South"],"apiVersions":["2018-05-01-preview","2015-05-01","2014-08-01","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"webtests/getTestResultFile","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","East US 2","East Asia","West US","Central + US","South Africa North","North Central US"],"apiVersions":["2020-02-10-preview"],"capabilities":"None"},{"resourceType":"scheduledqueryrules","locations":["West + Central US","Australia East","Central US","East US","East US 2","France Central","Japan + East","North Europe","South Africa North","Southeast Asia","UK South","West + Europe","West US 2","Central India","Canada Central","Australia Southeast","South + Central US","Australia Central","Korea Central","East Asia","West US","North + Central US","Brazil South","UK West","Switzerland North","Switzerland West","UAE + Central","Germany West Central","Australia Central 2","Brazil SouthEast","Norway + East","UAE North","Japan West","South India","France South","Norway West","East + US 2 EUAP"],"apiVersions":["2021-08-01","2021-02-01-preview","2020-05-01-preview","2018-04-16","2017-09-01-preview"],"defaultApiVersion":"2018-04-16","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"components/pricingPlans","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"migrateToNewPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"rollbackToLegacyPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"listMigrationdate","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"logprofiles","locations":[],"apiVersions":["2016-03-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"}],"capabilities":"None"},{"resourceType":"migratealertrules","locations":[],"apiVersions":["2018-03-01"],"capabilities":"None"},{"resourceType":"metricalerts","locations":["Global"],"apiVersions":["2018-03-01","2017-09-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"alertrules","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Central US","Australia + East","Australia Southeast","Brazil South","UK South","UK West","South India","Central + India","West India","Canada East","Canada Central","West Central US","West + US 2","Korea Central","Australia Central","Australia Central 2","France Central","South + Africa North","UAE North","Korea South","France South","East US 2 EUAP","Central + US EUAP","South Africa West","UAE Central"],"apiVersions":["2016-03-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"autoscalesettings","locations":["West + US","East US","North Europe","South Central US","East US 2","Central US","Australia + Southeast","Brazil South","UK South","UK West","South India","Central India","West + India","Canada East","Canada Central","West Central US","West US 2","Korea + Central","Australia Central","Australia Central 2","France Central","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","North Central + US","Australia East","South Africa North","UAE North","Switzerland North","Germany + West Central","Norway East","West US 3","Jio India West","Korea South","France + South","East US 2 EUAP","Central US EUAP","South Africa West","UAE Central","Switzerland + West","Germany North","Norway West","Brazil Southeast","Jio India Central","Sweden + South","Sweden Central"],"apiVersions":["2021-05-01-preview","2015-04-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"eventtypes","locations":[],"apiVersions":["2017-03-01-preview","2016-09-01-preview","2015-04-01","2014-11-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-01"}],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":["East + US"],"apiVersions":["2015-04-01","2014-04-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2015-04-01","2014-04-01"],"capabilities":"None"},{"resourceType":"vmInsightsOnboardingStatuses","locations":[],"apiVersions":["2018-11-27-preview"],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-04-01","2014-06-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-01"}],"capabilities":"None"},{"resourceType":"diagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea Central","Australia Central","Australia Central 2","France + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Korea South","East US + 2 EUAP","Central US EUAP","France South","South Africa West","UAE Central","Switzerland + West","Germany North","Norway West","Brazil Southeast","Jio India Central","Sweden + South","Sweden Central"],"apiVersions":["2021-05-01-preview","2017-05-01-preview","2016-09-01","2015-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-09-01"}],"capabilities":"SupportsExtension"},{"resourceType":"diagnosticSettingsCategories","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea Central","Australia Central","Australia Central 2","France + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Korea South","East US + 2 EUAP","Central US EUAP","France South","South Africa West","UAE Central","Switzerland + West","Germany North","Norway West","Brazil Southeast","Jio India Central","Sweden + South","Sweden Central"],"apiVersions":["2021-05-01-preview","2017-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"extendedDiagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea Central","Australia Central","Australia Central 2","France + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Korea South","France + South","East US 2 EUAP","Central US EUAP","South Africa West","UAE Central","Switzerland + West","Germany North","Norway West","Brazil Southeast","Jio India Central","Sweden + South","Sweden Central"],"apiVersions":["2017-02-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-02-01"}],"capabilities":"SupportsExtension"},{"resourceType":"metricDefinitions","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Australia Central","Australia + Central 2","Brazil South","Brazil Southeast","South India","Central India","West + India","North Europe","West US 2","Jio India West","West US 3","West Central + US","Korea Central","UK South","UK West","France Central","South Africa North","South + Africa West","UAE North","Switzerland North","Germany West Central","Norway + East","Jio India Central","Sweden Central","Sweden South","Korea South","East + US 2 EUAP","Central US EUAP","France South","UAE Central","Switzerland West","Germany + North","Norway West"],"apiVersions":["2018-01-01","2017-12-01-preview","2017-09-01-preview","2017-05-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-01"}],"capabilities":"SupportsExtension"},{"resourceType":"logDefinitions","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea Central","Australia Central","Australia Central 2","France + Central","Korea South","France South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2015-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-07-01"}],"capabilities":"SupportsExtension"},{"resourceType":"eventCategories","locations":[],"apiVersions":["2015-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-01"}],"capabilities":"None"},{"resourceType":"metrics","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Australia Central","Australia + Central 2","Brazil South","Brazil Southeast","South India","Central India","West + India","North Europe","West US 2","Jio India West","West US 3","West Central + US","Korea Central","UK South","UK West","France Central","South Africa North","South + Africa West","UAE North","Switzerland North","Germany West Central","Norway + East","Jio India Central","Sweden Central","Sweden South","Korea South","East + US 2 EUAP","Central US EUAP","France South","UAE Central","Switzerland West","Germany + North","Norway West"],"apiVersions":["2021-05-01","2019-07-01","2018-01-01","2017-12-01-preview","2017-09-01-preview","2017-05-01-preview","2016-09-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-01"}],"capabilities":"SupportsExtension"},{"resourceType":"metricbatch","locations":[],"apiVersions":["2019-01-01-preview"],"capabilities":"None"},{"resourceType":"metricNamespaces","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Australia Central","Australia + Central 2","Brazil South","Brazil Southeast","South India","Central India","West + India","North Europe","West US 2","Jio India West","West US 3","West Central + US","Korea Central","UK South","UK West","France Central","South Africa North","South + Africa West","UAE North","Switzerland North","Germany West Central","Norway + East","Jio India Central","Sweden Central","Sweden South","Korea South","East + US 2 EUAP","Central US EUAP","France South","UAE Central","Switzerland West","Germany + North","Norway West"],"apiVersions":["2017-12-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"notificationstatus","locations":[],"apiVersions":["2021-09-01"],"capabilities":"None"},{"resourceType":"createnotifications","locations":[],"apiVersions":["2021-09-01"],"capabilities":"None"},{"resourceType":"actiongroups","locations":["Global"],"apiVersions":["2021-09-01","2019-06-01","2019-03-01","2018-09-01","2018-03-01","2017-04-01","2017-03-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"activityLogAlerts","locations":["Global"],"apiVersions":["2020-10-01","2017-04-01","2017-03-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-04-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"baseline","locations":[],"apiVersions":["2018-09-01","2017-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"metricbaselines","locations":[],"apiVersions":["2019-03-01","2018-09-01"],"capabilities":"SupportsExtension"},{"resourceType":"calculatebaseline","locations":[],"apiVersions":["2018-09-01","2017-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"workbooks","locations":["West + Europe","South Central US","East US","North Europe","Southeast Asia","West + US 2","Japan East","Australia East","Korea Central","France Central","Central + US","East US 2","East Asia","West US","Canada Central","Central India","UK + South","UK West","South Africa North","North Central US","Brazil South","Switzerland + North","Norway East","Norway West","Australia Southeast","Australia Central + 2","Germany West Central","Switzerland West","UAE Central","Japan West","Brazil + Southeast","UAE North","Australia Central","France South","South India","West + Central US","West US 3","Canada East","Jio India West","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-08-01","2021-03-08","2020-10-20","2020-02-12","2018-06-17-preview","2018-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"workbooktemplates","locations":["West + Europe","South Central US","East US","North Europe","Southeast Asia","West + US 2","Japan East","Australia East","Korea Central","France Central","Central + US","East US 2","East Asia","West US","Canada Central","Central India","UK + South","UK West","South Africa North","North Central US","Brazil South","Switzerland + North","Norway East","Norway West","Australia Southeast","Australia Central + 2","Germany West Central","Switzerland West","UAE Central","Japan West","Brazil + Southeast","UAE North","Australia Central","France South","South India","West + Central US","West US 3","Canada East","Jio India West","Korea South"],"apiVersions":["2020-11-20","2019-10-17-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"myWorkbooks","locations":["West + Europe","South Central US","East US","North Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Norway West","Australia Southeast","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-03-08","2020-10-20","2020-02-12","2018-06-17-preview","2018-06-15-preview","2018-06-01-preview","2016-06-15-preview"],"capabilities":"SupportsExtension"},{"resourceType":"logs","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","France Central","France South","Australia Central","South + Africa North","Korea South","Central US EUAP","East US 2 EUAP","Australia + Central 2","South Africa West","UAE Central","UAE North"],"apiVersions":["2018-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"transactions","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","East US 2","East Asia","West US","Central + US","South Africa North","North Central US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-10-17-preview"],"capabilities":"SupportsExtension"},{"resourceType":"topology","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","East US 2","East Asia","West US","Central + US","South Africa North","North Central US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-10-17-preview"],"capabilities":"SupportsExtension"},{"resourceType":"generateLiveToken","locations":[],"apiVersions":["2021-10-14","2020-06-02-preview"],"capabilities":"SupportsExtension"},{"resourceType":"dataCollectionRules","locations":["Australia + Southeast","Canada Central","Japan East","Australia East","Central India","Germany + West Central","North Central US","South Central US","East US","Central US","West + Europe","West US 2","Southeast Asia","East US 2","UK South","North Europe","West + US","Australia Central","West Central US","East Asia","UK West","Korea Central","France + Central","South Africa North","Switzerland North","Australia Central 2","Brazil + Southeast","France South","Norway West","UAE North","Japan West","Norway East","Switzerland + West","Brazil South","East US 2 EUAP"],"apiVersions":["2021-04-01","2019-11-01-preview"],"defaultApiVersion":"2021-04-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dataCollectionRuleAssociations","locations":["Australia + Southeast","Canada Central","Japan East","Australia East","Central India","Germany + West Central","North Central US","South Central US","East US","Central US","West + Europe","West US 2","Southeast Asia","East US 2","UK South","North Europe","West + US","Australia Central","West Central US","East Asia","UK West","Korea Central","France + Central","South Africa North","Switzerland North","Brazil South","Australia + Central 2","Brazil Southeast","Canada East","France South","Norway West","UAE + North","Japan West","Norway East","Switzerland West","Korea South","East US + 2 EUAP"],"apiVersions":["2021-04-01","2019-11-01-preview"],"defaultApiVersion":"2021-04-01","capabilities":"SupportsExtension"},{"resourceType":"dataCollectionEndpoints","locations":["Australia + Southeast","Canada Central","Japan East","Australia East","Central India","Germany + West Central","North Central US","South Central US","East US","Central US","West + Europe","West US 2","Southeast Asia","East US 2","UK South","North Europe","West + US","Australia Central","West Central US","East Asia","UK West","Korea Central","France + Central","South Africa North","Switzerland North","Brazil South","Australia + Central 2","Brazil Southeast","Canada East","France South","Norway West","UAE + North","Japan West","Norway East","Switzerland West","Korea South","East US + 2 EUAP"],"apiVersions":["2021-04-01"],"defaultApiVersion":"2021-04-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dataCollectionEndpoints/scopedPrivateLinkProxies","locations":["Australia + Southeast","Canada Central","Japan East","Australia East","Central India","Germany + West Central","North Central US","South Central US","East US","Central US","West + Europe","West US 2","Southeast Asia","East US 2","UK South","North Europe","West + US","Australia Central","West Central US","East Asia","UK West","Korea Central","France + Central","South Africa North","Switzerland North","Brazil South","Australia + Central 2","Brazil Southeast","Canada East","France South","Norway West","UAE + North","Japan West","Norway East","Switzerland West","Korea South","East US + 2 EUAP"],"apiVersions":["2021-04-01"],"defaultApiVersion":"2021-04-01","capabilities":"None"},{"resourceType":"privateLinkScopes","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateLinkScopes/privateEndpointConnections","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"},{"resourceType":"privateLinkScopes/privateEndpointConnectionProxies","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"},{"resourceType":"privateLinkScopes/scopedResources","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"},{"resourceType":"components/linkedstorageaccounts","locations":["East + US","West Central US","South Central US","North Europe","West Europe","Southeast + Asia","West US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Norway West","Australia Southeast"],"apiVersions":["2020-03-01-preview"],"capabilities":"None"},{"resourceType":"privateLinkScopeOperationStatuses","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '27917' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:08:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"dataSources": {"extensions": [{"name": + "ContainerInsightsExtension", "streams": ["Microsoft-Perf", "Microsoft-ContainerInventory", + "Microsoft-ContainerLog", "Microsoft-ContainerLogV2", "Microsoft-ContainerNodeInventory", + "Microsoft-KubeEvents", "Microsoft-KubeHealth", "Microsoft-KubeMonAgentEvents", + "Microsoft-KubeNodeInventory", "Microsoft-KubePodInventory", "Microsoft-KubePVInventory", + "Microsoft-KubeServices", "Microsoft-InsightsMetrics"], "extensionName": "ContainerInsights"}]}, + "dataFlows": [{"streams": ["Microsoft-Perf", "Microsoft-ContainerInventory", + "Microsoft-ContainerLog", "Microsoft-ContainerLogV2", "Microsoft-ContainerNodeInventory", + "Microsoft-KubeEvents", "Microsoft-KubeHealth", "Microsoft-KubeMonAgentEvents", + "Microsoft-KubeNodeInventory", "Microsoft-KubePodInventory", "Microsoft-KubePVInventory", + "Microsoft-KubeServices", "Microsoft-InsightsMetrics"], "destinations": ["la-workspace"]}], + "destinations": {"logAnalytics": [{"workspaceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", + "name": "la-workspace"}]}}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1248' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value --assign-identity + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"immutableId":"dcr-78b5a913da4f4d5cb0c12d527d2ef9dd","dataSources":{"extensions":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"extensionName":"ContainerInsights","name":"ContainerInsightsExtension"}]},"destinations":{"logAnalytics":[{"workspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","workspaceId":"e897efd7-55de-4860-ac51-7403ccb7e3cf","name":"la-workspace"}]},"dataFlows":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"destinations":["la-workspace"]}],"provisioningState":"Succeeded"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRules","etag":"\"d800e8e1-0000-0800-0000-61a781d10000\""}' + headers: + api-supported-versions: + - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview + cache-control: + - no-cache + content-length: + - '1725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:08:17 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2bbfbac8-e1b0-44af-b9c6-3a40669d37e3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '59' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai": + {}}}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesthfu4rhnlk-8ecadf", + "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"omsagent": {"enabled": true, "config": + {"logAnalyticsWorkspaceResourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", + "useAADAuth": "True"}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, + "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": + "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", + "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": + false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '2250' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value --assign-identity + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthfu4rhnlk-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthfu4rhnlk-8ecadf-7f4c765e.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthfu4rhnlk-8ecadf-7f4c765e.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n + \ \"useAADAuth\": \"True\"\n }\n }\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": + {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai\": + {}\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n + \ }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1ae2ed8c-290d-46f5-85d3-5c41a076e6ef?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '3705' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:08:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value --assign-identity + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1ae2ed8c-290d-46f5-85d3-5c41a076e6ef?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8cede21a-0d29-f546-85d3-5c41a076e6ef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:08:22.6133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:08:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value --assign-identity + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1ae2ed8c-290d-46f5-85d3-5c41a076e6ef?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8cede21a-0d29-f546-85d3-5c41a076e6ef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:08:22.6133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:09:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value --assign-identity + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1ae2ed8c-290d-46f5-85d3-5c41a076e6ef?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8cede21a-0d29-f546-85d3-5c41a076e6ef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:08:22.6133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:09:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value --assign-identity + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1ae2ed8c-290d-46f5-85d3-5c41a076e6ef?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8cede21a-0d29-f546-85d3-5c41a076e6ef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:08:22.6133333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:10:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value --assign-identity + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1ae2ed8c-290d-46f5-85d3-5c41a076e6ef?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8cede21a-0d29-f546-85d3-5c41a076e6ef\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:08:22.6133333Z\",\n \"endTime\": + \"2021-12-01T14:10:31.9185058Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:10:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value --assign-identity + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthfu4rhnlk-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthfu4rhnlk-8ecadf-7f4c765e.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthfu4rhnlk-8ecadf-7f4c765e.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n + \ \"useAADAuth\": \"True\"\n },\n \"identity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omsagent-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/751a7ceb-b98a-4bae-b707-5f49e471c1cf\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n + \ }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4852' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:10:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value --assign-identity + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables + publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2021-11-11T20:13:44.2828715Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' + headers: + cache-control: + - no-cache + content-length: + - '776' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:10:54 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", + "principalId":"00000000-0000-0000-0000-000000000001"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + Cookie: + - x-ms-gateway-slice=Production + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value --assign-identity + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/1fa66d3c-f294-4b92-8e2e-bc247256722a?api-version=2020-04-01-preview + response: + body: + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T14:10:54.8427350Z","updatedOn":"2021-12-01T14:10:55.1083591Z","createdBy":null,"updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/1fa66d3c-f294-4b92-8e2e-bc247256722a","type":"Microsoft.Authorization/roleAssignments","name":"1fa66d3c-f294-4b92-8e2e-bc247256722a"}' + headers: + cache-control: + - no-cache + content-length: + - '1029' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:10:57 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1195' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value --assign-identity + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2015-11-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": + \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"sku\": {\r\n \"name\": \"standalone\",\r\n \"lastSkuUpdate\": + \"Mon, 02 Aug 2021 07:30:13 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n + \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n + \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": + \"Wed, 01 Dec 2021 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": + \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n + \ \"modifiedDate\": \"Mon, 29 Nov 2021 09:57:04 GMT\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n + \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n + \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": + \"westus2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1162' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:10:58 GMT + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"dataCollectionRuleId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", + "description": "routes monitoring data to a Log Analytics workspace"}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '342' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --enable-msi-auth-for-monitoring --node-count --ssh-key-value --assign-identity + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"description":"routes monitoring data to a Log Analytics + workspace","dataCollectionRuleId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRuleAssociations","etag":"\"d80060e5-0000-0800-0000-61a782730000\""}' + headers: + api-supported-versions: + - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:10:59 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2bbfbac8-e1b0-44af-b9c6-3a40669d37e3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '59' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - rest + Connection: + - keep-alive + ParameterSetName: + - --method --url + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"immutableId":"dcr-78b5a913da4f4d5cb0c12d527d2ef9dd","dataSources":{"extensions":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"extensionName":"ContainerInsights","name":"ContainerInsightsExtension"}]},"destinations":{"logAnalytics":[{"workspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","workspaceId":"e897efd7-55de-4860-ac51-7403ccb7e3cf","name":"la-workspace"}]},"dataFlows":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"destinations":["la-workspace"]}],"provisioningState":"Succeeded"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRules","etag":"\"d800e8e1-0000-0800-0000-61a781d10000\""}' + headers: + api-supported-versions: + - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview + cache-control: + - no-cache + content-length: + - '1725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:10:59 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2bbfbac8-e1b0-44af-b9c6-3a40669d37e3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - rest + Connection: + - keep-alive + ParameterSetName: + - --method --url + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"description":"routes monitoring data to a Log Analytics + workspace","dataCollectionRuleId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRuleAssociations","etag":"\"d80060e5-0000-0800-0000-61a782730000\""}' + headers: + api-supported-versions: + - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:11:00 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2bbfbac8-e1b0-44af-b9c6-3a40669d37e3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthfu4rhnlk-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthfu4rhnlk-8ecadf-7f4c765e.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthfu4rhnlk-8ecadf-7f4c765e.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n + \ \"useAADAuth\": \"True\"\n },\n \"identity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omsagent-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/751a7ceb-b98a-4bae-b707-5f49e471c1cf\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n + \ }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4852' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:11:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"dataCollectionRuleId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", + "description": "routes monitoring data to a Log Analytics workspace"}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + Content-Length: + - '342' + Content-Type: + - application/json + ParameterSetName: + - -a -g -n + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + response: + body: + string: '' + headers: + api-supported-versions: + - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 01 Dec 2021 14:11:03 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2bbfbac8-e1b0-44af-b9c6-3a40669d37e3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14996' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": + {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai": + {}}}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": "cliakstest-clitesthfu4rhnlk-8ecadf", + "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": + 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", + "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, + "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"omsagent": {"enabled": false}}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/751a7ceb-b98a-4bae-b707-5f49e471c1cf"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + Content-Length: + - '2923' + Content-Type: + - application/json + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthfu4rhnlk-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthfu4rhnlk-8ecadf-7f4c765e.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthfu4rhnlk-8ecadf-7f4c765e.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": false,\n \"config\": null\n + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/751a7ceb-b98a-4bae-b707-5f49e471c1cf\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n + \ }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3600b9c-f162-40d2-987f-9fec21eead63?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '4210' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:11:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3600b9c-f162-40d2-987f-9fec21eead63?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9c0b60d3-62f1-d240-987f-9fec21eead63\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:05.9433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:11:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3600b9c-f162-40d2-987f-9fec21eead63?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9c0b60d3-62f1-d240-987f-9fec21eead63\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:11:05.9433333Z\",\n \"endTime\": + \"2021-12-01T14:12:01.4563485Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:12:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthfu4rhnlk-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthfu4rhnlk-8ecadf-7f4c765e.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthfu4rhnlk-8ecadf-7f4c765e.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": false,\n \"config\": null\n + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/751a7ceb-b98a-4bae-b707-5f49e471c1cf\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n + \ }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4212' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:12:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --yes --no-wait + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/51b08885-faf9-4e4f-be5a-2ade3cee00aa?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 01 Dec 2021 14:12:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/51b08885-faf9-4e4f-be5a-2ade3cee00aa?api-version=2016-03-30 + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14996' + status: + code: 202 + message: Accepted +version: 1 diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_legacy_auth.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_legacy_auth.yaml new file mode 100644 index 00000000000..363e62d9716 --- /dev/null +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_monitoring_legacy_auth.yaml @@ -0,0 +1,1497 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:12:12Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '313' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:12:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 01 Dec 2021 14:12:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2?api-version=2015-11-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": + \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"sku\": {\r\n \"name\": \"standalone\",\r\n \"lastSkuUpdate\": + \"Mon, 02 Aug 2021 07:30:13 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n + \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n + \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": + \"Wed, 01 Dec 2021 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": + \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n + \ \"modifiedDate\": \"Mon, 29 Nov 2021 09:57:04 GMT\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n + \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n + \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": + \"westus2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1162' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:12:13 GMT + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2015-11-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": + \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"sku\": {\r\n \"name\": \"standalone\",\r\n \"lastSkuUpdate\": + \"Mon, 02 Aug 2021 07:30:13 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n + \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n + \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": + \"Wed, 01 Dec 2021 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": + \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n + \ \"modifiedDate\": \"Mon, 29 Nov 2021 09:57:04 GMT\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n + \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n + \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": + \"westus2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1162' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:12:14 GMT + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"workspaceResourceId": {"type": + "string", "metadata": {"description": "Azure Monitor Log Analytics Resource + ID"}}, "workspaceRegion": {"type": "string", "metadata": {"description": "Azure + Monitor Log Analytics workspace region"}}, "solutionDeploymentName": {"type": + "string", "metadata": {"description": "Name of the solution deployment"}}}, + "resources": [{"type": "Microsoft.Resources/deployments", "name": "[parameters(''solutionDeploymentName'')]", + "apiVersion": "2017-05-10", "subscriptionId": "[split(parameters(''workspaceResourceId''),''/'')[2]]", + "resourceGroup": "[split(parameters(''workspaceResourceId''),''/'')[4]]", "properties": + {"mode": "Incremental", "template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": + [{"apiVersion": "2015-11-01-preview", "type": "Microsoft.OperationsManagement/solutions", + "location": "[parameters(''workspaceRegion'')]", "name": "[Concat(''ContainerInsights'', + ''('', split(parameters(''workspaceResourceId''),''/'')[8], '')'')]", "properties": + {"workspaceResourceId": "[parameters(''workspaceResourceId'')]"}, "plan": {"name": + "[Concat(''ContainerInsights'', ''('', split(parameters(''workspaceResourceId''),''/'')[8], + '')'')]", "product": "[Concat(''OMSGallery/'', ''ContainerInsights'')]", "promotionCode": + "", "publisher": "Microsoft"}}]}, "parameters": {}}}]}, "parameters": {"workspaceResourceId": + {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"}, + "workspaceRegion": {"value": "westus2"}, "solutionDeploymentName": {"value": + "ContainerInsights-1638367935293"}}, "mode": "incremental"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1956' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Resources/deployments/aks-monitoring-1638367935293","name":"aks-monitoring-1638367935293","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7932017758444010137","parameters":{"workspaceResourceId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"},"workspaceRegion":{"type":"String","value":"westus2"},"solutionDeploymentName":{"type":"String","value":"ContainerInsights-1638367935293"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-12-01T14:12:16.4120608Z","duration":"PT0.712723S","correlationId":"a54fff25-22ec-43fb-a73d-eae713a2f916","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[]}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/Microsoft.Resources/deployments/aks-monitoring-1638367935293/operationStatuses/08585632389497782760?api-version=2021-04-01 + cache-control: + - no-cache + content-length: + - '1021' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:12:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestck44wqgfa-8ecadf", + "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"omsagent": {"enabled": true, "config": + {"logAnalyticsWorkspaceResourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", + "useAADAuth": "False"}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, + "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": + "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", + "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": + false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '2053' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestck44wqgfa-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestck44wqgfa-8ecadf-d171cfdf.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestck44wqgfa-8ecadf-d171cfdf.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n + \ \"useAADAuth\": \"False\"\n }\n }\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20bedcff-1566-4073-b2cf-35fb38d06aae?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '3609' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:12:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585632389497782760?api-version=2021-04-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:12:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Resources/deployments/aks-monitoring-1638367935293","name":"aks-monitoring-1638367935293","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7932017758444010137","parameters":{"workspaceResourceId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"},"workspaceRegion":{"type":"String","value":"westus2"},"solutionDeploymentName":{"type":"String","value":"ContainerInsights-1638367935293"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-12-01T14:12:33.9527031Z","duration":"PT18.2533653S","correlationId":"a54fff25-22ec-43fb-a73d-eae713a2f916","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2)"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '1275' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:12:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20bedcff-1566-4073-b2cf-35fb38d06aae?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ffdcbe20-6615-7340-b2cf-35fb38d06aae\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:21.1933333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:12:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20bedcff-1566-4073-b2cf-35fb38d06aae?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ffdcbe20-6615-7340-b2cf-35fb38d06aae\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:21.1933333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:13:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20bedcff-1566-4073-b2cf-35fb38d06aae?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ffdcbe20-6615-7340-b2cf-35fb38d06aae\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:21.1933333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:13:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20bedcff-1566-4073-b2cf-35fb38d06aae?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ffdcbe20-6615-7340-b2cf-35fb38d06aae\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:21.1933333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:14:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20bedcff-1566-4073-b2cf-35fb38d06aae?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ffdcbe20-6615-7340-b2cf-35fb38d06aae\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:21.1933333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:14:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20bedcff-1566-4073-b2cf-35fb38d06aae?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ffdcbe20-6615-7340-b2cf-35fb38d06aae\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:12:21.1933333Z\",\n \"endTime\": + \"2021-12-01T14:14:57.82381Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '168' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestck44wqgfa-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestck44wqgfa-8ecadf-d171cfdf.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestck44wqgfa-8ecadf-d171cfdf.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n + \ \"useAADAuth\": \"False\"\n },\n \"identity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omsagent-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/274c515a-cbca-4ed2-83ec-46b9736859c7\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4635' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --node-count --ssh-key-value + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables + publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2021-11-11T20:13:44.2828715Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' + headers: + cache-control: + - no-cache + content-length: + - '776' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:15:23 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", + "principalId":"00000000-0000-0000-0000-000000000001"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + Cookie: + - x-ms-gateway-slice=Production + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-addons + --node-count --ssh-key-value + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/1f4162d5-ddfe-410a-a672-1346856dcf36?api-version=2020-04-01-preview + response: + body: + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T14:15:24.1195761Z","updatedOn":"2021-12-01T14:15:24.4008752Z","createdBy":null,"updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/1f4162d5-ddfe-410a-a672-1346856dcf36","type":"Microsoft.Authorization/roleAssignments","name":"1f4162d5-ddfe-410a-a672-1346856dcf36"}' + headers: + cache-control: + - no-cache + content-length: + - '1029' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:15:26 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - rest + Connection: + - keep-alive + ParameterSetName: + - --method --url + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"immutableId":"dcr-78b5a913da4f4d5cb0c12d527d2ef9dd","dataSources":{"extensions":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"extensionName":"ContainerInsights","name":"ContainerInsightsExtension"}]},"destinations":{"logAnalytics":[{"workspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","workspaceId":"e897efd7-55de-4860-ac51-7403ccb7e3cf","name":"la-workspace"}]},"dataFlows":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"destinations":["la-workspace"]}],"provisioningState":"Succeeded"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRules","etag":"\"d800e8e1-0000-0800-0000-61a781d10000\""}' + headers: + api-supported-versions: + - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview + cache-control: + - no-cache + content-length: + - '1725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:15:26 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2bbfbac8-e1b0-44af-b9c6-3a40669d37e3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestck44wqgfa-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestck44wqgfa-8ecadf-d171cfdf.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestck44wqgfa-8ecadf-d171cfdf.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n + \ \"useAADAuth\": \"False\"\n },\n \"identity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omsagent-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/274c515a-cbca-4ed2-83ec-46b9736859c7\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4635' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": + "cliakstest-clitestck44wqgfa-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": + "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"omsagent": {"enabled": false}}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/274c515a-cbca-4ed2-83ec-46b9736859c7"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + Content-Length: + - '2725' + Content-Type: + - application/json + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestck44wqgfa-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestck44wqgfa-8ecadf-d171cfdf.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestck44wqgfa-8ecadf-d171cfdf.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": false,\n \"config\": null\n + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/274c515a-cbca-4ed2-83ec-46b9736859c7\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/554e1d93-5f8b-4662-9e43-c6b3cd9cac08?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '3992' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/554e1d93-5f8b-4662-9e43-c6b3cd9cac08?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"931d4e55-8b5f-6246-9e43-c6b3cd9cac08\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:15:30.8066666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:16:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/554e1d93-5f8b-4662-9e43-c6b3cd9cac08?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"931d4e55-8b5f-6246-9e43-c6b3cd9cac08\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:15:30.8066666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:16:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/554e1d93-5f8b-4662-9e43-c6b3cd9cac08?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"931d4e55-8b5f-6246-9e43-c6b3cd9cac08\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:15:30.8066666Z\",\n \"endTime\": + \"2021-12-01T14:16:45.2216803Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:17:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestck44wqgfa-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestck44wqgfa-8ecadf-d171cfdf.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestck44wqgfa-8ecadf-d171cfdf.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": false,\n \"config\": null\n + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/274c515a-cbca-4ed2-83ec-46b9736859c7\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '3994' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:17:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --yes --no-wait + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e6997090-1c40-4990-ae30-d37f961ccdb9?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 01 Dec 2021 14:17:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/e6997090-1c40-4990-ae30-d37f961ccdb9?api-version=2016-03-30 + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +version: 1 diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_node_config.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_node_config.yaml old mode 100755 new mode 100644 index 5a9280b1d09..d767c211f6c --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_node_config.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_node_config.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:39:46Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:17:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 06:39:47 GMT + - Wed, 01 Dec 2021 14:17:16 GMT expires: - '-1' pragma: @@ -44,25 +44,25 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestgrksfxrna-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestmpkws5okn-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "kubeletConfig": {"cpuManagerPolicy": "static", - "cpuCfsQuota": true, "cpuCfsQuotaPeriod": "200ms", "imageGcHighThreshold": 90, - "imageGcLowThreshold": 70, "topologyManagerPolicy": "best-effort", "allowedUnsafeSysctls": + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "kubeletConfig": {"cpuManagerPolicy": + "static", "cpuCfsQuota": true, "cpuCfsQuotaPeriod": "200ms", "imageGcHighThreshold": + 90, "imageGcLowThreshold": 70, "topologyManagerPolicy": "best-effort", "allowedUnsafeSysctls": ["kernel.msg*", "net.*"], "failSwapOn": false, "containerLogMaxSizeMB": 20, "containerLogMaxFiles": 10, "podMaxPids": 120}, "linuxOSConfig": {"sysctls": {"netCoreSomaxconn": 163849, "netIpv4TcpTwReuse": true, "netIpv4IpLocalPortRange": "32000 60000"}, "transparentHugePageEnabled": "madvise", "transparentHugePageDefrag": "defer+madvise", "swapFileSizeMB": 1500}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/CustomNodeConfigPreview @@ -75,49 +75,50 @@ interactions: Connection: - keep-alive Content-Length: - - '1973' + - '2330' Content-Type: - application/json ParameterSetName: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestgrksfxrna-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestgrksfxrna-8ecadf-047a9a87.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestgrksfxrna-8ecadf-047a9a87.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestmpkws5okn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestmpkws5okn-8ecadf-5b9ff2c9.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestmpkws5okn-8ecadf-5b9ff2c9.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"kubeletConfig\": {\n \"cpuManagerPolicy\": - \"static\",\n \"cpuCfsQuota\": true,\n \"cpuCfsQuotaPeriod\": \"200ms\",\n - \ \"imageGcHighThreshold\": 90,\n \"imageGcLowThreshold\": 70,\n - \ \"topologyManagerPolicy\": \"best-effort\",\n \"allowedUnsafeSysctls\": - [\n \"kernel.msg*\",\n \"net.*\"\n ],\n \"failSwapOn\": - false,\n \"containerLogMaxSizeMB\": 20,\n \"containerLogMaxFiles\": - 10,\n \"podMaxPids\": 120\n },\n \"linuxOSConfig\": {\n \"sysctls\": - {\n \"netCoreSomaxconn\": 163849,\n \"netIpv4TcpTwReuse\": true,\n - \ \"netIpv4IpLocalPortRange\": \"32000 60000\"\n },\n \"transparentHugePageEnabled\": - \"madvise\",\n \"transparentHugePageDefrag\": \"defer+madvise\",\n \"swapFileSizeMB\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"kubeletConfig\": {\n \"cpuManagerPolicy\": \"static\",\n \"cpuCfsQuota\": + true,\n \"cpuCfsQuotaPeriod\": \"200ms\",\n \"imageGcHighThreshold\": + 90,\n \"imageGcLowThreshold\": 70,\n \"topologyManagerPolicy\": + \"best-effort\",\n \"allowedUnsafeSysctls\": [\n \"kernel.msg*\",\n + \ \"net.*\"\n ],\n \"failSwapOn\": false,\n \"containerLogMaxSizeMB\": + 20,\n \"containerLogMaxFiles\": 10,\n \"podMaxPids\": 120\n },\n + \ \"linuxOSConfig\": {\n \"sysctls\": {\n \"netCoreSomaxconn\": + 163849,\n \"netIpv4TcpTwReuse\": true,\n \"netIpv4IpLocalPortRange\": + \"32000 60000\"\n },\n \"transparentHugePageEnabled\": \"madvise\",\n + \ \"transparentHugePageDefrag\": \"defer+madvise\",\n \"swapFileSizeMB\": 1500\n },\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -125,22 +126,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fbd6391d-988a-4f88-9d77-e8519b16cbe3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/248763b8-31b7-4d7d-aabc-963dd4d0d916?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3525' + - '3983' content-type: - application/json date: - - Tue, 19 Oct 2021 06:39:52 GMT + - Wed, 01 Dec 2021 14:17:21 GMT expires: - '-1' pragma: @@ -152,7 +154,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -173,14 +175,14 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fbd6391d-988a-4f88-9d77-e8519b16cbe3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/248763b8-31b7-4d7d-aabc-963dd4d0d916?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1d39d6fb-8a98-884f-9d77-e8519b16cbe3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:52.3766666Z\"\n }" + string: "{\n \"name\": \"b8638724-b731-7d4d-aabc-963dd4d0d916\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:21.5266666Z\"\n }" headers: cache-control: - no-cache @@ -189,7 +191,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:40:23 GMT + - Wed, 01 Dec 2021 14:17:51 GMT expires: - '-1' pragma: @@ -224,14 +226,14 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fbd6391d-988a-4f88-9d77-e8519b16cbe3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/248763b8-31b7-4d7d-aabc-963dd4d0d916?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1d39d6fb-8a98-884f-9d77-e8519b16cbe3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:52.3766666Z\"\n }" + string: "{\n \"name\": \"b8638724-b731-7d4d-aabc-963dd4d0d916\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:21.5266666Z\"\n }" headers: cache-control: - no-cache @@ -240,7 +242,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:40:53 GMT + - Wed, 01 Dec 2021 14:18:22 GMT expires: - '-1' pragma: @@ -275,14 +277,14 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fbd6391d-988a-4f88-9d77-e8519b16cbe3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/248763b8-31b7-4d7d-aabc-963dd4d0d916?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1d39d6fb-8a98-884f-9d77-e8519b16cbe3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:52.3766666Z\"\n }" + string: "{\n \"name\": \"b8638724-b731-7d4d-aabc-963dd4d0d916\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:21.5266666Z\"\n }" headers: cache-control: - no-cache @@ -291,7 +293,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:41:22 GMT + - Wed, 01 Dec 2021 14:18:52 GMT expires: - '-1' pragma: @@ -326,14 +328,14 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fbd6391d-988a-4f88-9d77-e8519b16cbe3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/248763b8-31b7-4d7d-aabc-963dd4d0d916?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1d39d6fb-8a98-884f-9d77-e8519b16cbe3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:52.3766666Z\"\n }" + string: "{\n \"name\": \"b8638724-b731-7d4d-aabc-963dd4d0d916\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:21.5266666Z\"\n }" headers: cache-control: - no-cache @@ -342,7 +344,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:41:53 GMT + - Wed, 01 Dec 2021 14:19:22 GMT expires: - '-1' pragma: @@ -377,14 +379,14 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fbd6391d-988a-4f88-9d77-e8519b16cbe3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/248763b8-31b7-4d7d-aabc-963dd4d0d916?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1d39d6fb-8a98-884f-9d77-e8519b16cbe3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:52.3766666Z\"\n }" + string: "{\n \"name\": \"b8638724-b731-7d4d-aabc-963dd4d0d916\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:21.5266666Z\"\n }" headers: cache-control: - no-cache @@ -393,7 +395,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:42:22 GMT + - Wed, 01 Dec 2021 14:19:52 GMT expires: - '-1' pragma: @@ -428,14 +430,14 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fbd6391d-988a-4f88-9d77-e8519b16cbe3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/248763b8-31b7-4d7d-aabc-963dd4d0d916?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1d39d6fb-8a98-884f-9d77-e8519b16cbe3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:52.3766666Z\"\n }" + string: "{\n \"name\": \"b8638724-b731-7d4d-aabc-963dd4d0d916\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:21.5266666Z\"\n }" headers: cache-control: - no-cache @@ -444,7 +446,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:42:53 GMT + - Wed, 01 Dec 2021 14:20:22 GMT expires: - '-1' pragma: @@ -479,24 +481,24 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fbd6391d-988a-4f88-9d77-e8519b16cbe3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/248763b8-31b7-4d7d-aabc-963dd4d0d916?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1d39d6fb-8a98-884f-9d77-e8519b16cbe3\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:39:52.3766666Z\",\n \"endTime\": - \"2021-10-19T06:43:06.0933288Z\"\n }" + string: "{\n \"name\": \"b8638724-b731-7d4d-aabc-963dd4d0d916\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:17:21.5266666Z\",\n \"endTime\": + \"2021-12-01T14:20:24.026802Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Tue, 19 Oct 2021 06:43:23 GMT + - Wed, 01 Dec 2021 14:20:52 GMT expires: - '-1' pragma: @@ -531,67 +533,70 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestgrksfxrna-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestgrksfxrna-8ecadf-047a9a87.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestgrksfxrna-8ecadf-047a9a87.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestmpkws5okn-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestmpkws5okn-8ecadf-5b9ff2c9.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestmpkws5okn-8ecadf-5b9ff2c9.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"kubeletConfig\": {\n \"cpuManagerPolicy\": - \"static\",\n \"cpuCfsQuota\": true,\n \"cpuCfsQuotaPeriod\": \"200ms\",\n - \ \"imageGcHighThreshold\": 90,\n \"imageGcLowThreshold\": 70,\n - \ \"topologyManagerPolicy\": \"best-effort\",\n \"allowedUnsafeSysctls\": - [\n \"kernel.msg*\",\n \"net.*\"\n ],\n \"failSwapOn\": - false,\n \"containerLogMaxSizeMB\": 20,\n \"containerLogMaxFiles\": - 10,\n \"podMaxPids\": 120\n },\n \"linuxOSConfig\": {\n \"sysctls\": - {\n \"netCoreSomaxconn\": 163849,\n \"netIpv4TcpTwReuse\": true,\n - \ \"netIpv4IpLocalPortRange\": \"32000 60000\"\n },\n \"transparentHugePageEnabled\": - \"madvise\",\n \"transparentHugePageDefrag\": \"defer+madvise\",\n \"swapFileSizeMB\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"kubeletConfig\": {\n \"cpuManagerPolicy\": \"static\",\n \"cpuCfsQuota\": + true,\n \"cpuCfsQuotaPeriod\": \"200ms\",\n \"imageGcHighThreshold\": + 90,\n \"imageGcLowThreshold\": 70,\n \"topologyManagerPolicy\": + \"best-effort\",\n \"allowedUnsafeSysctls\": [\n \"kernel.msg*\",\n + \ \"net.*\"\n ],\n \"failSwapOn\": false,\n \"containerLogMaxSizeMB\": + 20,\n \"containerLogMaxFiles\": 10,\n \"podMaxPids\": 120\n },\n + \ \"linuxOSConfig\": {\n \"sysctls\": {\n \"netCoreSomaxconn\": + 163849,\n \"netIpv4TcpTwReuse\": true,\n \"netIpv4IpLocalPortRange\": + \"32000 60000\"\n },\n \"transparentHugePageEnabled\": \"madvise\",\n + \ \"transparentHugePageDefrag\": \"defer+madvise\",\n \"swapFileSizeMB\": 1500\n },\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fa3765d2-a7d6-44d5-b017-2681f98aeb77\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/799c2f74-0528-496c-bbfb-c5476b086039\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4188' + - '4646' content-type: - application/json date: - - Tue, 19 Oct 2021 06:43:23 GMT + - Wed, 01 Dec 2021 14:20:53 GMT expires: - '-1' pragma: @@ -624,10 +629,10 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2021-10-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -635,32 +640,32 @@ interactions: \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"kubeletConfig\": {\n \"cpuManagerPolicy\": \"static\",\n \"cpuCfsQuota\": - true,\n \"cpuCfsQuotaPeriod\": \"200ms\",\n \"imageGcHighThreshold\": - 90,\n \"imageGcLowThreshold\": 70,\n \"topologyManagerPolicy\": - \"best-effort\",\n \"allowedUnsafeSysctls\": [\n \"kernel.msg*\",\n - \ \"net.*\"\n ],\n \"failSwapOn\": false,\n \"containerLogMaxSizeMB\": - 20,\n \"containerLogMaxFiles\": 10,\n \"podMaxPids\": 120\n },\n - \ \"linuxOSConfig\": {\n \"sysctls\": {\n \"netCoreSomaxconn\": - 163849,\n \"netIpv4TcpTwReuse\": true,\n \"netIpv4IpLocalPortRange\": - \"32000 60000\"\n },\n \"transparentHugePageEnabled\": \"madvise\",\n - \ \"transparentHugePageDefrag\": \"defer+madvise\",\n \"swapFileSizeMB\": + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"kubeletConfig\": {\n \"cpuManagerPolicy\": + \"static\",\n \"cpuCfsQuota\": true,\n \"cpuCfsQuotaPeriod\": \"200ms\",\n + \ \"imageGcHighThreshold\": 90,\n \"imageGcLowThreshold\": 70,\n + \ \"topologyManagerPolicy\": \"best-effort\",\n \"allowedUnsafeSysctls\": + [\n \"kernel.msg*\",\n \"net.*\"\n ],\n \"failSwapOn\": + false,\n \"containerLogMaxSizeMB\": 20,\n \"containerLogMaxFiles\": + 10,\n \"podMaxPids\": 120\n },\n \"linuxOSConfig\": {\n \"sysctls\": + {\n \"netCoreSomaxconn\": 163849,\n \"netIpv4TcpTwReuse\": true,\n + \ \"netIpv4IpLocalPortRange\": \"32000 60000\"\n },\n \"transparentHugePageEnabled\": + \"madvise\",\n \"transparentHugePageDefrag\": \"defer+madvise\",\n \"swapFileSizeMB\": 1500\n },\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n \ }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1721' + - '1754' content-type: - application/json date: - - Tue, 19 Oct 2021 06:43:24 GMT + - Wed, 01 Dec 2021 14:20:54 GMT expires: - '-1' pragma: @@ -710,10 +715,10 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2\",\n @@ -735,11 +740,11 @@ interactions: \"madvise\",\n \"transparentHugePageDefrag\": \"defer+madvise\",\n \"swapFileSizeMB\": 1500\n },\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33c2a9d5-4220-4b41-91fd-49dc979fd5dc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56d850e5-61ec-4308-85f5-8f23880b86f4?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -747,7 +752,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:43:26 GMT + - Wed, 01 Dec 2021 14:20:56 GMT expires: - '-1' pragma: @@ -759,7 +764,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' status: code: 201 message: Created @@ -780,74 +785,23 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33c2a9d5-4220-4b41-91fd-49dc979fd5dc?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"d5a9c233-2042-414b-91fd-49dc979fd5dc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:43:27.1366666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 06:43:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/CustomNodeConfigPreview - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config - --aks-custom-headers - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33c2a9d5-4220-4b41-91fd-49dc979fd5dc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56d850e5-61ec-4308-85f5-8f23880b86f4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d5a9c233-2042-414b-91fd-49dc979fd5dc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:43:27.1366666Z\"\n }" + string: "{\n \"name\": \"e550d856-ec61-0843-85f5-8f23880b86f4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:57.17Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:44:26 GMT + - Wed, 01 Dec 2021 14:21:26 GMT expires: - '-1' pragma: @@ -882,23 +836,23 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33c2a9d5-4220-4b41-91fd-49dc979fd5dc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56d850e5-61ec-4308-85f5-8f23880b86f4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d5a9c233-2042-414b-91fd-49dc979fd5dc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:43:27.1366666Z\"\n }" + string: "{\n \"name\": \"e550d856-ec61-0843-85f5-8f23880b86f4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:57.17Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:44:56 GMT + - Wed, 01 Dec 2021 14:21:57 GMT expires: - '-1' pragma: @@ -933,23 +887,23 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33c2a9d5-4220-4b41-91fd-49dc979fd5dc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56d850e5-61ec-4308-85f5-8f23880b86f4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d5a9c233-2042-414b-91fd-49dc979fd5dc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:43:27.1366666Z\"\n }" + string: "{\n \"name\": \"e550d856-ec61-0843-85f5-8f23880b86f4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:57.17Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:45:27 GMT + - Wed, 01 Dec 2021 14:22:27 GMT expires: - '-1' pragma: @@ -984,23 +938,23 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33c2a9d5-4220-4b41-91fd-49dc979fd5dc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56d850e5-61ec-4308-85f5-8f23880b86f4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d5a9c233-2042-414b-91fd-49dc979fd5dc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:43:27.1366666Z\"\n }" + string: "{\n \"name\": \"e550d856-ec61-0843-85f5-8f23880b86f4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:57.17Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:45:56 GMT + - Wed, 01 Dec 2021 14:22:57 GMT expires: - '-1' pragma: @@ -1035,23 +989,23 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33c2a9d5-4220-4b41-91fd-49dc979fd5dc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56d850e5-61ec-4308-85f5-8f23880b86f4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d5a9c233-2042-414b-91fd-49dc979fd5dc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:43:27.1366666Z\"\n }" + string: "{\n \"name\": \"e550d856-ec61-0843-85f5-8f23880b86f4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:57.17Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:46:27 GMT + - Wed, 01 Dec 2021 14:23:27 GMT expires: - '-1' pragma: @@ -1086,24 +1040,24 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33c2a9d5-4220-4b41-91fd-49dc979fd5dc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56d850e5-61ec-4308-85f5-8f23880b86f4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d5a9c233-2042-414b-91fd-49dc979fd5dc\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:43:27.1366666Z\",\n \"endTime\": - \"2021-10-19T06:46:28.4113264Z\"\n }" + string: "{\n \"name\": \"e550d856-ec61-0843-85f5-8f23880b86f4\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:20:57.17Z\",\n \"endTime\": + \"2021-12-01T14:23:57.1466384Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Tue, 19 Oct 2021 06:46:57 GMT + - Wed, 01 Dec 2021 14:23:58 GMT expires: - '-1' pragma: @@ -1138,10 +1092,10 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2\",\n @@ -1163,7 +1117,7 @@ interactions: \"madvise\",\n \"transparentHugePageDefrag\": \"defer+madvise\",\n \"swapFileSizeMB\": 1500\n },\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n }" headers: cache-control: @@ -1173,7 +1127,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:46:57 GMT + - Wed, 01 Dec 2021 14:23:58 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_openservicemesh_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_openservicemesh_addon.yaml old mode 100755 new mode 100644 index 7446b2465d9..422fbf8e37e --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_openservicemesh_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_openservicemesh_addon.yaml @@ -11,14 +11,15 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --enable-managed-identity -a --ssh-key-value -o + - --resource-group --name --enable-managed-identity --aks-custom-headers -a + --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:36:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:25:25Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 06:36:09 GMT + - Wed, 01 Dec 2021 14:25:25 GMT expires: - '-1' pragma: @@ -43,20 +44,22 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestzpvxwhghd-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest76xlqsnfi-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": - {"enabled": true, "config": {}}}, "enableRBAC": true, "enablePodSecurityPolicy": - false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": true, + "config": {}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": + "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-OpenServiceMesh Accept: - application/json Accept-Encoding: @@ -66,62 +69,66 @@ interactions: Connection: - keep-alive Content-Length: - - '1441' + - '1798' Content-Type: - application/json ParameterSetName: - - --resource-group --name --enable-managed-identity -a --ssh-key-value -o + - --resource-group --name --enable-managed-identity --aks-custom-headers -a + --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestzpvxwhghd-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestzpvxwhghd-8ecadf-bfaed0ed.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestzpvxwhghd-8ecadf-bfaed0ed.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest76xlqsnfi-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest76xlqsnfi-8ecadf-a7895f38.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest76xlqsnfi-8ecadf-a7895f38.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": {}\n + {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null\n \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d025525-9540-4dc0-a030-298493edfa55?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8238a8f4-ab5c-468d-a206-2371deb957ec?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2877' + - '3337' content-type: - application/json date: - - Tue, 19 Oct 2021 06:36:14 GMT + - Wed, 01 Dec 2021 14:25:30 GMT expires: - '-1' pragma: @@ -133,13 +140,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 201 message: Created - request: body: null headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-OpenServiceMesh Accept: - '*/*' Accept-Encoding: @@ -149,25 +158,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --enable-managed-identity -a --ssh-key-value -o + - --resource-group --name --enable-managed-identity --aks-custom-headers -a + --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d025525-9540-4dc0-a030-298493edfa55?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8238a8f4-ab5c-468d-a206-2371deb957ec?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2555029d-4095-c04d-a030-298493edfa55\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:14.2Z\"\n }" + string: "{\n \"name\": \"f4a83882-5cab-8d46-a206-2371deb957ec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:30.78Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:36:43 GMT + - Wed, 01 Dec 2021 14:26:00 GMT expires: - '-1' pragma: @@ -188,6 +198,8 @@ interactions: - request: body: null headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-OpenServiceMesh Accept: - '*/*' Accept-Encoding: @@ -197,25 +209,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --enable-managed-identity -a --ssh-key-value -o + - --resource-group --name --enable-managed-identity --aks-custom-headers -a + --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d025525-9540-4dc0-a030-298493edfa55?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8238a8f4-ab5c-468d-a206-2371deb957ec?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2555029d-4095-c04d-a030-298493edfa55\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:14.2Z\"\n }" + string: "{\n \"name\": \"f4a83882-5cab-8d46-a206-2371deb957ec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:30.78Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:37:13 GMT + - Wed, 01 Dec 2021 14:26:31 GMT expires: - '-1' pragma: @@ -236,6 +249,8 @@ interactions: - request: body: null headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-OpenServiceMesh Accept: - '*/*' Accept-Encoding: @@ -245,25 +260,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --enable-managed-identity -a --ssh-key-value -o + - --resource-group --name --enable-managed-identity --aks-custom-headers -a + --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d025525-9540-4dc0-a030-298493edfa55?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8238a8f4-ab5c-468d-a206-2371deb957ec?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2555029d-4095-c04d-a030-298493edfa55\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:14.2Z\"\n }" + string: "{\n \"name\": \"f4a83882-5cab-8d46-a206-2371deb957ec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:30.78Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:37:43 GMT + - Wed, 01 Dec 2021 14:27:01 GMT expires: - '-1' pragma: @@ -284,6 +300,8 @@ interactions: - request: body: null headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-OpenServiceMesh Accept: - '*/*' Accept-Encoding: @@ -293,25 +311,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --enable-managed-identity -a --ssh-key-value -o + - --resource-group --name --enable-managed-identity --aks-custom-headers -a + --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d025525-9540-4dc0-a030-298493edfa55?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8238a8f4-ab5c-468d-a206-2371deb957ec?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2555029d-4095-c04d-a030-298493edfa55\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:14.2Z\"\n }" + string: "{\n \"name\": \"f4a83882-5cab-8d46-a206-2371deb957ec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:30.78Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:38:14 GMT + - Wed, 01 Dec 2021 14:27:31 GMT expires: - '-1' pragma: @@ -332,6 +351,8 @@ interactions: - request: body: null headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-OpenServiceMesh Accept: - '*/*' Accept-Encoding: @@ -341,26 +362,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --enable-managed-identity -a --ssh-key-value -o + - --resource-group --name --enable-managed-identity --aks-custom-headers -a + --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d025525-9540-4dc0-a030-298493edfa55?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8238a8f4-ab5c-468d-a206-2371deb957ec?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2555029d-4095-c04d-a030-298493edfa55\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:36:14.2Z\",\n \"endTime\": - \"2021-10-19T06:38:44.5384386Z\"\n }" + string: "{\n \"name\": \"f4a83882-5cab-8d46-a206-2371deb957ec\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:25:30.78Z\",\n \"endTime\": + \"2021-12-01T14:27:54.1538396Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '165' content-type: - application/json date: - - Tue, 19 Oct 2021 06:38:44 GMT + - Wed, 01 Dec 2021 14:28:01 GMT expires: - '-1' pragma: @@ -381,6 +403,8 @@ interactions: - request: body: null headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKS-OpenServiceMesh Accept: - '*/*' Accept-Encoding: @@ -390,62 +414,66 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --enable-managed-identity -a --ssh-key-value -o + - --resource-group --name --enable-managed-identity --aks-custom-headers -a + --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestzpvxwhghd-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestzpvxwhghd-8ecadf-bfaed0ed.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestzpvxwhghd-8ecadf-bfaed0ed.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest76xlqsnfi-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest76xlqsnfi-8ecadf-a7895f38.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest76xlqsnfi-8ecadf-a7895f38.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": {},\n + {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null,\n \ \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/openservicemesh-cliakstest000002\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5cfbe933-f225-4929-abb5-c525acd3944a\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ce4336f4-f321-43d8-a246-fec50ff060e9\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3910' + - '4370' content-type: - application/json date: - - Tue, 19 Oct 2021 06:38:44 GMT + - Wed, 01 Dec 2021 14:28:02 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml old mode 100755 new mode 100644 index 8a5c2be3763..072d59ded37 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_ossku.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:42:28Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:02:25Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '313' + - '312' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 06:42:29 GMT + - Wed, 01 Dec 2021 14:02:25 GMT expires: - '-1' pragma: @@ -42,20 +42,20 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestfl2domx52-8ecadf", + body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest63ovtk6vb-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "osSKU": "CBLMariner", "type": "VirtualMachineScaleSets", - "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "osSKU": "CBLMariner", "enableAutoScaling": + false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": + false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": + -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -66,61 +66,62 @@ interactions: Connection: - keep-alive Content-Length: - - '1414' + - '1770' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestfl2domx52-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestfl2domx52-8ecadf-6350e151.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestfl2domx52-8ecadf-6350e151.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest63ovtk6vb-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest63ovtk6vb-8ecadf-e1c361d0.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest63ovtk6vb-8ecadf-e1c361d0.portal.hcp.eastus.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"CBLMariner\",\n \"nodeImageVersion\": \"AKSCBLMariner-V1-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"CBLMariner\",\n \"nodeImageVersion\": + \"AKSCBLMariner-V1-2021.11.06\",\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_eastus\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eada1c5f-c5b7-4509-bc3f-1aa555945dd6?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/316d2fd5-238b-4d55-b083-29c4ea36c57c?api-version=2017-08-31 cache-control: - no-cache content-length: - - '2770' + - '3224' content-type: - application/json date: - - Tue, 19 Oct 2021 06:42:31 GMT + - Wed, 01 Dec 2021 14:02:30 GMT expires: - '-1' pragma: @@ -132,7 +133,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' status: code: 201 message: Created @@ -150,23 +151,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eada1c5f-c5b7-4509-bc3f-1aa555945dd6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/316d2fd5-238b-4d55-b083-29c4ea36c57c?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f1cdaea-b7c5-0945-bc3f-1aa555945dd6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:42:32.0233333Z\"\n }" + string: "{\n \"name\": \"d52f6d31-8b23-554d-b083-29c4ea36c57c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.01Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:43:01 GMT + - Wed, 01 Dec 2021 14:02:59 GMT expires: - '-1' pragma: @@ -198,23 +199,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eada1c5f-c5b7-4509-bc3f-1aa555945dd6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/316d2fd5-238b-4d55-b083-29c4ea36c57c?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f1cdaea-b7c5-0945-bc3f-1aa555945dd6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:42:32.0233333Z\"\n }" + string: "{\n \"name\": \"d52f6d31-8b23-554d-b083-29c4ea36c57c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.01Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:43:31 GMT + - Wed, 01 Dec 2021 14:03:30 GMT expires: - '-1' pragma: @@ -246,23 +247,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eada1c5f-c5b7-4509-bc3f-1aa555945dd6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/316d2fd5-238b-4d55-b083-29c4ea36c57c?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f1cdaea-b7c5-0945-bc3f-1aa555945dd6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:42:32.0233333Z\"\n }" + string: "{\n \"name\": \"d52f6d31-8b23-554d-b083-29c4ea36c57c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.01Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:44:01 GMT + - Wed, 01 Dec 2021 14:04:00 GMT expires: - '-1' pragma: @@ -294,23 +295,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eada1c5f-c5b7-4509-bc3f-1aa555945dd6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/316d2fd5-238b-4d55-b083-29c4ea36c57c?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f1cdaea-b7c5-0945-bc3f-1aa555945dd6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:42:32.0233333Z\"\n }" + string: "{\n \"name\": \"d52f6d31-8b23-554d-b083-29c4ea36c57c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.01Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:44:32 GMT + - Wed, 01 Dec 2021 14:04:30 GMT expires: - '-1' pragma: @@ -342,23 +343,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eada1c5f-c5b7-4509-bc3f-1aa555945dd6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/316d2fd5-238b-4d55-b083-29c4ea36c57c?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f1cdaea-b7c5-0945-bc3f-1aa555945dd6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:42:32.0233333Z\"\n }" + string: "{\n \"name\": \"d52f6d31-8b23-554d-b083-29c4ea36c57c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.01Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:45:01 GMT + - Wed, 01 Dec 2021 14:05:00 GMT expires: - '-1' pragma: @@ -390,23 +391,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eada1c5f-c5b7-4509-bc3f-1aa555945dd6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/316d2fd5-238b-4d55-b083-29c4ea36c57c?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f1cdaea-b7c5-0945-bc3f-1aa555945dd6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:42:32.0233333Z\"\n }" + string: "{\n \"name\": \"d52f6d31-8b23-554d-b083-29c4ea36c57c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.01Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:45:31 GMT + - Wed, 01 Dec 2021 14:05:31 GMT expires: - '-1' pragma: @@ -438,24 +439,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eada1c5f-c5b7-4509-bc3f-1aa555945dd6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/316d2fd5-238b-4d55-b083-29c4ea36c57c?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f1cdaea-b7c5-0945-bc3f-1aa555945dd6\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:42:32.0233333Z\",\n \"endTime\": - \"2021-10-19T06:45:38.9608782Z\"\n }" + string: "{\n \"name\": \"d52f6d31-8b23-554d-b083-29c4ea36c57c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:30.01Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:46:02 GMT + - Wed, 01 Dec 2021 14:06:01 GMT expires: - '-1' pragma: @@ -487,57 +487,108 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/316d2fd5-238b-4d55-b083-29c4ea36c57c?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"d52f6d31-8b23-554d-b083-29c4ea36c57c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:02:30.01Z\",\n \"endTime\": + \"2021-12-01T14:06:01.8383829Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '165' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:06:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestfl2domx52-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestfl2domx52-8ecadf-6350e151.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestfl2domx52-8ecadf-6350e151.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest63ovtk6vb-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest63ovtk6vb-8ecadf-e1c361d0.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest63ovtk6vb-8ecadf-e1c361d0.portal.hcp.eastus.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"CBLMariner\",\n \"nodeImageVersion\": \"AKSCBLMariner-V1-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"CBLMariner\",\n \"nodeImageVersion\": + \"AKSCBLMariner-V1-2021.11.06\",\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_eastus\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/630c239c-a69f-4803-bb60-f6e3c1e8fe50\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/e91ded58-dd14-45ca-aaa6-f0883239f2fa\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3433' + - '3885' content-type: - application/json date: - - Tue, 19 Oct 2021 06:46:02 GMT + - Wed, 01 Dec 2021 14:06:31 GMT expires: - '-1' pragma: @@ -571,8 +622,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -580,17 +631,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1a10cfca-c1f7-46f7-9ee3-b38c2d1c002a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e48a0351-b41e-4b17-a08d-b3edd901edff?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 06:46:03 GMT + - Wed, 01 Dec 2021 14:06:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/1a10cfca-c1f7-46f7-9ee3-b38c2d1c002a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/e48a0351-b41e-4b17-a08d-b3edd901edff?api-version=2017-08-31 pragma: - no-cache server: @@ -600,7 +651,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_pod_identity_enabled.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_pod_identity_enabled.yaml old mode 100755 new mode 100644 index 38dfe473c53..5a8e5fb9e3c --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_pod_identity_enabled.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_pod_identity_enabled.yaml @@ -1,58 +1,16 @@ interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --enable-managed-identity --enable-pod-identity - --enable-pod-identity-with-kubenet --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:40:49Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '313' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 06:40:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest6vcwyfgnm-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestj5rbxvhl3-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "podIdentityProfile": - {"enabled": true, "allowNetworkPluginKubenet": true}, "enableRBAC": true, "enablePodSecurityPolicy": + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "podIdentityProfile": {"enabled": + true, "allowNetworkPluginKubenet": true}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, @@ -67,39 +25,40 @@ interactions: Connection: - keep-alive Content-Length: - - '1467' + - '1824' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6vcwyfgnm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj5rbxvhl3-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -107,23 +66,24 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"podIdentityProfile\": - {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": true\n },\n - \ \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"podIdentityProfile\": {\n \"enabled\": + true,\n \"allowNetworkPluginKubenet\": true\n },\n \"disableLocalAccounts\": + false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15519812-379d-4cef-96c3-ae22bb99d8a8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7349e92-b3a6-42e4-959e-d8f312f155f0?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2870' + - '3328' content-type: - application/json date: - - Tue, 19 Oct 2021 06:40:52 GMT + - Wed, 01 Dec 2021 14:06:09 GMT expires: - '-1' pragma: @@ -135,7 +95,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -154,14 +114,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15519812-379d-4cef-96c3-ae22bb99d8a8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7349e92-b3a6-42e4-959e-d8f312f155f0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"12985115-9d37-ef4c-96c3-ae22bb99d8a8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:40:53.4333333Z\"\n }" + string: "{\n \"name\": \"929e34d7-a6b3-e442-959e-d8f312f155f0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:09.5966666Z\"\n }" headers: cache-control: - no-cache @@ -170,7 +130,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:41:23 GMT + - Wed, 01 Dec 2021 14:06:39 GMT expires: - '-1' pragma: @@ -203,14 +163,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15519812-379d-4cef-96c3-ae22bb99d8a8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7349e92-b3a6-42e4-959e-d8f312f155f0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"12985115-9d37-ef4c-96c3-ae22bb99d8a8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:40:53.4333333Z\"\n }" + string: "{\n \"name\": \"929e34d7-a6b3-e442-959e-d8f312f155f0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:09.5966666Z\"\n }" headers: cache-control: - no-cache @@ -219,7 +179,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:41:53 GMT + - Wed, 01 Dec 2021 14:07:09 GMT expires: - '-1' pragma: @@ -252,14 +212,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15519812-379d-4cef-96c3-ae22bb99d8a8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7349e92-b3a6-42e4-959e-d8f312f155f0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"12985115-9d37-ef4c-96c3-ae22bb99d8a8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:40:53.4333333Z\"\n }" + string: "{\n \"name\": \"929e34d7-a6b3-e442-959e-d8f312f155f0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:09.5966666Z\"\n }" headers: cache-control: - no-cache @@ -268,7 +228,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:42:23 GMT + - Wed, 01 Dec 2021 14:07:39 GMT expires: - '-1' pragma: @@ -301,14 +261,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15519812-379d-4cef-96c3-ae22bb99d8a8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7349e92-b3a6-42e4-959e-d8f312f155f0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"12985115-9d37-ef4c-96c3-ae22bb99d8a8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:40:53.4333333Z\"\n }" + string: "{\n \"name\": \"929e34d7-a6b3-e442-959e-d8f312f155f0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:09.5966666Z\"\n }" headers: cache-control: - no-cache @@ -317,7 +277,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:42:52 GMT + - Wed, 01 Dec 2021 14:08:10 GMT expires: - '-1' pragma: @@ -350,14 +310,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15519812-379d-4cef-96c3-ae22bb99d8a8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7349e92-b3a6-42e4-959e-d8f312f155f0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"12985115-9d37-ef4c-96c3-ae22bb99d8a8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:40:53.4333333Z\"\n }" + string: "{\n \"name\": \"929e34d7-a6b3-e442-959e-d8f312f155f0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:09.5966666Z\"\n }" headers: cache-control: - no-cache @@ -366,7 +326,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:43:23 GMT + - Wed, 01 Dec 2021 14:08:40 GMT expires: - '-1' pragma: @@ -399,64 +359,15 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15519812-379d-4cef-96c3-ae22bb99d8a8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7349e92-b3a6-42e4-959e-d8f312f155f0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"12985115-9d37-ef4c-96c3-ae22bb99d8a8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:40:53.4333333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 06:43:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --enable-managed-identity --enable-pod-identity - --enable-pod-identity-with-kubenet --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15519812-379d-4cef-96c3-ae22bb99d8a8?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"12985115-9d37-ef4c-96c3-ae22bb99d8a8\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:40:53.4333333Z\",\n \"endTime\": - \"2021-10-19T06:44:20.6860694Z\"\n }" + string: "{\n \"name\": \"929e34d7-a6b3-e442-959e-d8f312f155f0\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:06:09.5966666Z\",\n \"endTime\": + \"2021-12-01T14:08:55.5043593Z\"\n }" headers: cache-control: - no-cache @@ -465,7 +376,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:44:23 GMT + - Wed, 01 Dec 2021 14:09:10 GMT expires: - '-1' pragma: @@ -498,58 +409,61 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-pod-identity --enable-pod-identity-with-kubenet --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6vcwyfgnm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj5rbxvhl3-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f0526a4-a307-4ad8-9c3b-d9fc6d68d4e6\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/65b4284b-3a8a-4705-9a66-be4491759e6e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": - true\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + true\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3533' + - '3991' content-type: - application/json date: - - Tue, 19 Oct 2021 06:44:23 GMT + - Wed, 01 Dec 2021 14:09:10 GMT expires: - '-1' pragma: @@ -581,58 +495,61 @@ interactions: ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6vcwyfgnm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj5rbxvhl3-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f0526a4-a307-4ad8-9c3b-d9fc6d68d4e6\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/65b4284b-3a8a-4705-9a66-be4491759e6e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": - true\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + true\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3533' + - '3991' content-type: - application/json date: - - Tue, 19 Oct 2021 06:44:25 GMT + - Wed, 01 Dec 2021 14:09:12 GMT expires: - '-1' pragma: @@ -653,24 +570,25 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitest6vcwyfgnm-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestj5rbxvhl3-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f0526a4-a307-4ad8-9c3b-d9fc6d68d4e6"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/65b4284b-3a8a-4705-9a66-be4491759e6e"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -681,66 +599,68 @@ interactions: Connection: - keep-alive Content-Length: - - '2353' + - '2764' Content-Type: - application/json ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6vcwyfgnm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj5rbxvhl3-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f0526a4-a307-4ad8-9c3b-d9fc6d68d4e6\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/65b4284b-3a8a-4705-9a66-be4491759e6e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {},\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0277449-24cb-41fd-9c4a-cfad34ecef8a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f9ae4167-7936-4547-a62d-cd772b0dea67?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3468' + - '3926' content-type: - application/json date: - - Tue, 19 Oct 2021 06:44:27 GMT + - Wed, 01 Dec 2021 14:09:15 GMT expires: - '-1' pragma: @@ -774,23 +694,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0277449-24cb-41fd-9c4a-cfad34ecef8a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f9ae4167-7936-4547-a62d-cd772b0dea67?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"497427e0-cb24-fd41-9c4a-cfad34ecef8a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:44:27.5Z\"\n }" + string: "{\n \"name\": \"6741aef9-3679-4745-a62d-cd772b0dea67\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:15.2966666Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:44:57 GMT + - Wed, 01 Dec 2021 14:09:45 GMT expires: - '-1' pragma: @@ -822,24 +742,24 @@ interactions: ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0277449-24cb-41fd-9c4a-cfad34ecef8a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f9ae4167-7936-4547-a62d-cd772b0dea67?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"497427e0-cb24-fd41-9c4a-cfad34ecef8a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:44:27.5Z\",\n \"endTime\": - \"2021-10-19T06:45:21.8030308Z\"\n }" + string: "{\n \"name\": \"6741aef9-3679-4745-a62d-cd772b0dea67\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:09:15.2966666Z\",\n \"endTime\": + \"2021-12-01T14:10:09.248456Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '169' content-type: - application/json date: - - Tue, 19 Oct 2021 06:45:27 GMT + - Wed, 01 Dec 2021 14:10:16 GMT expires: - '-1' pragma: @@ -871,58 +791,60 @@ interactions: ParameterSetName: - --resource-group --name --disable-pod-identity User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6vcwyfgnm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj5rbxvhl3-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f0526a4-a307-4ad8-9c3b-d9fc6d68d4e6\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/65b4284b-3a8a-4705-9a66-be4491759e6e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {},\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3470' + - '3928' content-type: - application/json date: - - Tue, 19 Oct 2021 06:45:28 GMT + - Wed, 01 Dec 2021 14:10:17 GMT expires: - '-1' pragma: @@ -954,58 +876,60 @@ interactions: ParameterSetName: - --resource-group --name --enable-pod-identity --enable-pod-identity-with-kubenet User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6vcwyfgnm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj5rbxvhl3-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f0526a4-a307-4ad8-9c3b-d9fc6d68d4e6\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/65b4284b-3a8a-4705-9a66-be4491759e6e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {},\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3470' + - '3928' content-type: - application/json date: - - Tue, 19 Oct 2021 06:45:28 GMT + - Wed, 01 Dec 2021 14:10:18 GMT expires: - '-1' pragma: @@ -1026,25 +950,26 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitest6vcwyfgnm-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestj5rbxvhl3-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": true, "allowNetworkPluginKubenet": true, "userAssignedIdentities": [], "userAssignedIdentityExceptions": []}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f0526a4-a307-4ad8-9c3b-d9fc6d68d4e6"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/65b4284b-3a8a-4705-9a66-be4491759e6e"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -1055,66 +980,69 @@ interactions: Connection: - keep-alive Content-Length: - - '2455' + - '2866' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-pod-identity --enable-pod-identity-with-kubenet User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6vcwyfgnm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj5rbxvhl3-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f0526a4-a307-4ad8-9c3b-d9fc6d68d4e6\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/65b4284b-3a8a-4705-9a66-be4491759e6e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": - true\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + true\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1c90829f-de45-46ca-b9e8-f6c2380df513?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa04cce2-f556-46b4-aa9f-f8cabcf54adb?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3531' + - '3989' content-type: - application/json date: - - Tue, 19 Oct 2021 06:45:31 GMT + - Wed, 01 Dec 2021 14:10:20 GMT expires: - '-1' pragma: @@ -1130,7 +1058,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-pod-identity --enable-pod-identity-with-kubenet + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa04cce2-f556-46b4-aa9f-f8cabcf54adb?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e2cc04aa-56f5-b446-aa9f-f8cabcf54adb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:10:20.5066666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:10:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1148,23 +1124,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-pod-identity --enable-pod-identity-with-kubenet User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1c90829f-de45-46ca-b9e8-f6c2380df513?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa04cce2-f556-46b4-aa9f-f8cabcf54adb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9f82901c-45de-ca46-b9e8-f6c2380df513\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:45:31.84Z\"\n }" + string: "{\n \"name\": \"e2cc04aa-56f5-b446-aa9f-f8cabcf54adb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:10:20.5066666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:46:01 GMT + - Wed, 01 Dec 2021 14:11:20 GMT expires: - '-1' pragma: @@ -1196,24 +1172,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-pod-identity --enable-pod-identity-with-kubenet User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1c90829f-de45-46ca-b9e8-f6c2380df513?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa04cce2-f556-46b4-aa9f-f8cabcf54adb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9f82901c-45de-ca46-b9e8-f6c2380df513\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:45:31.84Z\",\n \"endTime\": - \"2021-10-19T06:46:25.1976633Z\"\n }" + string: "{\n \"name\": \"e2cc04aa-56f5-b446-aa9f-f8cabcf54adb\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:10:20.5066666Z\",\n \"endTime\": + \"2021-12-01T14:11:31.2570213Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 06:46:31 GMT + - Wed, 01 Dec 2021 14:11:51 GMT expires: - '-1' pragma: @@ -1245,58 +1221,61 @@ interactions: ParameterSetName: - --resource-group --name --enable-pod-identity --enable-pod-identity-with-kubenet User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6vcwyfgnm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj5rbxvhl3-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f0526a4-a307-4ad8-9c3b-d9fc6d68d4e6\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/65b4284b-3a8a-4705-9a66-be4491759e6e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": - true\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + true\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3533' + - '3991' content-type: - application/json date: - - Tue, 19 Oct 2021 06:46:31 GMT + - Wed, 01 Dec 2021 14:11:52 GMT expires: - '-1' pragma: @@ -1328,58 +1307,61 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6vcwyfgnm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj5rbxvhl3-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f0526a4-a307-4ad8-9c3b-d9fc6d68d4e6\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/65b4284b-3a8a-4705-9a66-be4491759e6e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": - true\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + true\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3533' + - '3991' content-type: - application/json date: - - Tue, 19 Oct 2021 06:46:33 GMT + - Wed, 01 Dec 2021 14:11:52 GMT expires: - '-1' pragma: @@ -1400,15 +1382,15 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitest6vcwyfgnm-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestj5rbxvhl3-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": true, "allowNetworkPluginKubenet": true, "userAssignedIdentities": [], "userAssignedIdentityExceptions": [{"name": "test-name", "namespace": "test-namespace", "podLabels": {"foo": "bar"}}]}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", @@ -1416,10 +1398,11 @@ interactions: "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f0526a4-a307-4ad8-9c3b-d9fc6d68d4e6"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/65b4284b-3a8a-4705-9a66-be4491759e6e"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -1430,47 +1413,50 @@ interactions: Connection: - keep-alive Content-Length: - - '2536' + - '2947' Content-Type: - application/json ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6vcwyfgnm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj5rbxvhl3-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f0526a4-a307-4ad8-9c3b-d9fc6d68d4e6\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/65b4284b-3a8a-4705-9a66-be4491759e6e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n @@ -1478,21 +1464,20 @@ interactions: true,\n \"userAssignedIdentityExceptions\": [\n {\n \"name\": \"test-name\",\n \"namespace\": \"test-namespace\",\n \"podLabels\": {\n \"foo\": \"bar\"\n }\n }\n ]\n },\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f1d12f1-4ec3-4547-9742-218891a5a0e4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2cd9338-230a-441d-a9ce-e03e3a4e5bdd?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3705' + - '4163' content-type: - application/json date: - - Tue, 19 Oct 2021 06:46:35 GMT + - Wed, 01 Dec 2021 14:11:56 GMT expires: - '-1' pragma: @@ -1508,7 +1493,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 200 message: OK @@ -1526,14 +1511,14 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f1d12f1-4ec3-4547-9742-218891a5a0e4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2cd9338-230a-441d-a9ce-e03e3a4e5bdd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f1121d4f-c34e-4745-9742-218891a5a0e4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:46:35.5133333Z\"\n }" + string: "{\n \"name\": \"3893cda2-0a23-1d44-a9ce-e03e3a4e5bdd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:56.3666666Z\"\n }" headers: cache-control: - no-cache @@ -1542,7 +1527,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:47:05 GMT + - Wed, 01 Dec 2021 14:12:26 GMT expires: - '-1' pragma: @@ -1574,14 +1559,14 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f1d12f1-4ec3-4547-9742-218891a5a0e4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2cd9338-230a-441d-a9ce-e03e3a4e5bdd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f1121d4f-c34e-4745-9742-218891a5a0e4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:46:35.5133333Z\"\n }" + string: "{\n \"name\": \"3893cda2-0a23-1d44-a9ce-e03e3a4e5bdd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:56.3666666Z\"\n }" headers: cache-control: - no-cache @@ -1590,7 +1575,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:47:35 GMT + - Wed, 01 Dec 2021 14:12:57 GMT expires: - '-1' pragma: @@ -1622,15 +1607,15 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f1d12f1-4ec3-4547-9742-218891a5a0e4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2cd9338-230a-441d-a9ce-e03e3a4e5bdd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f1121d4f-c34e-4745-9742-218891a5a0e4\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:46:35.5133333Z\",\n \"endTime\": - \"2021-10-19T06:48:02.0790534Z\"\n }" + string: "{\n \"name\": \"3893cda2-0a23-1d44-a9ce-e03e3a4e5bdd\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:11:56.3666666Z\",\n \"endTime\": + \"2021-12-01T14:12:58.4242528Z\"\n }" headers: cache-control: - no-cache @@ -1639,7 +1624,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:48:05 GMT + - Wed, 01 Dec 2021 14:13:27 GMT expires: - '-1' pragma: @@ -1671,41 +1656,44 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6vcwyfgnm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj5rbxvhl3-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f0526a4-a307-4ad8-9c3b-d9fc6d68d4e6\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/65b4284b-3a8a-4705-9a66-be4491759e6e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n @@ -1713,19 +1701,18 @@ interactions: true,\n \"userAssignedIdentityExceptions\": [\n {\n \"name\": \"test-name\",\n \"namespace\": \"test-namespace\",\n \"podLabels\": {\n \"foo\": \"bar\"\n }\n }\n ]\n },\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3707' + - '4165' content-type: - application/json date: - - Tue, 19 Oct 2021 06:48:06 GMT + - Wed, 01 Dec 2021 14:13:27 GMT expires: - '-1' pragma: @@ -1757,41 +1744,44 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6vcwyfgnm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj5rbxvhl3-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f0526a4-a307-4ad8-9c3b-d9fc6d68d4e6\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/65b4284b-3a8a-4705-9a66-be4491759e6e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n @@ -1799,19 +1789,18 @@ interactions: true,\n \"userAssignedIdentityExceptions\": [\n {\n \"name\": \"test-name\",\n \"namespace\": \"test-namespace\",\n \"podLabels\": {\n \"foo\": \"bar\"\n }\n }\n ]\n },\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3707' + - '4165' content-type: - application/json date: - - Tue, 19 Oct 2021 06:48:06 GMT + - Wed, 01 Dec 2021 14:13:29 GMT expires: - '-1' pragma: @@ -1832,15 +1821,15 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitest6vcwyfgnm-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestj5rbxvhl3-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": true, "allowNetworkPluginKubenet": true, "userAssignedIdentities": [], "userAssignedIdentityExceptions": [{"name": "test-name", "namespace": "test-namespace", "podLabels": {"foo": "bar", "a": "b"}}]}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", @@ -1848,10 +1837,11 @@ interactions: "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f0526a4-a307-4ad8-9c3b-d9fc6d68d4e6"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/65b4284b-3a8a-4705-9a66-be4491759e6e"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -1862,47 +1852,50 @@ interactions: Connection: - keep-alive Content-Length: - - '2546' + - '2957' Content-Type: - application/json ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6vcwyfgnm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj5rbxvhl3-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f0526a4-a307-4ad8-9c3b-d9fc6d68d4e6\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/65b4284b-3a8a-4705-9a66-be4491759e6e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n @@ -1910,21 +1903,21 @@ interactions: true,\n \"userAssignedIdentityExceptions\": [\n {\n \"name\": \"test-name\",\n \"namespace\": \"test-namespace\",\n \"podLabels\": {\n \"a\": \"b\",\n \"foo\": \"bar\"\n }\n }\n ]\n - \ },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f72d69d5-e0a1-45dc-b712-16fd010105c0?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c17795d-30e9-44a5-aec7-0fcee62868fc?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3722' + - '4180' content-type: - application/json date: - - Tue, 19 Oct 2021 06:48:15 GMT + - Wed, 01 Dec 2021 14:13:32 GMT expires: - '-1' pragma: @@ -1940,7 +1933,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 200 message: OK @@ -1958,23 +1951,23 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f72d69d5-e0a1-45dc-b712-16fd010105c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c17795d-30e9-44a5-aec7-0fcee62868fc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d5692df7-a1e0-dc45-b712-16fd010105c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:48:15.55Z\"\n }" + string: "{\n \"name\": \"5d79177c-e930-a544-aec7-0fcee62868fc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:13:32.4766666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:48:44 GMT + - Wed, 01 Dec 2021 14:14:03 GMT expires: - '-1' pragma: @@ -2006,24 +1999,24 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f72d69d5-e0a1-45dc-b712-16fd010105c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c17795d-30e9-44a5-aec7-0fcee62868fc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d5692df7-a1e0-dc45-b712-16fd010105c0\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:48:15.55Z\",\n \"endTime\": - \"2021-10-19T06:49:13.8053336Z\"\n }" + string: "{\n \"name\": \"5d79177c-e930-a544-aec7-0fcee62868fc\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:13:32.4766666Z\",\n \"endTime\": + \"2021-12-01T14:14:32.6144015Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 06:49:15 GMT + - Wed, 01 Dec 2021 14:14:33 GMT expires: - '-1' pragma: @@ -2055,41 +2048,44 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name --pod-labels User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6vcwyfgnm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj5rbxvhl3-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f0526a4-a307-4ad8-9c3b-d9fc6d68d4e6\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/65b4284b-3a8a-4705-9a66-be4491759e6e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n @@ -2097,19 +2093,19 @@ interactions: true,\n \"userAssignedIdentityExceptions\": [\n {\n \"name\": \"test-name\",\n \"namespace\": \"test-namespace\",\n \"podLabels\": {\n \"a\": \"b\",\n \"foo\": \"bar\"\n }\n }\n ]\n - \ },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3724' + - '4182' content-type: - application/json date: - - Tue, 19 Oct 2021 06:49:16 GMT + - Wed, 01 Dec 2021 14:14:33 GMT expires: - '-1' pragma: @@ -2141,41 +2137,44 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6vcwyfgnm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj5rbxvhl3-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f0526a4-a307-4ad8-9c3b-d9fc6d68d4e6\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/65b4284b-3a8a-4705-9a66-be4491759e6e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n @@ -2183,19 +2182,19 @@ interactions: true,\n \"userAssignedIdentityExceptions\": [\n {\n \"name\": \"test-name\",\n \"namespace\": \"test-namespace\",\n \"podLabels\": {\n \"a\": \"b\",\n \"foo\": \"bar\"\n }\n }\n ]\n - \ },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3724' + - '4182' content-type: - application/json date: - - Tue, 19 Oct 2021 06:49:16 GMT + - Wed, 01 Dec 2021 14:14:34 GMT expires: - '-1' pragma: @@ -2216,25 +2215,26 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitest6vcwyfgnm-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestj5rbxvhl3-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "podIdentityProfile": {"enabled": true, "allowNetworkPluginKubenet": true, "userAssignedIdentities": [], "userAssignedIdentityExceptions": []}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f0526a4-a307-4ad8-9c3b-d9fc6d68d4e6"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/65b4284b-3a8a-4705-9a66-be4491759e6e"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -2245,66 +2245,69 @@ interactions: Connection: - keep-alive Content-Length: - - '2455' + - '2866' Content-Type: - application/json ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6vcwyfgnm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj5rbxvhl3-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f0526a4-a307-4ad8-9c3b-d9fc6d68d4e6\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/65b4284b-3a8a-4705-9a66-be4491759e6e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": - true\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + true\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b054feb-79e6-4032-9b2f-c8debd2ebe6c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40d19e54-7c66-4edc-9e5a-aae2af5e859a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3531' + - '3989' content-type: - application/json date: - - Tue, 19 Oct 2021 06:49:19 GMT + - Wed, 01 Dec 2021 14:14:38 GMT expires: - '-1' pragma: @@ -2320,7 +2323,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1195' status: code: 200 message: OK @@ -2338,14 +2341,14 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b054feb-79e6-4032-9b2f-c8debd2ebe6c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40d19e54-7c66-4edc-9e5a-aae2af5e859a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"eb4f054b-e679-3240-9b2f-c8debd2ebe6c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:49:19.3866666Z\"\n }" + string: "{\n \"name\": \"549ed140-667c-dc4e-9e5a-aae2af5e859a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:38.2533333Z\"\n }" headers: cache-control: - no-cache @@ -2354,7 +2357,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:49:49 GMT + - Wed, 01 Dec 2021 14:15:08 GMT expires: - '-1' pragma: @@ -2386,14 +2389,14 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b054feb-79e6-4032-9b2f-c8debd2ebe6c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40d19e54-7c66-4edc-9e5a-aae2af5e859a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"eb4f054b-e679-3240-9b2f-c8debd2ebe6c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:49:19.3866666Z\"\n }" + string: "{\n \"name\": \"549ed140-667c-dc4e-9e5a-aae2af5e859a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:38.2533333Z\"\n }" headers: cache-control: - no-cache @@ -2402,7 +2405,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:50:18 GMT + - Wed, 01 Dec 2021 14:15:38 GMT expires: - '-1' pragma: @@ -2434,15 +2437,15 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b054feb-79e6-4032-9b2f-c8debd2ebe6c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40d19e54-7c66-4edc-9e5a-aae2af5e859a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"eb4f054b-e679-3240-9b2f-c8debd2ebe6c\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:49:19.3866666Z\",\n \"endTime\": - \"2021-10-19T06:50:21.4212326Z\"\n }" + string: "{\n \"name\": \"549ed140-667c-dc4e-9e5a-aae2af5e859a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:14:38.2533333Z\",\n \"endTime\": + \"2021-12-01T14:15:41.2080447Z\"\n }" headers: cache-control: - no-cache @@ -2451,7 +2454,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:50:49 GMT + - Wed, 01 Dec 2021 14:16:08 GMT expires: - '-1' pragma: @@ -2483,58 +2486,61 @@ interactions: ParameterSetName: - --cluster-name --resource-group --namespace --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6vcwyfgnm-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest6vcwyfgnm-8ecadf-dfdd7af7.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestj5rbxvhl3-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestj5rbxvhl3-8ecadf-038d824c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f0526a4-a307-4ad8-9c3b-d9fc6d68d4e6\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/65b4284b-3a8a-4705-9a66-be4491759e6e\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": - true\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + true\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3533' + - '3991' content-type: - application/json date: - - Tue, 19 Oct 2021 06:50:49 GMT + - Wed, 01 Dec 2021 14:16:09 GMT expires: - '-1' pragma: @@ -2568,8 +2574,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -2577,17 +2583,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/77a753c4-e109-477d-ac65-e0f8f13f2b25?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4bb0115-fc5c-47db-b3a8-ee0454cd03ca?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 06:50:52 GMT + - Wed, 01 Dec 2021 14:16:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/77a753c4-e109-477d-ac65-e0f8f13f2b25?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/d4bb0115-fc5c-47db-b3a8-ee0454cd03ca?api-version=2016-03-30 pragma: - no-cache server: @@ -2597,7 +2603,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14996' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_virtual_node_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_virtual_node_addon.yaml old mode 100755 new mode 100644 index 0a42b060dea..24f8bf3cb6a --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_virtual_node_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_virtual_node_addon.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T05:16:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:16:13Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:16:50 GMT + - Wed, 01 Dec 2021 14:16:13 GMT expires: - '-1' pragma: @@ -62,21 +62,21 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"f8637e93-a580-4ba9-9447-72455ef53870\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"152c9db0-6f37-4102-85f4-8700a6df661f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"5ddaba8b-5906-47f4-8a27-01831974b01c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"72b90938-a685-4e28-baf4-c97ab7042785\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"aks-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"f8637e93-a580-4ba9-9447-72455ef53870\\\"\",\r\n + \ \"etag\": \"W/\\\"152c9db0-6f37-4102-85f4-8700a6df661f\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -87,7 +87,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/dc30190c-0885-4647-8242-598f5e85b75e?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7d1eea45-2bf0-41b1-b23a-3378c7c80ae6?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -95,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:16:53 GMT + - Wed, 01 Dec 2021 14:16:18 GMT expires: - '-1' pragma: @@ -108,9 +108,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 857f7857-35b0-400c-9f60-0d92f29412a4 + - 9b3a0d40-77c5-458d-8cac-9816055c5896 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' status: code: 201 message: Created @@ -128,9 +128,9 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/dc30190c-0885-4647-8242-598f5e85b75e?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7d1eea45-2bf0-41b1-b23a-3378c7c80ae6?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -142,7 +142,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:16:56 GMT + - Wed, 01 Dec 2021 14:16:21 GMT expires: - '-1' pragma: @@ -159,7 +159,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 82472170-6912-4eff-bc01-3d60b181db2a + - 2336f678-bd60-4a99-8aed-b765fa1395a1 status: code: 200 message: OK @@ -177,21 +177,21 @@ interactions: ParameterSetName: - --resource-group --name --address-prefix --subnet-name --subnet-prefix -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"d8f6ac08-d534-4dc1-afd1-47cb9dcf2556\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"761b8c86-c85d-4b4c-bd3f-9dcdc736f3f6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"5ddaba8b-5906-47f4-8a27-01831974b01c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"72b90938-a685-4e28-baf4-c97ab7042785\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"aks-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"d8f6ac08-d534-4dc1-afd1-47cb9dcf2556\\\"\",\r\n + \ \"etag\": \"W/\\\"761b8c86-c85d-4b4c-bd3f-9dcdc736f3f6\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -206,9 +206,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:16:56 GMT + - Wed, 01 Dec 2021 14:16:21 GMT etag: - - W/"d8f6ac08-d534-4dc1-afd1-47cb9dcf2556" + - W/"761b8c86-c85d-4b4c-bd3f-9dcdc736f3f6" expires: - '-1' pragma: @@ -225,7 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eaf5396a-aeb4-4fd6-81a6-4cc01cdcc55b + - 015d51e8-3fdb-4b99-8fe2-68e8e0d51add status: code: 200 message: OK @@ -243,21 +243,21 @@ interactions: ParameterSetName: - -n --resource-group --vnet-name --address-prefixes -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"d8f6ac08-d534-4dc1-afd1-47cb9dcf2556\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"761b8c86-c85d-4b4c-bd3f-9dcdc736f3f6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"5ddaba8b-5906-47f4-8a27-01831974b01c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"72b90938-a685-4e28-baf4-c97ab7042785\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"aks-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"d8f6ac08-d534-4dc1-afd1-47cb9dcf2556\\\"\",\r\n + \ \"etag\": \"W/\\\"761b8c86-c85d-4b4c-bd3f-9dcdc736f3f6\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -272,9 +272,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:16:57 GMT + - Wed, 01 Dec 2021 14:16:22 GMT etag: - - W/"d8f6ac08-d534-4dc1-afd1-47cb9dcf2556" + - W/"761b8c86-c85d-4b4c-bd3f-9dcdc736f3f6" expires: - '-1' pragma: @@ -291,7 +291,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d964970a-4a43-48d8-a38a-ab429a31834a + - 4ea2d6f9-19df-4fe6-92c8-39eaf5b45906 status: code: 200 message: OK @@ -321,28 +321,28 @@ interactions: ParameterSetName: - -n --resource-group --vnet-name --address-prefixes -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"7297e1c0-272f-48fb-a892-4597228de70d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7c6e4b46-21b2-4128-a65b-65866b21b253\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"5ddaba8b-5906-47f4-8a27-01831974b01c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"72b90938-a685-4e28-baf4-c97ab7042785\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"aks-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"7297e1c0-272f-48fb-a892-4597228de70d\\\"\",\r\n + \ \"etag\": \"W/\\\"7c6e4b46-21b2-4128-a65b-65866b21b253\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"aci-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aci-subnet\",\r\n - \ \"etag\": \"W/\\\"7297e1c0-272f-48fb-a892-4597228de70d\\\"\",\r\n + \ \"etag\": \"W/\\\"7c6e4b46-21b2-4128-a65b-65866b21b253\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"11.0.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -353,7 +353,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5bedd629-c5af-430b-87d6-c84ab4177788?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7773d508-d0d3-4395-bbfb-7468e83e9b58?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -361,7 +361,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:16:58 GMT + - Wed, 01 Dec 2021 14:16:23 GMT expires: - '-1' pragma: @@ -378,9 +378,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 53a744d8-705d-4cd8-957e-99e87770aeae + - 166129fa-c69e-4e3e-9d6d-c64b803f72da x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1193' status: code: 200 message: OK @@ -398,9 +398,9 @@ interactions: ParameterSetName: - -n --resource-group --vnet-name --address-prefixes -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5bedd629-c5af-430b-87d6-c84ab4177788?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7773d508-d0d3-4395-bbfb-7468e83e9b58?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -412,7 +412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:17:01 GMT + - Wed, 01 Dec 2021 14:16:26 GMT expires: - '-1' pragma: @@ -429,7 +429,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5293c285-d038-41bd-aea5-df6ab12da4c1 + - ae186dfe-5f57-49a0-902f-ecde505d1784 status: code: 200 message: OK @@ -447,28 +447,28 @@ interactions: ParameterSetName: - -n --resource-group --vnet-name --address-prefixes -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cliakstest000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003\",\r\n - \ \"etag\": \"W/\\\"9d483aad-5ab2-43b2-81aa-81caa38c8f92\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6aa492de-983c-4304-a3ac-879d6cb5ed9f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"5ddaba8b-5906-47f4-8a27-01831974b01c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"72b90938-a685-4e28-baf4-c97ab7042785\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"aks-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"9d483aad-5ab2-43b2-81aa-81caa38c8f92\\\"\",\r\n + \ \"etag\": \"W/\\\"6aa492de-983c-4304-a3ac-879d6cb5ed9f\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"11.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ },\r\n {\r\n \"name\": \"aci-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aci-subnet\",\r\n - \ \"etag\": \"W/\\\"9d483aad-5ab2-43b2-81aa-81caa38c8f92\\\"\",\r\n + \ \"etag\": \"W/\\\"6aa492de-983c-4304-a3ac-879d6cb5ed9f\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"11.0.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -483,9 +483,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:17:01 GMT + - Wed, 01 Dec 2021 14:16:27 GMT etag: - - W/"9d483aad-5ab2-43b2-81aa-81caa38c8f92" + - W/"6aa492de-983c-4304-a3ac-879d6cb5ed9f" expires: - '-1' pragma: @@ -502,7 +502,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6ca06b07-b6cd-451e-b68b-6954b00b81bb + - 7b39dcd0-01cb-48b0-8f0c-8a43f1f4dfa8 status: code: 200 message: OK @@ -521,12 +521,12 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T05:16:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:16:13Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -535,7 +535,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:17:02 GMT + - Wed, 01 Dec 2021 14:16:27 GMT expires: - '-1' pragma: @@ -564,24 +564,25 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments?$filter=atScope%28%29&api-version=2020-04-01-preview response: body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T05:33:00.7067936Z","updatedOn":"2021-04-26T05:33:00.7067936Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2adf4737-6342-4f63-aeb2-5fcd3426a387","type":"Microsoft.Authorization/roleAssignments","name":"2adf4737-6342-4f63-aeb2-5fcd3426a387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T06:09:24.5972802Z","updatedOn":"2021-04-26T06:09:24.5972802Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4572c05-f69f-4e5c-aac6-79afefcf0e2e","type":"Microsoft.Authorization/roleAssignments","name":"c4572c05-f69f-4e5c-aac6-79afefcf0e2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-18T05:18:40.4643436Z","updatedOn":"2021-06-18T05:18:40.4643436Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f926301-cc14-4a88-a3b7-c159d73d01f6","type":"Microsoft.Authorization/roleAssignments","name":"3f926301-cc14-4a88-a3b7-c159d73d01f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-18T03:09:33.8702688Z","updatedOn":"2021-09-18T03:09:33.8702688Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99d6fd13-909e-4c52-807e-77f7a5af83c8","type":"Microsoft.Authorization/roleAssignments","name":"99d6fd13-909e-4c52-807e-77f7a5af83c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T21:55:07.2303024Z","updatedOn":"2021-10-07T21:55:07.2303024Z","createdBy":"8031e009-cc05-4950-8a8d-78942c4492ac","updatedBy":"8031e009-cc05-4950-8a8d-78942c4492ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de/providers/Microsoft.Authorization/roleAssignments/99c5a294-bfee-468a-ab2f-f6db60b8c8f3","type":"Microsoft.Authorization/roleAssignments","name":"99c5a294-bfee-468a-ab2f-f6db60b8c8f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T17:23:35.8382756Z","updatedOn":"2021-10-08T17:23:35.8382756Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de/providers/Microsoft.Authorization/roleAssignments/ade4333c-4321-4b68-b498-d081d55e2b0c","type":"Microsoft.Authorization/roleAssignments","name":"ade4333c-4321-4b68-b498-d081d55e2b0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/dfe50df8-51fe-4401-daad-efca9fc8f14b","condition":null,"conditionVersion":null,"createdOn":"2021-04-22T14:50:37.5977858Z","updatedOn":"2021-04-22T14:50:37.5977858Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/dfe50df8-51fe-4401-daad-efca9fc8f14b/providers/Microsoft.Authorization/roleAssignments/eb6c03a6-8e33-4d47-807c-9cdf9ef1e3d8","type":"Microsoft.Authorization/roleAssignments","name":"eb6c03a6-8e33-4d47-807c-9cdf9ef1e3d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9136073Z","updatedOn":"2019-03-26T22:01:02.9136073Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6f4de15e-9316-4714-a7c4-40c46cf8e067","type":"Microsoft.Authorization/roleAssignments","name":"6f4de15e-9316-4714-a7c4-40c46cf8e067"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:13.2137492Z","updatedOn":"2020-02-25T18:36:13.2137492Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/18fdd87e-1c01-424e-b380-32310f4940c2","type":"Microsoft.Authorization/roleAssignments","name":"18fdd87e-1c01-424e-b380-32310f4940c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:00.4746112Z","updatedOn":"2020-02-25T18:36:00.4746112Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d9bcf58a-6f24-446d-bf60-20ffe5142396","type":"Microsoft.Authorization/roleAssignments","name":"d9bcf58a-6f24-446d-bf60-20ffe5142396"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:55.7490022Z","updatedOn":"2020-02-25T18:35:55.7490022Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6e2b954b-42b2-48e0-997a-622601f0a4b4","type":"Microsoft.Authorization/roleAssignments","name":"6e2b954b-42b2-48e0-997a-622601f0a4b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:57.9173081Z","updatedOn":"2020-02-25T18:35:57.9173081Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9","type":"Microsoft.Authorization/roleAssignments","name":"8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:23.0673659Z","updatedOn":"2020-02-25T18:36:23.0673659Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d0817c57-3e5b-4363-88b7-52baadd5c362","type":"Microsoft.Authorization/roleAssignments","name":"d0817c57-3e5b-4363-88b7-52baadd5c362"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:31.2596366Z","updatedOn":"2020-02-25T18:36:31.2596366Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0dabf212-a1c7-4af6-ba8b-be045493b368","type":"Microsoft.Authorization/roleAssignments","name":"0dabf212-a1c7-4af6-ba8b-be045493b368"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:52.9188704Z","updatedOn":"2020-02-25T18:35:52.9188704Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d674b853-332e-4437-9ddb-bba8fde7ccce","type":"Microsoft.Authorization/roleAssignments","name":"d674b853-332e-4437-9ddb-bba8fde7ccce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:38.8393742Z","updatedOn":"2020-02-25T18:36:38.8393742Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/00625383-053d-4227-a4db-b098e9bd2289","type":"Microsoft.Authorization/roleAssignments","name":"00625383-053d-4227-a4db-b098e9bd2289"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:05.0954462Z","updatedOn":"2020-02-25T18:36:05.0954462Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/3151fe9c-fcd2-45d3-a256-72fb13b86df5","type":"Microsoft.Authorization/roleAssignments","name":"3151fe9c-fcd2-45d3-a256-72fb13b86df5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-07-06T18:51:23.0753297Z","updatedOn":"2020-07-06T18:51:23.0753297Z","createdBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","updatedBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b3a9e1db-fde1-4ddd-ac1c-91913be67359","type":"Microsoft.Authorization/roleAssignments","name":"b3a9e1db-fde1-4ddd-ac1c-91913be67359"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:33.0012805Z","updatedOn":"2021-08-09T18:17:33.0012805Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/01de8fe7-aae0-4d5c-844a-f0bdb8335252","type":"Microsoft.Authorization/roleAssignments","name":"01de8fe7-aae0-4d5c-844a-f0bdb8335252"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:39.9188336Z","updatedOn":"2021-08-09T18:17:39.9188336Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ab2be506-5489-4c1f-add0-f5ed87a10439","type":"Microsoft.Authorization/roleAssignments","name":"ab2be506-5489-4c1f-add0-f5ed87a10439"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:18.2000692Z","updatedOn":"2021-08-24T19:32:18.2000692Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0ce2f3fb-17ea-4193-9081-09aa4b39fec4","type":"Microsoft.Authorization/roleAssignments","name":"0ce2f3fb-17ea-4193-9081-09aa4b39fec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:36.6775144Z","updatedOn":"2021-08-24T19:32:36.6775144Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2e95b289-99bd-4e68-83de-5433f2a0428c","type":"Microsoft.Authorization/roleAssignments","name":"2e95b289-99bd-4e68-83de-5433f2a0428c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-09-15T21:46:52.6665975Z","updatedOn":"2021-09-15T21:46:52.6665975Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6d2e0600-74af-4aeb-b479-1718dd4dffdf","type":"Microsoft.Authorization/roleAssignments","name":"6d2e0600-74af-4aeb-b479-1718dd4dffdf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-09-23T22:47:24.2398372Z","updatedOn":"2021-09-23T22:47:24.2398372Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/68d8c18e-3dd6-4bf4-ae99-aac6ffb945cc","type":"Microsoft.Authorization/roleAssignments","name":"68d8c18e-3dd6-4bf4-ae99-aac6ffb945cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-09-23T22:48:58.7755038Z","updatedOn":"2021-09-23T22:48:58.7755038Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/1201e06e-7fa6-44c7-bb6b-a4bd82994d4d","type":"Microsoft.Authorization/roleAssignments","name":"1201e06e-7fa6-44c7-bb6b-a4bd82994d4d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-01-26T20:10:13.8998989Z","updatedOn":"2021-01-26T20:10:13.8998989Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b36517ec-61d3-468d-afdc-eceda8adb4ee","type":"Microsoft.Authorization/roleAssignments","name":"b36517ec-61d3-468d-afdc-eceda8adb4ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-06T00:13:19.1780775Z","updatedOn":"2021-02-06T00:13:19.1780775Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5216c1ee-4f58-4d36-b379-6c04b1fbd157","type":"Microsoft.Authorization/roleAssignments","name":"5216c1ee-4f58-4d36-b379-6c04b1fbd157"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-24T01:45:04.0423529Z","updatedOn":"2021-02-24T01:45:04.0423529Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2bcd4a3e-5ac3-4ffa-a529-269be7717766","type":"Microsoft.Authorization/roleAssignments","name":"2bcd4a3e-5ac3-4ffa-a529-269be7717766"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-24T01:45:10.2950077Z","updatedOn":"2021-02-24T01:45:10.2950077Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8f8ed3e8-1b37-4ac1-ad01-7a274f600e79","type":"Microsoft.Authorization/roleAssignments","name":"8f8ed3e8-1b37-4ac1-ad01-7a274f600e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:26:34.3109215Z","updatedOn":"2021-04-16T18:26:34.3109215Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7464f8a3-9f55-443b-a3a5-44a31b100cad","type":"Microsoft.Authorization/roleAssignments","name":"7464f8a3-9f55-443b-a3a5-44a31b100cad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:27:56.4446265Z","updatedOn":"2021-04-16T18:27:56.4446265Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8f430c4c-4317-4495-9f01-4f3d4e1ca111","type":"Microsoft.Authorization/roleAssignments","name":"8f430c4c-4317-4495-9f01-4f3d4e1ca111"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-05-04T19:20:06.7695456Z","updatedOn":"2021-05-04T19:20:06.7695456Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa","type":"Microsoft.Authorization/roleAssignments","name":"fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"}]}' + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:58.0549229Z","updatedOn":"2020-08-21T16:23:58.0549229Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a853af7-252b-4315-9ee3-0b243e595f80","type":"Microsoft.Authorization/roleAssignments","name":"9a853af7-252b-4315-9ee3-0b243e595f80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:58.6582166Z","updatedOn":"2020-08-21T16:23:58.6582166Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ab72fbd-e5fe-4a7d-ae20-baad615d688d","type":"Microsoft.Authorization/roleAssignments","name":"8ab72fbd-e5fe-4a7d-ae20-baad615d688d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:59.5326945Z","updatedOn":"2020-08-21T16:23:59.5326945Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4ed77f1d-82a2-4a02-b48e-fa5776870280","type":"Microsoft.Authorization/roleAssignments","name":"4ed77f1d-82a2-4a02-b48e-fa5776870280"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-02T01:52:45.8299382Z","updatedOn":"2020-09-02T01:52:45.8299382Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3e21284b-6bd7-431a-81ae-ccaf56267ab5","type":"Microsoft.Authorization/roleAssignments","name":"3e21284b-6bd7-431a-81ae-ccaf56267ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-07T09:44:47.3865537Z","updatedOn":"2020-09-07T09:44:47.3865537Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79357f85-973d-4621-b1bd-d1ecb645e146","type":"Microsoft.Authorization/roleAssignments","name":"79357f85-973d-4621-b1bd-d1ecb645e146"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-24T00:04:10.5243862Z","updatedOn":"2020-09-24T00:04:10.5243862Z","createdBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","updatedBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78586b2c-fdf9-11ea-9e5e-8851fb3f4911","type":"Microsoft.Authorization/roleAssignments","name":"78586b2c-fdf9-11ea-9e5e-8851fb3f4911"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-29T10:55:39.3762731Z","updatedOn":"2020-09-29T10:55:39.3762731Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41e159ac-411a-4eed-b319-5b92571d2950","type":"Microsoft.Authorization/roleAssignments","name":"41e159ac-411a-4eed-b319-5b92571d2950"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-06T00:33:22.8792900Z","updatedOn":"2020-10-06T00:33:22.8792900Z","createdBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","updatedBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24d0c5e6-0763-11eb-82a0-d636039e345c","type":"Microsoft.Authorization/roleAssignments","name":"24d0c5e6-0763-11eb-82a0-d636039e345c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-14T00:29:42.9981174Z","updatedOn":"2020-10-14T00:29:42.9981174Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6af4ef5-80f6-4303-a641-45689a1646dc","type":"Microsoft.Authorization/roleAssignments","name":"c6af4ef5-80f6-4303-a641-45689a1646dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-16T16:42:17.7175670Z","updatedOn":"2020-10-16T16:42:17.7175670Z","createdBy":"d69d1d49-5dc8-4c8e-afb6-325d83ddcee8","updatedBy":"d69d1d49-5dc8-4c8e-afb6-325d83ddcee8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5854c7a2-cf00-46f9-9cc1-d977f34324df","type":"Microsoft.Authorization/roleAssignments","name":"5854c7a2-cf00-46f9-9cc1-d977f34324df"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-02T09:02:29.2637630Z","updatedOn":"2020-11-02T09:02:29.2637630Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ad1faa8-8680-4dec-a768-050e8349af33","type":"Microsoft.Authorization/roleAssignments","name":"0ad1faa8-8680-4dec-a768-050e8349af33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-03T22:00:44.4523883Z","updatedOn":"2020-11-03T22:00:44.4523883Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/908aa5ac-22a2-413a-9333-fcb0a1ba2c59","type":"Microsoft.Authorization/roleAssignments","name":"908aa5ac-22a2-413a-9333-fcb0a1ba2c59"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-09T14:00:59.0347294Z","updatedOn":"2020-11-09T14:00:59.0347294Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9541f93-ea4a-4b1b-98bf-839fecfcaa22","type":"Microsoft.Authorization/roleAssignments","name":"e9541f93-ea4a-4b1b-98bf-839fecfcaa22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-18T08:00:24.9874024Z","updatedOn":"2020-12-18T08:00:24.9874024Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f60817e-27b5-486b-bbdb-b748bcb752d4","type":"Microsoft.Authorization/roleAssignments","name":"7f60817e-27b5-486b-bbdb-b748bcb752d4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-30T11:06:51.2887287Z","updatedOn":"2020-12-30T11:06:51.2887287Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1cbe1756-4a8f-11eb-b753-720008210d90","type":"Microsoft.Authorization/roleAssignments","name":"1cbe1756-4a8f-11eb-b753-720008210d90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-01-13T06:12:19.1847916Z","updatedOn":"2021-01-13T06:12:19.1847916Z","createdBy":"241cd743-2c33-4860-bd3a-1df659c06eef","updatedBy":"241cd743-2c33-4860-bd3a-1df659c06eef","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/498bf4f6-5566-11eb-a35b-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"498bf4f6-5566-11eb-a35b-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-04T06:52:05.2038586Z","updatedOn":"2021-02-04T06:52:05.2038586Z","createdBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","updatedBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdf6a314-3605-4944-96c1-08b7364dba54","type":"Microsoft.Authorization/roleAssignments","name":"fdf6a314-3605-4944-96c1-08b7364dba54"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T00:37:53.4699042Z","updatedOn":"2021-02-17T00:37:53.4699042Z","createdBy":"e5ad6d43-d6ac-4061-84cc-f7cb826200a0","updatedBy":"e5ad6d43-d6ac-4061-84cc-f7cb826200a0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c06abb18-9697-41f9-9410-ff0ee9b13ab9","type":"Microsoft.Authorization/roleAssignments","name":"c06abb18-9697-41f9-9410-ff0ee9b13ab9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T01:26:55.0758483Z","updatedOn":"2021-02-17T01:26:55.0758483Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9812b416-33c9-4b88-bcdb-6b8406dd319f","type":"Microsoft.Authorization/roleAssignments","name":"9812b416-33c9-4b88-bcdb-6b8406dd319f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T01:38:17.8125104Z","updatedOn":"2021-02-17T01:38:17.8125104Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82e0c83f-b7dd-49f6-b501-ff05951db69d","type":"Microsoft.Authorization/roleAssignments","name":"82e0c83f-b7dd-49f6-b501-ff05951db69d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-19T01:25:51.9967288Z","updatedOn":"2021-02-19T01:25:51.9967288Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2e4ab306-7ae7-4867-8e22-90215bdbeb9a","type":"Microsoft.Authorization/roleAssignments","name":"2e4ab306-7ae7-4867-8e22-90215bdbeb9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-01T21:51:55.4255791Z","updatedOn":"2021-03-01T21:51:55.4255791Z","createdBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","updatedBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36175f2d-f556-464e-a509-19cbb3f45909","type":"Microsoft.Authorization/roleAssignments","name":"36175f2d-f556-464e-a509-19cbb3f45909"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-21T03:42:13.8891609Z","updatedOn":"2020-02-21T03:42:13.8891609Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c41b0416-12e4-49bb-9e35-411e4f409102","type":"Microsoft.Authorization/roleAssignments","name":"c41b0416-12e4-49bb-9e35-411e4f409102"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-22T07:53:45.7192431Z","updatedOn":"2020-04-22T07:53:45.7192431Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d01cbd3-f3e3-4712-95c6-cf07a0224887","type":"Microsoft.Authorization/roleAssignments","name":"0d01cbd3-f3e3-4712-95c6-cf07a0224887"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-30T06:27:35.9310363Z","updatedOn":"2020-04-30T06:27:35.9310363Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a1327e4-100e-43ee-b04e-1403969b805b","type":"Microsoft.Authorization/roleAssignments","name":"6a1327e4-100e-43ee-b04e-1403969b805b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-06-13T06:44:49.9960198Z","updatedOn":"2019-06-13T06:44:49.9960198Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33958269-41a0-400a-91a1-6303d954c8f0","type":"Microsoft.Authorization/roleAssignments","name":"33958269-41a0-400a-91a1-6303d954c8f0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-16T02:04:22.4782415Z","updatedOn":"2019-04-16T02:04:22.4782415Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bacdb283-653c-47eb-a578-11743d7898f8","type":"Microsoft.Authorization/roleAssignments","name":"bacdb283-653c-47eb-a578-11743d7898f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-27T09:09:33.7347978Z","updatedOn":"2020-03-27T09:09:33.7347978Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d355b17-e9d6-47b7-9181-b54ad0083793","type":"Microsoft.Authorization/roleAssignments","name":"6d355b17-e9d6-47b7-9181-b54ad0083793"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-19T02:50:30.0038186Z","updatedOn":"2019-03-19T02:50:30.0038186Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26adec15-a0e4-4b2e-a437-9b545b9723fc","type":"Microsoft.Authorization/roleAssignments","name":"26adec15-a0e4-4b2e-a437-9b545b9723fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-17T00:50:00.2288905Z","updatedOn":"2019-04-17T00:50:00.2288905Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e873fd7-4bdb-4df5-a510-c15f3ce99cd6","type":"Microsoft.Authorization/roleAssignments","name":"0e873fd7-4bdb-4df5-a510-c15f3ce99cd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-08T07:40:31.7235048Z","updatedOn":"2020-05-08T07:40:31.7235048Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbfa0c0c-2653-4fb8-b9e5-d41bd96053a7","type":"Microsoft.Authorization/roleAssignments","name":"cbfa0c0c-2653-4fb8-b9e5-d41bd96053a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-15T22:27:15.6601349Z","updatedOn":"2018-11-15T22:27:15.6601349Z","createdBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","updatedBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/418847ec-df97-4b29-9711-fc833817e5d6","type":"Microsoft.Authorization/roleAssignments","name":"418847ec-df97-4b29-9711-fc833817e5d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-28T14:20:52.7506898Z","updatedOn":"2019-08-28T14:20:52.7506898Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/715fd118-93b8-4b09-822d-48de5afb21e3","type":"Microsoft.Authorization/roleAssignments","name":"715fd118-93b8-4b09-822d-48de5afb21e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-06T05:22:04.7673784Z","updatedOn":"2019-01-06T05:22:04.7673784Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba5c8600-8cc9-4778-9735-c3d57d26e50d","type":"Microsoft.Authorization/roleAssignments","name":"ba5c8600-8cc9-4778-9735-c3d57d26e50d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-02T16:21:28.6789246Z","updatedOn":"2020-06-02T16:21:28.6789246Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd6bf5d5-fc1c-4fcd-81f3-0d11d3ff9f42","type":"Microsoft.Authorization/roleAssignments","name":"bd6bf5d5-fc1c-4fcd-81f3-0d11d3ff9f42"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-20T08:42:00.9560545Z","updatedOn":"2020-04-20T08:42:00.9560545Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a41b62f-97d4-4f4c-8bfc-4a8dd708e00f","type":"Microsoft.Authorization/roleAssignments","name":"7a41b62f-97d4-4f4c-8bfc-4a8dd708e00f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-23T03:10:28.2381030Z","updatedOn":"2020-04-23T03:10:28.2381030Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f98d1512-e634-4663-a219-24be2e6bfe1c","type":"Microsoft.Authorization/roleAssignments","name":"f98d1512-e634-4663-a219-24be2e6bfe1c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-15T02:06:03.3308352Z","updatedOn":"2020-04-15T02:06:03.3308352Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6142150e-c404-48e6-a731-fffb36357051","type":"Microsoft.Authorization/roleAssignments","name":"6142150e-c404-48e6-a731-fffb36357051"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-16T23:46:13.9660279Z","updatedOn":"2018-11-16T23:46:13.9660279Z","createdBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","updatedBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b66b1ea-89dd-4bc6-8d89-96298648eb40","type":"Microsoft.Authorization/roleAssignments","name":"2b66b1ea-89dd-4bc6-8d89-96298648eb40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-31T01:55:23.5911140Z","updatedOn":"2019-01-31T01:55:23.5911140Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3359123d-b5f7-48d6-a1e7-ad77b7ef6b7f","type":"Microsoft.Authorization/roleAssignments","name":"3359123d-b5f7-48d6-a1e7-ad77b7ef6b7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-10-27T00:03:26.2878499Z","updatedOn":"2018-10-27T00:03:26.2878499Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea920230-1aba-4f80-9eef-3fed8216f594","type":"Microsoft.Authorization/roleAssignments","name":"ea920230-1aba-4f80-9eef-3fed8216f594"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-03T09:55:40.2829720Z","updatedOn":"2020-04-03T09:55:40.2829720Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9c2a551-11aa-4b0a-8816-f8511cd46a32","type":"Microsoft.Authorization/roleAssignments","name":"c9c2a551-11aa-4b0a-8816-f8511cd46a32"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-26T21:10:42.2124416Z","updatedOn":"2020-03-26T21:10:42.2124416Z","createdBy":"50ee185f-0eb1-4577-ae14-4ecf59cfa8f7","updatedBy":"50ee185f-0eb1-4577-ae14-4ecf59cfa8f7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d394da6c-4def-47de-8689-791727331c5b","type":"Microsoft.Authorization/roleAssignments","name":"d394da6c-4def-47de-8689-791727331c5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-21T07:34:50.7125622Z","updatedOn":"2020-04-21T07:34:50.7125622Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddeb2255-2bb6-458a-a891-532e96ae5483","type":"Microsoft.Authorization/roleAssignments","name":"ddeb2255-2bb6-458a-a891-532e96ae5483"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-23T04:07:45.3308845Z","updatedOn":"2020-06-23T04:07:45.3308845Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15d1dab1-b507-11ea-819c-a28e10bedef6","type":"Microsoft.Authorization/roleAssignments","name":"15d1dab1-b507-11ea-819c-a28e10bedef6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-13T00:09:08.8179220Z","updatedOn":"2020-05-13T00:09:08.8179220Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/08a578f0-4875-47d0-8775-946b3a0f2b06","type":"Microsoft.Authorization/roleAssignments","name":"08a578f0-4875-47d0-8775-946b3a0f2b06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-10T23:15:46.8549700Z","updatedOn":"2020-05-10T23:15:46.8549700Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22d3da65-7681-445e-9080-e748e494676f","type":"Microsoft.Authorization/roleAssignments","name":"22d3da65-7681-445e-9080-e748e494676f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-29T13:30:14.1177711Z","updatedOn":"2019-08-29T13:30:14.1177711Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a2c1014-c1ba-4ae9-a632-90967c28429d","type":"Microsoft.Authorization/roleAssignments","name":"4a2c1014-c1ba-4ae9-a632-90967c28429d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-27T01:26:21.7189691Z","updatedOn":"2020-02-27T01:26:21.7189691Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28808064-5900-11ea-81c8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"28808064-5900-11ea-81c8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-30T19:30:49.2769608Z","updatedOn":"2019-01-30T19:30:49.2769608Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/310957e5-5722-42e0-95b6-5bc6c6b67f16","type":"Microsoft.Authorization/roleAssignments","name":"310957e5-5722-42e0-95b6-5bc6c6b67f16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-03T01:05:25.8863198Z","updatedOn":"2020-07-03T01:05:25.8863198Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46877403-bcc9-11ea-924f-00155d871f03","type":"Microsoft.Authorization/roleAssignments","name":"46877403-bcc9-11ea-924f-00155d871f03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-28T19:57:23.3708745Z","updatedOn":"2019-03-28T19:57:23.3708745Z","createdBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","updatedBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc796cab-2f6b-4099-b9a3-7500f5516153","type":"Microsoft.Authorization/roleAssignments","name":"cc796cab-2f6b-4099-b9a3-7500f5516153"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-30T22:56:44.9793119Z","updatedOn":"2020-03-30T22:56:44.9793119Z","createdBy":"53bb8815-874d-4b05-9953-1158e05aa080","updatedBy":"53bb8815-874d-4b05-9953-1158e05aa080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/000ea275-41c4-40ce-943f-98a8849a56bc","type":"Microsoft.Authorization/roleAssignments","name":"000ea275-41c4-40ce-943f-98a8849a56bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-10T01:13:53.0806696Z","updatedOn":"2020-06-10T01:13:53.0806696Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a584fad9-aab7-11ea-b7e7-00155d4b0124","type":"Microsoft.Authorization/roleAssignments","name":"a584fad9-aab7-11ea-b7e7-00155d4b0124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-09-20T20:32:24.1155446Z","updatedOn":"2019-09-20T20:32:24.1155446Z","createdBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","updatedBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c1a9a09e-eafe-4c97-b589-a8261ee04099","type":"Microsoft.Authorization/roleAssignments","name":"c1a9a09e-eafe-4c97-b589-a8261ee04099"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-12T00:23:23.9037436Z","updatedOn":"2020-05-12T00:23:23.9037436Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ff95229-981f-40d7-889f-97bc90b8f387","type":"Microsoft.Authorization/roleAssignments","name":"6ff95229-981f-40d7-889f-97bc90b8f387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-09T00:52:52.1315983Z","updatedOn":"2020-06-09T00:52:52.1315983Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7512dec1-86e5-400d-8bc9-f24f181127f3","type":"Microsoft.Authorization/roleAssignments","name":"7512dec1-86e5-400d-8bc9-f24f181127f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-19T04:20:34.3557776Z","updatedOn":"2019-04-19T04:20:34.3557776Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/092a238c-94af-4fca-bd4a-bb4995ea58db","type":"Microsoft.Authorization/roleAssignments","name":"092a238c-94af-4fca-bd4a-bb4995ea58db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-14T04:03:23.9185561Z","updatedOn":"2020-04-14T04:03:23.9185561Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f0f495d-0356-4239-b966-3f47f5f1054a","type":"Microsoft.Authorization/roleAssignments","name":"0f0f495d-0356-4239-b966-3f47f5f1054a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-14T00:42:59.8868253Z","updatedOn":"2020-05-14T00:42:59.8868253Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b3c8d44-237c-410c-a095-52ded7f5cd26","type":"Microsoft.Authorization/roleAssignments","name":"6b3c8d44-237c-410c-a095-52ded7f5cd26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-11T13:26:01.9493491Z","updatedOn":"2020-02-11T13:26:01.9493491Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8fab1ba3-53c2-4b21-9d32-dc89fd061811","type":"Microsoft.Authorization/roleAssignments","name":"8fab1ba3-53c2-4b21-9d32-dc89fd061811"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-03T05:34:39.2163770Z","updatedOn":"2020-04-03T05:34:39.2163770Z","createdBy":"ed4707f4-8b58-42fe-9afd-0045d7a9b262","updatedBy":"ed4707f4-8b58-42fe-9afd-0045d7a9b262","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e4edc2a-dd1f-469b-9a44-f0693866b843","type":"Microsoft.Authorization/roleAssignments","name":"8e4edc2a-dd1f-469b-9a44-f0693866b843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-20T19:40:09.1141460Z","updatedOn":"2020-02-20T19:40:09.1141460Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4673bf4-97da-4102-9284-2a7315b88a34","type":"Microsoft.Authorization/roleAssignments","name":"d4673bf4-97da-4102-9284-2a7315b88a34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-21T07:19:44.2488168Z","updatedOn":"2020-04-21T07:19:44.2488168Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fadbe071-d757-48fc-b82a-4784249ded10","type":"Microsoft.Authorization/roleAssignments","name":"fadbe071-d757-48fc-b82a-4784249ded10"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-12T17:29:23.0437979Z","updatedOn":"2019-03-12T17:29:23.0437979Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7e76154-c2a7-4419-b73f-e8c6010318c9","type":"Microsoft.Authorization/roleAssignments","name":"a7e76154-c2a7-4419-b73f-e8c6010318c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-16T23:29:48.3209681Z","updatedOn":"2020-03-16T23:29:48.3209681Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3eb4155b-2965-456b-8f00-bca8a13b1684","type":"Microsoft.Authorization/roleAssignments","name":"3eb4155b-2965-456b-8f00-bca8a13b1684"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-05T14:05:58.2716050Z","updatedOn":"2021-04-05T14:05:58.2716050Z","createdBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","updatedBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a9b0e6a-9618-11eb-879a-88e9fe77e044","type":"Microsoft.Authorization/roleAssignments","name":"0a9b0e6a-9618-11eb-879a-88e9fe77e044"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-05T17:37:43.7040494Z","updatedOn":"2021-04-05T17:37:43.7040494Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a04b0948-9635-11eb-b395-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"a04b0948-9635-11eb-b395-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T02:24:39.3826587Z","updatedOn":"2021-04-06T02:24:39.3826587Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c21611b-a840-4166-b9f4-8cec90c17841","type":"Microsoft.Authorization/roleAssignments","name":"6c21611b-a840-4166-b9f4-8cec90c17841"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T02:24:39.4154930Z","updatedOn":"2021-04-06T02:24:39.4154930Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/925d4876-8fde-4334-8f84-4ce52ca7108e","type":"Microsoft.Authorization/roleAssignments","name":"925d4876-8fde-4334-8f84-4ce52ca7108e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T04:46:32.1029699Z","updatedOn":"2021-04-06T04:46:32.1029699Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0dfdb837-9693-11eb-b629-b6178ece78ec","type":"Microsoft.Authorization/roleAssignments","name":"0dfdb837-9693-11eb-b629-b6178ece78ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T11:25:43.5702772Z","updatedOn":"2021-04-06T11:25:43.5702772Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/958a1320-4346-46fb-9722-828af239eb03","type":"Microsoft.Authorization/roleAssignments","name":"958a1320-4346-46fb-9722-828af239eb03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T20:54:21.5921112Z","updatedOn":"2021-04-06T20:54:21.5921112Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42ad5638-971a-11eb-abf6-00155d3a4c00","type":"Microsoft.Authorization/roleAssignments","name":"42ad5638-971a-11eb-abf6-00155d3a4c00"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T23:22:50.4425724Z","updatedOn":"2021-04-06T23:22:50.4425724Z","createdBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","updatedBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00a90f2a-972f-11eb-9121-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"00a90f2a-972f-11eb-9121-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T00:26:49.7250016Z","updatedOn":"2021-04-07T00:26:49.7250016Z","createdBy":"88f18750-8181-4579-8eff-eb44f510655c","updatedBy":"88f18750-8181-4579-8eff-eb44f510655c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dca2df37-fdd1-49dc-a1de-31a70d62e098","type":"Microsoft.Authorization/roleAssignments","name":"dca2df37-fdd1-49dc-a1de-31a70d62e098"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T09:10:47.4905668Z","updatedOn":"2021-04-07T09:10:47.4905668Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a5dbdef-0896-48cd-a325-318e807ea133","type":"Microsoft.Authorization/roleAssignments","name":"8a5dbdef-0896-48cd-a325-318e807ea133"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T19:55:01.1984055Z","updatedOn":"2021-04-07T19:55:01.1984055Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2301d942-97db-11eb-8bf8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2301d942-97db-11eb-8bf8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T22:36:06.7954601Z","updatedOn":"2021-04-07T22:36:06.7954601Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6070c7de-7571-4d55-8b2f-85285b7d9675","type":"Microsoft.Authorization/roleAssignments","name":"6070c7de-7571-4d55-8b2f-85285b7d9675"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-13T03:07:16.5183912Z","updatedOn":"2021-04-13T03:07:16.5183912Z","createdBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","updatedBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59402850-9c05-11eb-8744-20c9d0477c8f","type":"Microsoft.Authorization/roleAssignments","name":"59402850-9c05-11eb-8744-20c9d0477c8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-14T19:16:13.6465266Z","updatedOn":"2021-04-14T19:16:13.6465266Z","createdBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","updatedBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e04efa46-9d55-11eb-9723-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e04efa46-9d55-11eb-9723-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-15T02:29:06.6768532Z","updatedOn":"2021-04-15T02:29:06.6768532Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/19165f29-858f-47fa-befe-cd1babe9df75","type":"Microsoft.Authorization/roleAssignments","name":"19165f29-858f-47fa-befe-cd1babe9df75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-19T08:59:20.4071341Z","updatedOn":"2021-04-19T08:59:20.4071341Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88489205-a0ed-11eb-996c-1a21256cebfc","type":"Microsoft.Authorization/roleAssignments","name":"88489205-a0ed-11eb-996c-1a21256cebfc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-19T22:35:57.5324093Z","updatedOn":"2021-04-19T22:35:57.5324093Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b85c442-a15f-11eb-8a7c-00155d871f03","type":"Microsoft.Authorization/roleAssignments","name":"9b85c442-a15f-11eb-8a7c-00155d871f03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-21T12:31:21.7286225Z","updatedOn":"2021-04-21T12:31:21.7286225Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7770db7c-a29d-11eb-b48f-42472d33150a","type":"Microsoft.Authorization/roleAssignments","name":"7770db7c-a29d-11eb-b48f-42472d33150a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-11T02:49:35.7701861Z","updatedOn":"2021-05-11T02:49:35.7701861Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83c25ed3-b203-11eb-8150-56db513b8477","type":"Microsoft.Authorization/roleAssignments","name":"83c25ed3-b203-11eb-8150-56db513b8477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-12T06:15:49.6202169Z","updatedOn":"2021-05-12T06:15:49.6202169Z","createdBy":"069015af-8ac7-4304-a60f-69a8a50309be","updatedBy":"069015af-8ac7-4304-a60f-69a8a50309be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ecced22-b2e9-11eb-bdc4-da23ac480b85","type":"Microsoft.Authorization/roleAssignments","name":"7ecced22-b2e9-11eb-bdc4-da23ac480b85"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-18T02:08:43.3533001Z","updatedOn":"2021-05-18T02:08:43.3533001Z","createdBy":"069015af-8ac7-4304-a60f-69a8a50309be","updatedBy":"069015af-8ac7-4304-a60f-69a8a50309be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8582f67-b77d-11eb-bffb-52ac6a27ca65","type":"Microsoft.Authorization/roleAssignments","name":"f8582f67-b77d-11eb-bffb-52ac6a27ca65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-24T05:29:46.7966317Z","updatedOn":"2021-05-24T05:29:46.7966317Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d7389dd2-ee8e-4d34-8703-b304716b1761","type":"Microsoft.Authorization/roleAssignments","name":"d7389dd2-ee8e-4d34-8703-b304716b1761"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-26T10:05:55.6707947Z","updatedOn":"2021-05-26T10:05:55.6707947Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d540fa09-24f4-4f08-a9f2-10f69de7bd62","type":"Microsoft.Authorization/roleAssignments","name":"d540fa09-24f4-4f08-a9f2-10f69de7bd62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-01T09:38:20.8655603Z","updatedOn":"2021-06-01T09:38:20.8655603Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18455841-c2bd-11eb-80b3-9a0a2a9b0ea3","type":"Microsoft.Authorization/roleAssignments","name":"18455841-c2bd-11eb-80b3-9a0a2a9b0ea3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-03T16:55:35.8333154Z","updatedOn":"2021-06-03T16:55:35.8333154Z","createdBy":"ae4622a7-bde9-4bca-9599-2d18571bfeba","updatedBy":"ae4622a7-bde9-4bca-9599-2d18571bfeba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83e4c5e8-c48c-11eb-b991-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"83e4c5e8-c48c-11eb-b991-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-07T22:29:50.4448757Z","updatedOn":"2021-06-07T22:29:50.4448757Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/decef2d4-c7df-11eb-a83e-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"decef2d4-c7df-11eb-a83e-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-08T21:20:41.4426747Z","updatedOn":"2021-06-08T21:20:41.4426747Z","createdBy":"39fc5957-4b28-4245-a1ca-0c05574dd32b","updatedBy":"39fc5957-4b28-4245-a1ca-0c05574dd32b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/607bf63e-c89f-11eb-8348-eecc6a504bf0","type":"Microsoft.Authorization/roleAssignments","name":"607bf63e-c89f-11eb-8348-eecc6a504bf0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T14:35:18.7357331Z","updatedOn":"2021-06-15T14:35:18.7357331Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1151242-c950-413d-a273-4109579eac8a","type":"Microsoft.Authorization/roleAssignments","name":"b1151242-c950-413d-a273-4109579eac8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T14:35:18.7937546Z","updatedOn":"2021-06-15T14:35:18.7937546Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dc21aa69-a99c-435e-a256-64885b24ec34","type":"Microsoft.Authorization/roleAssignments","name":"dc21aa69-a99c-435e-a256-64885b24ec34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T15:23:52.9337722Z","updatedOn":"2021-06-15T15:23:52.9337722Z","createdBy":"1faabf99-27a1-4d2e-9e28-295923ee7a14","updatedBy":"1faabf99-27a1-4d2e-9e28-295923ee7a14","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1f9ad80-cded-11eb-81da-86d728f15930","type":"Microsoft.Authorization/roleAssignments","name":"b1f9ad80-cded-11eb-81da-86d728f15930"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-24T01:15:20.6480687Z","updatedOn":"2021-06-24T01:15:20.6480687Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3fe463a-d489-11eb-bcf6-88e9fe77d9d9","type":"Microsoft.Authorization/roleAssignments","name":"a3fe463a-d489-11eb-bcf6-88e9fe77d9d9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T00:02:18.3011415Z","updatedOn":"2021-06-29T00:02:18.3011415Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ba1c6ba-8f43-4749-9af5-b852adc24ec4","type":"Microsoft.Authorization/roleAssignments","name":"6ba1c6ba-8f43-4749-9af5-b852adc24ec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T00:02:18.3104039Z","updatedOn":"2021-06-29T00:02:18.3104039Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1b67008-79aa-4059-a618-9f31a59e17ad","type":"Microsoft.Authorization/roleAssignments","name":"f1b67008-79aa-4059-a618-9f31a59e17ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T03:26:28.3273724Z","updatedOn":"2021-06-29T03:26:28.3273724Z","createdBy":"5dc8b685-8bb3-4140-b266-34da5be22de8","updatedBy":"5dc8b685-8bb3-4140-b266-34da5be22de8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cacd20e2-d889-11eb-8faf-365b90995dcc","type":"Microsoft.Authorization/roleAssignments","name":"cacd20e2-d889-11eb-8faf-365b90995dcc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T16:47:51.6512150Z","updatedOn":"2021-07-02T16:47:51.6512150Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ce776fa-db55-11eb-9c3e-0ee0ced9a7ad","type":"Microsoft.Authorization/roleAssignments","name":"3ce776fa-db55-11eb-9c3e-0ee0ced9a7ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T18:02:58.7913777Z","updatedOn":"2021-07-02T18:02:58.7913777Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb92467e-db5f-11eb-93bb-52bfc6c4d939","type":"Microsoft.Authorization/roleAssignments","name":"bb92467e-db5f-11eb-93bb-52bfc6c4d939"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T18:34:50.6034803Z","updatedOn":"2021-07-02T18:34:50.6034803Z","createdBy":"88f18750-8181-4579-8eff-eb44f510655c","updatedBy":"88f18750-8181-4579-8eff-eb44f510655c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e537d7a-5a2e-419c-8c51-0f55adab0793","type":"Microsoft.Authorization/roleAssignments","name":"4e537d7a-5a2e-419c-8c51-0f55adab0793"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-12T18:22:41.0622548Z","updatedOn":"2021-07-12T18:22:41.0622548Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a840989-f344-4bca-97c4-0f91fa1537c6","type":"Microsoft.Authorization/roleAssignments","name":"0a840989-f344-4bca-97c4-0f91fa1537c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-14T19:03:30.7799600Z","updatedOn":"2021-07-14T19:03:30.7799600Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d4385bd-e4d6-11eb-9e75-0a4737195831","type":"Microsoft.Authorization/roleAssignments","name":"2d4385bd-e4d6-11eb-9e75-0a4737195831"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-26T03:44:43.4505353Z","updatedOn":"2021-07-26T03:44:43.4505353Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79b52c96-edc4-11eb-8bd7-1e3bd0e19ace","type":"Microsoft.Authorization/roleAssignments","name":"79b52c96-edc4-11eb-8bd7-1e3bd0e19ace"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-28T21:04:39.7105526Z","updatedOn":"2021-07-28T21:04:39.7105526Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b9c8936-efe7-11eb-9484-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6b9c8936-efe7-11eb-9484-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-04T02:14:38.2049441Z","updatedOn":"2021-08-04T02:14:38.2049441Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b8013ec0-f4c9-11eb-999a-000d3a4fc0a9","type":"Microsoft.Authorization/roleAssignments","name":"b8013ec0-f4c9-11eb-999a-000d3a4fc0a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3c35f4c-e0ca-4b9e-a01e-5ebdd17e2ee7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-04T18:45:22.7030533Z","updatedOn":"2021-08-04T18:45:22.7030533Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b007f9b6-e259-4c24-b8f1-4b74e434b776","type":"Microsoft.Authorization/roleAssignments","name":"b007f9b6-e259-4c24-b8f1-4b74e434b776"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-10T18:57:36.3877809Z","updatedOn":"2021-08-10T18:57:36.3877809Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d31d5edd-fa0c-11eb-a4e8-00155d4b0124","type":"Microsoft.Authorization/roleAssignments","name":"d31d5edd-fa0c-11eb-a4e8-00155d4b0124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-11T13:17:28.5790828Z","updatedOn":"2021-08-11T13:17:28.5790828Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79c9ac4e-faa6-11eb-9265-9e748a6ca3f5","type":"Microsoft.Authorization/roleAssignments","name":"79c9ac4e-faa6-11eb-9265-9e748a6ca3f5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T20:40:36.9427810Z","updatedOn":"2021-08-24T20:40:36.9427810Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89077b4a-051b-11ec-b690-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"89077b4a-051b-11ec-b690-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-25T04:55:32.8103400Z","updatedOn":"2021-08-25T04:55:32.8103400Z","createdBy":"d8f2c3f8-41bf-41ae-aedb-23c9387322a8","updatedBy":"d8f2c3f8-41bf-41ae-aedb-23c9387322a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad278da4-0560-11ec-bfcc-00249b623abd","type":"Microsoft.Authorization/roleAssignments","name":"ad278da4-0560-11ec-bfcc-00249b623abd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-31T23:45:51.8536519Z","updatedOn":"2021-08-31T23:45:51.8536519Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92d8ca73-0ab5-11ec-9a80-00224809727f","type":"Microsoft.Authorization/roleAssignments","name":"92d8ca73-0ab5-11ec-9a80-00224809727f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-13T19:32:31.3713301Z","updatedOn":"2021-09-13T19:32:31.3713301Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55fb0a56-14c9-11ec-ba1a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"55fb0a56-14c9-11ec-ba1a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-17T20:45:08.1118919Z","updatedOn":"2021-09-17T20:45:08.1118919Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/246a4240-17f8-11ec-a87c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"246a4240-17f8-11ec-a87c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T13:55:46.1211332Z","updatedOn":"2021-09-20T13:55:46.1211332Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/738cb0ee-1a1a-11ec-bce5-7a98cea1d963","type":"Microsoft.Authorization/roleAssignments","name":"738cb0ee-1a1a-11ec-bce5-7a98cea1d963"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T16:02:49.0433199Z","updatedOn":"2021-09-20T16:02:49.0433199Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/332824b6-1a2c-11ec-94e6-dadb5e134e96","type":"Microsoft.Authorization/roleAssignments","name":"332824b6-1a2c-11ec-94e6-dadb5e134e96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T18:45:44.1610490Z","updatedOn":"2021-09-20T18:45:44.1610490Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5aacbbc-1a42-11ec-82e7-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f5aacbbc-1a42-11ec-82e7-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-23T14:26:16.9983531Z","updatedOn":"2021-09-23T14:26:16.9983531Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35e02c16-1c7a-11ec-aba5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"35e02c16-1c7a-11ec-aba5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-29T01:26:50.3419658Z","updatedOn":"2021-09-29T01:26:50.3419658Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47eee8e3-89cd-4112-86a8-19f848334dd1","type":"Microsoft.Authorization/roleAssignments","name":"47eee8e3-89cd-4112-86a8-19f848334dd1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-04T20:39:52.4258668Z","updatedOn":"2021-10-04T20:39:52.4258668Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/395b589c-2553-11ec-8d77-000d3af95835","type":"Microsoft.Authorization/roleAssignments","name":"395b589c-2553-11ec-8d77-000d3af95835"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T22:03:00.0914961Z","updatedOn":"2021-10-07T22:03:00.0914961Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/554cbdbb-27ba-11ec-9441-ba8d312253c4","type":"Microsoft.Authorization/roleAssignments","name":"554cbdbb-27ba-11ec-9441-ba8d312253c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T22:03:56.3285135Z","updatedOn":"2021-10-07T22:03:56.3285135Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/76aa862c-27ba-11ec-a4ef-ba8d312253c4","type":"Microsoft.Authorization/roleAssignments","name":"76aa862c-27ba-11ec-a4ef-ba8d312253c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T18:53:10.3503826Z","updatedOn":"2021-10-08T18:53:10.3503826Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9510e6f-d37b-4ce8-8a3b-78e5447b11c4","type":"Microsoft.Authorization/roleAssignments","name":"d9510e6f-d37b-4ce8-8a3b-78e5447b11c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T18:59:59.4287762Z","updatedOn":"2021-10-08T18:59:59.4287762Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d1a6d17-6c0a-4105-b86a-dcc55fe735e7","type":"Microsoft.Authorization/roleAssignments","name":"3d1a6d17-6c0a-4105-b86a-dcc55fe735e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-11T22:29:20.4165411Z","updatedOn":"2021-10-11T22:29:20.4165411Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5b65050-4b50-4b02-bea3-5986eccdd944","type":"Microsoft.Authorization/roleAssignments","name":"b5b65050-4b50-4b02-bea3-5986eccdd944"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-12T02:26:39.4717201Z","updatedOn":"2021-10-12T02:26:39.4717201Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4977775a-1c56-492e-8a5b-5fd0c7b18893","type":"Microsoft.Authorization/roleAssignments","name":"4977775a-1c56-492e-8a5b-5fd0c7b18893"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-12T21:09:25.3258237Z","updatedOn":"2021-10-12T21:09:25.3258237Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/869d24c2-b6b1-4a26-9b9c-c50ecb64bc31","type":"Microsoft.Authorization/roleAssignments","name":"869d24c2-b6b1-4a26-9b9c-c50ecb64bc31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-13T08:19:03.1448099Z","updatedOn":"2021-10-13T08:19:03.1448099Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8869be9-f94e-47ae-90cb-c4d9bcb5b629","type":"Microsoft.Authorization/roleAssignments","name":"f8869be9-f94e-47ae-90cb-c4d9bcb5b629"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T04:53:25.9502873Z","updatedOn":"2021-10-14T04:53:36.3280652Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f622c27f-a03d-4fb8-b17d-7281dc0a984f","type":"Microsoft.Authorization/roleAssignments","name":"f622c27f-a03d-4fb8-b17d-7281dc0a984f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:26:21.6452814Z","updatedOn":"2021-10-14T05:26:21.6452814Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/439e7a28-2caf-11ec-ae23-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"439e7a28-2caf-11ec-ae23-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:54.7980840Z","updatedOn":"2021-10-14T05:37:54.7980840Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e049894b-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e049894b-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:56.1220463Z","updatedOn":"2021-10-14T05:37:56.1220463Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1920687-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e1920687-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:58.2164501Z","updatedOn":"2021-10-14T05:37:58.2164501Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2809f7d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e2809f7d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:00.1774570Z","updatedOn":"2021-10-14T05:38:00.1774570Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3b78568-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e3b78568-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:01.6914375Z","updatedOn":"2021-10-14T05:38:01.6914375Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4e3f0fc-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e4e3f0fc-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:03.1856045Z","updatedOn":"2021-10-14T05:38:03.1856045Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e5c7c168-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e5c7c168-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:04.4121266Z","updatedOn":"2021-10-14T05:38:04.4121266Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e6847f02-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e6847f02-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:05.9623251Z","updatedOn":"2021-10-14T05:38:05.9623251Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7681b77-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e7681b77-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:07.5974823Z","updatedOn":"2021-10-14T05:38:07.5974823Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e82df158-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e82df158-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:09.3591403Z","updatedOn":"2021-10-14T05:38:09.3591403Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e94e3dd9-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e94e3dd9-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:11.1652349Z","updatedOn":"2021-10-14T05:38:11.1652349Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea5dbe0d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"ea5dbe0d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:12.6474393Z","updatedOn":"2021-10-14T05:38:12.6474393Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb6e896d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"eb6e896d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:15.1702403Z","updatedOn":"2021-10-14T05:38:15.1702403Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eceee9a0-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"eceee9a0-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T06:22:44.8991960Z","updatedOn":"2021-10-14T06:22:44.8991960Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2447d2a2-2cb7-11ec-91be-00224878e942","type":"Microsoft.Authorization/roleAssignments","name":"2447d2a2-2cb7-11ec-91be-00224878e942"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T06:22:46.4374928Z","updatedOn":"2021-10-14T06:22:46.4374928Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/251fc151-2cb7-11ec-91be-00224878e942","type":"Microsoft.Authorization/roleAssignments","name":"251fc151-2cb7-11ec-91be-00224878e942"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:33:15.8218562Z","updatedOn":"2021-10-14T07:33:15.8218562Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe04afe4-2cc0-11ec-81ff-0022487b1e92","type":"Microsoft.Authorization/roleAssignments","name":"fe04afe4-2cc0-11ec-81ff-0022487b1e92"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:18.3020716Z","updatedOn":"2021-10-14T07:59:18.3020716Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1518374-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a1518374-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:20.8876342Z","updatedOn":"2021-10-14T07:59:20.8876342Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a311df17-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a311df17-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:22.4477860Z","updatedOn":"2021-10-14T07:59:22.4477860Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3c5b71e-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a3c5b71e-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:23.1051657Z","updatedOn":"2021-10-14T08:07:23.1051657Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c227b3cc-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c227b3cc-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:23.5151178Z","updatedOn":"2021-10-14T08:07:23.5151178Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c29ac901-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c29ac901-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:25.7287942Z","updatedOn":"2021-10-14T08:07:25.7287942Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c40b5411-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c40b5411-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:27.2660976Z","updatedOn":"2021-10-14T08:07:27.2660976Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4cb6a30-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c4cb6a30-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:08:16.5190337Z","updatedOn":"2021-10-14T08:08:16.5190337Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e226a828-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"e226a828-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:08:17.7439429Z","updatedOn":"2021-10-14T08:08:17.7439429Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2e43f64-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"e2e43f64-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T09:12:04.1832243Z","updatedOn":"2021-10-14T09:12:04.1832243Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c9e442c-9d64-4022-9246-0c1c21af04be","type":"Microsoft.Authorization/roleAssignments","name":"5c9e442c-9d64-4022-9246-0c1c21af04be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T17:07:28.8635845Z","updatedOn":"2021-10-14T17:07:28.8635845Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed48d615-e7d8-4aef-90c7-332d7329e41c","type":"Microsoft.Authorization/roleAssignments","name":"ed48d615-e7d8-4aef-90c7-332d7329e41c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T18:16:37.9837987Z","updatedOn":"2021-10-14T18:16:37.9837987Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/debb0903-2d1a-11ec-a603-000d3a06aaec","type":"Microsoft.Authorization/roleAssignments","name":"debb0903-2d1a-11ec-a603-000d3a06aaec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T18:39:15.5366398Z","updatedOn":"2021-10-14T18:39:15.5366398Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07caa301-2d1e-11ec-a2ea-0022487748c3","type":"Microsoft.Authorization/roleAssignments","name":"07caa301-2d1e-11ec-a2ea-0022487748c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-15T17:37:53.7293023Z","updatedOn":"2021-10-15T17:37:53.7293023Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fbd09f2-2dde-11ec-b3e4-000d3a064a8a","type":"Microsoft.Authorization/roleAssignments","name":"9fbd09f2-2dde-11ec-b3e4-000d3a064a8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-18T06:22:38.4617338Z","updatedOn":"2021-10-18T06:22:38.4617338Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70844448-8be3-4c6f-9edf-443944f85a5a","type":"Microsoft.Authorization/roleAssignments","name":"70844448-8be3-4c6f-9edf-443944f85a5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-19T11:29:40.0474212Z","updatedOn":"2021-10-19T11:29:40.0474212Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d86e727f-30cf-11ec-bc8b-000d3ac2ec2b","type":"Microsoft.Authorization/roleAssignments","name":"d86e727f-30cf-11ec-bc8b-000d3ac2ec2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-19T15:23:21.2499478Z","updatedOn":"2021-10-19T15:23:21.2499478Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33f5a6ed-cebd-4589-b9d6-4a5ef2d7db2e","type":"Microsoft.Authorization/roleAssignments","name":"33f5a6ed-cebd-4589-b9d6-4a5ef2d7db2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-20T20:57:56.8996523Z","updatedOn":"2021-10-20T20:57:56.8996523Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66303328-31e8-11ec-99f4-000d3ac5c858","type":"Microsoft.Authorization/roleAssignments","name":"66303328-31e8-11ec-99f4-000d3ac5c858"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-21T15:12:00.0677049Z","updatedOn":"2021-10-21T15:12:00.0677049Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b630a77a-9e75-417f-b251-1584163d8926","type":"Microsoft.Authorization/roleAssignments","name":"b630a77a-9e75-417f-b251-1584163d8926"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-24T17:01:11.1413210Z","updatedOn":"2021-10-24T17:01:11.1413210Z","createdBy":"0d969ded-9dc4-4176-8b0f-5194740910bf","updatedBy":"0d969ded-9dc4-4176-8b0f-5194740910bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc196953-34eb-11ec-9f2c-f67edfc01c2b","type":"Microsoft.Authorization/roleAssignments","name":"fc196953-34eb-11ec-9f2c-f67edfc01c2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-25T21:32:26.0121360Z","updatedOn":"2021-10-25T21:32:26.0121360Z","createdBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","updatedBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b15fba8-35db-11ec-b404-8c8590c603ee","type":"Microsoft.Authorization/roleAssignments","name":"0b15fba8-35db-11ec-b404-8c8590c603ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T07:30:52.4116907Z","updatedOn":"2021-10-26T07:30:52.4116907Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e78ac58b-8cfe-4ff6-9ac6-41453615c7e8","type":"Microsoft.Authorization/roleAssignments","name":"e78ac58b-8cfe-4ff6-9ac6-41453615c7e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T13:47:01.3444676Z","updatedOn":"2021-10-26T13:47:01.3444676Z","createdBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","updatedBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4933f1cd-0863-4429-a5be-3a81b2f80105","type":"Microsoft.Authorization/roleAssignments","name":"4933f1cd-0863-4429-a5be-3a81b2f80105"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T20:43:39.1375235Z","updatedOn":"2021-10-26T20:43:39.1375235Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad8f56c5-19b6-4e9f-b20f-8e3789a93873","type":"Microsoft.Authorization/roleAssignments","name":"ad8f56c5-19b6-4e9f-b20f-8e3789a93873"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-27T01:02:05.1338691Z","updatedOn":"2021-10-27T01:02:05.1338691Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a83de9c2-2bd5-4ba1-bc50-08d475a290a0","type":"Microsoft.Authorization/roleAssignments","name":"a83de9c2-2bd5-4ba1-bc50-08d475a290a0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-28T00:14:34.9745357Z","updatedOn":"2021-10-28T00:14:34.9745357Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3366cd2-4d12-4dbb-b05d-5e914628e986","type":"Microsoft.Authorization/roleAssignments","name":"e3366cd2-4d12-4dbb-b05d-5e914628e986"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-02T23:39:52.9481031Z","updatedOn":"2021-11-02T23:39:52.9481031Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0e37c03-a8a7-4765-af41-9a8584ad6413","type":"Microsoft.Authorization/roleAssignments","name":"b0e37c03-a8a7-4765-af41-9a8584ad6413"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T15:46:17.8935538Z","updatedOn":"2021-11-03T15:46:17.8935538Z","createdBy":"","updatedBy":"","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5b0e8d6-e30f-42a5-918c-01299416da2c","type":"Microsoft.Authorization/roleAssignments","name":"b5b0e8d6-e30f-42a5-918c-01299416da2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T21:43:39.4750265Z","updatedOn":"2021-11-03T21:43:39.4750265Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/683b4375-f318-428e-a885-232a29ec8559","type":"Microsoft.Authorization/roleAssignments","name":"683b4375-f318-428e-a885-232a29ec8559"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T21:56:29.9810805Z","updatedOn":"2021-11-03T21:56:29.9810805Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e560c31c-8c6e-4bf0-9828-b2db658455b7","type":"Microsoft.Authorization/roleAssignments","name":"e560c31c-8c6e-4bf0-9828-b2db658455b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T06:06:21.8922666Z","updatedOn":"2021-11-04T06:06:21.8922666Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1dcc78b-03c3-4db3-95a8-643dbcbbf2a3","type":"Microsoft.Authorization/roleAssignments","name":"e1dcc78b-03c3-4db3-95a8-643dbcbbf2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T17:22:28.0293110Z","updatedOn":"2021-11-04T17:22:28.0293110Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84a6167f-c7d5-4404-b786-85fe4327c0ba","type":"Microsoft.Authorization/roleAssignments","name":"84a6167f-c7d5-4404-b786-85fe4327c0ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T17:24:51.0627597Z","updatedOn":"2021-11-04T17:24:51.0627597Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff23217-f8a8-4e77-baee-41850cfb5554","type":"Microsoft.Authorization/roleAssignments","name":"8ff23217-f8a8-4e77-baee-41850cfb5554"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-12T06:15:22.5918832Z","updatedOn":"2021-11-12T06:15:22.5918832Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88e1d00c-98e5-42b4-8dd0-e96ff5489dca","type":"Microsoft.Authorization/roleAssignments","name":"88e1d00c-98e5-42b4-8dd0-e96ff5489dca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T05:21:11.0446928Z","updatedOn":"2021-11-16T05:21:11.0446928Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d01bef88-e1fa-4fc2-bd98-6845063b53b9","type":"Microsoft.Authorization/roleAssignments","name":"d01bef88-e1fa-4fc2-bd98-6845063b53b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T05:22:06.5362889Z","updatedOn":"2021-11-16T05:22:06.5362889Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/784d9b03-5635-4c89-ae5b-5c11ceff8a4c","type":"Microsoft.Authorization/roleAssignments","name":"784d9b03-5635-4c89-ae5b-5c11ceff8a4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T06:25:33.3315777Z","updatedOn":"2021-11-16T06:25:33.3315777Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9c31b5d-d38d-4832-8fc5-10cdb23e4eec","type":"Microsoft.Authorization/roleAssignments","name":"c9c31b5d-d38d-4832-8fc5-10cdb23e4eec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T21:47:20.3762106Z","updatedOn":"2021-11-16T21:47:20.3762106Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/19b8a839-de9e-4712-a227-686679e98414","type":"Microsoft.Authorization/roleAssignments","name":"19b8a839-de9e-4712-a227-686679e98414"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T05:28:26.3873952Z","updatedOn":"2021-11-17T05:28:26.3873952Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a6cb292-435b-45d4-9f44-2dedb6f80804","type":"Microsoft.Authorization/roleAssignments","name":"4a6cb292-435b-45d4-9f44-2dedb6f80804"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T08:37:53.6375476Z","updatedOn":"2021-11-17T08:37:53.6375476Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7314a76-4781-11ec-9554-2eaf851e2751","type":"Microsoft.Authorization/roleAssignments","name":"a7314a76-4781-11ec-9554-2eaf851e2751"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T20:29:38.7986222Z","updatedOn":"2021-11-17T20:29:38.7986222Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41224d04-5912-49e9-98f2-df2d0c5768ed","type":"Microsoft.Authorization/roleAssignments","name":"41224d04-5912-49e9-98f2-df2d0c5768ed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-23T02:37:39.0525328Z","updatedOn":"2021-11-23T02:37:39.0525328Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2917b10b-1776-4726-9e2a-1406d35584aa","type":"Microsoft.Authorization/roleAssignments","name":"2917b10b-1776-4726-9e2a-1406d35584aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-24T04:19:48.8430130Z","updatedOn":"2021-11-24T04:19:48.8430130Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4738453f-e889-4428-817e-a18655a6df71","type":"Microsoft.Authorization/roleAssignments","name":"4738453f-e889-4428-817e-a18655a6df71"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-24T14:57:34.7449286Z","updatedOn":"2021-11-24T14:57:34.7449286Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dae433ba-4d36-11ec-9c37-0022487a1506","type":"Microsoft.Authorization/roleAssignments","name":"dae433ba-4d36-11ec-9c37-0022487a1506"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-25T09:08:18.4273553Z","updatedOn":"2021-11-25T09:08:18.4273553Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a4c23ea-4dcf-11ec-8263-0022487c7a4a","type":"Microsoft.Authorization/roleAssignments","name":"3a4c23ea-4dcf-11ec-8263-0022487c7a4a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-29T22:16:27.4091202Z","updatedOn":"2021-11-29T22:16:27.4091202Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dfaf3275-7f8c-449f-875f-d74ca2998764","type":"Microsoft.Authorization/roleAssignments","name":"dfaf3275-7f8c-449f-875f-d74ca2998764"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T06:59:34.7676928Z","updatedOn":"2021-11-30T06:59:34.7676928Z","createdBy":"471feb6d-5a83-439e-af7b-311f4eee2d0c","updatedBy":"471feb6d-5a83-439e-af7b-311f4eee2d0c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5848b58-7658-45ae-b979-fb230968ddf7","type":"Microsoft.Authorization/roleAssignments","name":"d5848b58-7658-45ae-b979-fb230968ddf7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T20:03:43.2359682Z","updatedOn":"2021-11-30T20:03:43.2359682Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3be3018e-84c0-48a4-bb36-fa997df4a911","type":"Microsoft.Authorization/roleAssignments","name":"3be3018e-84c0-48a4-bb36-fa997df4a911"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T22:23:07.4635927Z","updatedOn":"2021-11-30T22:23:07.4635927Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc52b5ce-1a69-4afd-aaab-745522d55219","type":"Microsoft.Authorization/roleAssignments","name":"fc52b5ce-1a69-4afd-aaab-745522d55219"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T02:05:06.3947111Z","updatedOn":"2021-12-01T02:05:06.3947111Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bfd977a2-74fb-4e8f-88a6-72b675ad0813","type":"Microsoft.Authorization/roleAssignments","name":"bfd977a2-74fb-4e8f-88a6-72b675ad0813"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T13:34:33.8075185Z","updatedOn":"2021-12-01T13:34:33.8075185Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ce48100-6db5-4ee1-9b02-95913c893175","type":"Microsoft.Authorization/roleAssignments","name":"3ce48100-6db5-4ee1-9b02-95913c893175"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T13:34:33.8391755Z","updatedOn":"2021-12-01T13:34:33.8391755Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1c1acea-4de6-4d8d-b718-05da3e7a2f1c","type":"Microsoft.Authorization/roleAssignments","name":"a1c1acea-4de6-4d8d-b718-05da3e7a2f1c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-12T17:41:39.7941619Z","updatedOn":"2021-03-12T17:41:39.7941619Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4625aa1-611e-448a-bf3e-f37f2bc878a3","type":"Microsoft.Authorization/roleAssignments","name":"d4625aa1-611e-448a-bf3e-f37f2bc878a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-16T23:49:03.3523073Z","updatedOn":"2021-03-16T23:49:03.3523073Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f33005f1-10be-43e3-a87f-9e2f954fb2db","type":"Microsoft.Authorization/roleAssignments","name":"f33005f1-10be-43e3-a87f-9e2f954fb2db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-25T00:58:10.6501184Z","updatedOn":"2021-03-25T00:58:10.6501184Z","createdBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","updatedBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2aca810c-8d05-11eb-bd25-000d3a4359fa","type":"Microsoft.Authorization/roleAssignments","name":"2aca810c-8d05-11eb-bd25-000d3a4359fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-26T10:24:43.4077585Z","updatedOn":"2021-03-26T10:24:43.4077585Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/779ad30e-8e1d-11eb-8aa9-000d3ac754e3","type":"Microsoft.Authorization/roleAssignments","name":"779ad30e-8e1d-11eb-8aa9-000d3ac754e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/fbde6f07-618e-be11-0306-d47d5b4667ec","condition":null,"conditionVersion":null,"createdOn":"2021-04-02T20:38:42.8056733Z","updatedOn":"2021-04-02T20:38:42.8056733Z","createdBy":"8031e009-cc05-4950-8a8d-78942c4492ac","updatedBy":"8031e009-cc05-4950-8a8d-78942c4492ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/fbde6f07-618e-be11-0306-d47d5b4667ec/providers/Microsoft.Authorization/roleAssignments/ed926da7-95d7-4310-be1e-973f44a803cd","type":"Microsoft.Authorization/roleAssignments","name":"ed926da7-95d7-4310-be1e-973f44a803cd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/fbde6f07-618e-be11-0306-d47d5b4667ec","condition":null,"conditionVersion":null,"createdOn":"2021-04-22T15:01:27.4305654Z","updatedOn":"2021-04-22T15:01:27.4305654Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/fbde6f07-618e-be11-0306-d47d5b4667ec/providers/Microsoft.Authorization/roleAssignments/ba3cfc20-7a42-4dd0-a33b-1191c6b54c4d","type":"Microsoft.Authorization/roleAssignments","name":"ba3cfc20-7a42-4dd0-a33b-1191c6b54c4d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.8423155Z","updatedOn":"2019-03-26T22:01:02.8423155Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad/providers/Microsoft.Authorization/roleAssignments/3d069c98-e792-47bd-b58a-399e2d42dbab","type":"Microsoft.Authorization/roleAssignments","name":"3d069c98-e792-47bd-b58a-399e2d42dbab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad","condition":null,"conditionVersion":null,"createdOn":"2021-04-09T18:15:49.7063250Z","updatedOn":"2021-04-09T18:15:49.7063250Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad/providers/Microsoft.Authorization/roleAssignments/a6b435df-80e6-4a7b-b109-2af5f373d238","type":"Microsoft.Authorization/roleAssignments","name":"a6b435df-80e6-4a7b-b109-2af5f373d238"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"}]}' headers: cache-control: - no-cache content-length: - - '33753' + - '182869' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:17:01 GMT + - Wed, 01 Dec 2021 14:16:27 GMT expires: - '-1' pragma: @@ -601,19 +602,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesto2itwlxbu-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestvmrvtq22x-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet", - "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": - false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": - -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDVfdiWPCK7b0PD8/va1l7EvLPBaHEGLDEISGfg3dnpEsOGU/iprRcAL5NFHQ25sALHD73ZjTIH3BcSqI3OfGrmAE4SFB+nohp6gnc0Gd3Hmrl3jdDSHhm10fyAZb+9RPNFKryGFf+7DcgPK3yPJuhoN1SCqV/mMYQuLM5TpXhWEucy0tfTwN2dYyz8N741cPQJ5jdIUzN+bed3yT3d4TYEIcAdR6BlP3JNyfZlCzx5aF43Z2LWnQHdkxcgZGG5yCndaBIRZwAsCOjXuK2iiNszo2ydwD6/HABke+8hGY84bhUSfZy7QPucQIJe5RQcDXDeB7bJGojIz0KVqpHSh4+L - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"aciConnectorLinux": - {"enabled": true, "config": {"SubnetName": "aci-subnet"}}}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "azure", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false}}' + "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"aciConnectorLinux": {"enabled": + true, "config": {"SubnetName": "aci-subnet"}}}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "azure", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -624,40 +625,40 @@ interactions: Connection: - keep-alive Content-Length: - - '1527' + - '1884' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesto2itwlxbu-79a739\",\n \"fqdn\": - \"cliakstest-clitesto2itwlxbu-79a739-c4b91c10.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesto2itwlxbu-79a739-c4b91c10.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestvmrvtq22x-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestvmrvtq22x-8ecadf-5d1595fc.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestvmrvtq22x-8ecadf-5d1595fc.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\n - \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDVfdiWPCK7b0PD8/va1l7EvLPBaHEGLDEISGfg3dnpEsOGU/iprRcAL5NFHQ25sALHD73ZjTIH3BcSqI3OfGrmAE4SFB+nohp6gnc0Gd3Hmrl3jdDSHhm10fyAZb+9RPNFKryGFf+7DcgPK3yPJuhoN1SCqV/mMYQuLM5TpXhWEucy0tfTwN2dYyz8N741cPQJ5jdIUzN+bed3yT3d4TYEIcAdR6BlP3JNyfZlCzx5aF43Z2LWnQHdkxcgZGG5yCndaBIRZwAsCOjXuK2iiNszo2ydwD6/HABke+8hGY84bhUSfZy7QPucQIJe5RQcDXDeB7bJGojIz0KVqpHSh4+L - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": + false,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\": @@ -668,22 +669,23 @@ interactions: \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa2656e1-608f-4329-8173-46cf36905d25?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ff91166-3366-497d-9906-7df7ab4df730?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3162' + - '3574' content-type: - application/json date: - - Tue, 19 Oct 2021 05:17:07 GMT + - Wed, 01 Dec 2021 14:16:32 GMT expires: - '-1' pragma: @@ -695,7 +697,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -714,63 +716,14 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa2656e1-608f-4329-8173-46cf36905d25?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"e15626fa-8f60-2943-8173-46cf36905d25\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:17:07.53Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:17:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin - -a --aci-subnet-name --yes --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa2656e1-608f-4329-8173-46cf36905d25?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ff91166-3366-497d-9906-7df7ab4df730?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e15626fa-8f60-2943-8173-46cf36905d25\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:17:07.53Z\"\n }" + string: "{\n \"name\": \"6611f94f-6633-7d49-9906-7df7ab4df730\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:16:32.93Z\"\n }" headers: cache-control: - no-cache @@ -779,7 +732,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 05:18:08 GMT + - Wed, 01 Dec 2021 14:17:03 GMT expires: - '-1' pragma: @@ -812,14 +765,14 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa2656e1-608f-4329-8173-46cf36905d25?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ff91166-3366-497d-9906-7df7ab4df730?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e15626fa-8f60-2943-8173-46cf36905d25\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:17:07.53Z\"\n }" + string: "{\n \"name\": \"6611f94f-6633-7d49-9906-7df7ab4df730\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:16:32.93Z\"\n }" headers: cache-control: - no-cache @@ -828,7 +781,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 05:18:38 GMT + - Wed, 01 Dec 2021 14:17:33 GMT expires: - '-1' pragma: @@ -861,14 +814,14 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa2656e1-608f-4329-8173-46cf36905d25?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ff91166-3366-497d-9906-7df7ab4df730?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e15626fa-8f60-2943-8173-46cf36905d25\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:17:07.53Z\"\n }" + string: "{\n \"name\": \"6611f94f-6633-7d49-9906-7df7ab4df730\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:16:32.93Z\"\n }" headers: cache-control: - no-cache @@ -877,7 +830,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 05:19:07 GMT + - Wed, 01 Dec 2021 14:18:03 GMT expires: - '-1' pragma: @@ -910,14 +863,14 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa2656e1-608f-4329-8173-46cf36905d25?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ff91166-3366-497d-9906-7df7ab4df730?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e15626fa-8f60-2943-8173-46cf36905d25\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:17:07.53Z\"\n }" + string: "{\n \"name\": \"6611f94f-6633-7d49-9906-7df7ab4df730\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:16:32.93Z\"\n }" headers: cache-control: - no-cache @@ -926,7 +879,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 05:19:38 GMT + - Wed, 01 Dec 2021 14:18:34 GMT expires: - '-1' pragma: @@ -959,23 +912,24 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa2656e1-608f-4329-8173-46cf36905d25?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ff91166-3366-497d-9906-7df7ab4df730?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e15626fa-8f60-2943-8173-46cf36905d25\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:17:07.53Z\"\n }" + string: "{\n \"name\": \"6611f94f-6633-7d49-9906-7df7ab4df730\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:16:32.93Z\",\n \"endTime\": + \"2021-12-01T14:18:56.4711597Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '165' content-type: - application/json date: - - Tue, 19 Oct 2021 05:20:08 GMT + - Wed, 01 Dec 2021 14:19:04 GMT expires: - '-1' pragma: @@ -1008,83 +962,33 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa2656e1-608f-4329-8173-46cf36905d25?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"e15626fa-8f60-2943-8173-46cf36905d25\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T05:17:07.53Z\",\n \"endTime\": - \"2021-10-19T05:20:31.961827Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '164' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:20:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin - -a --aci-subnet-name --yes --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesto2itwlxbu-79a739\",\n \"fqdn\": - \"cliakstest-clitesto2itwlxbu-79a739-c4b91c10.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesto2itwlxbu-79a739-c4b91c10.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestvmrvtq22x-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestvmrvtq22x-8ecadf-5d1595fc.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestvmrvtq22x-8ecadf-5d1595fc.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet\",\n - \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDVfdiWPCK7b0PD8/va1l7EvLPBaHEGLDEISGfg3dnpEsOGU/iprRcAL5NFHQ25sALHD73ZjTIH3BcSqI3OfGrmAE4SFB+nohp6gnc0Gd3Hmrl3jdDSHhm10fyAZb+9RPNFKryGFf+7DcgPK3yPJuhoN1SCqV/mMYQuLM5TpXhWEucy0tfTwN2dYyz8N741cPQJ5jdIUzN+bed3yT3d4TYEIcAdR6BlP3JNyfZlCzx5aF43Z2LWnQHdkxcgZGG5yCndaBIRZwAsCOjXuK2iiNszo2ydwD6/HABke+8hGY84bhUSfZy7QPucQIJe5RQcDXDeB7bJGojIz0KVqpHSh4+L - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": + false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\": @@ -1095,25 +999,27 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8a255509-a1de-406d-94d8-bf146ed8db09\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7ae86303-8c37-4d9e-ae95-6759e1256fa0\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4197' + - '4609' content-type: - application/json date: - - Tue, 19 Oct 2021 05:20:38 GMT + - Wed, 01 Dec 2021 14:19:04 GMT expires: - '-1' pragma: @@ -1146,8 +1052,9 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 accept-language: - en-US method: GET @@ -1156,7 +1063,7 @@ interactions: body: string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Grants full access to manage all resources, but does not allow you to assign roles - in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete","Microsoft.Compute/galleries/share/action"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2020-12-04T00:34:54.8501087Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' + in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete","Microsoft.Compute/galleries/share/action"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2021-11-11T20:13:28.6061853Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' headers: cache-control: - no-cache @@ -1165,7 +1072,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:20:39 GMT + - Wed, 01 Dec 2021 14:19:05 GMT expires: - '-1' pragma: @@ -1205,15 +1112,16 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/providers/Microsoft.Authorization/roleAssignments/0f649cf3-fff7-43fb-803a-d15d504f81b5?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/providers/Microsoft.Authorization/roleAssignments/90abe165-e1f7-4c02-bb3c-54279663a2ac?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003","condition":null,"conditionVersion":null,"createdOn":"2021-10-19T05:20:40.2779029Z","updatedOn":"2021-10-19T05:20:40.5436206Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/providers/Microsoft.Authorization/roleAssignments/0f649cf3-fff7-43fb-803a-d15d504f81b5","type":"Microsoft.Authorization/roleAssignments","name":"0f649cf3-fff7-43fb-803a-d15d504f81b5"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T14:19:06.0792598Z","updatedOn":"2021-12-01T14:19:06.3448749Z","createdBy":null,"updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/providers/Microsoft.Authorization/roleAssignments/90abe165-e1f7-4c02-bb3c-54279663a2ac","type":"Microsoft.Authorization/roleAssignments","name":"90abe165-e1f7-4c02-bb3c-54279663a2ac"}' headers: cache-control: - no-cache @@ -1222,7 +1130,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:20:41 GMT + - Wed, 01 Dec 2021 14:19:08 GMT expires: - '-1' pragma: @@ -1234,7 +1142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' status: code: 201 message: Created @@ -1253,8 +1161,9 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 accept-language: - en-US method: GET @@ -1262,7 +1171,7 @@ interactions: response: body: string: '{"value":[{"properties":{"roleName":"Network Contributor","type":"BuiltInRole","description":"Lets - you manage networks, but not access to them.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Network/*","Microsoft.ResourceHealth/availabilityStatuses/read","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-06-02T00:18:27.3542698Z","updatedOn":"2016-05-31T23:14:00.3326359Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","type":"Microsoft.Authorization/roleDefinitions","name":"4d97b98b-1d4f-4787-a291-c67834d212e7"}]}' + you manage networks, but not access to them.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Network/*","Microsoft.ResourceHealth/availabilityStatuses/read","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-06-02T00:18:27.3542698Z","updatedOn":"2021-11-11T20:13:44.6328966Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","type":"Microsoft.Authorization/roleDefinitions","name":"4d97b98b-1d4f-4787-a291-c67834d212e7"}]}' headers: cache-control: - no-cache @@ -1271,7 +1180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:20:41 GMT + - Wed, 01 Dec 2021 14:19:08 GMT expires: - '-1' pragma: @@ -1311,15 +1220,16 @@ interactions: - --resource-group --name --enable-managed-identity --vnet-subnet-id --network-plugin -a --aci-subnet-name --yes --ssh-key-value -o User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/c57b9fda-9a4b-4399-bfd5-a806ba8dc43b?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/214163dc-5f96-4ccd-a2c4-15204fc9652a?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet","condition":null,"conditionVersion":null,"createdOn":"2021-10-19T05:20:42.3315981Z","updatedOn":"2021-10-19T05:20:42.6909131Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/c57b9fda-9a4b-4399-bfd5-a806ba8dc43b","type":"Microsoft.Authorization/roleAssignments","name":"c57b9fda-9a4b-4399-bfd5-a806ba8dc43b"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T14:19:09.3054273Z","updatedOn":"2021-12-01T14:19:09.5866294Z","createdBy":null,"updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000003/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/214163dc-5f96-4ccd-a2c4-15204fc9652a","type":"Microsoft.Authorization/roleAssignments","name":"214163dc-5f96-4ccd-a2c4-15204fc9652a"}' headers: cache-control: - no-cache @@ -1328,7 +1238,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:20:43 GMT + - Wed, 01 Dec 2021 14:19:09 GMT expires: - '-1' pragma: @@ -1340,7 +1250,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -1360,8 +1270,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -1369,17 +1279,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8966af8f-2c76-4284-bca6-ac6c9d0c4173?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8dc4c90b-9844-4433-aa34-a690db7e2dac?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 05:20:45 GMT + - Wed, 01 Dec 2021 14:19:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/8966af8f-2c76-4284-bca6-ac6c9d0c4173?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/8dc4c90b-9844-4433-aa34-a690db7e2dac?api-version=2016-03-30 pragma: - no-cache server: @@ -1389,7 +1299,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows.yaml old mode 100755 new mode 100644 index fc7bf0df874..57c4722fdc4 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows.yaml @@ -1,62 +1,18 @@ interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username - --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin - --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:46:34Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '313' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 06:46:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", - "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": - false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": - -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser1", "adminPassword": "replace-Password1234$"}, "addonProfiles": {}, - "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": - "azure", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false}}' + "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": + "replace-Password1234$"}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "azure", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -67,7 +23,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1340' + - '1697' Content-Type: - application/json ParameterSetName: @@ -75,31 +31,32 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-559df652.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-559df652.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-ce798711.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-ce798711.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n @@ -108,22 +65,23 @@ interactions: \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d118cbe2-f469-40bc-bb3f-3a41823bdc45?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2410f9ae-13ec-46e9-bf99-b433c5bc9f19?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2780' + - '3192' content-type: - application/json date: - - Tue, 19 Oct 2021 06:46:42 GMT + - Wed, 01 Dec 2021 14:19:17 GMT expires: - '-1' pragma: @@ -135,7 +93,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' status: code: 201 message: Created @@ -155,123 +113,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d118cbe2-f469-40bc-bb3f-3a41823bdc45?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"e2cb18d1-69f4-bc40-bb3f-3a41823bdc45\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:46:42.45Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 06:47:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username - --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin - --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d118cbe2-f469-40bc-bb3f-3a41823bdc45?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"e2cb18d1-69f4-bc40-bb3f-3a41823bdc45\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:46:42.45Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 06:47:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username - --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin - --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d118cbe2-f469-40bc-bb3f-3a41823bdc45?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2410f9ae-13ec-46e9-bf99-b433c5bc9f19?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2cb18d1-69f4-bc40-bb3f-3a41823bdc45\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:46:42.45Z\"\n }" + string: "{\n \"name\": \"aef91024-ec13-e946-bf99-b433c5bc9f19\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:19:17.7Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:48:12 GMT + - Wed, 01 Dec 2021 14:19:47 GMT expires: - '-1' pragma: @@ -305,23 +163,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d118cbe2-f469-40bc-bb3f-3a41823bdc45?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2410f9ae-13ec-46e9-bf99-b433c5bc9f19?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2cb18d1-69f4-bc40-bb3f-3a41823bdc45\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:46:42.45Z\"\n }" + string: "{\n \"name\": \"aef91024-ec13-e946-bf99-b433c5bc9f19\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:19:17.7Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:48:42 GMT + - Wed, 01 Dec 2021 14:20:17 GMT expires: - '-1' pragma: @@ -355,23 +213,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d118cbe2-f469-40bc-bb3f-3a41823bdc45?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2410f9ae-13ec-46e9-bf99-b433c5bc9f19?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2cb18d1-69f4-bc40-bb3f-3a41823bdc45\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:46:42.45Z\"\n }" + string: "{\n \"name\": \"aef91024-ec13-e946-bf99-b433c5bc9f19\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:19:17.7Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:49:12 GMT + - Wed, 01 Dec 2021 14:20:48 GMT expires: - '-1' pragma: @@ -405,23 +263,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d118cbe2-f469-40bc-bb3f-3a41823bdc45?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2410f9ae-13ec-46e9-bf99-b433c5bc9f19?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2cb18d1-69f4-bc40-bb3f-3a41823bdc45\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:46:42.45Z\"\n }" + string: "{\n \"name\": \"aef91024-ec13-e946-bf99-b433c5bc9f19\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:19:17.7Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Tue, 19 Oct 2021 06:49:43 GMT + - Wed, 01 Dec 2021 14:21:18 GMT expires: - '-1' pragma: @@ -455,24 +313,24 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d118cbe2-f469-40bc-bb3f-3a41823bdc45?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2410f9ae-13ec-46e9-bf99-b433c5bc9f19?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2cb18d1-69f4-bc40-bb3f-3a41823bdc45\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:46:42.45Z\",\n \"endTime\": - \"2021-10-19T06:49:46.0973208Z\"\n }" + string: "{\n \"name\": \"aef91024-ec13-e946-bf99-b433c5bc9f19\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:19:17.7Z\",\n \"endTime\": + \"2021-12-01T14:21:28.6932458Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '164' content-type: - application/json date: - - Tue, 19 Oct 2021 06:50:12 GMT + - Wed, 01 Dec 2021 14:21:48 GMT expires: - '-1' pragma: @@ -506,56 +364,59 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-559df652.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-559df652.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-ce798711.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-ce798711.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/716211a2-2c13-45d1-9d5c-f3db736c78fe\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/ef528cc6-a44c-45ee-af5e-ea420f7c90b5\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3443' + - '3855' content-type: - application/json date: - - Tue, 19 Oct 2021 06:50:13 GMT + - Wed, 01 Dec 2021 14:21:49 GMT expires: - '-1' pragma: @@ -587,10 +448,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-10-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -598,22 +459,22 @@ interactions: \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n \"enableFIPS\": false\n - \ }\n }\n ]\n }" + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '973' + - '1006' content-type: - application/json date: - - Tue, 19 Oct 2021 06:50:13 GMT + - Wed, 01 Dec 2021 14:21:50 GMT expires: - '-1' pragma: @@ -653,10 +514,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -668,11 +529,11 @@ interactions: \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2300.211110\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd294ffa-e0ba-4fa6-84c9-1a11d08eccc4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6449a590-e9c1-4ffe-91ae-7de991576183?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -680,7 +541,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:50:16 GMT + - Wed, 01 Dec 2021 14:21:52 GMT expires: - '-1' pragma: @@ -710,119 +571,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd294ffa-e0ba-4fa6-84c9-1a11d08eccc4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6449a590-e9c1-4ffe-91ae-7de991576183?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa4f29fd-bae0-a64f-84c9-1a11d08eccc4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:50:16.9066666Z\"\n }" + string: "{\n \"name\": \"90a54964-c1e9-fe4f-91ae-7de991576183\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:21:53.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 06:50:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --os-type --node-count - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd294ffa-e0ba-4fa6-84c9-1a11d08eccc4?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"fa4f29fd-bae0-a64f-84c9-1a11d08eccc4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:50:16.9066666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 06:51:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --os-type --node-count - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd294ffa-e0ba-4fa6-84c9-1a11d08eccc4?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"fa4f29fd-bae0-a64f-84c9-1a11d08eccc4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:50:16.9066666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:51:46 GMT + - Wed, 01 Dec 2021 14:22:22 GMT expires: - '-1' pragma: @@ -854,23 +619,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd294ffa-e0ba-4fa6-84c9-1a11d08eccc4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6449a590-e9c1-4ffe-91ae-7de991576183?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa4f29fd-bae0-a64f-84c9-1a11d08eccc4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:50:16.9066666Z\"\n }" + string: "{\n \"name\": \"90a54964-c1e9-fe4f-91ae-7de991576183\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:21:53.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:52:16 GMT + - Wed, 01 Dec 2021 14:22:53 GMT expires: - '-1' pragma: @@ -902,23 +667,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd294ffa-e0ba-4fa6-84c9-1a11d08eccc4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6449a590-e9c1-4ffe-91ae-7de991576183?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa4f29fd-bae0-a64f-84c9-1a11d08eccc4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:50:16.9066666Z\"\n }" + string: "{\n \"name\": \"90a54964-c1e9-fe4f-91ae-7de991576183\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:21:53.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:52:47 GMT + - Wed, 01 Dec 2021 14:23:23 GMT expires: - '-1' pragma: @@ -950,23 +715,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd294ffa-e0ba-4fa6-84c9-1a11d08eccc4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6449a590-e9c1-4ffe-91ae-7de991576183?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa4f29fd-bae0-a64f-84c9-1a11d08eccc4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:50:16.9066666Z\"\n }" + string: "{\n \"name\": \"90a54964-c1e9-fe4f-91ae-7de991576183\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:21:53.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:53:17 GMT + - Wed, 01 Dec 2021 14:23:53 GMT expires: - '-1' pragma: @@ -998,23 +763,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd294ffa-e0ba-4fa6-84c9-1a11d08eccc4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6449a590-e9c1-4ffe-91ae-7de991576183?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa4f29fd-bae0-a64f-84c9-1a11d08eccc4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:50:16.9066666Z\"\n }" + string: "{\n \"name\": \"90a54964-c1e9-fe4f-91ae-7de991576183\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:21:53.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:53:46 GMT + - Wed, 01 Dec 2021 14:24:23 GMT expires: - '-1' pragma: @@ -1046,23 +811,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd294ffa-e0ba-4fa6-84c9-1a11d08eccc4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6449a590-e9c1-4ffe-91ae-7de991576183?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa4f29fd-bae0-a64f-84c9-1a11d08eccc4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:50:16.9066666Z\"\n }" + string: "{\n \"name\": \"90a54964-c1e9-fe4f-91ae-7de991576183\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:21:53.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:54:16 GMT + - Wed, 01 Dec 2021 14:24:53 GMT expires: - '-1' pragma: @@ -1094,23 +859,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd294ffa-e0ba-4fa6-84c9-1a11d08eccc4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6449a590-e9c1-4ffe-91ae-7de991576183?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa4f29fd-bae0-a64f-84c9-1a11d08eccc4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:50:16.9066666Z\"\n }" + string: "{\n \"name\": \"90a54964-c1e9-fe4f-91ae-7de991576183\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:21:53.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:54:47 GMT + - Wed, 01 Dec 2021 14:25:23 GMT expires: - '-1' pragma: @@ -1142,23 +907,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd294ffa-e0ba-4fa6-84c9-1a11d08eccc4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6449a590-e9c1-4ffe-91ae-7de991576183?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa4f29fd-bae0-a64f-84c9-1a11d08eccc4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:50:16.9066666Z\"\n }" + string: "{\n \"name\": \"90a54964-c1e9-fe4f-91ae-7de991576183\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:21:53.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:55:17 GMT + - Wed, 01 Dec 2021 14:25:53 GMT expires: - '-1' pragma: @@ -1190,23 +955,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd294ffa-e0ba-4fa6-84c9-1a11d08eccc4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6449a590-e9c1-4ffe-91ae-7de991576183?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa4f29fd-bae0-a64f-84c9-1a11d08eccc4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:50:16.9066666Z\"\n }" + string: "{\n \"name\": \"90a54964-c1e9-fe4f-91ae-7de991576183\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:21:53.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 06:55:47 GMT + - Wed, 01 Dec 2021 14:26:24 GMT expires: - '-1' pragma: @@ -1238,24 +1003,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd294ffa-e0ba-4fa6-84c9-1a11d08eccc4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6449a590-e9c1-4ffe-91ae-7de991576183?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa4f29fd-bae0-a64f-84c9-1a11d08eccc4\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:50:16.9066666Z\",\n \"endTime\": - \"2021-10-19T06:56:09.9341883Z\"\n }" + string: "{\n \"name\": \"90a54964-c1e9-fe4f-91ae-7de991576183\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:21:53.09Z\",\n \"endTime\": + \"2021-12-01T14:26:45.914965Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '164' content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:16 GMT + - Wed, 01 Dec 2021 14:26:54 GMT expires: - '-1' pragma: @@ -1287,10 +1052,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1302,7 +1067,7 @@ interactions: \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2300.211110\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: @@ -1312,7 +1077,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:18 GMT + - Wed, 01 Dec 2021 14:26:54 GMT expires: - '-1' pragma: @@ -1344,65 +1109,68 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-559df652.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-559df652.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-ce798711.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-ce798711.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ },\n {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": + \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n + \ \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n + \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": + \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2300.211110\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/716211a2-2c13-45d1-9d5c-f3db736c78fe\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/ef528cc6-a44c-45ee-af5e-ea420f7c90b5\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4141' + - '4553' content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:18 GMT + - Wed, 01 Dec 2021 14:26:56 GMT expires: - '-1' pragma: @@ -1425,9 +1193,9 @@ interactions: {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": - "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "type": - "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.20.9", - "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}, {"count": 1, "vmSize": "Standard_D2s_v3", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": @@ -1435,18 +1203,19 @@ interactions: "User", "orchestratorVersion": "1.20.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "npwin"}], "linuxProfile": - {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser1", "licenseType": "Windows_Server", "enableCSIProxy": true}, "servicePrincipalProfile": - {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", - "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "licenseType": + "Windows_Server", "enableCSIProxy": true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/716211a2-2c13-45d1-9d5c-f3db736c78fe"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/ef528cc6-a44c-45ee-af5e-ea420f7c90b5"}]}, + "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": + {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -1457,73 +1226,76 @@ interactions: Connection: - keep-alive Content-Length: - - '2849' + - '3229' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-559df652.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-559df652.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-ce798711.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-ce798711.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Updating\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ },\n {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": + \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n + \ \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n + \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": + \"Delete\",\n \"provisioningState\": \"Updating\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2300.211110\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"Windows_Server\",\n \ \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/716211a2-2c13-45d1-9d5c-f3db736c78fe\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/ef528cc6-a44c-45ee-af5e-ea420f7c90b5\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4175' + - '4587' content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:21 GMT + - Wed, 01 Dec 2021 14:27:02 GMT expires: - '-1' pragma: @@ -1557,14 +1329,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -1573,7 +1345,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:51 GMT + - Wed, 01 Dec 2021 14:27:32 GMT expires: - '-1' pragma: @@ -1605,14 +1377,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -1621,7 +1393,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:57:21 GMT + - Wed, 01 Dec 2021 14:28:02 GMT expires: - '-1' pragma: @@ -1653,14 +1425,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -1669,7 +1441,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:57:51 GMT + - Wed, 01 Dec 2021 14:28:32 GMT expires: - '-1' pragma: @@ -1701,14 +1473,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -1717,7 +1489,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:58:21 GMT + - Wed, 01 Dec 2021 14:29:03 GMT expires: - '-1' pragma: @@ -1749,14 +1521,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -1765,7 +1537,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:58:51 GMT + - Wed, 01 Dec 2021 14:29:33 GMT expires: - '-1' pragma: @@ -1797,14 +1569,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -1813,7 +1585,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:59:21 GMT + - Wed, 01 Dec 2021 14:30:03 GMT expires: - '-1' pragma: @@ -1845,14 +1617,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -1861,7 +1633,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:59:51 GMT + - Wed, 01 Dec 2021 14:30:33 GMT expires: - '-1' pragma: @@ -1893,14 +1665,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -1909,7 +1681,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:00:21 GMT + - Wed, 01 Dec 2021 14:31:04 GMT expires: - '-1' pragma: @@ -1941,14 +1713,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -1957,7 +1729,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:00:52 GMT + - Wed, 01 Dec 2021 14:31:33 GMT expires: - '-1' pragma: @@ -1989,14 +1761,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -2005,7 +1777,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:21 GMT + - Wed, 01 Dec 2021 14:32:03 GMT expires: - '-1' pragma: @@ -2037,14 +1809,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -2053,7 +1825,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:51 GMT + - Wed, 01 Dec 2021 14:32:33 GMT expires: - '-1' pragma: @@ -2085,14 +1857,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -2101,7 +1873,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:02:21 GMT + - Wed, 01 Dec 2021 14:33:04 GMT expires: - '-1' pragma: @@ -2133,14 +1905,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -2149,7 +1921,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:02:52 GMT + - Wed, 01 Dec 2021 14:33:34 GMT expires: - '-1' pragma: @@ -2181,14 +1953,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -2197,7 +1969,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:03:22 GMT + - Wed, 01 Dec 2021 14:34:04 GMT expires: - '-1' pragma: @@ -2229,14 +2001,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -2245,7 +2017,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:03:51 GMT + - Wed, 01 Dec 2021 14:34:34 GMT expires: - '-1' pragma: @@ -2277,14 +2049,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -2293,7 +2065,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:04:22 GMT + - Wed, 01 Dec 2021 14:35:05 GMT expires: - '-1' pragma: @@ -2325,14 +2097,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -2341,7 +2113,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:04:52 GMT + - Wed, 01 Dec 2021 14:35:35 GMT expires: - '-1' pragma: @@ -2373,14 +2145,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -2389,7 +2161,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:05:22 GMT + - Wed, 01 Dec 2021 14:36:05 GMT expires: - '-1' pragma: @@ -2421,14 +2193,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -2437,7 +2209,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:05:51 GMT + - Wed, 01 Dec 2021 14:36:35 GMT expires: - '-1' pragma: @@ -2469,14 +2241,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -2485,7 +2257,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:22 GMT + - Wed, 01 Dec 2021 14:37:06 GMT expires: - '-1' pragma: @@ -2517,14 +2289,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -2533,7 +2305,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:52 GMT + - Wed, 01 Dec 2021 14:37:35 GMT expires: - '-1' pragma: @@ -2565,14 +2337,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -2581,7 +2353,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:07:22 GMT + - Wed, 01 Dec 2021 14:38:05 GMT expires: - '-1' pragma: @@ -2613,14 +2385,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -2629,7 +2401,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:07:53 GMT + - Wed, 01 Dec 2021 14:38:36 GMT expires: - '-1' pragma: @@ -2661,14 +2433,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -2677,7 +2449,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:08:22 GMT + - Wed, 01 Dec 2021 14:39:06 GMT expires: - '-1' pragma: @@ -2709,14 +2481,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\"\n }" headers: cache-control: - no-cache @@ -2725,7 +2497,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:08:52 GMT + - Wed, 01 Dec 2021 14:39:37 GMT expires: - '-1' pragma: @@ -2757,168 +2529,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ed1bdd4-9933-487b-a9cf-4c1e15f504a7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" + string: "{\n \"name\": \"d4bdd15e-3399-7b48-a9cf-4c1e15f504a7\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:26:59.4366666Z\",\n \"endTime\": + \"2021-12-01T14:39:55.5952035Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:09:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-ahub - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:09:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-ahub - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:10:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-ahub - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57b30224-fc6f-4aeb-80e9-f387c724556a?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"2402b357-6ffc-eb4a-80e9-f387c724556a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:56:21.3466666Z\",\n \"endTime\": - \"2021-10-19T07:10:26.901357Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '169' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:52 GMT + - Wed, 01 Dec 2021 14:40:07 GMT expires: - '-1' pragma: @@ -2950,65 +2578,68 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-559df652.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-559df652.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-ce798711.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-ce798711.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ },\n {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": + \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n + \ \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n + \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": + \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2300.211110\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"Windows_Server\",\n \ \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/716211a2-2c13-45d1-9d5c-f3db736c78fe\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/ef528cc6-a44c-45ee-af5e-ea420f7c90b5\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4178' + - '4590' content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:53 GMT + - Wed, 01 Dec 2021 14:40:07 GMT expires: - '-1' pragma: @@ -3040,10 +2671,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-10-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -3051,13 +2682,13 @@ interactions: \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n \"enableFIPS\": false\n - \ }\n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false\n }\n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": @@ -3067,17 +2698,17 @@ interactions: \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": - \"AKSWindows-2019-17763.2213.210922\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + \"AKSWindows-2019-17763.2300.211110\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1948' + - '1981' content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:54 GMT + - Wed, 01 Dec 2021 14:40:08 GMT expires: - '-1' pragma: @@ -3111,26 +2742,26 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e4c10b6-0095-4d44-a583-ee6e8b531abd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17e3c118-7db7-47f4-a9fa-36fa081957ba?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 07:10:54 GMT + - Wed, 01 Dec 2021 14:40:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/2e4c10b6-0095-4d44-a583-ee6e8b531abd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/17e3c118-7db7-47f4-a9fa-36fa081957ba?api-version=2016-03-30 pragma: - no-cache server: @@ -3140,7 +2771,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted @@ -3160,8 +2791,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-07-01 response: @@ -3169,17 +2800,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e47b3eb-c47c-470c-92ff-db76fd124157?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/308070c4-8d13-421b-9c05-257502346765?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 07:10:56 GMT + - Wed, 01 Dec 2021 14:40:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/5e47b3eb-c47c-470c-92ff-db76fd124157?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/308070c4-8d13-421b-9c05-257502346765?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows_gmsa.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows_gmsa.yaml index c078b19bd3a..6c3d35e9773 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows_gmsa.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_create_with_windows_gmsa.yaml @@ -1,435 +1,671 @@ interactions: -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --location --dns-name-prefix --node-count - --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type - --network-plugin --ssh-key-value --enable-windows-gmsa --yes] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.5 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 - response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T09:16:17Z"},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['319'] - content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Oct 2021 09:16:20 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} - request: body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", - "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": - false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": - -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": "replace-Password1234$", "gmsaProfile": {"enabled": true}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "azure", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - Content-Length: ['1709'] - Content-Type: [application/json] - ParameterSetName: [--resource-group --name --location --dns-name-prefix --node-count - --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type - --network-plugin --ssh-key-value --enable-windows-gmsa --yes] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1737' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: - body: {string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ - \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ - : {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"\ - code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-d183dd29.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliaksdns000002-d183dd29.portal.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ - : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true,\n\ - \ \"gmsaProfile\": {\n \"enabled\": true,\n \"dnsServer\": \"\"\ - ,\n \"rootDomainName\": \"\"\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ - ,\n \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"\ - networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\"\ - : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ - : {\n \"count\": 1\n }\n },\n \"serviceCidr\": \"10.0.0.0/16\"\ - ,\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\ - ,\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n\ - \ \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\ - \n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ - :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ - \n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n\ - \ }"} - headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/94d9e607-a417-426e-8006-67d6e35c30eb?api-version=2016-03-30'] - cache-control: [no-cache] - content-length: ['3231'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:16:32 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] - status: {code: 201, message: Created} + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-ec75eb8a.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-ec75eb8a.portal.hcp.centraluseuap.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true,\n + \ \"gmsaProfile\": {\n \"enabled\": true,\n \"dnsServer\": \"\",\n + \ \"rootDomainName\": \"\"\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000001_centraluseuap\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"azure\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/25c0c267-76dd-4b3e-a6bd-adee2b3e8c99?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '3314' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:06:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --location --dns-name-prefix --node-count - --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type - --network-plugin --ssh-key-value --enable-windows-gmsa --yes] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/94d9e607-a417-426e-8006-67d6e35c30eb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/25c0c267-76dd-4b3e-a6bd-adee2b3e8c99?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"07e6d994-17a4-6e42-8006-67d6e35c30eb\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:16:31.2733333Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:17:02 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"67c2c025-dd76-3e4b-a6bd-adee2b3e8c99\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:38.6766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:07:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --location --dns-name-prefix --node-count - --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type - --network-plugin --ssh-key-value --enable-windows-gmsa --yes] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/94d9e607-a417-426e-8006-67d6e35c30eb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/25c0c267-76dd-4b3e-a6bd-adee2b3e8c99?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"07e6d994-17a4-6e42-8006-67d6e35c30eb\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:16:31.2733333Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:17:32 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"67c2c025-dd76-3e4b-a6bd-adee2b3e8c99\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:38.6766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:07:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --location --dns-name-prefix --node-count - --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type - --network-plugin --ssh-key-value --enable-windows-gmsa --yes] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/94d9e607-a417-426e-8006-67d6e35c30eb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/25c0c267-76dd-4b3e-a6bd-adee2b3e8c99?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"07e6d994-17a4-6e42-8006-67d6e35c30eb\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:16:31.2733333Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:18:02 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"67c2c025-dd76-3e4b-a6bd-adee2b3e8c99\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:38.6766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:08:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --location --dns-name-prefix --node-count - --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type - --network-plugin --ssh-key-value --enable-windows-gmsa --yes] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/94d9e607-a417-426e-8006-67d6e35c30eb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/25c0c267-76dd-4b3e-a6bd-adee2b3e8c99?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"07e6d994-17a4-6e42-8006-67d6e35c30eb\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:16:31.2733333Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:18:33 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"67c2c025-dd76-3e4b-a6bd-adee2b3e8c99\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:38.6766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:08:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --location --dns-name-prefix --node-count - --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type - --network-plugin --ssh-key-value --enable-windows-gmsa --yes] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/94d9e607-a417-426e-8006-67d6e35c30eb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/25c0c267-76dd-4b3e-a6bd-adee2b3e8c99?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"07e6d994-17a4-6e42-8006-67d6e35c30eb\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:16:31.2733333Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:19:03 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"67c2c025-dd76-3e4b-a6bd-adee2b3e8c99\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:38.6766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:09:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --location --dns-name-prefix --node-count - --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type - --network-plugin --ssh-key-value --enable-windows-gmsa --yes] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/94d9e607-a417-426e-8006-67d6e35c30eb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/25c0c267-76dd-4b3e-a6bd-adee2b3e8c99?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"07e6d994-17a4-6e42-8006-67d6e35c30eb\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:16:31.2733333Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:19:33 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"67c2c025-dd76-3e4b-a6bd-adee2b3e8c99\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:38.6766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:09:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --location --dns-name-prefix --node-count - --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type - --network-plugin --ssh-key-value --enable-windows-gmsa --yes] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/94d9e607-a417-426e-8006-67d6e35c30eb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/25c0c267-76dd-4b3e-a6bd-adee2b3e8c99?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"07e6d994-17a4-6e42-8006-67d6e35c30eb\",\n \"\ - status\": \"Succeeded\",\n \"startTime\": \"2021-10-19T09:16:31.2733333Z\"\ - ,\n \"endTime\": \"2021-10-19T09:19:51.8826789Z\"\n }"} - headers: - cache-control: [no-cache] - content-length: ['170'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:20:04 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"67c2c025-dd76-3e4b-a6bd-adee2b3e8c99\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:38.6766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:10:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --location --dns-name-prefix --node-count - --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type - --network-plugin --ssh-key-value --enable-windows-gmsa --yes] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/25c0c267-76dd-4b3e-a6bd-adee2b3e8c99?api-version=2016-03-30 response: - body: {string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ - \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ - : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ - code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-d183dd29.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliaksdns000002-d183dd29.portal.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ - : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true,\n\ - \ \"gmsaProfile\": {\n \"enabled\": true,\n \"dnsServer\": \"\"\ - ,\n \"rootDomainName\": \"\"\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ - ,\n \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"\ - networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\"\ - : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ - : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/29805b76-d2ce-4438-9e08-314f7c8b3639\"\ - \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ - : \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\"\ - : \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ - : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }"} - headers: - cache-control: [no-cache] - content-length: ['3906'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:20:05 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"67c2c025-dd76-3e4b-a6bd-adee2b3e8c99\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:06:38.6766666Z\",\n \"endTime\": + \"2021-12-01T14:10:23.3944938Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:10:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: - body: {string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ - ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ - ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ - kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n\ - \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ - code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n\ - \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2021.10.13\",\n \"enableFIPS\": false\n\ - \ }\n }\n ]\n }"} - headers: - cache-control: [no-cache] - content-length: ['973'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:20:06 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-ec75eb8a.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-ec75eb8a.portal.hcp.centraluseuap.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true,\n + \ \"gmsaProfile\": {\n \"enabled\": true,\n \"dnsServer\": \"\",\n + \ \"rootDomainName\": \"\"\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000001_centraluseuap\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/8122cf69-d48c-4226-a073-865b5f37c22e\"\n + \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '3989' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:10:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-10-01 + response: + body: + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n + \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false\n }\n }\n ]\n }" + headers: + cache-control: + - no-cache + content-length: + - '1006' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:10:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: '{"properties": {"count": 1, "vmSize": "Standard_D2s_v3", "workloadRuntime": "OCIContainer", "osType": "Windows", "scaleDownMode": "Delete", "mode": "User", @@ -437,563 +673,767 @@ interactions: "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - Content-Length: ['394'] - Content-Type: [application/json] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + Content-Length: + - '394' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-10-01 response: - body: {string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ - ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ - ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ - : \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n\ - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ - ,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ - \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\"\ - : \"AKSWindows-2019-17763.2237.211014\",\n \"upgradeSettings\": {},\n \ - \ \"enableFIPS\": false\n }\n }"} - headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b1d20bee-28af-440b-aa95-3636aca40279?api-version=2016-03-30'] - cache-control: [no-cache] - content-length: ['913'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:20:09 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] - status: {code: 201, message: Created} -- request: - body: null + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n + \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2300.211110\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b1d20bee-28af-440b-aa95-3636aca40279?api-version=2016-03-30 - response: - body: {string: "{\n \"name\": \"ee0bd2b1-af28-0b44-aa95-3636aca40279\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:20:09.4466666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:20:39 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f954c4a0-ec72-4dbd-b8e3-53c7d27ebda5?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '913' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:10:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1193' + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b1d20bee-28af-440b-aa95-3636aca40279?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f954c4a0-ec72-4dbd-b8e3-53c7d27ebda5?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"ee0bd2b1-af28-0b44-aa95-3636aca40279\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:20:09.4466666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:21:09 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null + body: + string: "{\n \"name\": \"a0c454f9-72ec-bd4d-b8e3-53c7d27ebda5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:10:44.1833333Z\"\n }" headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b1d20bee-28af-440b-aa95-3636aca40279?api-version=2016-03-30 - response: - body: {string: "{\n \"name\": \"ee0bd2b1-af28-0b44-aa95-3636aca40279\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:20:09.4466666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:21:40 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:11:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b1d20bee-28af-440b-aa95-3636aca40279?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f954c4a0-ec72-4dbd-b8e3-53c7d27ebda5?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"ee0bd2b1-af28-0b44-aa95-3636aca40279\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:20:09.4466666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:22:11 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} -- request: - body: null + body: + string: "{\n \"name\": \"a0c454f9-72ec-bd4d-b8e3-53c7d27ebda5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:10:44.1833333Z\"\n }" headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b1d20bee-28af-440b-aa95-3636aca40279?api-version=2016-03-30 - response: - body: {string: "{\n \"name\": \"ee0bd2b1-af28-0b44-aa95-3636aca40279\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:20:09.4466666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:22:41 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:11:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b1d20bee-28af-440b-aa95-3636aca40279?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f954c4a0-ec72-4dbd-b8e3-53c7d27ebda5?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"ee0bd2b1-af28-0b44-aa95-3636aca40279\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:20:09.4466666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:23:11 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"a0c454f9-72ec-bd4d-b8e3-53c7d27ebda5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:10:44.1833333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:12:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b1d20bee-28af-440b-aa95-3636aca40279?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f954c4a0-ec72-4dbd-b8e3-53c7d27ebda5?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"ee0bd2b1-af28-0b44-aa95-3636aca40279\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:20:09.4466666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:23:41 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"a0c454f9-72ec-bd4d-b8e3-53c7d27ebda5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:10:44.1833333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:12:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b1d20bee-28af-440b-aa95-3636aca40279?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f954c4a0-ec72-4dbd-b8e3-53c7d27ebda5?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"ee0bd2b1-af28-0b44-aa95-3636aca40279\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:20:09.4466666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:24:12 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"a0c454f9-72ec-bd4d-b8e3-53c7d27ebda5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:10:44.1833333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:13:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b1d20bee-28af-440b-aa95-3636aca40279?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f954c4a0-ec72-4dbd-b8e3-53c7d27ebda5?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"ee0bd2b1-af28-0b44-aa95-3636aca40279\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:20:09.4466666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:24:42 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"a0c454f9-72ec-bd4d-b8e3-53c7d27ebda5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:10:44.1833333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:13:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b1d20bee-28af-440b-aa95-3636aca40279?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f954c4a0-ec72-4dbd-b8e3-53c7d27ebda5?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"ee0bd2b1-af28-0b44-aa95-3636aca40279\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:20:09.4466666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:25:12 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"a0c454f9-72ec-bd4d-b8e3-53c7d27ebda5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:10:44.1833333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:14:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b1d20bee-28af-440b-aa95-3636aca40279?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f954c4a0-ec72-4dbd-b8e3-53c7d27ebda5?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"ee0bd2b1-af28-0b44-aa95-3636aca40279\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:20:09.4466666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:25:43 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"a0c454f9-72ec-bd4d-b8e3-53c7d27ebda5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:10:44.1833333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:14:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b1d20bee-28af-440b-aa95-3636aca40279?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f954c4a0-ec72-4dbd-b8e3-53c7d27ebda5?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"ee0bd2b1-af28-0b44-aa95-3636aca40279\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:20:09.4466666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:26:14 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"a0c454f9-72ec-bd4d-b8e3-53c7d27ebda5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:10:44.1833333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b1d20bee-28af-440b-aa95-3636aca40279?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f954c4a0-ec72-4dbd-b8e3-53c7d27ebda5?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"ee0bd2b1-af28-0b44-aa95-3636aca40279\",\n \"\ - status\": \"Succeeded\",\n \"startTime\": \"2021-10-19T09:20:09.4466666Z\"\ - ,\n \"endTime\": \"2021-10-19T09:26:35.948049Z\"\n }"} - headers: - cache-control: [no-cache] - content-length: ['169'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:26:44 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"a0c454f9-72ec-bd4d-b8e3-53c7d27ebda5\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:10:44.1833333Z\",\n \"endTime\": + \"2021-12-01T14:15:43.8954278Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-10-01 response: - body: {string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ - ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ - ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ - : \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n\ - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ - ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ - code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"\ - enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\"\ - : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"\ - nodeImageVersion\": \"AKSWindows-2019-17763.2237.211014\",\n \"upgradeSettings\"\ - : {},\n \"enableFIPS\": false\n }\n }"} - headers: - cache-control: [no-cache] - content-length: ['914'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:26:45 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n + \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2300.211110\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '914' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool delete] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --no-wait] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool delete + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --no-wait + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-10-01 response: - body: {string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ - ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ - ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ - kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n\ - \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ - code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n\ - \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2021.10.13\",\n \"enableFIPS\": false\n\ - \ }\n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ - ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ - ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ - kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n\ - \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\"\ - ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ - : \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2237.211014\"\ - ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ - \ ]\n }"} - headers: - cache-control: [no-cache] - content-length: ['1948'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:26:47 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n + \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false\n }\n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n + \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2300.211110\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n }\n ]\n }" + headers: + cache-control: + - no-cache + content-length: + - '1981' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool delete] - Connection: [keep-alive] - Content-Length: ['0'] - ParameterSetName: [--resource-group --cluster-name --name --no-wait] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --resource-group --cluster-name --name --no-wait + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-10-01 response: - body: {string: ''} - headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/19e83d23-098c-4f6c-8812-3a49a6129219?api-version=2016-03-30'] - cache-control: [no-cache] - content-length: ['0'] - date: ['Tue, 19 Oct 2021 09:26:48 GMT'] - expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/19e83d23-098c-4f6c-8812-3a49a6129219?api-version=2016-03-30'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14998'] - status: {code: 202, message: Accepted} + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/7e974531-e3ea-43e0-adff-d041e4d838af?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 01 Dec 2021 14:15:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/7e974531-e3ea-43e0-adff-d041e4d838af?api-version=2016-03-30 + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14997' + status: + code: 202 + message: Accepted - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks delete] - Connection: [keep-alive] - Content-Length: ['0'] - ParameterSetName: [-g -n --yes --no-wait] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --yes --no-wait + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-07-01 response: - body: {string: ''} - headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/ec6080c7-559c-4566-a077-8ac3bd1c1edb?api-version=2016-03-30'] - cache-control: [no-cache] - content-length: ['0'] - date: ['Tue, 19 Oct 2021 09:26:50 GMT'] - expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/ec6080c7-559c-4566-a077-8ac3bd1c1edb?api-version=2016-03-30'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14999'] - status: {code: 202, message: Accepted} + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/6670699a-7921-4cd7-ae2d-05f96b2f57c2?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 01 Dec 2021 14:15:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/6670699a-7921-4cd7-ae2d-05f96b2f57c2?api-version=2016-03-30 + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14997' + status: + code: 202 + message: Accepted version: 1 diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_custom_kubelet_identity.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_custom_kubelet_identity.yaml old mode 100755 new mode 100644 index 1f473cc91f6..e702d467872 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_custom_kubelet_identity.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_custom_kubelet_identity.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T05:22:20Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:15:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:22:22 GMT + - Wed, 01 Dec 2021 14:15:49 GMT expires: - '-1' pragma: @@ -59,15 +59,16 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.29.0 + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-msi/0.2.0 Azure-SDK-For-Python + AZURECLI/2.30.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003?api-version=2015-08-31-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003","name":"cliakstest000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001","clientSecretUrl":"https://control-westus2.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=fb8185d1-e3ad-4ce9-a3a2-60787a57d835&aid=511a5a1f-dcc0-4f51-98b5-98cd6a093590"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003","name":"cliakstest000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001","clientSecretUrl":"https://control-westus2.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=8cb6f728-ba4b-440f-a62c-f063f40caa5e&aid=a1c0e04c-28d1-43ff-b08d-855bbb74bc84"}}' headers: cache-control: - no-cache @@ -76,7 +77,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:22:25 GMT + - Wed, 01 Dec 2021 14:15:51 GMT expires: - '-1' location: @@ -88,7 +89,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -106,12 +107,12 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T05:22:20Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:15:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -120,7 +121,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:22:26 GMT + - Wed, 01 Dec 2021 14:15:51 GMT expires: - '-1' pragma: @@ -152,15 +153,16 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.29.0 + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-msi/0.2.0 Azure-SDK-For-Python + AZURECLI/2.30.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004?api-version=2015-08-31-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004","name":"cliakstest000004","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001","clientSecretUrl":"https://control-westus2.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=3cee5ab1-3db5-4207-992d-ff316d714a6c&aid=53d210b2-87be-4db2-91fc-f966c1e89bc3"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004","name":"cliakstest000004","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001","clientSecretUrl":"https://control-westus2.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=7d62a567-f3b5-4e95-9a3b-725c28e92500&aid=647acc72-9453-4d19-9ae2-017f1fb4e401"}}' headers: cache-control: - no-cache @@ -169,7 +171,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:22:31 GMT + - Wed, 01 Dec 2021 14:15:54 GMT expires: - '-1' location: @@ -181,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -200,12 +202,12 @@ interactions: - --resource-group --name --node-count --enable-managed-identity --assign-identity --assign-kubelet-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T05:22:20Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:15:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -214,7 +216,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:22:31 GMT + - Wed, 01 Dec 2021 14:15:54 GMT expires: - '-1' pragma: @@ -245,15 +247,16 @@ interactions: - --resource-group --name --node-count --enable-managed-identity --assign-identity --assign-kubelet-identity --ssh-key-value User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.29.0 + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-msi/0.2.0 Azure-SDK-For-Python + AZURECLI/2.30.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004?api-version=2015-08-31-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004","name":"cliakstest000004","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001","clientSecretUrl":"https://control-westus2.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=3cee5ab1-3db5-4207-992d-ff316d714a6c&aid=53d210b2-87be-4db2-91fc-f966c1e89bc3"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004","name":"cliakstest000004","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001","clientSecretUrl":"https://control-westus2.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=7d62a567-f3b5-4e95-9a3b-725c28e92500&aid=647acc72-9453-4d19-9ae2-017f1fb4e401"}}' headers: cache-control: - no-cache @@ -262,7 +265,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:22:32 GMT + - Wed, 01 Dec 2021 14:15:55 GMT expires: - '-1' pragma: @@ -295,15 +298,16 @@ interactions: - --resource-group --name --node-count --enable-managed-identity --assign-identity --assign-kubelet-identity --ssh-key-value User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.29.0 + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-msi/0.2.0 Azure-SDK-For-Python + AZURECLI/2.30.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003?api-version=2015-08-31-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003","name":"cliakstest000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001","clientSecretUrl":"https://control-westus2.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=fb8185d1-e3ad-4ce9-a3a2-60787a57d835&aid=511a5a1f-dcc0-4f51-98b5-98cd6a093590"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003","name":"cliakstest000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001","clientSecretUrl":"https://control-westus2.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=8cb6f728-ba4b-440f-a62c-f063f40caa5e&aid=a1c0e04c-28d1-43ff-b08d-855bbb74bc84"}}' headers: cache-control: - no-cache @@ -312,7 +316,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:22:32 GMT + - Wed, 01 Dec 2021 14:15:56 GMT expires: - '-1' pragma: @@ -343,24 +347,25 @@ interactions: - --resource-group --name --node-count --enable-managed-identity --assign-identity --assign-kubelet-identity --ssh-key-value User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004/providers/Microsoft.Authorization/roleAssignments?$filter=atScope%28%29&api-version=2020-04-01-preview response: body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T05:33:00.7067936Z","updatedOn":"2021-04-26T05:33:00.7067936Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2adf4737-6342-4f63-aeb2-5fcd3426a387","type":"Microsoft.Authorization/roleAssignments","name":"2adf4737-6342-4f63-aeb2-5fcd3426a387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T06:09:24.5972802Z","updatedOn":"2021-04-26T06:09:24.5972802Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4572c05-f69f-4e5c-aac6-79afefcf0e2e","type":"Microsoft.Authorization/roleAssignments","name":"c4572c05-f69f-4e5c-aac6-79afefcf0e2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-18T05:18:40.4643436Z","updatedOn":"2021-06-18T05:18:40.4643436Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f926301-cc14-4a88-a3b7-c159d73d01f6","type":"Microsoft.Authorization/roleAssignments","name":"3f926301-cc14-4a88-a3b7-c159d73d01f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-18T03:09:33.8702688Z","updatedOn":"2021-09-18T03:09:33.8702688Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99d6fd13-909e-4c52-807e-77f7a5af83c8","type":"Microsoft.Authorization/roleAssignments","name":"99d6fd13-909e-4c52-807e-77f7a5af83c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T21:55:07.2303024Z","updatedOn":"2021-10-07T21:55:07.2303024Z","createdBy":"8031e009-cc05-4950-8a8d-78942c4492ac","updatedBy":"8031e009-cc05-4950-8a8d-78942c4492ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de/providers/Microsoft.Authorization/roleAssignments/99c5a294-bfee-468a-ab2f-f6db60b8c8f3","type":"Microsoft.Authorization/roleAssignments","name":"99c5a294-bfee-468a-ab2f-f6db60b8c8f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T17:23:35.8382756Z","updatedOn":"2021-10-08T17:23:35.8382756Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de/providers/Microsoft.Authorization/roleAssignments/ade4333c-4321-4b68-b498-d081d55e2b0c","type":"Microsoft.Authorization/roleAssignments","name":"ade4333c-4321-4b68-b498-d081d55e2b0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/dfe50df8-51fe-4401-daad-efca9fc8f14b","condition":null,"conditionVersion":null,"createdOn":"2021-04-22T14:50:37.5977858Z","updatedOn":"2021-04-22T14:50:37.5977858Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/dfe50df8-51fe-4401-daad-efca9fc8f14b/providers/Microsoft.Authorization/roleAssignments/eb6c03a6-8e33-4d47-807c-9cdf9ef1e3d8","type":"Microsoft.Authorization/roleAssignments","name":"eb6c03a6-8e33-4d47-807c-9cdf9ef1e3d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9136073Z","updatedOn":"2019-03-26T22:01:02.9136073Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6f4de15e-9316-4714-a7c4-40c46cf8e067","type":"Microsoft.Authorization/roleAssignments","name":"6f4de15e-9316-4714-a7c4-40c46cf8e067"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:13.2137492Z","updatedOn":"2020-02-25T18:36:13.2137492Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/18fdd87e-1c01-424e-b380-32310f4940c2","type":"Microsoft.Authorization/roleAssignments","name":"18fdd87e-1c01-424e-b380-32310f4940c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:00.4746112Z","updatedOn":"2020-02-25T18:36:00.4746112Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d9bcf58a-6f24-446d-bf60-20ffe5142396","type":"Microsoft.Authorization/roleAssignments","name":"d9bcf58a-6f24-446d-bf60-20ffe5142396"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:55.7490022Z","updatedOn":"2020-02-25T18:35:55.7490022Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6e2b954b-42b2-48e0-997a-622601f0a4b4","type":"Microsoft.Authorization/roleAssignments","name":"6e2b954b-42b2-48e0-997a-622601f0a4b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:57.9173081Z","updatedOn":"2020-02-25T18:35:57.9173081Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9","type":"Microsoft.Authorization/roleAssignments","name":"8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:23.0673659Z","updatedOn":"2020-02-25T18:36:23.0673659Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d0817c57-3e5b-4363-88b7-52baadd5c362","type":"Microsoft.Authorization/roleAssignments","name":"d0817c57-3e5b-4363-88b7-52baadd5c362"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:31.2596366Z","updatedOn":"2020-02-25T18:36:31.2596366Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0dabf212-a1c7-4af6-ba8b-be045493b368","type":"Microsoft.Authorization/roleAssignments","name":"0dabf212-a1c7-4af6-ba8b-be045493b368"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:52.9188704Z","updatedOn":"2020-02-25T18:35:52.9188704Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d674b853-332e-4437-9ddb-bba8fde7ccce","type":"Microsoft.Authorization/roleAssignments","name":"d674b853-332e-4437-9ddb-bba8fde7ccce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:38.8393742Z","updatedOn":"2020-02-25T18:36:38.8393742Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/00625383-053d-4227-a4db-b098e9bd2289","type":"Microsoft.Authorization/roleAssignments","name":"00625383-053d-4227-a4db-b098e9bd2289"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:05.0954462Z","updatedOn":"2020-02-25T18:36:05.0954462Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/3151fe9c-fcd2-45d3-a256-72fb13b86df5","type":"Microsoft.Authorization/roleAssignments","name":"3151fe9c-fcd2-45d3-a256-72fb13b86df5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-07-06T18:51:23.0753297Z","updatedOn":"2020-07-06T18:51:23.0753297Z","createdBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","updatedBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b3a9e1db-fde1-4ddd-ac1c-91913be67359","type":"Microsoft.Authorization/roleAssignments","name":"b3a9e1db-fde1-4ddd-ac1c-91913be67359"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:33.0012805Z","updatedOn":"2021-08-09T18:17:33.0012805Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/01de8fe7-aae0-4d5c-844a-f0bdb8335252","type":"Microsoft.Authorization/roleAssignments","name":"01de8fe7-aae0-4d5c-844a-f0bdb8335252"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:39.9188336Z","updatedOn":"2021-08-09T18:17:39.9188336Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ab2be506-5489-4c1f-add0-f5ed87a10439","type":"Microsoft.Authorization/roleAssignments","name":"ab2be506-5489-4c1f-add0-f5ed87a10439"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:18.2000692Z","updatedOn":"2021-08-24T19:32:18.2000692Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0ce2f3fb-17ea-4193-9081-09aa4b39fec4","type":"Microsoft.Authorization/roleAssignments","name":"0ce2f3fb-17ea-4193-9081-09aa4b39fec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:36.6775144Z","updatedOn":"2021-08-24T19:32:36.6775144Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2e95b289-99bd-4e68-83de-5433f2a0428c","type":"Microsoft.Authorization/roleAssignments","name":"2e95b289-99bd-4e68-83de-5433f2a0428c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-09-15T21:46:52.6665975Z","updatedOn":"2021-09-15T21:46:52.6665975Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6d2e0600-74af-4aeb-b479-1718dd4dffdf","type":"Microsoft.Authorization/roleAssignments","name":"6d2e0600-74af-4aeb-b479-1718dd4dffdf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-09-23T22:47:24.2398372Z","updatedOn":"2021-09-23T22:47:24.2398372Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/68d8c18e-3dd6-4bf4-ae99-aac6ffb945cc","type":"Microsoft.Authorization/roleAssignments","name":"68d8c18e-3dd6-4bf4-ae99-aac6ffb945cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-09-23T22:48:58.7755038Z","updatedOn":"2021-09-23T22:48:58.7755038Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/1201e06e-7fa6-44c7-bb6b-a4bd82994d4d","type":"Microsoft.Authorization/roleAssignments","name":"1201e06e-7fa6-44c7-bb6b-a4bd82994d4d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-01-26T20:10:13.8998989Z","updatedOn":"2021-01-26T20:10:13.8998989Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b36517ec-61d3-468d-afdc-eceda8adb4ee","type":"Microsoft.Authorization/roleAssignments","name":"b36517ec-61d3-468d-afdc-eceda8adb4ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-06T00:13:19.1780775Z","updatedOn":"2021-02-06T00:13:19.1780775Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5216c1ee-4f58-4d36-b379-6c04b1fbd157","type":"Microsoft.Authorization/roleAssignments","name":"5216c1ee-4f58-4d36-b379-6c04b1fbd157"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-24T01:45:04.0423529Z","updatedOn":"2021-02-24T01:45:04.0423529Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2bcd4a3e-5ac3-4ffa-a529-269be7717766","type":"Microsoft.Authorization/roleAssignments","name":"2bcd4a3e-5ac3-4ffa-a529-269be7717766"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-24T01:45:10.2950077Z","updatedOn":"2021-02-24T01:45:10.2950077Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8f8ed3e8-1b37-4ac1-ad01-7a274f600e79","type":"Microsoft.Authorization/roleAssignments","name":"8f8ed3e8-1b37-4ac1-ad01-7a274f600e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:26:34.3109215Z","updatedOn":"2021-04-16T18:26:34.3109215Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7464f8a3-9f55-443b-a3a5-44a31b100cad","type":"Microsoft.Authorization/roleAssignments","name":"7464f8a3-9f55-443b-a3a5-44a31b100cad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:27:56.4446265Z","updatedOn":"2021-04-16T18:27:56.4446265Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8f430c4c-4317-4495-9f01-4f3d4e1ca111","type":"Microsoft.Authorization/roleAssignments","name":"8f430c4c-4317-4495-9f01-4f3d4e1ca111"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-05-04T19:20:06.7695456Z","updatedOn":"2021-05-04T19:20:06.7695456Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa","type":"Microsoft.Authorization/roleAssignments","name":"fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"}]}' + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:58.0549229Z","updatedOn":"2020-08-21T16:23:58.0549229Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a853af7-252b-4315-9ee3-0b243e595f80","type":"Microsoft.Authorization/roleAssignments","name":"9a853af7-252b-4315-9ee3-0b243e595f80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:58.6582166Z","updatedOn":"2020-08-21T16:23:58.6582166Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ab72fbd-e5fe-4a7d-ae20-baad615d688d","type":"Microsoft.Authorization/roleAssignments","name":"8ab72fbd-e5fe-4a7d-ae20-baad615d688d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:59.5326945Z","updatedOn":"2020-08-21T16:23:59.5326945Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4ed77f1d-82a2-4a02-b48e-fa5776870280","type":"Microsoft.Authorization/roleAssignments","name":"4ed77f1d-82a2-4a02-b48e-fa5776870280"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-02T01:52:45.8299382Z","updatedOn":"2020-09-02T01:52:45.8299382Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3e21284b-6bd7-431a-81ae-ccaf56267ab5","type":"Microsoft.Authorization/roleAssignments","name":"3e21284b-6bd7-431a-81ae-ccaf56267ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-07T09:44:47.3865537Z","updatedOn":"2020-09-07T09:44:47.3865537Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79357f85-973d-4621-b1bd-d1ecb645e146","type":"Microsoft.Authorization/roleAssignments","name":"79357f85-973d-4621-b1bd-d1ecb645e146"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-24T00:04:10.5243862Z","updatedOn":"2020-09-24T00:04:10.5243862Z","createdBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","updatedBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78586b2c-fdf9-11ea-9e5e-8851fb3f4911","type":"Microsoft.Authorization/roleAssignments","name":"78586b2c-fdf9-11ea-9e5e-8851fb3f4911"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-29T10:55:39.3762731Z","updatedOn":"2020-09-29T10:55:39.3762731Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41e159ac-411a-4eed-b319-5b92571d2950","type":"Microsoft.Authorization/roleAssignments","name":"41e159ac-411a-4eed-b319-5b92571d2950"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-06T00:33:22.8792900Z","updatedOn":"2020-10-06T00:33:22.8792900Z","createdBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","updatedBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24d0c5e6-0763-11eb-82a0-d636039e345c","type":"Microsoft.Authorization/roleAssignments","name":"24d0c5e6-0763-11eb-82a0-d636039e345c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-14T00:29:42.9981174Z","updatedOn":"2020-10-14T00:29:42.9981174Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6af4ef5-80f6-4303-a641-45689a1646dc","type":"Microsoft.Authorization/roleAssignments","name":"c6af4ef5-80f6-4303-a641-45689a1646dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-16T16:42:17.7175670Z","updatedOn":"2020-10-16T16:42:17.7175670Z","createdBy":"d69d1d49-5dc8-4c8e-afb6-325d83ddcee8","updatedBy":"d69d1d49-5dc8-4c8e-afb6-325d83ddcee8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5854c7a2-cf00-46f9-9cc1-d977f34324df","type":"Microsoft.Authorization/roleAssignments","name":"5854c7a2-cf00-46f9-9cc1-d977f34324df"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-02T09:02:29.2637630Z","updatedOn":"2020-11-02T09:02:29.2637630Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ad1faa8-8680-4dec-a768-050e8349af33","type":"Microsoft.Authorization/roleAssignments","name":"0ad1faa8-8680-4dec-a768-050e8349af33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-03T22:00:44.4523883Z","updatedOn":"2020-11-03T22:00:44.4523883Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/908aa5ac-22a2-413a-9333-fcb0a1ba2c59","type":"Microsoft.Authorization/roleAssignments","name":"908aa5ac-22a2-413a-9333-fcb0a1ba2c59"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-09T14:00:59.0347294Z","updatedOn":"2020-11-09T14:00:59.0347294Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9541f93-ea4a-4b1b-98bf-839fecfcaa22","type":"Microsoft.Authorization/roleAssignments","name":"e9541f93-ea4a-4b1b-98bf-839fecfcaa22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-18T08:00:24.9874024Z","updatedOn":"2020-12-18T08:00:24.9874024Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f60817e-27b5-486b-bbdb-b748bcb752d4","type":"Microsoft.Authorization/roleAssignments","name":"7f60817e-27b5-486b-bbdb-b748bcb752d4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-30T11:06:51.2887287Z","updatedOn":"2020-12-30T11:06:51.2887287Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1cbe1756-4a8f-11eb-b753-720008210d90","type":"Microsoft.Authorization/roleAssignments","name":"1cbe1756-4a8f-11eb-b753-720008210d90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-01-13T06:12:19.1847916Z","updatedOn":"2021-01-13T06:12:19.1847916Z","createdBy":"241cd743-2c33-4860-bd3a-1df659c06eef","updatedBy":"241cd743-2c33-4860-bd3a-1df659c06eef","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/498bf4f6-5566-11eb-a35b-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"498bf4f6-5566-11eb-a35b-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-04T06:52:05.2038586Z","updatedOn":"2021-02-04T06:52:05.2038586Z","createdBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","updatedBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdf6a314-3605-4944-96c1-08b7364dba54","type":"Microsoft.Authorization/roleAssignments","name":"fdf6a314-3605-4944-96c1-08b7364dba54"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T00:37:53.4699042Z","updatedOn":"2021-02-17T00:37:53.4699042Z","createdBy":"e5ad6d43-d6ac-4061-84cc-f7cb826200a0","updatedBy":"e5ad6d43-d6ac-4061-84cc-f7cb826200a0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c06abb18-9697-41f9-9410-ff0ee9b13ab9","type":"Microsoft.Authorization/roleAssignments","name":"c06abb18-9697-41f9-9410-ff0ee9b13ab9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T01:26:55.0758483Z","updatedOn":"2021-02-17T01:26:55.0758483Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9812b416-33c9-4b88-bcdb-6b8406dd319f","type":"Microsoft.Authorization/roleAssignments","name":"9812b416-33c9-4b88-bcdb-6b8406dd319f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T01:38:17.8125104Z","updatedOn":"2021-02-17T01:38:17.8125104Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82e0c83f-b7dd-49f6-b501-ff05951db69d","type":"Microsoft.Authorization/roleAssignments","name":"82e0c83f-b7dd-49f6-b501-ff05951db69d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-19T01:25:51.9967288Z","updatedOn":"2021-02-19T01:25:51.9967288Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2e4ab306-7ae7-4867-8e22-90215bdbeb9a","type":"Microsoft.Authorization/roleAssignments","name":"2e4ab306-7ae7-4867-8e22-90215bdbeb9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-01T21:51:55.4255791Z","updatedOn":"2021-03-01T21:51:55.4255791Z","createdBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","updatedBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36175f2d-f556-464e-a509-19cbb3f45909","type":"Microsoft.Authorization/roleAssignments","name":"36175f2d-f556-464e-a509-19cbb3f45909"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-21T03:42:13.8891609Z","updatedOn":"2020-02-21T03:42:13.8891609Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c41b0416-12e4-49bb-9e35-411e4f409102","type":"Microsoft.Authorization/roleAssignments","name":"c41b0416-12e4-49bb-9e35-411e4f409102"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-22T07:53:45.7192431Z","updatedOn":"2020-04-22T07:53:45.7192431Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d01cbd3-f3e3-4712-95c6-cf07a0224887","type":"Microsoft.Authorization/roleAssignments","name":"0d01cbd3-f3e3-4712-95c6-cf07a0224887"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-30T06:27:35.9310363Z","updatedOn":"2020-04-30T06:27:35.9310363Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a1327e4-100e-43ee-b04e-1403969b805b","type":"Microsoft.Authorization/roleAssignments","name":"6a1327e4-100e-43ee-b04e-1403969b805b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-06-13T06:44:49.9960198Z","updatedOn":"2019-06-13T06:44:49.9960198Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33958269-41a0-400a-91a1-6303d954c8f0","type":"Microsoft.Authorization/roleAssignments","name":"33958269-41a0-400a-91a1-6303d954c8f0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-16T02:04:22.4782415Z","updatedOn":"2019-04-16T02:04:22.4782415Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bacdb283-653c-47eb-a578-11743d7898f8","type":"Microsoft.Authorization/roleAssignments","name":"bacdb283-653c-47eb-a578-11743d7898f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-27T09:09:33.7347978Z","updatedOn":"2020-03-27T09:09:33.7347978Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d355b17-e9d6-47b7-9181-b54ad0083793","type":"Microsoft.Authorization/roleAssignments","name":"6d355b17-e9d6-47b7-9181-b54ad0083793"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-19T02:50:30.0038186Z","updatedOn":"2019-03-19T02:50:30.0038186Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26adec15-a0e4-4b2e-a437-9b545b9723fc","type":"Microsoft.Authorization/roleAssignments","name":"26adec15-a0e4-4b2e-a437-9b545b9723fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-17T00:50:00.2288905Z","updatedOn":"2019-04-17T00:50:00.2288905Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e873fd7-4bdb-4df5-a510-c15f3ce99cd6","type":"Microsoft.Authorization/roleAssignments","name":"0e873fd7-4bdb-4df5-a510-c15f3ce99cd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-08T07:40:31.7235048Z","updatedOn":"2020-05-08T07:40:31.7235048Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbfa0c0c-2653-4fb8-b9e5-d41bd96053a7","type":"Microsoft.Authorization/roleAssignments","name":"cbfa0c0c-2653-4fb8-b9e5-d41bd96053a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-15T22:27:15.6601349Z","updatedOn":"2018-11-15T22:27:15.6601349Z","createdBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","updatedBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/418847ec-df97-4b29-9711-fc833817e5d6","type":"Microsoft.Authorization/roleAssignments","name":"418847ec-df97-4b29-9711-fc833817e5d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-28T14:20:52.7506898Z","updatedOn":"2019-08-28T14:20:52.7506898Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/715fd118-93b8-4b09-822d-48de5afb21e3","type":"Microsoft.Authorization/roleAssignments","name":"715fd118-93b8-4b09-822d-48de5afb21e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-06T05:22:04.7673784Z","updatedOn":"2019-01-06T05:22:04.7673784Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba5c8600-8cc9-4778-9735-c3d57d26e50d","type":"Microsoft.Authorization/roleAssignments","name":"ba5c8600-8cc9-4778-9735-c3d57d26e50d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-02T16:21:28.6789246Z","updatedOn":"2020-06-02T16:21:28.6789246Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd6bf5d5-fc1c-4fcd-81f3-0d11d3ff9f42","type":"Microsoft.Authorization/roleAssignments","name":"bd6bf5d5-fc1c-4fcd-81f3-0d11d3ff9f42"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-20T08:42:00.9560545Z","updatedOn":"2020-04-20T08:42:00.9560545Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a41b62f-97d4-4f4c-8bfc-4a8dd708e00f","type":"Microsoft.Authorization/roleAssignments","name":"7a41b62f-97d4-4f4c-8bfc-4a8dd708e00f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-23T03:10:28.2381030Z","updatedOn":"2020-04-23T03:10:28.2381030Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f98d1512-e634-4663-a219-24be2e6bfe1c","type":"Microsoft.Authorization/roleAssignments","name":"f98d1512-e634-4663-a219-24be2e6bfe1c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-15T02:06:03.3308352Z","updatedOn":"2020-04-15T02:06:03.3308352Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6142150e-c404-48e6-a731-fffb36357051","type":"Microsoft.Authorization/roleAssignments","name":"6142150e-c404-48e6-a731-fffb36357051"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-16T23:46:13.9660279Z","updatedOn":"2018-11-16T23:46:13.9660279Z","createdBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","updatedBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b66b1ea-89dd-4bc6-8d89-96298648eb40","type":"Microsoft.Authorization/roleAssignments","name":"2b66b1ea-89dd-4bc6-8d89-96298648eb40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-31T01:55:23.5911140Z","updatedOn":"2019-01-31T01:55:23.5911140Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3359123d-b5f7-48d6-a1e7-ad77b7ef6b7f","type":"Microsoft.Authorization/roleAssignments","name":"3359123d-b5f7-48d6-a1e7-ad77b7ef6b7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-10-27T00:03:26.2878499Z","updatedOn":"2018-10-27T00:03:26.2878499Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea920230-1aba-4f80-9eef-3fed8216f594","type":"Microsoft.Authorization/roleAssignments","name":"ea920230-1aba-4f80-9eef-3fed8216f594"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-03T09:55:40.2829720Z","updatedOn":"2020-04-03T09:55:40.2829720Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9c2a551-11aa-4b0a-8816-f8511cd46a32","type":"Microsoft.Authorization/roleAssignments","name":"c9c2a551-11aa-4b0a-8816-f8511cd46a32"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-26T21:10:42.2124416Z","updatedOn":"2020-03-26T21:10:42.2124416Z","createdBy":"50ee185f-0eb1-4577-ae14-4ecf59cfa8f7","updatedBy":"50ee185f-0eb1-4577-ae14-4ecf59cfa8f7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d394da6c-4def-47de-8689-791727331c5b","type":"Microsoft.Authorization/roleAssignments","name":"d394da6c-4def-47de-8689-791727331c5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-21T07:34:50.7125622Z","updatedOn":"2020-04-21T07:34:50.7125622Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddeb2255-2bb6-458a-a891-532e96ae5483","type":"Microsoft.Authorization/roleAssignments","name":"ddeb2255-2bb6-458a-a891-532e96ae5483"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-23T04:07:45.3308845Z","updatedOn":"2020-06-23T04:07:45.3308845Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15d1dab1-b507-11ea-819c-a28e10bedef6","type":"Microsoft.Authorization/roleAssignments","name":"15d1dab1-b507-11ea-819c-a28e10bedef6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-13T00:09:08.8179220Z","updatedOn":"2020-05-13T00:09:08.8179220Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/08a578f0-4875-47d0-8775-946b3a0f2b06","type":"Microsoft.Authorization/roleAssignments","name":"08a578f0-4875-47d0-8775-946b3a0f2b06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-10T23:15:46.8549700Z","updatedOn":"2020-05-10T23:15:46.8549700Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22d3da65-7681-445e-9080-e748e494676f","type":"Microsoft.Authorization/roleAssignments","name":"22d3da65-7681-445e-9080-e748e494676f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-29T13:30:14.1177711Z","updatedOn":"2019-08-29T13:30:14.1177711Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a2c1014-c1ba-4ae9-a632-90967c28429d","type":"Microsoft.Authorization/roleAssignments","name":"4a2c1014-c1ba-4ae9-a632-90967c28429d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-27T01:26:21.7189691Z","updatedOn":"2020-02-27T01:26:21.7189691Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28808064-5900-11ea-81c8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"28808064-5900-11ea-81c8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-30T19:30:49.2769608Z","updatedOn":"2019-01-30T19:30:49.2769608Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/310957e5-5722-42e0-95b6-5bc6c6b67f16","type":"Microsoft.Authorization/roleAssignments","name":"310957e5-5722-42e0-95b6-5bc6c6b67f16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-03T01:05:25.8863198Z","updatedOn":"2020-07-03T01:05:25.8863198Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46877403-bcc9-11ea-924f-00155d871f03","type":"Microsoft.Authorization/roleAssignments","name":"46877403-bcc9-11ea-924f-00155d871f03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-28T19:57:23.3708745Z","updatedOn":"2019-03-28T19:57:23.3708745Z","createdBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","updatedBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc796cab-2f6b-4099-b9a3-7500f5516153","type":"Microsoft.Authorization/roleAssignments","name":"cc796cab-2f6b-4099-b9a3-7500f5516153"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-30T22:56:44.9793119Z","updatedOn":"2020-03-30T22:56:44.9793119Z","createdBy":"53bb8815-874d-4b05-9953-1158e05aa080","updatedBy":"53bb8815-874d-4b05-9953-1158e05aa080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/000ea275-41c4-40ce-943f-98a8849a56bc","type":"Microsoft.Authorization/roleAssignments","name":"000ea275-41c4-40ce-943f-98a8849a56bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-10T01:13:53.0806696Z","updatedOn":"2020-06-10T01:13:53.0806696Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a584fad9-aab7-11ea-b7e7-00155d4b0124","type":"Microsoft.Authorization/roleAssignments","name":"a584fad9-aab7-11ea-b7e7-00155d4b0124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-09-20T20:32:24.1155446Z","updatedOn":"2019-09-20T20:32:24.1155446Z","createdBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","updatedBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c1a9a09e-eafe-4c97-b589-a8261ee04099","type":"Microsoft.Authorization/roleAssignments","name":"c1a9a09e-eafe-4c97-b589-a8261ee04099"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-12T00:23:23.9037436Z","updatedOn":"2020-05-12T00:23:23.9037436Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ff95229-981f-40d7-889f-97bc90b8f387","type":"Microsoft.Authorization/roleAssignments","name":"6ff95229-981f-40d7-889f-97bc90b8f387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-09T00:52:52.1315983Z","updatedOn":"2020-06-09T00:52:52.1315983Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7512dec1-86e5-400d-8bc9-f24f181127f3","type":"Microsoft.Authorization/roleAssignments","name":"7512dec1-86e5-400d-8bc9-f24f181127f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-19T04:20:34.3557776Z","updatedOn":"2019-04-19T04:20:34.3557776Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/092a238c-94af-4fca-bd4a-bb4995ea58db","type":"Microsoft.Authorization/roleAssignments","name":"092a238c-94af-4fca-bd4a-bb4995ea58db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-14T04:03:23.9185561Z","updatedOn":"2020-04-14T04:03:23.9185561Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f0f495d-0356-4239-b966-3f47f5f1054a","type":"Microsoft.Authorization/roleAssignments","name":"0f0f495d-0356-4239-b966-3f47f5f1054a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-14T00:42:59.8868253Z","updatedOn":"2020-05-14T00:42:59.8868253Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b3c8d44-237c-410c-a095-52ded7f5cd26","type":"Microsoft.Authorization/roleAssignments","name":"6b3c8d44-237c-410c-a095-52ded7f5cd26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-11T13:26:01.9493491Z","updatedOn":"2020-02-11T13:26:01.9493491Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8fab1ba3-53c2-4b21-9d32-dc89fd061811","type":"Microsoft.Authorization/roleAssignments","name":"8fab1ba3-53c2-4b21-9d32-dc89fd061811"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-03T05:34:39.2163770Z","updatedOn":"2020-04-03T05:34:39.2163770Z","createdBy":"ed4707f4-8b58-42fe-9afd-0045d7a9b262","updatedBy":"ed4707f4-8b58-42fe-9afd-0045d7a9b262","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e4edc2a-dd1f-469b-9a44-f0693866b843","type":"Microsoft.Authorization/roleAssignments","name":"8e4edc2a-dd1f-469b-9a44-f0693866b843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-20T19:40:09.1141460Z","updatedOn":"2020-02-20T19:40:09.1141460Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4673bf4-97da-4102-9284-2a7315b88a34","type":"Microsoft.Authorization/roleAssignments","name":"d4673bf4-97da-4102-9284-2a7315b88a34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-21T07:19:44.2488168Z","updatedOn":"2020-04-21T07:19:44.2488168Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fadbe071-d757-48fc-b82a-4784249ded10","type":"Microsoft.Authorization/roleAssignments","name":"fadbe071-d757-48fc-b82a-4784249ded10"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-12T17:29:23.0437979Z","updatedOn":"2019-03-12T17:29:23.0437979Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7e76154-c2a7-4419-b73f-e8c6010318c9","type":"Microsoft.Authorization/roleAssignments","name":"a7e76154-c2a7-4419-b73f-e8c6010318c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-16T23:29:48.3209681Z","updatedOn":"2020-03-16T23:29:48.3209681Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3eb4155b-2965-456b-8f00-bca8a13b1684","type":"Microsoft.Authorization/roleAssignments","name":"3eb4155b-2965-456b-8f00-bca8a13b1684"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-05T14:05:58.2716050Z","updatedOn":"2021-04-05T14:05:58.2716050Z","createdBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","updatedBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a9b0e6a-9618-11eb-879a-88e9fe77e044","type":"Microsoft.Authorization/roleAssignments","name":"0a9b0e6a-9618-11eb-879a-88e9fe77e044"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-05T17:37:43.7040494Z","updatedOn":"2021-04-05T17:37:43.7040494Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a04b0948-9635-11eb-b395-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"a04b0948-9635-11eb-b395-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T02:24:39.3826587Z","updatedOn":"2021-04-06T02:24:39.3826587Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c21611b-a840-4166-b9f4-8cec90c17841","type":"Microsoft.Authorization/roleAssignments","name":"6c21611b-a840-4166-b9f4-8cec90c17841"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T02:24:39.4154930Z","updatedOn":"2021-04-06T02:24:39.4154930Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/925d4876-8fde-4334-8f84-4ce52ca7108e","type":"Microsoft.Authorization/roleAssignments","name":"925d4876-8fde-4334-8f84-4ce52ca7108e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T04:46:32.1029699Z","updatedOn":"2021-04-06T04:46:32.1029699Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0dfdb837-9693-11eb-b629-b6178ece78ec","type":"Microsoft.Authorization/roleAssignments","name":"0dfdb837-9693-11eb-b629-b6178ece78ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T11:25:43.5702772Z","updatedOn":"2021-04-06T11:25:43.5702772Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/958a1320-4346-46fb-9722-828af239eb03","type":"Microsoft.Authorization/roleAssignments","name":"958a1320-4346-46fb-9722-828af239eb03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T20:54:21.5921112Z","updatedOn":"2021-04-06T20:54:21.5921112Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42ad5638-971a-11eb-abf6-00155d3a4c00","type":"Microsoft.Authorization/roleAssignments","name":"42ad5638-971a-11eb-abf6-00155d3a4c00"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T23:22:50.4425724Z","updatedOn":"2021-04-06T23:22:50.4425724Z","createdBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","updatedBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00a90f2a-972f-11eb-9121-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"00a90f2a-972f-11eb-9121-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T00:26:49.7250016Z","updatedOn":"2021-04-07T00:26:49.7250016Z","createdBy":"88f18750-8181-4579-8eff-eb44f510655c","updatedBy":"88f18750-8181-4579-8eff-eb44f510655c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dca2df37-fdd1-49dc-a1de-31a70d62e098","type":"Microsoft.Authorization/roleAssignments","name":"dca2df37-fdd1-49dc-a1de-31a70d62e098"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T09:10:47.4905668Z","updatedOn":"2021-04-07T09:10:47.4905668Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a5dbdef-0896-48cd-a325-318e807ea133","type":"Microsoft.Authorization/roleAssignments","name":"8a5dbdef-0896-48cd-a325-318e807ea133"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T19:55:01.1984055Z","updatedOn":"2021-04-07T19:55:01.1984055Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2301d942-97db-11eb-8bf8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2301d942-97db-11eb-8bf8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T22:36:06.7954601Z","updatedOn":"2021-04-07T22:36:06.7954601Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6070c7de-7571-4d55-8b2f-85285b7d9675","type":"Microsoft.Authorization/roleAssignments","name":"6070c7de-7571-4d55-8b2f-85285b7d9675"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-13T03:07:16.5183912Z","updatedOn":"2021-04-13T03:07:16.5183912Z","createdBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","updatedBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59402850-9c05-11eb-8744-20c9d0477c8f","type":"Microsoft.Authorization/roleAssignments","name":"59402850-9c05-11eb-8744-20c9d0477c8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-14T19:16:13.6465266Z","updatedOn":"2021-04-14T19:16:13.6465266Z","createdBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","updatedBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e04efa46-9d55-11eb-9723-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e04efa46-9d55-11eb-9723-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-15T02:29:06.6768532Z","updatedOn":"2021-04-15T02:29:06.6768532Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/19165f29-858f-47fa-befe-cd1babe9df75","type":"Microsoft.Authorization/roleAssignments","name":"19165f29-858f-47fa-befe-cd1babe9df75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-19T08:59:20.4071341Z","updatedOn":"2021-04-19T08:59:20.4071341Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88489205-a0ed-11eb-996c-1a21256cebfc","type":"Microsoft.Authorization/roleAssignments","name":"88489205-a0ed-11eb-996c-1a21256cebfc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-19T22:35:57.5324093Z","updatedOn":"2021-04-19T22:35:57.5324093Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b85c442-a15f-11eb-8a7c-00155d871f03","type":"Microsoft.Authorization/roleAssignments","name":"9b85c442-a15f-11eb-8a7c-00155d871f03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-21T12:31:21.7286225Z","updatedOn":"2021-04-21T12:31:21.7286225Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7770db7c-a29d-11eb-b48f-42472d33150a","type":"Microsoft.Authorization/roleAssignments","name":"7770db7c-a29d-11eb-b48f-42472d33150a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-11T02:49:35.7701861Z","updatedOn":"2021-05-11T02:49:35.7701861Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83c25ed3-b203-11eb-8150-56db513b8477","type":"Microsoft.Authorization/roleAssignments","name":"83c25ed3-b203-11eb-8150-56db513b8477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-12T06:15:49.6202169Z","updatedOn":"2021-05-12T06:15:49.6202169Z","createdBy":"069015af-8ac7-4304-a60f-69a8a50309be","updatedBy":"069015af-8ac7-4304-a60f-69a8a50309be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ecced22-b2e9-11eb-bdc4-da23ac480b85","type":"Microsoft.Authorization/roleAssignments","name":"7ecced22-b2e9-11eb-bdc4-da23ac480b85"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-18T02:08:43.3533001Z","updatedOn":"2021-05-18T02:08:43.3533001Z","createdBy":"069015af-8ac7-4304-a60f-69a8a50309be","updatedBy":"069015af-8ac7-4304-a60f-69a8a50309be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8582f67-b77d-11eb-bffb-52ac6a27ca65","type":"Microsoft.Authorization/roleAssignments","name":"f8582f67-b77d-11eb-bffb-52ac6a27ca65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-24T05:29:46.7966317Z","updatedOn":"2021-05-24T05:29:46.7966317Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d7389dd2-ee8e-4d34-8703-b304716b1761","type":"Microsoft.Authorization/roleAssignments","name":"d7389dd2-ee8e-4d34-8703-b304716b1761"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-26T10:05:55.6707947Z","updatedOn":"2021-05-26T10:05:55.6707947Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d540fa09-24f4-4f08-a9f2-10f69de7bd62","type":"Microsoft.Authorization/roleAssignments","name":"d540fa09-24f4-4f08-a9f2-10f69de7bd62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-01T09:38:20.8655603Z","updatedOn":"2021-06-01T09:38:20.8655603Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18455841-c2bd-11eb-80b3-9a0a2a9b0ea3","type":"Microsoft.Authorization/roleAssignments","name":"18455841-c2bd-11eb-80b3-9a0a2a9b0ea3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-03T16:55:35.8333154Z","updatedOn":"2021-06-03T16:55:35.8333154Z","createdBy":"ae4622a7-bde9-4bca-9599-2d18571bfeba","updatedBy":"ae4622a7-bde9-4bca-9599-2d18571bfeba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83e4c5e8-c48c-11eb-b991-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"83e4c5e8-c48c-11eb-b991-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-07T22:29:50.4448757Z","updatedOn":"2021-06-07T22:29:50.4448757Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/decef2d4-c7df-11eb-a83e-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"decef2d4-c7df-11eb-a83e-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-08T21:20:41.4426747Z","updatedOn":"2021-06-08T21:20:41.4426747Z","createdBy":"39fc5957-4b28-4245-a1ca-0c05574dd32b","updatedBy":"39fc5957-4b28-4245-a1ca-0c05574dd32b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/607bf63e-c89f-11eb-8348-eecc6a504bf0","type":"Microsoft.Authorization/roleAssignments","name":"607bf63e-c89f-11eb-8348-eecc6a504bf0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T14:35:18.7357331Z","updatedOn":"2021-06-15T14:35:18.7357331Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1151242-c950-413d-a273-4109579eac8a","type":"Microsoft.Authorization/roleAssignments","name":"b1151242-c950-413d-a273-4109579eac8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T14:35:18.7937546Z","updatedOn":"2021-06-15T14:35:18.7937546Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dc21aa69-a99c-435e-a256-64885b24ec34","type":"Microsoft.Authorization/roleAssignments","name":"dc21aa69-a99c-435e-a256-64885b24ec34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T15:23:52.9337722Z","updatedOn":"2021-06-15T15:23:52.9337722Z","createdBy":"1faabf99-27a1-4d2e-9e28-295923ee7a14","updatedBy":"1faabf99-27a1-4d2e-9e28-295923ee7a14","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1f9ad80-cded-11eb-81da-86d728f15930","type":"Microsoft.Authorization/roleAssignments","name":"b1f9ad80-cded-11eb-81da-86d728f15930"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-24T01:15:20.6480687Z","updatedOn":"2021-06-24T01:15:20.6480687Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3fe463a-d489-11eb-bcf6-88e9fe77d9d9","type":"Microsoft.Authorization/roleAssignments","name":"a3fe463a-d489-11eb-bcf6-88e9fe77d9d9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T00:02:18.3011415Z","updatedOn":"2021-06-29T00:02:18.3011415Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ba1c6ba-8f43-4749-9af5-b852adc24ec4","type":"Microsoft.Authorization/roleAssignments","name":"6ba1c6ba-8f43-4749-9af5-b852adc24ec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T00:02:18.3104039Z","updatedOn":"2021-06-29T00:02:18.3104039Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1b67008-79aa-4059-a618-9f31a59e17ad","type":"Microsoft.Authorization/roleAssignments","name":"f1b67008-79aa-4059-a618-9f31a59e17ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T03:26:28.3273724Z","updatedOn":"2021-06-29T03:26:28.3273724Z","createdBy":"5dc8b685-8bb3-4140-b266-34da5be22de8","updatedBy":"5dc8b685-8bb3-4140-b266-34da5be22de8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cacd20e2-d889-11eb-8faf-365b90995dcc","type":"Microsoft.Authorization/roleAssignments","name":"cacd20e2-d889-11eb-8faf-365b90995dcc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T16:47:51.6512150Z","updatedOn":"2021-07-02T16:47:51.6512150Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ce776fa-db55-11eb-9c3e-0ee0ced9a7ad","type":"Microsoft.Authorization/roleAssignments","name":"3ce776fa-db55-11eb-9c3e-0ee0ced9a7ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T18:02:58.7913777Z","updatedOn":"2021-07-02T18:02:58.7913777Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb92467e-db5f-11eb-93bb-52bfc6c4d939","type":"Microsoft.Authorization/roleAssignments","name":"bb92467e-db5f-11eb-93bb-52bfc6c4d939"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T18:34:50.6034803Z","updatedOn":"2021-07-02T18:34:50.6034803Z","createdBy":"88f18750-8181-4579-8eff-eb44f510655c","updatedBy":"88f18750-8181-4579-8eff-eb44f510655c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e537d7a-5a2e-419c-8c51-0f55adab0793","type":"Microsoft.Authorization/roleAssignments","name":"4e537d7a-5a2e-419c-8c51-0f55adab0793"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-12T18:22:41.0622548Z","updatedOn":"2021-07-12T18:22:41.0622548Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a840989-f344-4bca-97c4-0f91fa1537c6","type":"Microsoft.Authorization/roleAssignments","name":"0a840989-f344-4bca-97c4-0f91fa1537c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-14T19:03:30.7799600Z","updatedOn":"2021-07-14T19:03:30.7799600Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d4385bd-e4d6-11eb-9e75-0a4737195831","type":"Microsoft.Authorization/roleAssignments","name":"2d4385bd-e4d6-11eb-9e75-0a4737195831"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-26T03:44:43.4505353Z","updatedOn":"2021-07-26T03:44:43.4505353Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79b52c96-edc4-11eb-8bd7-1e3bd0e19ace","type":"Microsoft.Authorization/roleAssignments","name":"79b52c96-edc4-11eb-8bd7-1e3bd0e19ace"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-28T21:04:39.7105526Z","updatedOn":"2021-07-28T21:04:39.7105526Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b9c8936-efe7-11eb-9484-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6b9c8936-efe7-11eb-9484-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-04T02:14:38.2049441Z","updatedOn":"2021-08-04T02:14:38.2049441Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b8013ec0-f4c9-11eb-999a-000d3a4fc0a9","type":"Microsoft.Authorization/roleAssignments","name":"b8013ec0-f4c9-11eb-999a-000d3a4fc0a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3c35f4c-e0ca-4b9e-a01e-5ebdd17e2ee7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-04T18:45:22.7030533Z","updatedOn":"2021-08-04T18:45:22.7030533Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b007f9b6-e259-4c24-b8f1-4b74e434b776","type":"Microsoft.Authorization/roleAssignments","name":"b007f9b6-e259-4c24-b8f1-4b74e434b776"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-10T18:57:36.3877809Z","updatedOn":"2021-08-10T18:57:36.3877809Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d31d5edd-fa0c-11eb-a4e8-00155d4b0124","type":"Microsoft.Authorization/roleAssignments","name":"d31d5edd-fa0c-11eb-a4e8-00155d4b0124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-11T13:17:28.5790828Z","updatedOn":"2021-08-11T13:17:28.5790828Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79c9ac4e-faa6-11eb-9265-9e748a6ca3f5","type":"Microsoft.Authorization/roleAssignments","name":"79c9ac4e-faa6-11eb-9265-9e748a6ca3f5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T20:40:36.9427810Z","updatedOn":"2021-08-24T20:40:36.9427810Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89077b4a-051b-11ec-b690-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"89077b4a-051b-11ec-b690-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-25T04:55:32.8103400Z","updatedOn":"2021-08-25T04:55:32.8103400Z","createdBy":"d8f2c3f8-41bf-41ae-aedb-23c9387322a8","updatedBy":"d8f2c3f8-41bf-41ae-aedb-23c9387322a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad278da4-0560-11ec-bfcc-00249b623abd","type":"Microsoft.Authorization/roleAssignments","name":"ad278da4-0560-11ec-bfcc-00249b623abd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-31T23:45:51.8536519Z","updatedOn":"2021-08-31T23:45:51.8536519Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92d8ca73-0ab5-11ec-9a80-00224809727f","type":"Microsoft.Authorization/roleAssignments","name":"92d8ca73-0ab5-11ec-9a80-00224809727f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-13T19:32:31.3713301Z","updatedOn":"2021-09-13T19:32:31.3713301Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55fb0a56-14c9-11ec-ba1a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"55fb0a56-14c9-11ec-ba1a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-17T20:45:08.1118919Z","updatedOn":"2021-09-17T20:45:08.1118919Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/246a4240-17f8-11ec-a87c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"246a4240-17f8-11ec-a87c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T13:55:46.1211332Z","updatedOn":"2021-09-20T13:55:46.1211332Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/738cb0ee-1a1a-11ec-bce5-7a98cea1d963","type":"Microsoft.Authorization/roleAssignments","name":"738cb0ee-1a1a-11ec-bce5-7a98cea1d963"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T16:02:49.0433199Z","updatedOn":"2021-09-20T16:02:49.0433199Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/332824b6-1a2c-11ec-94e6-dadb5e134e96","type":"Microsoft.Authorization/roleAssignments","name":"332824b6-1a2c-11ec-94e6-dadb5e134e96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T18:45:44.1610490Z","updatedOn":"2021-09-20T18:45:44.1610490Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5aacbbc-1a42-11ec-82e7-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f5aacbbc-1a42-11ec-82e7-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-23T14:26:16.9983531Z","updatedOn":"2021-09-23T14:26:16.9983531Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35e02c16-1c7a-11ec-aba5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"35e02c16-1c7a-11ec-aba5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-29T01:26:50.3419658Z","updatedOn":"2021-09-29T01:26:50.3419658Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47eee8e3-89cd-4112-86a8-19f848334dd1","type":"Microsoft.Authorization/roleAssignments","name":"47eee8e3-89cd-4112-86a8-19f848334dd1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-04T20:39:52.4258668Z","updatedOn":"2021-10-04T20:39:52.4258668Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/395b589c-2553-11ec-8d77-000d3af95835","type":"Microsoft.Authorization/roleAssignments","name":"395b589c-2553-11ec-8d77-000d3af95835"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T22:03:00.0914961Z","updatedOn":"2021-10-07T22:03:00.0914961Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/554cbdbb-27ba-11ec-9441-ba8d312253c4","type":"Microsoft.Authorization/roleAssignments","name":"554cbdbb-27ba-11ec-9441-ba8d312253c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T22:03:56.3285135Z","updatedOn":"2021-10-07T22:03:56.3285135Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/76aa862c-27ba-11ec-a4ef-ba8d312253c4","type":"Microsoft.Authorization/roleAssignments","name":"76aa862c-27ba-11ec-a4ef-ba8d312253c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T18:53:10.3503826Z","updatedOn":"2021-10-08T18:53:10.3503826Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9510e6f-d37b-4ce8-8a3b-78e5447b11c4","type":"Microsoft.Authorization/roleAssignments","name":"d9510e6f-d37b-4ce8-8a3b-78e5447b11c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T18:59:59.4287762Z","updatedOn":"2021-10-08T18:59:59.4287762Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d1a6d17-6c0a-4105-b86a-dcc55fe735e7","type":"Microsoft.Authorization/roleAssignments","name":"3d1a6d17-6c0a-4105-b86a-dcc55fe735e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-11T22:29:20.4165411Z","updatedOn":"2021-10-11T22:29:20.4165411Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5b65050-4b50-4b02-bea3-5986eccdd944","type":"Microsoft.Authorization/roleAssignments","name":"b5b65050-4b50-4b02-bea3-5986eccdd944"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-12T02:26:39.4717201Z","updatedOn":"2021-10-12T02:26:39.4717201Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4977775a-1c56-492e-8a5b-5fd0c7b18893","type":"Microsoft.Authorization/roleAssignments","name":"4977775a-1c56-492e-8a5b-5fd0c7b18893"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-12T21:09:25.3258237Z","updatedOn":"2021-10-12T21:09:25.3258237Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/869d24c2-b6b1-4a26-9b9c-c50ecb64bc31","type":"Microsoft.Authorization/roleAssignments","name":"869d24c2-b6b1-4a26-9b9c-c50ecb64bc31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-13T08:19:03.1448099Z","updatedOn":"2021-10-13T08:19:03.1448099Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8869be9-f94e-47ae-90cb-c4d9bcb5b629","type":"Microsoft.Authorization/roleAssignments","name":"f8869be9-f94e-47ae-90cb-c4d9bcb5b629"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T04:53:25.9502873Z","updatedOn":"2021-10-14T04:53:36.3280652Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f622c27f-a03d-4fb8-b17d-7281dc0a984f","type":"Microsoft.Authorization/roleAssignments","name":"f622c27f-a03d-4fb8-b17d-7281dc0a984f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:26:21.6452814Z","updatedOn":"2021-10-14T05:26:21.6452814Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/439e7a28-2caf-11ec-ae23-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"439e7a28-2caf-11ec-ae23-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:54.7980840Z","updatedOn":"2021-10-14T05:37:54.7980840Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e049894b-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e049894b-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:56.1220463Z","updatedOn":"2021-10-14T05:37:56.1220463Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1920687-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e1920687-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:58.2164501Z","updatedOn":"2021-10-14T05:37:58.2164501Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2809f7d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e2809f7d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:00.1774570Z","updatedOn":"2021-10-14T05:38:00.1774570Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3b78568-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e3b78568-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:01.6914375Z","updatedOn":"2021-10-14T05:38:01.6914375Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4e3f0fc-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e4e3f0fc-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:03.1856045Z","updatedOn":"2021-10-14T05:38:03.1856045Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e5c7c168-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e5c7c168-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:04.4121266Z","updatedOn":"2021-10-14T05:38:04.4121266Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e6847f02-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e6847f02-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:05.9623251Z","updatedOn":"2021-10-14T05:38:05.9623251Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7681b77-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e7681b77-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:07.5974823Z","updatedOn":"2021-10-14T05:38:07.5974823Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e82df158-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e82df158-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:09.3591403Z","updatedOn":"2021-10-14T05:38:09.3591403Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e94e3dd9-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e94e3dd9-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:11.1652349Z","updatedOn":"2021-10-14T05:38:11.1652349Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea5dbe0d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"ea5dbe0d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:12.6474393Z","updatedOn":"2021-10-14T05:38:12.6474393Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb6e896d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"eb6e896d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:15.1702403Z","updatedOn":"2021-10-14T05:38:15.1702403Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eceee9a0-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"eceee9a0-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T06:22:44.8991960Z","updatedOn":"2021-10-14T06:22:44.8991960Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2447d2a2-2cb7-11ec-91be-00224878e942","type":"Microsoft.Authorization/roleAssignments","name":"2447d2a2-2cb7-11ec-91be-00224878e942"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T06:22:46.4374928Z","updatedOn":"2021-10-14T06:22:46.4374928Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/251fc151-2cb7-11ec-91be-00224878e942","type":"Microsoft.Authorization/roleAssignments","name":"251fc151-2cb7-11ec-91be-00224878e942"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:33:15.8218562Z","updatedOn":"2021-10-14T07:33:15.8218562Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe04afe4-2cc0-11ec-81ff-0022487b1e92","type":"Microsoft.Authorization/roleAssignments","name":"fe04afe4-2cc0-11ec-81ff-0022487b1e92"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:18.3020716Z","updatedOn":"2021-10-14T07:59:18.3020716Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1518374-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a1518374-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:20.8876342Z","updatedOn":"2021-10-14T07:59:20.8876342Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a311df17-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a311df17-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:22.4477860Z","updatedOn":"2021-10-14T07:59:22.4477860Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3c5b71e-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a3c5b71e-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:23.1051657Z","updatedOn":"2021-10-14T08:07:23.1051657Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c227b3cc-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c227b3cc-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:23.5151178Z","updatedOn":"2021-10-14T08:07:23.5151178Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c29ac901-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c29ac901-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:25.7287942Z","updatedOn":"2021-10-14T08:07:25.7287942Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c40b5411-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c40b5411-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:27.2660976Z","updatedOn":"2021-10-14T08:07:27.2660976Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4cb6a30-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c4cb6a30-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:08:16.5190337Z","updatedOn":"2021-10-14T08:08:16.5190337Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e226a828-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"e226a828-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:08:17.7439429Z","updatedOn":"2021-10-14T08:08:17.7439429Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2e43f64-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"e2e43f64-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T09:12:04.1832243Z","updatedOn":"2021-10-14T09:12:04.1832243Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c9e442c-9d64-4022-9246-0c1c21af04be","type":"Microsoft.Authorization/roleAssignments","name":"5c9e442c-9d64-4022-9246-0c1c21af04be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T17:07:28.8635845Z","updatedOn":"2021-10-14T17:07:28.8635845Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed48d615-e7d8-4aef-90c7-332d7329e41c","type":"Microsoft.Authorization/roleAssignments","name":"ed48d615-e7d8-4aef-90c7-332d7329e41c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T18:16:37.9837987Z","updatedOn":"2021-10-14T18:16:37.9837987Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/debb0903-2d1a-11ec-a603-000d3a06aaec","type":"Microsoft.Authorization/roleAssignments","name":"debb0903-2d1a-11ec-a603-000d3a06aaec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T18:39:15.5366398Z","updatedOn":"2021-10-14T18:39:15.5366398Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07caa301-2d1e-11ec-a2ea-0022487748c3","type":"Microsoft.Authorization/roleAssignments","name":"07caa301-2d1e-11ec-a2ea-0022487748c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-15T17:37:53.7293023Z","updatedOn":"2021-10-15T17:37:53.7293023Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fbd09f2-2dde-11ec-b3e4-000d3a064a8a","type":"Microsoft.Authorization/roleAssignments","name":"9fbd09f2-2dde-11ec-b3e4-000d3a064a8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-18T06:22:38.4617338Z","updatedOn":"2021-10-18T06:22:38.4617338Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70844448-8be3-4c6f-9edf-443944f85a5a","type":"Microsoft.Authorization/roleAssignments","name":"70844448-8be3-4c6f-9edf-443944f85a5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-19T11:29:40.0474212Z","updatedOn":"2021-10-19T11:29:40.0474212Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d86e727f-30cf-11ec-bc8b-000d3ac2ec2b","type":"Microsoft.Authorization/roleAssignments","name":"d86e727f-30cf-11ec-bc8b-000d3ac2ec2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-19T15:23:21.2499478Z","updatedOn":"2021-10-19T15:23:21.2499478Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33f5a6ed-cebd-4589-b9d6-4a5ef2d7db2e","type":"Microsoft.Authorization/roleAssignments","name":"33f5a6ed-cebd-4589-b9d6-4a5ef2d7db2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-20T20:57:56.8996523Z","updatedOn":"2021-10-20T20:57:56.8996523Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66303328-31e8-11ec-99f4-000d3ac5c858","type":"Microsoft.Authorization/roleAssignments","name":"66303328-31e8-11ec-99f4-000d3ac5c858"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-21T15:12:00.0677049Z","updatedOn":"2021-10-21T15:12:00.0677049Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b630a77a-9e75-417f-b251-1584163d8926","type":"Microsoft.Authorization/roleAssignments","name":"b630a77a-9e75-417f-b251-1584163d8926"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-24T17:01:11.1413210Z","updatedOn":"2021-10-24T17:01:11.1413210Z","createdBy":"0d969ded-9dc4-4176-8b0f-5194740910bf","updatedBy":"0d969ded-9dc4-4176-8b0f-5194740910bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc196953-34eb-11ec-9f2c-f67edfc01c2b","type":"Microsoft.Authorization/roleAssignments","name":"fc196953-34eb-11ec-9f2c-f67edfc01c2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-25T21:32:26.0121360Z","updatedOn":"2021-10-25T21:32:26.0121360Z","createdBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","updatedBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b15fba8-35db-11ec-b404-8c8590c603ee","type":"Microsoft.Authorization/roleAssignments","name":"0b15fba8-35db-11ec-b404-8c8590c603ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T07:30:52.4116907Z","updatedOn":"2021-10-26T07:30:52.4116907Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e78ac58b-8cfe-4ff6-9ac6-41453615c7e8","type":"Microsoft.Authorization/roleAssignments","name":"e78ac58b-8cfe-4ff6-9ac6-41453615c7e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T13:47:01.3444676Z","updatedOn":"2021-10-26T13:47:01.3444676Z","createdBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","updatedBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4933f1cd-0863-4429-a5be-3a81b2f80105","type":"Microsoft.Authorization/roleAssignments","name":"4933f1cd-0863-4429-a5be-3a81b2f80105"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T20:43:39.1375235Z","updatedOn":"2021-10-26T20:43:39.1375235Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad8f56c5-19b6-4e9f-b20f-8e3789a93873","type":"Microsoft.Authorization/roleAssignments","name":"ad8f56c5-19b6-4e9f-b20f-8e3789a93873"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-27T01:02:05.1338691Z","updatedOn":"2021-10-27T01:02:05.1338691Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a83de9c2-2bd5-4ba1-bc50-08d475a290a0","type":"Microsoft.Authorization/roleAssignments","name":"a83de9c2-2bd5-4ba1-bc50-08d475a290a0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-28T00:14:34.9745357Z","updatedOn":"2021-10-28T00:14:34.9745357Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3366cd2-4d12-4dbb-b05d-5e914628e986","type":"Microsoft.Authorization/roleAssignments","name":"e3366cd2-4d12-4dbb-b05d-5e914628e986"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-02T23:39:52.9481031Z","updatedOn":"2021-11-02T23:39:52.9481031Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0e37c03-a8a7-4765-af41-9a8584ad6413","type":"Microsoft.Authorization/roleAssignments","name":"b0e37c03-a8a7-4765-af41-9a8584ad6413"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T15:46:17.8935538Z","updatedOn":"2021-11-03T15:46:17.8935538Z","createdBy":"","updatedBy":"","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5b0e8d6-e30f-42a5-918c-01299416da2c","type":"Microsoft.Authorization/roleAssignments","name":"b5b0e8d6-e30f-42a5-918c-01299416da2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T21:43:39.4750265Z","updatedOn":"2021-11-03T21:43:39.4750265Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/683b4375-f318-428e-a885-232a29ec8559","type":"Microsoft.Authorization/roleAssignments","name":"683b4375-f318-428e-a885-232a29ec8559"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T21:56:29.9810805Z","updatedOn":"2021-11-03T21:56:29.9810805Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e560c31c-8c6e-4bf0-9828-b2db658455b7","type":"Microsoft.Authorization/roleAssignments","name":"e560c31c-8c6e-4bf0-9828-b2db658455b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T06:06:21.8922666Z","updatedOn":"2021-11-04T06:06:21.8922666Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1dcc78b-03c3-4db3-95a8-643dbcbbf2a3","type":"Microsoft.Authorization/roleAssignments","name":"e1dcc78b-03c3-4db3-95a8-643dbcbbf2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T17:22:28.0293110Z","updatedOn":"2021-11-04T17:22:28.0293110Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84a6167f-c7d5-4404-b786-85fe4327c0ba","type":"Microsoft.Authorization/roleAssignments","name":"84a6167f-c7d5-4404-b786-85fe4327c0ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T17:24:51.0627597Z","updatedOn":"2021-11-04T17:24:51.0627597Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff23217-f8a8-4e77-baee-41850cfb5554","type":"Microsoft.Authorization/roleAssignments","name":"8ff23217-f8a8-4e77-baee-41850cfb5554"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-12T06:15:22.5918832Z","updatedOn":"2021-11-12T06:15:22.5918832Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88e1d00c-98e5-42b4-8dd0-e96ff5489dca","type":"Microsoft.Authorization/roleAssignments","name":"88e1d00c-98e5-42b4-8dd0-e96ff5489dca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T05:21:11.0446928Z","updatedOn":"2021-11-16T05:21:11.0446928Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d01bef88-e1fa-4fc2-bd98-6845063b53b9","type":"Microsoft.Authorization/roleAssignments","name":"d01bef88-e1fa-4fc2-bd98-6845063b53b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T05:22:06.5362889Z","updatedOn":"2021-11-16T05:22:06.5362889Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/784d9b03-5635-4c89-ae5b-5c11ceff8a4c","type":"Microsoft.Authorization/roleAssignments","name":"784d9b03-5635-4c89-ae5b-5c11ceff8a4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T06:25:33.3315777Z","updatedOn":"2021-11-16T06:25:33.3315777Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9c31b5d-d38d-4832-8fc5-10cdb23e4eec","type":"Microsoft.Authorization/roleAssignments","name":"c9c31b5d-d38d-4832-8fc5-10cdb23e4eec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T21:47:20.3762106Z","updatedOn":"2021-11-16T21:47:20.3762106Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/19b8a839-de9e-4712-a227-686679e98414","type":"Microsoft.Authorization/roleAssignments","name":"19b8a839-de9e-4712-a227-686679e98414"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T05:28:26.3873952Z","updatedOn":"2021-11-17T05:28:26.3873952Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a6cb292-435b-45d4-9f44-2dedb6f80804","type":"Microsoft.Authorization/roleAssignments","name":"4a6cb292-435b-45d4-9f44-2dedb6f80804"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T08:37:53.6375476Z","updatedOn":"2021-11-17T08:37:53.6375476Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7314a76-4781-11ec-9554-2eaf851e2751","type":"Microsoft.Authorization/roleAssignments","name":"a7314a76-4781-11ec-9554-2eaf851e2751"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T20:29:38.7986222Z","updatedOn":"2021-11-17T20:29:38.7986222Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41224d04-5912-49e9-98f2-df2d0c5768ed","type":"Microsoft.Authorization/roleAssignments","name":"41224d04-5912-49e9-98f2-df2d0c5768ed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-23T02:37:39.0525328Z","updatedOn":"2021-11-23T02:37:39.0525328Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2917b10b-1776-4726-9e2a-1406d35584aa","type":"Microsoft.Authorization/roleAssignments","name":"2917b10b-1776-4726-9e2a-1406d35584aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-24T04:19:48.8430130Z","updatedOn":"2021-11-24T04:19:48.8430130Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4738453f-e889-4428-817e-a18655a6df71","type":"Microsoft.Authorization/roleAssignments","name":"4738453f-e889-4428-817e-a18655a6df71"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-24T14:57:34.7449286Z","updatedOn":"2021-11-24T14:57:34.7449286Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dae433ba-4d36-11ec-9c37-0022487a1506","type":"Microsoft.Authorization/roleAssignments","name":"dae433ba-4d36-11ec-9c37-0022487a1506"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-25T09:08:18.4273553Z","updatedOn":"2021-11-25T09:08:18.4273553Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a4c23ea-4dcf-11ec-8263-0022487c7a4a","type":"Microsoft.Authorization/roleAssignments","name":"3a4c23ea-4dcf-11ec-8263-0022487c7a4a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-29T22:16:27.4091202Z","updatedOn":"2021-11-29T22:16:27.4091202Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dfaf3275-7f8c-449f-875f-d74ca2998764","type":"Microsoft.Authorization/roleAssignments","name":"dfaf3275-7f8c-449f-875f-d74ca2998764"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T06:59:34.7676928Z","updatedOn":"2021-11-30T06:59:34.7676928Z","createdBy":"471feb6d-5a83-439e-af7b-311f4eee2d0c","updatedBy":"471feb6d-5a83-439e-af7b-311f4eee2d0c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5848b58-7658-45ae-b979-fb230968ddf7","type":"Microsoft.Authorization/roleAssignments","name":"d5848b58-7658-45ae-b979-fb230968ddf7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T20:03:43.2359682Z","updatedOn":"2021-11-30T20:03:43.2359682Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3be3018e-84c0-48a4-bb36-fa997df4a911","type":"Microsoft.Authorization/roleAssignments","name":"3be3018e-84c0-48a4-bb36-fa997df4a911"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T22:23:07.4635927Z","updatedOn":"2021-11-30T22:23:07.4635927Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc52b5ce-1a69-4afd-aaab-745522d55219","type":"Microsoft.Authorization/roleAssignments","name":"fc52b5ce-1a69-4afd-aaab-745522d55219"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T02:05:06.3947111Z","updatedOn":"2021-12-01T02:05:06.3947111Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bfd977a2-74fb-4e8f-88a6-72b675ad0813","type":"Microsoft.Authorization/roleAssignments","name":"bfd977a2-74fb-4e8f-88a6-72b675ad0813"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T13:34:33.8075185Z","updatedOn":"2021-12-01T13:34:33.8075185Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ce48100-6db5-4ee1-9b02-95913c893175","type":"Microsoft.Authorization/roleAssignments","name":"3ce48100-6db5-4ee1-9b02-95913c893175"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T13:34:33.8391755Z","updatedOn":"2021-12-01T13:34:33.8391755Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1c1acea-4de6-4d8d-b718-05da3e7a2f1c","type":"Microsoft.Authorization/roleAssignments","name":"a1c1acea-4de6-4d8d-b718-05da3e7a2f1c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-12T17:41:39.7941619Z","updatedOn":"2021-03-12T17:41:39.7941619Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4625aa1-611e-448a-bf3e-f37f2bc878a3","type":"Microsoft.Authorization/roleAssignments","name":"d4625aa1-611e-448a-bf3e-f37f2bc878a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-16T23:49:03.3523073Z","updatedOn":"2021-03-16T23:49:03.3523073Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f33005f1-10be-43e3-a87f-9e2f954fb2db","type":"Microsoft.Authorization/roleAssignments","name":"f33005f1-10be-43e3-a87f-9e2f954fb2db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-25T00:58:10.6501184Z","updatedOn":"2021-03-25T00:58:10.6501184Z","createdBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","updatedBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2aca810c-8d05-11eb-bd25-000d3a4359fa","type":"Microsoft.Authorization/roleAssignments","name":"2aca810c-8d05-11eb-bd25-000d3a4359fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-26T10:24:43.4077585Z","updatedOn":"2021-03-26T10:24:43.4077585Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/779ad30e-8e1d-11eb-8aa9-000d3ac754e3","type":"Microsoft.Authorization/roleAssignments","name":"779ad30e-8e1d-11eb-8aa9-000d3ac754e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/fbde6f07-618e-be11-0306-d47d5b4667ec","condition":null,"conditionVersion":null,"createdOn":"2021-04-02T20:38:42.8056733Z","updatedOn":"2021-04-02T20:38:42.8056733Z","createdBy":"8031e009-cc05-4950-8a8d-78942c4492ac","updatedBy":"8031e009-cc05-4950-8a8d-78942c4492ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/fbde6f07-618e-be11-0306-d47d5b4667ec/providers/Microsoft.Authorization/roleAssignments/ed926da7-95d7-4310-be1e-973f44a803cd","type":"Microsoft.Authorization/roleAssignments","name":"ed926da7-95d7-4310-be1e-973f44a803cd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/fbde6f07-618e-be11-0306-d47d5b4667ec","condition":null,"conditionVersion":null,"createdOn":"2021-04-22T15:01:27.4305654Z","updatedOn":"2021-04-22T15:01:27.4305654Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/fbde6f07-618e-be11-0306-d47d5b4667ec/providers/Microsoft.Authorization/roleAssignments/ba3cfc20-7a42-4dd0-a33b-1191c6b54c4d","type":"Microsoft.Authorization/roleAssignments","name":"ba3cfc20-7a42-4dd0-a33b-1191c6b54c4d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.8423155Z","updatedOn":"2019-03-26T22:01:02.8423155Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad/providers/Microsoft.Authorization/roleAssignments/3d069c98-e792-47bd-b58a-399e2d42dbab","type":"Microsoft.Authorization/roleAssignments","name":"3d069c98-e792-47bd-b58a-399e2d42dbab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad","condition":null,"conditionVersion":null,"createdOn":"2021-04-09T18:15:49.7063250Z","updatedOn":"2021-04-09T18:15:49.7063250Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad/providers/Microsoft.Authorization/roleAssignments/a6b435df-80e6-4a7b-b109-2af5f373d238","type":"Microsoft.Authorization/roleAssignments","name":"a6b435df-80e6-4a7b-b109-2af5f373d238"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"}]}' headers: cache-control: - no-cache content-length: - - '33753' + - '182869' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:22:33 GMT + - Wed, 01 Dec 2021 14:15:56 GMT expires: - '-1' pragma: @@ -393,8 +398,9 @@ interactions: - --resource-group --name --node-count --enable-managed-identity --assign-identity --assign-kubelet-identity --ssh-key-value User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 accept-language: - en-US method: GET @@ -402,7 +408,7 @@ interactions: response: body: string: '{"value":[{"properties":{"roleName":"Managed Identity Operator","type":"BuiltInRole","description":"Read - and Assign User Assigned Identity","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.ManagedIdentity/userAssignedIdentities/*/read","Microsoft.ManagedIdentity/userAssignedIdentities/*/assign/action","Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Resources/deployments/*","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2017-12-14T19:52:04.3924594Z","updatedOn":"2017-12-14T22:16:00.1483256Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","type":"Microsoft.Authorization/roleDefinitions","name":"f1a07417-d97a-45cb-824c-7a7467783830"}]}' + and Assign User Assigned Identity","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.ManagedIdentity/userAssignedIdentities/*/read","Microsoft.ManagedIdentity/userAssignedIdentities/*/assign/action","Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Resources/deployments/*","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2017-12-14T19:52:04.3924594Z","updatedOn":"2021-11-11T20:13:38.9523759Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","type":"Microsoft.Authorization/roleDefinitions","name":"f1a07417-d97a-45cb-824c-7a7467783830"}]}' headers: cache-control: - no-cache @@ -411,7 +417,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:22:34 GMT + - Wed, 01 Dec 2021 14:15:56 GMT expires: - '-1' pragma: @@ -451,336 +457,16 @@ interactions: - --resource-group --name --node-count --enable-managed-identity --assign-identity --assign-kubelet-identity --ssh-key-value User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004/providers/Microsoft.Authorization/roleAssignments/e1d3c1d4-3449-4de8-b948-ea57aefc5ce9?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004/providers/Microsoft.Authorization/roleAssignments/203ad548-b36f-4e55-9f5d-8c1be3cd1601?api-version=2020-04-01-preview response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal fb8185d1e3ad4ce9a3a260787a57d835 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:22:34 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 400 - message: Bad Request -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --node-count --enable-managed-identity --assign-identity - --assign-kubelet-identity --ssh-key-value - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Managed%20Identity%20Operator%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Managed Identity Operator","type":"BuiltInRole","description":"Read - and Assign User Assigned Identity","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.ManagedIdentity/userAssignedIdentities/*/read","Microsoft.ManagedIdentity/userAssignedIdentities/*/assign/action","Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Resources/deployments/*","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2017-12-14T19:52:04.3924594Z","updatedOn":"2017-12-14T22:16:00.1483256Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","type":"Microsoft.Authorization/roleDefinitions","name":"f1a07417-d97a-45cb-824c-7a7467783830"}]}' - headers: - cache-control: - - no-cache - content-length: - - '918' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:22:36 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --node-count --enable-managed-identity --assign-identity - --assign-kubelet-identity --ssh-key-value - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004/providers/Microsoft.Authorization/roleAssignments/31986625-316f-4c00-95af-d6c3539fb6b7?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal fb8185d1e3ad4ce9a3a260787a57d835 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:22:36 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 400 - message: Bad Request -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --node-count --enable-managed-identity --assign-identity - --assign-kubelet-identity --ssh-key-value - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Managed%20Identity%20Operator%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Managed Identity Operator","type":"BuiltInRole","description":"Read - and Assign User Assigned Identity","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.ManagedIdentity/userAssignedIdentities/*/read","Microsoft.ManagedIdentity/userAssignedIdentities/*/assign/action","Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Resources/deployments/*","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2017-12-14T19:52:04.3924594Z","updatedOn":"2017-12-14T22:16:00.1483256Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","type":"Microsoft.Authorization/roleDefinitions","name":"f1a07417-d97a-45cb-824c-7a7467783830"}]}' - headers: - cache-control: - - no-cache - content-length: - - '918' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:22:40 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --node-count --enable-managed-identity --assign-identity - --assign-kubelet-identity --ssh-key-value - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004/providers/Microsoft.Authorization/roleAssignments/c7d0f434-eb3b-4bd5-872e-40e73925f688?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal fb8185d1e3ad4ce9a3a260787a57d835 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:22:40 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 400 - message: Bad Request -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --node-count --enable-managed-identity --assign-identity - --assign-kubelet-identity --ssh-key-value - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Managed%20Identity%20Operator%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Managed Identity Operator","type":"BuiltInRole","description":"Read - and Assign User Assigned Identity","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.ManagedIdentity/userAssignedIdentities/*/read","Microsoft.ManagedIdentity/userAssignedIdentities/*/assign/action","Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Resources/deployments/*","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2017-12-14T19:52:04.3924594Z","updatedOn":"2017-12-14T22:16:00.1483256Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","type":"Microsoft.Authorization/roleDefinitions","name":"f1a07417-d97a-45cb-824c-7a7467783830"}]}' - headers: - cache-control: - - no-cache - content-length: - - '918' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 05:22:48 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --node-count --enable-managed-identity --assign-identity - --assign-kubelet-identity --ssh-key-value - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004/providers/Microsoft.Authorization/roleAssignments/d3ead753-0130-4845-a711-5b4685c0f437?api-version=2020-04-01-preview - response: - body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004","condition":null,"conditionVersion":null,"createdOn":"2021-10-19T05:22:48.3284892Z","updatedOn":"2021-10-19T05:22:48.5627656Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004/providers/Microsoft.Authorization/roleAssignments/d3ead753-0130-4845-a711-5b4685c0f437","type":"Microsoft.Authorization/roleAssignments","name":"d3ead753-0130-4845-a711-5b4685c0f437"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T14:15:57.6133653Z","updatedOn":"2021-12-01T14:15:57.8947309Z","createdBy":null,"updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004/providers/Microsoft.Authorization/roleAssignments/203ad548-b36f-4e55-9f5d-8c1be3cd1601","type":"Microsoft.Authorization/roleAssignments","name":"203ad548-b36f-4e55-9f5d-8c1be3cd1601"}' headers: cache-control: - no-cache @@ -789,7 +475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 05:22:50 GMT + - Wed, 01 Dec 2021 14:15:59 GMT expires: - '-1' pragma: @@ -801,25 +487,26 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created - request: body: '{"location": "westus2", "identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003": - {}}}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestgkywrbz27-79a739", + {}}}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest6vwdm26gw-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDVfdiWPCK7b0PD8/va1l7EvLPBaHEGLDEISGfg3dnpEsOGU/iprRcAL5NFHQ25sALHD73ZjTIH3BcSqI3OfGrmAE4SFB+nohp6gnc0Gd3Hmrl3jdDSHhm10fyAZb+9RPNFKryGFf+7DcgPK3yPJuhoN1SCqV/mMYQuLM5TpXhWEucy0tfTwN2dYyz8N741cPQJ5jdIUzN+bed3yT3d4TYEIcAdR6BlP3JNyfZlCzx5aF43Z2LWnQHdkxcgZGG5yCndaBIRZwAsCOjXuK2iiNszo2ydwD6/HABke+8hGY84bhUSfZy7QPucQIJe5RQcDXDeB7bJGojIz0KVqpHSh4+L - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004", + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, "disableLocalAccounts": false}}' headers: @@ -832,39 +519,40 @@ interactions: Connection: - keep-alive Content-Length: - - '1909' + - '2266' Content-Type: - application/json ParameterSetName: - --resource-group --name --node-count --enable-managed-identity --assign-identity --assign-kubelet-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestgkywrbz27-79a739\",\n \"fqdn\": - \"cliakstest-clitestgkywrbz27-79a739-ce94409f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestgkywrbz27-79a739-ce94409f.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6vwdm26gw-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest6vwdm26gw-8ecadf-30482811.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest6vwdm26gw-8ecadf-30482811.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDVfdiWPCK7b0PD8/va1l7EvLPBaHEGLDEISGfg3dnpEsOGU/iprRcAL5NFHQ25sALHD73ZjTIH3BcSqI3OfGrmAE4SFB+nohp6gnc0Gd3Hmrl3jdDSHhm10fyAZb+9RPNFKryGFf+7DcgPK3yPJuhoN1SCqV/mMYQuLM5TpXhWEucy0tfTwN2dYyz8N741cPQJ5jdIUzN+bed3yT3d4TYEIcAdR6BlP3JNyfZlCzx5aF43Z2LWnQHdkxcgZGG5yCndaBIRZwAsCOjXuK2iiNszo2ydwD6/HABke+8hGY84bhUSfZy7QPucQIJe5RQcDXDeB7bJGojIz0KVqpHSh4+L - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -872,26 +560,27 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": + {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": - {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003\": + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003\": {\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n }\n \ }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n \ }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53935547-2ac1-42b8-bc76-fd7d5a1214af?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/368ae98d-5750-4763-ae5d-4bfdc8d28b42?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3292' + - '3750' content-type: - application/json date: - - Tue, 19 Oct 2021 05:22:55 GMT + - Wed, 01 Dec 2021 14:16:04 GMT expires: - '-1' pragma: @@ -903,7 +592,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 201 message: Created @@ -922,72 +611,23 @@ interactions: - --resource-group --name --node-count --enable-managed-identity --assign-identity --assign-kubelet-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53935547-2ac1-42b8-bc76-fd7d5a1214af?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"47559353-c12a-b842-bc76-fd7d5a1214af\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:22:55.98Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 05:23:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --node-count --enable-managed-identity --assign-identity - --assign-kubelet-identity --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53935547-2ac1-42b8-bc76-fd7d5a1214af?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/368ae98d-5750-4763-ae5d-4bfdc8d28b42?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"47559353-c12a-b842-bc76-fd7d5a1214af\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:22:55.98Z\"\n }" + string: "{\n \"name\": \"8de98a36-5057-6347-ae5d-4bfdc8d28b42\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:16:04.6666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 05:23:56 GMT + - Wed, 01 Dec 2021 14:16:34 GMT expires: - '-1' pragma: @@ -1020,23 +660,23 @@ interactions: - --resource-group --name --node-count --enable-managed-identity --assign-identity --assign-kubelet-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53935547-2ac1-42b8-bc76-fd7d5a1214af?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/368ae98d-5750-4763-ae5d-4bfdc8d28b42?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"47559353-c12a-b842-bc76-fd7d5a1214af\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:22:55.98Z\"\n }" + string: "{\n \"name\": \"8de98a36-5057-6347-ae5d-4bfdc8d28b42\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:16:04.6666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 05:24:26 GMT + - Wed, 01 Dec 2021 14:17:05 GMT expires: - '-1' pragma: @@ -1069,23 +709,23 @@ interactions: - --resource-group --name --node-count --enable-managed-identity --assign-identity --assign-kubelet-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53935547-2ac1-42b8-bc76-fd7d5a1214af?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/368ae98d-5750-4763-ae5d-4bfdc8d28b42?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"47559353-c12a-b842-bc76-fd7d5a1214af\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:22:55.98Z\"\n }" + string: "{\n \"name\": \"8de98a36-5057-6347-ae5d-4bfdc8d28b42\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:16:04.6666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 05:24:56 GMT + - Wed, 01 Dec 2021 14:17:35 GMT expires: - '-1' pragma: @@ -1118,23 +758,23 @@ interactions: - --resource-group --name --node-count --enable-managed-identity --assign-identity --assign-kubelet-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53935547-2ac1-42b8-bc76-fd7d5a1214af?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/368ae98d-5750-4763-ae5d-4bfdc8d28b42?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"47559353-c12a-b842-bc76-fd7d5a1214af\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T05:22:55.98Z\"\n }" + string: "{\n \"name\": \"8de98a36-5057-6347-ae5d-4bfdc8d28b42\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:16:04.6666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 05:25:27 GMT + - Wed, 01 Dec 2021 14:18:05 GMT expires: - '-1' pragma: @@ -1167,24 +807,24 @@ interactions: - --resource-group --name --node-count --enable-managed-identity --assign-identity --assign-kubelet-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/53935547-2ac1-42b8-bc76-fd7d5a1214af?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/368ae98d-5750-4763-ae5d-4bfdc8d28b42?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"47559353-c12a-b842-bc76-fd7d5a1214af\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T05:22:55.98Z\",\n \"endTime\": - \"2021-10-19T05:25:34.2255125Z\"\n }" + string: "{\n \"name\": \"8de98a36-5057-6347-ae5d-4bfdc8d28b42\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:16:04.6666666Z\",\n \"endTime\": + \"2021-12-01T14:18:16.5021414Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 05:25:57 GMT + - Wed, 01 Dec 2021 14:18:35 GMT expires: - '-1' pragma: @@ -1217,47 +857,49 @@ interactions: - --resource-group --name --node-count --enable-managed-identity --assign-identity --assign-kubelet-identity --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestgkywrbz27-79a739\",\n \"fqdn\": - \"cliakstest-clitestgkywrbz27-79a739-ce94409f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestgkywrbz27-79a739-ce94409f.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6vwdm26gw-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest6vwdm26gw-8ecadf-30482811.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest6vwdm26gw-8ecadf-30482811.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDVfdiWPCK7b0PD8/va1l7EvLPBaHEGLDEISGfg3dnpEsOGU/iprRcAL5NFHQ25sALHD73ZjTIH3BcSqI3OfGrmAE4SFB+nohp6gnc0Gd3Hmrl3jdDSHhm10fyAZb+9RPNFKryGFf+7DcgPK3yPJuhoN1SCqV/mMYQuLM5TpXhWEucy0tfTwN2dYyz8N741cPQJ5jdIUzN+bed3yT3d4TYEIcAdR6BlP3JNyfZlCzx5aF43Z2LWnQHdkxcgZGG5yCndaBIRZwAsCOjXuK2iiNszo2ydwD6/HABke+8hGY84bhUSfZy7QPucQIJe5RQcDXDeB7bJGojIz0KVqpHSh4+L - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1bed6b04-f45c-42e9-a33d-60faada65ee4\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/46f0baa1-da79-4e0c-ad4e-bb28e436b49a\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000004\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": - {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003\": + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n \ }\n }" @@ -1265,11 +907,11 @@ interactions: cache-control: - no-cache content-length: - - '3617' + - '4075' content-type: - application/json date: - - Tue, 19 Oct 2021 05:25:57 GMT + - Wed, 01 Dec 2021 14:18:35 GMT expires: - '-1' pragma: @@ -1303,8 +945,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -1312,17 +954,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0d6e3b0f-af21-4d05-a8ff-f0af85bc5810?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/beb3d4bf-9fc1-4611-bbad-c269755615eb?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 05:25:59 GMT + - Wed, 01 Dec 2021 14:18:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/0d6e3b0f-af21-4d05-a8ff-f0af85bc5810?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/beb3d4bf-9fc1-4611-bbad-c269755615eb?api-version=2016-03-30 pragma: - no-cache server: @@ -1332,7 +974,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14995' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_gitops.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_gitops.yaml new file mode 100644 index 00000000000..78302d1d628 --- /dev/null +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_gitops.yaml @@ -0,0 +1,857 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:18:39Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '312' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:18:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestsy7o23l2c-8ecadf", + "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"gitops": {"enabled": true}}, "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1774' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestsy7o23l2c-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestsy7o23l2c-8ecadf-0d0120c1.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestsy7o23l2c-8ecadf-0d0120c1.portal.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"gitops\": {\n \"enabled\": true,\n \"config\": null\n }\n + \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a22c0058-b821-48d4-997a-dcae523a6d30?api-version=2017-08-31 + cache-control: + - no-cache + content-length: + - '3324' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:18:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1195' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a22c0058-b821-48d4-997a-dcae523a6d30?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"58002ca2-21b8-d448-997a-dcae523a6d30\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:18:44.9766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a22c0058-b821-48d4-997a-dcae523a6d30?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"58002ca2-21b8-d448-997a-dcae523a6d30\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:18:44.9766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a22c0058-b821-48d4-997a-dcae523a6d30?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"58002ca2-21b8-d448-997a-dcae523a6d30\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:18:44.9766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:20:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a22c0058-b821-48d4-997a-dcae523a6d30?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"58002ca2-21b8-d448-997a-dcae523a6d30\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:18:44.9766666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:20:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a22c0058-b821-48d4-997a-dcae523a6d30?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"58002ca2-21b8-d448-997a-dcae523a6d30\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:18:44.9766666Z\",\n \"endTime\": + \"2021-12-01T14:21:00.0972581Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:21:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestsy7o23l2c-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestsy7o23l2c-8ecadf-0d0120c1.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestsy7o23l2c-8ecadf-0d0120c1.portal.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"gitops\": {\n \"enabled\": true,\n \"config\": null,\n \"identity\": + {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gitops-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/7542f312-be7d-4721-9ba7-530694b0dc98\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4345' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:21:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestsy7o23l2c-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestsy7o23l2c-8ecadf-0d0120c1.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestsy7o23l2c-8ecadf-0d0120c1.portal.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"gitops\": {\n \"enabled\": true,\n \"config\": null,\n \"identity\": + {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gitops-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/7542f312-be7d-4721-9ba7-530694b0dc98\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4345' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:21:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "sku": {"name": "Basic", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": + "cliakstest-clitestsy7o23l2c-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": + "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"gitops": {"enabled": false}}, "nodeResourceGroup": + "MC_clitest000001_cliakstest000002_eastus", "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/7542f312-be7d-4721-9ba7-530694b0dc98"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + Content-Length: + - '2719' + Content-Type: + - application/json + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestsy7o23l2c-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestsy7o23l2c-8ecadf-0d0120c1.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestsy7o23l2c-8ecadf-0d0120c1.portal.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"gitops\": {\n \"enabled\": false,\n \"config\": null\n }\n + \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/7542f312-be7d-4721-9ba7-530694b0dc98\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b60d779c-dac6-43ef-92be-c0a11cb61e0a?api-version=2017-08-31 + cache-control: + - no-cache + content-length: + - '3984' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:21:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1195' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b60d779c-dac6-43ef-92be-c0a11cb61e0a?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"9c770db6-c6da-ef43-92be-c0a11cb61e0a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:21:20.4933333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:21:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b60d779c-dac6-43ef-92be-c0a11cb61e0a?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"9c770db6-c6da-ef43-92be-c0a11cb61e0a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:21:20.4933333Z\",\n \"endTime\": + \"2021-12-01T14:22:20.2138073Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:22:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestsy7o23l2c-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestsy7o23l2c-8ecadf-0d0120c1.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestsy7o23l2c-8ecadf-0d0120c1.portal.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"gitops\": {\n \"enabled\": false,\n \"config\": null\n }\n + \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/7542f312-be7d-4721-9ba7-530694b0dc98\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '3986' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:22:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +version: 1 diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_openservicemesh.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_openservicemesh.yaml old mode 100755 new mode 100644 index 7614f687b70..f4b629f28d6 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_openservicemesh.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addon_openservicemesh.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:42:54Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:06:38Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 06:42:54 GMT + - Wed, 01 Dec 2021 14:06:39 GMT expires: - '-1' pragma: @@ -43,19 +43,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestgiewlp26c-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestrigulzvd2-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": - {"enabled": true, "config": {}}}, "enableRBAC": true, "enablePodSecurityPolicy": - false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": true, + "config": {}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": + "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -66,62 +66,65 @@ interactions: Connection: - keep-alive Content-Length: - - '1441' + - '1798' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestgiewlp26c-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestgiewlp26c-8ecadf-f8e9d478.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestgiewlp26c-8ecadf-f8e9d478.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestrigulzvd2-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestrigulzvd2-8ecadf-c64459bd.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestrigulzvd2-8ecadf-c64459bd.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": {}\n + {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null\n \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\n - \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecbad4b9-6beb-41e8-be3b-c8f47a0ce0ef?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9f3ddd14-d026-42be-8a45-d088e92245e5?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2877' + - '3337' content-type: - application/json date: - - Tue, 19 Oct 2021 06:42:57 GMT + - Wed, 01 Dec 2021 14:06:43 GMT expires: - '-1' pragma: @@ -133,7 +136,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -151,14 +154,110 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9f3ddd14-d026-42be-8a45-d088e92245e5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"14dd3d9f-26d0-be42-8a45-d088e92245e5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:43.7333333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:07:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9f3ddd14-d026-42be-8a45-d088e92245e5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"14dd3d9f-26d0-be42-8a45-d088e92245e5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:43.7333333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:07:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecbad4b9-6beb-41e8-be3b-c8f47a0ce0ef?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9f3ddd14-d026-42be-8a45-d088e92245e5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9d4baec-eb6b-e841-be3b-c8f47a0ce0ef\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:42:57.7733333Z\"\n }" + string: "{\n \"name\": \"14dd3d9f-26d0-be42-8a45-d088e92245e5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:43.7333333Z\"\n }" headers: cache-control: - no-cache @@ -167,7 +266,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:43:27 GMT + - Wed, 01 Dec 2021 14:08:14 GMT expires: - '-1' pragma: @@ -199,14 +298,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecbad4b9-6beb-41e8-be3b-c8f47a0ce0ef?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9f3ddd14-d026-42be-8a45-d088e92245e5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9d4baec-eb6b-e841-be3b-c8f47a0ce0ef\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:42:57.7733333Z\"\n }" + string: "{\n \"name\": \"14dd3d9f-26d0-be42-8a45-d088e92245e5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:43.7333333Z\"\n }" headers: cache-control: - no-cache @@ -215,7 +314,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:43:57 GMT + - Wed, 01 Dec 2021 14:08:44 GMT expires: - '-1' pragma: @@ -247,14 +346,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecbad4b9-6beb-41e8-be3b-c8f47a0ce0ef?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9f3ddd14-d026-42be-8a45-d088e92245e5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9d4baec-eb6b-e841-be3b-c8f47a0ce0ef\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:42:57.7733333Z\"\n }" + string: "{\n \"name\": \"14dd3d9f-26d0-be42-8a45-d088e92245e5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:43.7333333Z\"\n }" headers: cache-control: - no-cache @@ -263,7 +362,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:44:27 GMT + - Wed, 01 Dec 2021 14:09:15 GMT expires: - '-1' pragma: @@ -295,14 +394,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecbad4b9-6beb-41e8-be3b-c8f47a0ce0ef?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9f3ddd14-d026-42be-8a45-d088e92245e5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9d4baec-eb6b-e841-be3b-c8f47a0ce0ef\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:42:57.7733333Z\"\n }" + string: "{\n \"name\": \"14dd3d9f-26d0-be42-8a45-d088e92245e5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:43.7333333Z\"\n }" headers: cache-control: - no-cache @@ -311,7 +410,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:44:57 GMT + - Wed, 01 Dec 2021 14:09:45 GMT expires: - '-1' pragma: @@ -343,14 +442,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecbad4b9-6beb-41e8-be3b-c8f47a0ce0ef?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9f3ddd14-d026-42be-8a45-d088e92245e5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9d4baec-eb6b-e841-be3b-c8f47a0ce0ef\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:42:57.7733333Z\"\n }" + string: "{\n \"name\": \"14dd3d9f-26d0-be42-8a45-d088e92245e5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:06:43.7333333Z\"\n }" headers: cache-control: - no-cache @@ -359,7 +458,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:45:27 GMT + - Wed, 01 Dec 2021 14:10:14 GMT expires: - '-1' pragma: @@ -391,15 +490,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecbad4b9-6beb-41e8-be3b-c8f47a0ce0ef?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9f3ddd14-d026-42be-8a45-d088e92245e5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9d4baec-eb6b-e841-be3b-c8f47a0ce0ef\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:42:57.7733333Z\",\n \"endTime\": - \"2021-10-19T06:45:36.9025376Z\"\n }" + string: "{\n \"name\": \"14dd3d9f-26d0-be42-8a45-d088e92245e5\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:06:43.7333333Z\",\n \"endTime\": + \"2021-12-01T14:10:24.9356297Z\"\n }" headers: cache-control: - no-cache @@ -408,7 +507,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:45:57 GMT + - Wed, 01 Dec 2021 14:10:44 GMT expires: - '-1' pragma: @@ -440,60 +539,63 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestgiewlp26c-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestgiewlp26c-8ecadf-f8e9d478.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestgiewlp26c-8ecadf-f8e9d478.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestrigulzvd2-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestrigulzvd2-8ecadf-c64459bd.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestrigulzvd2-8ecadf-c64459bd.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": {},\n + {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null,\n \ \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/openservicemesh-cliakstest000002\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/176756fa-d00c-4d7e-bfa4-4c6b0271e461\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ad6cd2af-2475-4bce-8ec0-0ec0ca72a3a0\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3910' + - '4370' content-type: - application/json date: - - Tue, 19 Oct 2021 06:45:57 GMT + - Wed, 01 Dec 2021 14:10:45 GMT expires: - '-1' pragma: @@ -525,60 +627,63 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestgiewlp26c-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestgiewlp26c-8ecadf-f8e9d478.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestgiewlp26c-8ecadf-f8e9d478.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestrigulzvd2-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestrigulzvd2-8ecadf-c64459bd.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestrigulzvd2-8ecadf-c64459bd.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": {},\n + {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null,\n \ \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/openservicemesh-cliakstest000002\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/176756fa-d00c-4d7e-bfa4-4c6b0271e461\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ad6cd2af-2475-4bce-8ec0-0ec0ca72a3a0\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3910' + - '4370' content-type: - application/json date: - - Tue, 19 Oct 2021 06:45:59 GMT + - Wed, 01 Dec 2021 14:10:46 GMT expires: - '-1' pragma: @@ -599,24 +704,25 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestgiewlp26c-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestrigulzvd2-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": - {"enabled": false}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": false}}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/176756fa-d00c-4d7e-bfa4-4c6b0271e461"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ad6cd2af-2475-4bce-8ec0-0ec0ca72a3a0"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -627,66 +733,69 @@ interactions: Connection: - keep-alive Content-Length: - - '2321' + - '2732' Content-Type: - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestgiewlp26c-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestgiewlp26c-8ecadf-f8e9d478.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestgiewlp26c-8ecadf-f8e9d478.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestrigulzvd2-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestrigulzvd2-8ecadf-c64459bd.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestrigulzvd2-8ecadf-c64459bd.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"openServiceMesh\": {\n \"enabled\": false,\n \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/176756fa-d00c-4d7e-bfa4-4c6b0271e461\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ad6cd2af-2475-4bce-8ec0-0ec0ca72a3a0\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/98d44f25-5892-4335-ba19-c601fc12dc36?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1575410f-f27f-400e-99fc-85877111f2b1?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3541' + - '3999' content-type: - application/json date: - - Tue, 19 Oct 2021 06:46:01 GMT + - Wed, 01 Dec 2021 14:10:50 GMT expires: - '-1' pragma: @@ -702,55 +811,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks disable-addons - Connection: - - keep-alive - ParameterSetName: - - --addons --resource-group --name -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/98d44f25-5892-4335-ba19-c601fc12dc36?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"254fd498-9258-3543-ba19-c601fc12dc36\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:46:01.34Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 06:46:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff + - '1195' status: code: 200 message: OK @@ -768,14 +829,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/98d44f25-5892-4335-ba19-c601fc12dc36?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1575410f-f27f-400e-99fc-85877111f2b1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"254fd498-9258-3543-ba19-c601fc12dc36\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:46:01.34Z\"\n }" + string: "{\n \"name\": \"0f417515-7ff2-0e40-99fc-85877111f2b1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:10:49.82Z\"\n }" headers: cache-control: - no-cache @@ -784,7 +845,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:47:00 GMT + - Wed, 01 Dec 2021 14:11:20 GMT expires: - '-1' pragma: @@ -816,15 +877,15 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/98d44f25-5892-4335-ba19-c601fc12dc36?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1575410f-f27f-400e-99fc-85877111f2b1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"254fd498-9258-3543-ba19-c601fc12dc36\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:46:01.34Z\",\n \"endTime\": - \"2021-10-19T06:47:06.7736418Z\"\n }" + string: "{\n \"name\": \"0f417515-7ff2-0e40-99fc-85877111f2b1\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:10:49.82Z\",\n \"endTime\": + \"2021-12-01T14:11:46.7259375Z\"\n }" headers: cache-control: - no-cache @@ -833,7 +894,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:47:31 GMT + - Wed, 01 Dec 2021 14:11:50 GMT expires: - '-1' pragma: @@ -865,58 +926,61 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestgiewlp26c-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestgiewlp26c-8ecadf-f8e9d478.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestgiewlp26c-8ecadf-f8e9d478.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestrigulzvd2-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestrigulzvd2-8ecadf-c64459bd.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestrigulzvd2-8ecadf-c64459bd.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"openServiceMesh\": {\n \"enabled\": false,\n \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/176756fa-d00c-4d7e-bfa4-4c6b0271e461\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ad6cd2af-2475-4bce-8ec0-0ec0ca72a3a0\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3543' + - '4001' content-type: - application/json date: - - Tue, 19 Oct 2021 06:47:31 GMT + - Wed, 01 Dec 2021 14:11:50 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addons_confcom_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addons_confcom_addon.yaml old mode 100755 new mode 100644 index d6373664f6b..f676af02636 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addons_confcom_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_addons_confcom_addon.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:59:29Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:11:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 06:59:29 GMT + - Wed, 01 Dec 2021 14:11:53 GMT expires: - '-1' pragma: @@ -43,19 +43,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestnqpmq5axq-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestgg2vozt3a-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": - {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "enableRBAC": - true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": - "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": - "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": + true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "enableRBAC": true, + "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", + "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -66,38 +67,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1479' + - '1836' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestnqpmq5axq-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestnqpmq5axq-8ecadf-f04ace1e.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestnqpmq5axq-8ecadf-f04ace1e.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestgg2vozt3a-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestgg2vozt3a-8ecadf-3fb36d67.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestgg2vozt3a-8ecadf-3fb36d67.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n }\n },\n \"nodeResourceGroup\": @@ -107,22 +109,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb75212c-90e3-4f8a-b7b9-d34e743ac21c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dae9cb54-0ca8-4a14-bf99-c0153d435f47?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2928' + - '3386' content-type: - application/json date: - - Tue, 19 Oct 2021 06:59:32 GMT + - Wed, 01 Dec 2021 14:11:57 GMT expires: - '-1' pragma: @@ -134,7 +137,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created @@ -152,23 +155,71 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dae9cb54-0ca8-4a14-bf99-c0153d435f47?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"54cbe9da-a80c-144a-bf99-c0153d435f47\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:57.7733333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:12:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb75212c-90e3-4f8a-b7b9-d34e743ac21c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dae9cb54-0ca8-4a14-bf99-c0153d435f47?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2c2175fb-e390-8a4f-b7b9-d34e743ac21c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:59:33.2Z\"\n }" + string: "{\n \"name\": \"54cbe9da-a80c-144a-bf99-c0153d435f47\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:57.7733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:00:03 GMT + - Wed, 01 Dec 2021 14:12:58 GMT expires: - '-1' pragma: @@ -200,23 +251,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb75212c-90e3-4f8a-b7b9-d34e743ac21c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dae9cb54-0ca8-4a14-bf99-c0153d435f47?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2c2175fb-e390-8a4f-b7b9-d34e743ac21c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:59:33.2Z\"\n }" + string: "{\n \"name\": \"54cbe9da-a80c-144a-bf99-c0153d435f47\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:57.7733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:00:33 GMT + - Wed, 01 Dec 2021 14:13:28 GMT expires: - '-1' pragma: @@ -248,23 +299,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb75212c-90e3-4f8a-b7b9-d34e743ac21c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dae9cb54-0ca8-4a14-bf99-c0153d435f47?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2c2175fb-e390-8a4f-b7b9-d34e743ac21c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:59:33.2Z\"\n }" + string: "{\n \"name\": \"54cbe9da-a80c-144a-bf99-c0153d435f47\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:57.7733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:02 GMT + - Wed, 01 Dec 2021 14:13:57 GMT expires: - '-1' pragma: @@ -296,23 +347,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb75212c-90e3-4f8a-b7b9-d34e743ac21c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dae9cb54-0ca8-4a14-bf99-c0153d435f47?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2c2175fb-e390-8a4f-b7b9-d34e743ac21c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:59:33.2Z\"\n }" + string: "{\n \"name\": \"54cbe9da-a80c-144a-bf99-c0153d435f47\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:57.7733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:33 GMT + - Wed, 01 Dec 2021 14:14:28 GMT expires: - '-1' pragma: @@ -344,23 +395,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb75212c-90e3-4f8a-b7b9-d34e743ac21c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dae9cb54-0ca8-4a14-bf99-c0153d435f47?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2c2175fb-e390-8a4f-b7b9-d34e743ac21c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:59:33.2Z\"\n }" + string: "{\n \"name\": \"54cbe9da-a80c-144a-bf99-c0153d435f47\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:57.7733333Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:02:03 GMT + - Wed, 01 Dec 2021 14:14:58 GMT expires: - '-1' pragma: @@ -392,24 +443,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb75212c-90e3-4f8a-b7b9-d34e743ac21c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dae9cb54-0ca8-4a14-bf99-c0153d435f47?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2c2175fb-e390-8a4f-b7b9-d34e743ac21c\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:59:33.2Z\",\n \"endTime\": - \"2021-10-19T07:02:27.8671443Z\"\n }" + string: "{\n \"name\": \"54cbe9da-a80c-144a-bf99-c0153d435f47\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:11:57.7733333Z\",\n \"endTime\": + \"2021-12-01T14:15:02.5654186Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 07:02:33 GMT + - Wed, 01 Dec 2021 14:15:28 GMT expires: - '-1' pragma: @@ -441,32 +492,33 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestnqpmq5axq-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestnqpmq5axq-8ecadf-f04ace1e.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestnqpmq5axq-8ecadf-f04ace1e.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestgg2vozt3a-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestgg2vozt3a-8ecadf-3fb36d67.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestgg2vozt3a-8ecadf-3fb36d67.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n },\n \"identity\": @@ -476,26 +528,28 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e850d9d7-22eb-4f61-8e06-3cd28986bdd5\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b65d3670-c3c7-46aa-aba4-ea509b6d28c4\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3964' + - '4422' content-type: - application/json date: - - Tue, 19 Oct 2021 07:02:33 GMT + - Wed, 01 Dec 2021 14:15:29 GMT expires: - '-1' pragma: @@ -527,32 +581,33 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestnqpmq5axq-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestnqpmq5axq-8ecadf-f04ace1e.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestnqpmq5axq-8ecadf-f04ace1e.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestgg2vozt3a-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestgg2vozt3a-8ecadf-3fb36d67.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestgg2vozt3a-8ecadf-3fb36d67.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n },\n \"identity\": @@ -562,26 +617,28 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e850d9d7-22eb-4f61-8e06-3cd28986bdd5\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b65d3670-c3c7-46aa-aba4-ea509b6d28c4\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3964' + - '4422' content-type: - application/json date: - - Tue, 19 Oct 2021 07:02:34 GMT + - Wed, 01 Dec 2021 14:15:30 GMT expires: - '-1' pragma: @@ -602,24 +659,25 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestnqpmq5axq-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestgg2vozt3a-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": - {"enabled": false}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": + false}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e850d9d7-22eb-4f61-8e06-3cd28986bdd5"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b65d3670-c3c7-46aa-aba4-ea509b6d28c4"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -630,66 +688,69 @@ interactions: Connection: - keep-alive Content-Length: - - '2324' + - '2735' Content-Type: - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestnqpmq5axq-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestnqpmq5axq-8ecadf-f04ace1e.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestnqpmq5axq-8ecadf-f04ace1e.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestgg2vozt3a-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestgg2vozt3a-8ecadf-3fb36d67.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestgg2vozt3a-8ecadf-3fb36d67.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": false,\n \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e850d9d7-22eb-4f61-8e06-3cd28986bdd5\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b65d3670-c3c7-46aa-aba4-ea509b6d28c4\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1425794e-50a4-40da-89cd-f80ac95324f3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb6b2f6e-cf98-422f-8f54-fd1fdffe510a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3544' + - '4002' content-type: - application/json date: - - Tue, 19 Oct 2021 07:02:36 GMT + - Wed, 01 Dec 2021 14:15:34 GMT expires: - '-1' pragma: @@ -723,23 +784,23 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1425794e-50a4-40da-89cd-f80ac95324f3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb6b2f6e-cf98-422f-8f54-fd1fdffe510a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4e792514-a450-da40-89cd-f80ac95324f3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:02:37.24Z\"\n }" + string: "{\n \"name\": \"6e2f6bfb-98cf-2f42-8f54-fd1fdffe510a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:15:33.4766666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:03:07 GMT + - Wed, 01 Dec 2021 14:16:03 GMT expires: - '-1' pragma: @@ -771,23 +832,24 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1425794e-50a4-40da-89cd-f80ac95324f3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb6b2f6e-cf98-422f-8f54-fd1fdffe510a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4e792514-a450-da40-89cd-f80ac95324f3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:02:37.24Z\"\n }" + string: "{\n \"name\": \"6e2f6bfb-98cf-2f42-8f54-fd1fdffe510a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:15:33.4766666Z\",\n \"endTime\": + \"2021-12-01T14:16:30.8771677Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 07:03:36 GMT + - Wed, 01 Dec 2021 14:16:33 GMT expires: - '-1' pragma: @@ -819,107 +881,61 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1425794e-50a4-40da-89cd-f80ac95324f3?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"4e792514-a450-da40-89cd-f80ac95324f3\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:02:37.24Z\",\n \"endTime\": - \"2021-10-19T07:03:39.5722552Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '165' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:04:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks disable-addons - Connection: - - keep-alive - ParameterSetName: - - --addons --resource-group --name -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestnqpmq5axq-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestnqpmq5axq-8ecadf-f04ace1e.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestnqpmq5axq-8ecadf-f04ace1e.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestgg2vozt3a-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestgg2vozt3a-8ecadf-3fb36d67.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestgg2vozt3a-8ecadf-3fb36d67.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": false,\n \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e850d9d7-22eb-4f61-8e06-3cd28986bdd5\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b65d3670-c3c7-46aa-aba4-ea509b6d28c4\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3546' + - '4004' content-type: - application/json date: - - Tue, 19 Oct 2021 07:04:07 GMT + - Wed, 01 Dec 2021 14:16:34 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_local_accounts.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_local_accounts.yaml old mode 100755 new mode 100644 index 3f73d9973da..226bc16ac2d --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_local_accounts.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_disable_local_accounts.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --enable-managed-identity --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:53:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:16:36Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 06:53:15 GMT + - Wed, 01 Dec 2021 14:16:36 GMT expires: - '-1' pragma: @@ -44,18 +44,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestmkqzvgwg6-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest2ccuhabrx-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": true}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": true}}' headers: Accept: - application/json @@ -66,39 +67,40 @@ interactions: Connection: - keep-alive Content-Length: - - '1390' + - '1747' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestmkqzvgwg6-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestmkqzvgwg6-8ecadf-62740a6b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestmkqzvgwg6-8ecadf-62740a6b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest2ccuhabrx-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest2ccuhabrx-8ecadf-1b503a51.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest2ccuhabrx-8ecadf-1b503a51.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -106,22 +108,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - true,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": true\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f49da3e5-f16c-4a9b-98e7-2ab171ef27fe?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe7c4b6f-57bb-4509-894e-fcc94e6e0529?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2777' + - '3235' content-type: - application/json date: - - Tue, 19 Oct 2021 06:53:25 GMT + - Wed, 01 Dec 2021 14:16:42 GMT expires: - '-1' pragma: @@ -152,72 +155,23 @@ interactions: - --resource-group --name --enable-managed-identity --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f49da3e5-f16c-4a9b-98e7-2ab171ef27fe?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"e5a39df4-6cf1-9b4a-98e7-2ab171ef27fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:53:25.13Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 06:53:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --disable-local-accounts - --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f49da3e5-f16c-4a9b-98e7-2ab171ef27fe?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe7c4b6f-57bb-4509-894e-fcc94e6e0529?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e5a39df4-6cf1-9b4a-98e7-2ab171ef27fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:53:25.13Z\"\n }" + string: "{\n \"name\": \"6f4b7cfe-bb57-0945-894e-fcc94e6e0529\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:16:41.8666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:54:26 GMT + - Wed, 01 Dec 2021 14:17:11 GMT expires: - '-1' pragma: @@ -250,23 +204,23 @@ interactions: - --resource-group --name --enable-managed-identity --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f49da3e5-f16c-4a9b-98e7-2ab171ef27fe?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe7c4b6f-57bb-4509-894e-fcc94e6e0529?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e5a39df4-6cf1-9b4a-98e7-2ab171ef27fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:53:25.13Z\"\n }" + string: "{\n \"name\": \"6f4b7cfe-bb57-0945-894e-fcc94e6e0529\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:16:41.8666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:54:55 GMT + - Wed, 01 Dec 2021 14:17:42 GMT expires: - '-1' pragma: @@ -299,23 +253,23 @@ interactions: - --resource-group --name --enable-managed-identity --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f49da3e5-f16c-4a9b-98e7-2ab171ef27fe?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe7c4b6f-57bb-4509-894e-fcc94e6e0529?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e5a39df4-6cf1-9b4a-98e7-2ab171ef27fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:53:25.13Z\"\n }" + string: "{\n \"name\": \"6f4b7cfe-bb57-0945-894e-fcc94e6e0529\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:16:41.8666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:55:25 GMT + - Wed, 01 Dec 2021 14:18:12 GMT expires: - '-1' pragma: @@ -348,23 +302,23 @@ interactions: - --resource-group --name --enable-managed-identity --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f49da3e5-f16c-4a9b-98e7-2ab171ef27fe?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe7c4b6f-57bb-4509-894e-fcc94e6e0529?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e5a39df4-6cf1-9b4a-98e7-2ab171ef27fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:53:25.13Z\"\n }" + string: "{\n \"name\": \"6f4b7cfe-bb57-0945-894e-fcc94e6e0529\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:16:41.8666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:55:56 GMT + - Wed, 01 Dec 2021 14:18:42 GMT expires: - '-1' pragma: @@ -397,24 +351,24 @@ interactions: - --resource-group --name --enable-managed-identity --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f49da3e5-f16c-4a9b-98e7-2ab171ef27fe?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe7c4b6f-57bb-4509-894e-fcc94e6e0529?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e5a39df4-6cf1-9b4a-98e7-2ab171ef27fe\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:53:25.13Z\",\n \"endTime\": - \"2021-10-19T06:56:11.6069701Z\"\n }" + string: "{\n \"name\": \"6f4b7cfe-bb57-0945-894e-fcc94e6e0529\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:16:41.8666666Z\",\n \"endTime\": + \"2021-12-01T14:18:59.0405354Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:26 GMT + - Wed, 01 Dec 2021 14:19:12 GMT expires: - '-1' pragma: @@ -447,57 +401,60 @@ interactions: - --resource-group --name --enable-managed-identity --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestmkqzvgwg6-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestmkqzvgwg6-8ecadf-62740a6b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestmkqzvgwg6-8ecadf-62740a6b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest2ccuhabrx-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest2ccuhabrx-8ecadf-1b503a51.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest2ccuhabrx-8ecadf-1b503a51.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1d9539a0-4738-4f57-817c-7250d8011e94\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ffc3dd8c-18fd-436b-b7d1-23160515a382\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": true,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": true\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3440' + - '3898' content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:26 GMT + - Wed, 01 Dec 2021 14:19:13 GMT expires: - '-1' pragma: @@ -529,57 +486,60 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestmkqzvgwg6-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestmkqzvgwg6-8ecadf-62740a6b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestmkqzvgwg6-8ecadf-62740a6b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest2ccuhabrx-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest2ccuhabrx-8ecadf-1b503a51.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest2ccuhabrx-8ecadf-1b503a51.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1d9539a0-4738-4f57-817c-7250d8011e94\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ffc3dd8c-18fd-436b-b7d1-23160515a382\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": true,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": true\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3440' + - '3898' content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:26 GMT + - Wed, 01 Dec 2021 14:19:14 GMT expires: - '-1' pragma: @@ -600,24 +560,25 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestmkqzvgwg6-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitest2ccuhabrx-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1d9539a0-4738-4f57-817c-7250d8011e94"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ffc3dd8c-18fd-436b-b7d1-23160515a382"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -628,65 +589,68 @@ interactions: Connection: - keep-alive Content-Length: - - '2311' + - '2722' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestmkqzvgwg6-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestmkqzvgwg6-8ecadf-62740a6b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestmkqzvgwg6-8ecadf-62740a6b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest2ccuhabrx-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest2ccuhabrx-8ecadf-1b503a51.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest2ccuhabrx-8ecadf-1b503a51.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1d9539a0-4738-4f57-817c-7250d8011e94\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ffc3dd8c-18fd-436b-b7d1-23160515a382\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/657764c7-d814-481d-bca2-ae5ea9a8a918?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3385a7ab-2497-43bc-b34f-37bb94b56103?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3439' + - '3897' content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:28 GMT + - Wed, 01 Dec 2021 14:19:17 GMT expires: - '-1' pragma: @@ -702,7 +666,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 200 message: OK @@ -720,23 +684,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/657764c7-d814-481d-bca2-ae5ea9a8a918?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3385a7ab-2497-43bc-b34f-37bb94b56103?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c7647765-14d8-1d48-bca2-ae5ea9a8a918\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:29.07Z\"\n }" + string: "{\n \"name\": \"aba78533-9724-bc43-b34f-37bb94b56103\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:19:17.2233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:56:58 GMT + - Wed, 01 Dec 2021 14:19:47 GMT expires: - '-1' pragma: @@ -768,23 +732,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/657764c7-d814-481d-bca2-ae5ea9a8a918?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3385a7ab-2497-43bc-b34f-37bb94b56103?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c7647765-14d8-1d48-bca2-ae5ea9a8a918\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:56:29.07Z\"\n }" + string: "{\n \"name\": \"aba78533-9724-bc43-b34f-37bb94b56103\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:19:17.2233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:57:29 GMT + - Wed, 01 Dec 2021 14:20:17 GMT expires: - '-1' pragma: @@ -816,24 +780,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/657764c7-d814-481d-bca2-ae5ea9a8a918?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3385a7ab-2497-43bc-b34f-37bb94b56103?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c7647765-14d8-1d48-bca2-ae5ea9a8a918\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:56:29.07Z\",\n \"endTime\": - \"2021-10-19T06:57:30.5586748Z\"\n }" + string: "{\n \"name\": \"aba78533-9724-bc43-b34f-37bb94b56103\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:19:17.2233333Z\",\n \"endTime\": + \"2021-12-01T14:20:24.7283196Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 06:57:59 GMT + - Wed, 01 Dec 2021 14:20:48 GMT expires: - '-1' pragma: @@ -865,57 +829,60 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestmkqzvgwg6-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestmkqzvgwg6-8ecadf-62740a6b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestmkqzvgwg6-8ecadf-62740a6b.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest2ccuhabrx-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest2ccuhabrx-8ecadf-1b503a51.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest2ccuhabrx-8ecadf-1b503a51.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1d9539a0-4738-4f57-817c-7250d8011e94\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ffc3dd8c-18fd-436b-b7d1-23160515a382\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 06:57:59 GMT + - Wed, 01 Dec 2021 14:20:48 GMT expires: - '-1' pragma: @@ -949,8 +916,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -958,17 +925,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5831a23-705c-42dd-a691-2fd3e7c14bf7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b8a55e5-fe7d-4a0b-89ae-11551994e75b?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 06:58:00 GMT + - Wed, 01 Dec 2021 14:20:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b5831a23-705c-42dd-a691-2fd3e7c14bf7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/0b8a55e5-fe7d-4a0b-89ae-11551994e75b?api-version=2016-03-30 pragma: - no-cache server: @@ -978,7 +945,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14994' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_azurekeyvaultsecretsprovider.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_azurekeyvaultsecretsprovider.yaml index ed0584a8da1..307d9a9cc68 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_azurekeyvaultsecretsprovider.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_azurekeyvaultsecretsprovider.yaml @@ -13,13 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-resource/19.0.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-21T05:25:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:02:30Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 21 Oct 2021 05:25:53 GMT + - Wed, 01 Dec 2021 14:02:30 GMT expires: - '-1' pragma: @@ -44,13 +43,14 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestrbppjifwu-26fe00", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestdu5ig4juh-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": @@ -66,63 +66,63 @@ interactions: Connection: - keep-alive Content-Length: - - '1720' + - '1748' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestrbppjifwu-26fe00\",\n \"fqdn\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\"\ - : \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n\ - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\"\ - : \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\"\ - : \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdu5ig4juh-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f9574956-73ba-4b45-bb3f-fc1ef40441fd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58570de3-e299-44fc-a15b-4eb96f909873?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3123' + - '3236' content-type: - application/json date: - - Thu, 21 Oct 2021 05:26:04 GMT + - Wed, 01 Dec 2021 14:02:35 GMT expires: - '-1' pragma: @@ -152,23 +152,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f9574956-73ba-4b45-bb3f-fc1ef40441fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58570de3-e299-44fc-a15b-4eb96f909873?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"564957f9-ba73-454b-bb3f-fc1ef40441fd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-21T05:26:03.51Z\"\n }" + string: "{\n \"name\": \"e30d5758-99e2-fc44-a15b-4eb96f909873\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:35.6433333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 21 Oct 2021 05:26:35 GMT + - Wed, 01 Dec 2021 14:03:05 GMT expires: - '-1' pragma: @@ -200,23 +200,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f9574956-73ba-4b45-bb3f-fc1ef40441fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58570de3-e299-44fc-a15b-4eb96f909873?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"564957f9-ba73-454b-bb3f-fc1ef40441fd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-21T05:26:03.51Z\"\n }" + string: "{\n \"name\": \"e30d5758-99e2-fc44-a15b-4eb96f909873\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:35.6433333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 21 Oct 2021 05:27:05 GMT + - Wed, 01 Dec 2021 14:03:36 GMT expires: - '-1' pragma: @@ -248,23 +248,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f9574956-73ba-4b45-bb3f-fc1ef40441fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58570de3-e299-44fc-a15b-4eb96f909873?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"564957f9-ba73-454b-bb3f-fc1ef40441fd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-21T05:26:03.51Z\"\n }" + string: "{\n \"name\": \"e30d5758-99e2-fc44-a15b-4eb96f909873\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:35.6433333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 21 Oct 2021 05:27:34 GMT + - Wed, 01 Dec 2021 14:04:06 GMT expires: - '-1' pragma: @@ -296,23 +296,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f9574956-73ba-4b45-bb3f-fc1ef40441fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58570de3-e299-44fc-a15b-4eb96f909873?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"564957f9-ba73-454b-bb3f-fc1ef40441fd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-21T05:26:03.51Z\"\n }" + string: "{\n \"name\": \"e30d5758-99e2-fc44-a15b-4eb96f909873\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:35.6433333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 21 Oct 2021 05:28:06 GMT + - Wed, 01 Dec 2021 14:04:36 GMT expires: - '-1' pragma: @@ -344,23 +344,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f9574956-73ba-4b45-bb3f-fc1ef40441fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58570de3-e299-44fc-a15b-4eb96f909873?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"564957f9-ba73-454b-bb3f-fc1ef40441fd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-21T05:26:03.51Z\"\n }" + string: "{\n \"name\": \"e30d5758-99e2-fc44-a15b-4eb96f909873\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:02:35.6433333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Thu, 21 Oct 2021 05:28:36 GMT + - Wed, 01 Dec 2021 14:05:07 GMT expires: - '-1' pragma: @@ -392,23 +392,24 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f9574956-73ba-4b45-bb3f-fc1ef40441fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58570de3-e299-44fc-a15b-4eb96f909873?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"564957f9-ba73-454b-bb3f-fc1ef40441fd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-21T05:26:03.51Z\"\n }" + string: "{\n \"name\": \"e30d5758-99e2-fc44-a15b-4eb96f909873\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:02:35.6433333Z\",\n \"endTime\": + \"2021-12-01T14:05:23.2041255Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '170' content-type: - application/json date: - - Thu, 21 Oct 2021 05:29:06 GMT + - Wed, 01 Dec 2021 14:05:36 GMT expires: - '-1' pragma: @@ -440,23 +441,60 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f9574956-73ba-4b45-bb3f-fc1ef40441fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"name\": \"564957f9-ba73-454b-bb3f-fc1ef40441fd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-21T05:26:03.51Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdu5ig4juh-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bb9eaad5-2266-4f26-a2ea-f4c144e66f00\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '121' + - '3899' content-type: - application/json date: - - Thu, 21 Oct 2021 05:29:36 GMT + - Wed, 01 Dec 2021 14:05:37 GMT expires: - '-1' pragma: @@ -478,167 +516,70 @@ interactions: body: null headers: Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f9574956-73ba-4b45-bb3f-fc1ef40441fd?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"564957f9-ba73-454b-bb3f-fc1ef40441fd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-21T05:26:03.51Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - application/json - date: - - Thu, 21 Oct 2021 05:30:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f9574956-73ba-4b45-bb3f-fc1ef40441fd?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"564957f9-ba73-454b-bb3f-fc1ef40441fd\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2021-10-21T05:26:03.51Z\",\n \"endTime\"\ - : \"2021-10-21T05:30:09.856578Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '164' - content-type: - - application/json - date: - - Thu, 21 Oct 2021 05:30:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create + - aks enable-addons Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value + - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestrbppjifwu-26fe00\",\n \"fqdn\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/186d205d-18f8-4ec0-86bb-93ba93b2b600\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdu5ig4juh-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bb9eaad5-2266-4f26-a2ea-f4c144e66f00\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3786' + - '3899' content-type: - application/json date: - - Thu, 21 Oct 2021 05:30:38 GMT + - Wed, 01 Dec 2021 14:05:38 GMT expires: - '-1' pragma: @@ -657,7 +598,28 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": + "cliakstest-clitestdu5ig4juh-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": + "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": + true, "config": {"enableSecretRotation": "false", "rotationPollInterval": "2m"}}}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bb9eaad5-2266-4f26-a2ea-f4c144e66f00"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -667,63 +629,71 @@ interactions: - aks enable-addons Connection: - keep-alive + Content-Length: + - '2819' + Content-Type: + - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestrbppjifwu-26fe00\",\n \"fqdn\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/186d205d-18f8-4ec0-86bb-93ba93b2b600\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdu5ig4juh-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": + {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": + \"2m\"\n }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bb9eaad5-2266-4f26-a2ea-f4c144e66f00\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dbfb4bc1-30e1-4371-a3aa-b04e3ea61a17?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3786' + - '4089' content-type: - application/json date: - - Thu, 21 Oct 2021 05:30:40 GMT + - Wed, 01 Dec 2021 14:05:41 GMT expires: - '-1' pragma: @@ -738,106 +708,42 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' status: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestrbppjifwu-26fe00", "agentPoolProfiles": [{"count": 3, "vmSize": - "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": - "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": - true, "config": {"enableSecretRotation": "false", "rotationPollInterval": "2m"}}}, - "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": - true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": - "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": - "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/186d205d-18f8-4ec0-86bb-93ba93b2b600"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", - "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks enable-addons Connection: - keep-alive - Content-Length: - - '2737' - Content-Type: - - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dbfb4bc1-30e1-4371-a3aa-b04e3ea61a17?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestrbppjifwu-26fe00\",\n \"fqdn\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ - : true,\n \"config\": {\n \"enableSecretRotation\": \"false\",\n\ - \ \"rotationPollInterval\": \"2m\"\n }\n }\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n\ - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"\ - networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ - \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\"\ - : 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/186d205d-18f8-4ec0-86bb-93ba93b2b600\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"c14bfbdb-e130-7143-a3aa-b04e3ea61a17\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:05:41.77Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3da4ecae-83b7-472d-9602-ffae0314bc4a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3976' + - '121' content-type: - application/json date: - - Thu, 21 Oct 2021 05:30:48 GMT + - Wed, 01 Dec 2021 14:06:11 GMT expires: - '-1' pragma: @@ -852,8 +758,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: code: 200 message: OK @@ -871,23 +775,23 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3da4ecae-83b7-472d-9602-ffae0314bc4a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dbfb4bc1-30e1-4371-a3aa-b04e3ea61a17?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aeeca43d-b783-2d47-9602-ffae0314bc4a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-21T05:30:46.0433333Z\"\n }" + string: "{\n \"name\": \"c14bfbdb-e130-7143-a3aa-b04e3ea61a17\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:05:41.77Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 21 Oct 2021 05:31:19 GMT + - Wed, 01 Dec 2021 14:06:41 GMT expires: - '-1' pragma: @@ -919,24 +823,24 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3da4ecae-83b7-472d-9602-ffae0314bc4a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dbfb4bc1-30e1-4371-a3aa-b04e3ea61a17?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aeeca43d-b783-2d47-9602-ffae0314bc4a\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2021-10-21T05:30:46.0433333Z\",\n \"\ - endTime\": \"2021-10-21T05:31:44.6410116Z\"\n }" + string: "{\n \"name\": \"c14bfbdb-e130-7143-a3aa-b04e3ea61a17\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:05:41.77Z\",\n \"endTime\": + \"2021-12-01T14:06:43.2635602Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 21 Oct 2021 05:31:49 GMT + - Wed, 01 Dec 2021 14:07:12 GMT expires: - '-1' pragma: @@ -968,66 +872,64 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestrbppjifwu-26fe00\",\n \"fqdn\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ - : true,\n \"config\": {\n \"enableSecretRotation\": \"false\",\n\ - \ \"rotationPollInterval\": \"2m\"\n },\n \"identity\": {\n \ - \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ - objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/186d205d-18f8-4ec0-86bb-93ba93b2b600\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdu5ig4juh-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": + {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": + \"2m\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bb9eaad5-2266-4f26-a2ea-f4c144e66f00\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4361' + - '4474' content-type: - application/json date: - - Thu, 21 Oct 2021 05:31:50 GMT + - Wed, 01 Dec 2021 14:07:13 GMT expires: - '-1' pragma: @@ -1060,66 +962,64 @@ interactions: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestrbppjifwu-26fe00\",\n \"fqdn\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ - : true,\n \"config\": {\n \"enableSecretRotation\": \"false\",\n\ - \ \"rotationPollInterval\": \"2m\"\n },\n \"identity\": {\n \ - \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ - objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/186d205d-18f8-4ec0-86bb-93ba93b2b600\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdu5ig4juh-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": + {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": + \"2m\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bb9eaad5-2266-4f26-a2ea-f4c144e66f00\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4361' + - '4474' content-type: - application/json date: - - Thu, 21 Oct 2021 05:31:52 GMT + - Wed, 01 Dec 2021 14:07:13 GMT expires: - '-1' pragma: @@ -1140,14 +1040,14 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestrbppjifwu-26fe00", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestdu5ig4juh-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": true, "config": {"enableSecretRotation": "true", "rotationPollInterval": "120s"}}}, "nodeResourceGroup": @@ -1156,10 +1056,11 @@ interactions: "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/186d205d-18f8-4ec0-86bb-93ba93b2b600"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bb9eaad5-2266-4f26-a2ea-f4c144e66f00"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -1170,72 +1071,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2786' + - '2868' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestrbppjifwu-26fe00\",\n \"fqdn\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ - : true,\n \"config\": {\n \"enableSecretRotation\": \"true\",\n \ - \ \"rotationPollInterval\": \"120s\"\n }\n }\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n\ - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"\ - networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ - \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\"\ - : 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/186d205d-18f8-4ec0-86bb-93ba93b2b600\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdu5ig4juh-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": + {\n \"enableSecretRotation\": \"true\",\n \"rotationPollInterval\": + \"120s\"\n }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bb9eaad5-2266-4f26-a2ea-f4c144e66f00\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1d7267f-1dd5-44ac-b014-7db3effa43d8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e6cbde7c-3902-4709-8877-8895e6532132?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3977' + - '4090' content-type: - application/json date: - - Thu, 21 Oct 2021 05:31:58 GMT + - Wed, 01 Dec 2021 14:07:16 GMT expires: - '-1' pragma: @@ -1251,7 +1151,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 200 message: OK @@ -1270,23 +1170,23 @@ interactions: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1d7267f-1dd5-44ac-b014-7db3effa43d8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e6cbde7c-3902-4709-8877-8895e6532132?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7f26d7f1-d51d-ac44-b014-7db3effa43d8\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-21T05:31:56.0733333Z\"\n }" + string: "{\n \"name\": \"7cdecbe6-0239-0947-8877-8895e6532132\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:07:16.44Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 21 Oct 2021 05:32:28 GMT + - Wed, 01 Dec 2021 14:07:46 GMT expires: - '-1' pragma: @@ -1319,24 +1219,24 @@ interactions: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1d7267f-1dd5-44ac-b014-7db3effa43d8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e6cbde7c-3902-4709-8877-8895e6532132?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7f26d7f1-d51d-ac44-b014-7db3effa43d8\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2021-10-21T05:31:56.0733333Z\",\n \"\ - endTime\": \"2021-10-21T05:32:51.6089632Z\"\n }" + string: "{\n \"name\": \"7cdecbe6-0239-0947-8877-8895e6532132\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:07:16.44Z\",\n \"endTime\": + \"2021-12-01T14:08:12.8617731Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Thu, 21 Oct 2021 05:32:58 GMT + - Wed, 01 Dec 2021 14:08:16 GMT expires: - '-1' pragma: @@ -1369,66 +1269,64 @@ interactions: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestrbppjifwu-26fe00\",\n \"fqdn\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ - : true,\n \"config\": {\n \"enableSecretRotation\": \"true\",\n \ - \ \"rotationPollInterval\": \"120s\"\n },\n \"identity\": {\n\ - \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ - objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/186d205d-18f8-4ec0-86bb-93ba93b2b600\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdu5ig4juh-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": + {\n \"enableSecretRotation\": \"true\",\n \"rotationPollInterval\": + \"120s\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bb9eaad5-2266-4f26-a2ea-f4c144e66f00\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4362' + - '4475' content-type: - application/json date: - - Thu, 21 Oct 2021 05:32:59 GMT + - Wed, 01 Dec 2021 14:08:17 GMT expires: - '-1' pragma: @@ -1460,66 +1358,64 @@ interactions: ParameterSetName: - --resource-group --name --disable-secret-rotation -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestrbppjifwu-26fe00\",\n \"fqdn\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ - : true,\n \"config\": {\n \"enableSecretRotation\": \"true\",\n \ - \ \"rotationPollInterval\": \"120s\"\n },\n \"identity\": {\n\ - \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ - objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/186d205d-18f8-4ec0-86bb-93ba93b2b600\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdu5ig4juh-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": + {\n \"enableSecretRotation\": \"true\",\n \"rotationPollInterval\": + \"120s\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bb9eaad5-2266-4f26-a2ea-f4c144e66f00\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4362' + - '4475' content-type: - application/json date: - - Thu, 21 Oct 2021 05:33:02 GMT + - Wed, 01 Dec 2021 14:08:19 GMT expires: - '-1' pragma: @@ -1540,14 +1436,14 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestrbppjifwu-26fe00", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestdu5ig4juh-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": true, "config": {"enableSecretRotation": "false", "rotationPollInterval": "120s"}}}, "nodeResourceGroup": @@ -1556,10 +1452,11 @@ interactions: "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/186d205d-18f8-4ec0-86bb-93ba93b2b600"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bb9eaad5-2266-4f26-a2ea-f4c144e66f00"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -1570,71 +1467,70 @@ interactions: Connection: - keep-alive Content-Length: - - '2787' + - '2869' Content-Type: - application/json ParameterSetName: - --resource-group --name --disable-secret-rotation -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestrbppjifwu-26fe00\",\n \"fqdn\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ - : true,\n \"config\": {\n \"enableSecretRotation\": \"false\",\n\ - \ \"rotationPollInterval\": \"120s\"\n }\n }\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n\ - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"\ - networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ - \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\"\ - : 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/186d205d-18f8-4ec0-86bb-93ba93b2b600\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdu5ig4juh-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": + {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": + \"120s\"\n }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bb9eaad5-2266-4f26-a2ea-f4c144e66f00\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/75e55617-dc23-4bc2-801f-e569f76b3a66?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c6793785-ddee-4dfd-8e29-feda32821dfc?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3978' + - '4091' content-type: - application/json date: - - Thu, 21 Oct 2021 05:33:08 GMT + - Wed, 01 Dec 2021 14:08:23 GMT expires: - '-1' pragma: @@ -1650,7 +1546,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1668,23 +1564,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-secret-rotation -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/75e55617-dc23-4bc2-801f-e569f76b3a66?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c6793785-ddee-4dfd-8e29-feda32821dfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1756e575-23dc-c24b-801f-e569f76b3a66\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-21T05:33:05.9Z\"\n }" + string: "{\n \"name\": \"853779c6-eedd-fd4d-8e29-feda32821dfc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:08:22.55Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Thu, 21 Oct 2021 05:33:38 GMT + - Wed, 01 Dec 2021 14:08:53 GMT expires: - '-1' pragma: @@ -1716,23 +1612,24 @@ interactions: ParameterSetName: - --resource-group --name --disable-secret-rotation -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/75e55617-dc23-4bc2-801f-e569f76b3a66?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c6793785-ddee-4dfd-8e29-feda32821dfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1756e575-23dc-c24b-801f-e569f76b3a66\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-21T05:33:05.9Z\"\n }" + string: "{\n \"name\": \"853779c6-eedd-fd4d-8e29-feda32821dfc\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:08:22.55Z\",\n \"endTime\": + \"2021-12-01T14:09:19.3014027Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '165' content-type: - application/json date: - - Thu, 21 Oct 2021 05:34:08 GMT + - Wed, 01 Dec 2021 14:09:23 GMT expires: - '-1' pragma: @@ -1764,24 +1661,64 @@ interactions: ParameterSetName: - --resource-group --name --disable-secret-rotation -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/75e55617-dc23-4bc2-801f-e569f76b3a66?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"name\": \"1756e575-23dc-c24b-801f-e569f76b3a66\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2021-10-21T05:33:05.9Z\",\n \"endTime\"\ - : \"2021-10-21T05:34:11.1981353Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdu5ig4juh-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": + {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": + \"120s\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bb9eaad5-2266-4f26-a2ea-f4c144e66f00\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '164' + - '4476' content-type: - application/json date: - - Thu, 21 Oct 2021 05:34:40 GMT + - Wed, 01 Dec 2021 14:09:23 GMT expires: - '-1' pragma: @@ -1803,76 +1740,74 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks disable-addons Connection: - keep-alive ParameterSetName: - - --resource-group --name --disable-secret-rotation -o + - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestrbppjifwu-26fe00\",\n \"fqdn\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ - : true,\n \"config\": {\n \"enableSecretRotation\": \"false\",\n\ - \ \"rotationPollInterval\": \"120s\"\n },\n \"identity\": {\n\ - \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ - objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/186d205d-18f8-4ec0-86bb-93ba93b2b600\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdu5ig4juh-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": + {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": + \"120s\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bb9eaad5-2266-4f26-a2ea-f4c144e66f00\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4363' + - '4476' content-type: - application/json date: - - Thu, 21 Oct 2021 05:34:41 GMT + - Wed, 01 Dec 2021 14:09:24 GMT expires: - '-1' pragma: @@ -1891,7 +1826,27 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": + "cliakstest-clitestdu5ig4juh-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": + "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": + false}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bb9eaad5-2266-4f26-a2ea-f4c144e66f00"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -1901,69 +1856,70 @@ interactions: - aks disable-addons Connection: - keep-alive + Content-Length: + - '2745' + Content-Type: + - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestrbppjifwu-26fe00\",\n \"fqdn\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ - : true,\n \"config\": {\n \"enableSecretRotation\": \"false\",\n\ - \ \"rotationPollInterval\": \"120s\"\n },\n \"identity\": {\n\ - \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ - objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/186d205d-18f8-4ec0-86bb-93ba93b2b600\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdu5ig4juh-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": false,\n \"config\": + null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bb9eaad5-2266-4f26-a2ea-f4c144e66f00\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d15165f-706f-4f6c-97d5-d002e65a62d7?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4363' + - '4012' content-type: - application/json date: - - Thu, 21 Oct 2021 05:34:43 GMT + - Wed, 01 Dec 2021 14:09:27 GMT expires: - '-1' pragma: @@ -1978,103 +1934,42 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' status: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestrbppjifwu-26fe00", "agentPoolProfiles": [{"count": 3, "vmSize": - "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": - "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": - false}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": - true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": - "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": - "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/186d205d-18f8-4ec0-86bb-93ba93b2b600"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", - "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks disable-addons Connection: - keep-alive - Content-Length: - - '2663' - Content-Type: - - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d15165f-706f-4f6c-97d5-d002e65a62d7?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestrbppjifwu-26fe00\",\n \"fqdn\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ - : false,\n \"config\": null\n }\n },\n \"nodeResourceGroup\": \"\ - MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\"\ - : \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ - : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ - effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/186d205d-18f8-4ec0-86bb-93ba93b2b600\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"5f16151d-6f70-6c4f-97d5-d002e65a62d7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:27.91Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/494535bb-119a-471e-ba53-28654bb6d62e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3899' + - '121' content-type: - application/json date: - - Thu, 21 Oct 2021 05:34:51 GMT + - Wed, 01 Dec 2021 14:09:58 GMT expires: - '-1' pragma: @@ -2089,8 +1984,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: code: 200 message: OK @@ -2108,23 +2001,23 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/494535bb-119a-471e-ba53-28654bb6d62e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d15165f-706f-4f6c-97d5-d002e65a62d7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bb354549-9a11-1e47-ba53-28654bb6d62e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-21T05:34:49.0766666Z\"\n }" + string: "{\n \"name\": \"5f16151d-6f70-6c4f-97d5-d002e65a62d7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:27.91Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 21 Oct 2021 05:35:22 GMT + - Wed, 01 Dec 2021 14:10:28 GMT expires: - '-1' pragma: @@ -2156,24 +2049,24 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/494535bb-119a-471e-ba53-28654bb6d62e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d15165f-706f-4f6c-97d5-d002e65a62d7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bb354549-9a11-1e47-ba53-28654bb6d62e\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2021-10-21T05:34:49.0766666Z\",\n \"\ - endTime\": \"2021-10-21T05:35:52.3792977Z\"\n }" + string: "{\n \"name\": \"5f16151d-6f70-6c4f-97d5-d002e65a62d7\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:09:27.91Z\",\n \"endTime\": + \"2021-12-01T14:10:31.229355Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '164' content-type: - application/json date: - - Thu, 21 Oct 2021 05:35:52 GMT + - Wed, 01 Dec 2021 14:10:58 GMT expires: - '-1' pragma: @@ -2205,61 +2098,61 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestrbppjifwu-26fe00\",\n \"fqdn\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ - : false,\n \"config\": null\n }\n },\n \"nodeResourceGroup\": \"\ - MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\"\ - : \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ - : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ - effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/186d205d-18f8-4ec0-86bb-93ba93b2b600\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdu5ig4juh-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": false,\n \"config\": + null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bb9eaad5-2266-4f26-a2ea-f4c144e66f00\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3901' + - '4014' content-type: - application/json date: - - Thu, 21 Oct 2021 05:35:52 GMT + - Wed, 01 Dec 2021 14:10:58 GMT expires: - '-1' pragma: @@ -2292,61 +2185,61 @@ interactions: - --addons --enable-secret-rotation --rotation-poll-interval --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestrbppjifwu-26fe00\",\n \"fqdn\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ - : false,\n \"config\": null\n }\n },\n \"nodeResourceGroup\": \"\ - MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\"\ - : \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ - : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ - effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/186d205d-18f8-4ec0-86bb-93ba93b2b600\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdu5ig4juh-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": false,\n \"config\": + null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bb9eaad5-2266-4f26-a2ea-f4c144e66f00\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3901' + - '4014' content-type: - application/json date: - - Thu, 21 Oct 2021 05:35:55 GMT + - Wed, 01 Dec 2021 14:11:00 GMT expires: - '-1' pragma: @@ -2367,14 +2260,14 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestrbppjifwu-26fe00", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestdu5ig4juh-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": true, "config": {"enableSecretRotation": "true", "rotationPollInterval": "1h"}}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": @@ -2382,10 +2275,11 @@ interactions: "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/186d205d-18f8-4ec0-86bb-93ba93b2b600"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bb9eaad5-2266-4f26-a2ea-f4c144e66f00"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -2396,72 +2290,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2736' + - '2818' Content-Type: - application/json ParameterSetName: - --addons --enable-secret-rotation --rotation-poll-interval --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestrbppjifwu-26fe00\",\n \"fqdn\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ - : true,\n \"config\": {\n \"enableSecretRotation\": \"true\",\n \ - \ \"rotationPollInterval\": \"1h\"\n }\n }\n },\n \"nodeResourceGroup\"\ - : \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n\ - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"\ - networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ - \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\"\ - : 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/186d205d-18f8-4ec0-86bb-93ba93b2b600\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdu5ig4juh-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": + {\n \"enableSecretRotation\": \"true\",\n \"rotationPollInterval\": + \"1h\"\n }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bb9eaad5-2266-4f26-a2ea-f4c144e66f00\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/94423ddf-b7a8-407d-a53d-30ef083362a7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4c8f1cc1-ed40-4e01-bf86-8e2d7263ee7d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3975' + - '4088' content-type: - application/json date: - - Thu, 21 Oct 2021 05:36:05 GMT + - Wed, 01 Dec 2021 14:11:04 GMT expires: - '-1' pragma: @@ -2477,7 +2370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -2496,23 +2389,23 @@ interactions: - --addons --enable-secret-rotation --rotation-poll-interval --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/94423ddf-b7a8-407d-a53d-30ef083362a7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4c8f1cc1-ed40-4e01-bf86-8e2d7263ee7d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"df3d4294-a8b7-7d40-a53d-30ef083362a7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-10-21T05:36:00.3266666Z\"\n }" + string: "{\n \"name\": \"c11c8f4c-40ed-014e-bf86-8e2d7263ee7d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:03.24Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Thu, 21 Oct 2021 05:36:35 GMT + - Wed, 01 Dec 2021 14:11:34 GMT expires: - '-1' pragma: @@ -2545,24 +2438,73 @@ interactions: - --addons --enable-secret-rotation --rotation-poll-interval --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/94423ddf-b7a8-407d-a53d-30ef083362a7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4c8f1cc1-ed40-4e01-bf86-8e2d7263ee7d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"df3d4294-a8b7-7d40-a53d-30ef083362a7\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2021-10-21T05:36:00.3266666Z\",\n \"\ - endTime\": \"2021-10-21T05:36:55.1363878Z\"\n }" + string: "{\n \"name\": \"c11c8f4c-40ed-014e-bf86-8e2d7263ee7d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:03.24Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:12:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --enable-secret-rotation --rotation-poll-interval --resource-group + --name -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4c8f1cc1-ed40-4e01-bf86-8e2d7263ee7d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c11c8f4c-40ed-014e-bf86-8e2d7263ee7d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:11:03.24Z\",\n \"endTime\": + \"2021-12-01T14:12:05.1647502Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '165' content-type: - application/json date: - - Thu, 21 Oct 2021 05:37:05 GMT + - Wed, 01 Dec 2021 14:12:34 GMT expires: - '-1' pragma: @@ -2595,66 +2537,64 @@ interactions: - --addons --enable-secret-rotation --rotation-poll-interval --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestrbppjifwu-26fe00\",\n \"fqdn\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestrbppjifwu-26fe00-86900ad8.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ - : true,\n \"config\": {\n \"enableSecretRotation\": \"true\",\n \ - \ \"rotationPollInterval\": \"1h\"\n },\n \"identity\": {\n \ - \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ - objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/186d205d-18f8-4ec0-86bb-93ba93b2b600\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdu5ig4juh-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestdu5ig4juh-8ecadf-d31e435d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": + {\n \"enableSecretRotation\": \"true\",\n \"rotationPollInterval\": + \"1h\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bb9eaad5-2266-4f26-a2ea-f4c144e66f00\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4360' + - '4473' content-type: - application/json date: - - Thu, 21 Oct 2021 05:37:06 GMT + - Wed, 01 Dec 2021 14:12:35 GMT expires: - '-1' pragma: @@ -2688,8 +2628,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.29.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.9.6 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -2697,17 +2637,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1c6e3b29-3761-4f23-bef1-deed115e4407?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c16a1446-09c9-4759-8805-fa78ec17805a?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 21 Oct 2021 05:37:10 GMT + - Wed, 01 Dec 2021 14:12:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/1c6e3b29-3761-4f23-bef1-deed115e4407?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/c16a1446-09c9-4759-8805-fa78ec17805a?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_gitops.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_gitops.yaml new file mode 100644 index 00000000000..d608fc63442 --- /dev/null +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_gitops.yaml @@ -0,0 +1,947 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:12:39Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '312' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:12:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestz3gaemtns-8ecadf", + "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1747' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestz3gaemtns-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestz3gaemtns-8ecadf-dd299f2c.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestz3gaemtns-8ecadf-dd299f2c.portal.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_eastus\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/06cc11b1-a520-4970-a39c-535317b67ec0?api-version=2017-08-31 + cache-control: + - no-cache + content-length: + - '3232' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:12:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/06cc11b1-a520-4970-a39c-535317b67ec0?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"b111cc06-20a5-7049-a39c-535317b67ec0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:44.5066666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:13:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/06cc11b1-a520-4970-a39c-535317b67ec0?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"b111cc06-20a5-7049-a39c-535317b67ec0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:44.5066666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:13:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/06cc11b1-a520-4970-a39c-535317b67ec0?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"b111cc06-20a5-7049-a39c-535317b67ec0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:44.5066666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:14:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/06cc11b1-a520-4970-a39c-535317b67ec0?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"b111cc06-20a5-7049-a39c-535317b67ec0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:44.5066666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:14:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/06cc11b1-a520-4970-a39c-535317b67ec0?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"b111cc06-20a5-7049-a39c-535317b67ec0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:44.5066666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/06cc11b1-a520-4970-a39c-535317b67ec0?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"b111cc06-20a5-7049-a39c-535317b67ec0\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:12:44.5066666Z\",\n \"endTime\": + \"2021-12-01T14:15:39.4770791Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --ssh-key-value -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestz3gaemtns-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestz3gaemtns-8ecadf-dd299f2c.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestz3gaemtns-8ecadf-dd299f2c.portal.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_eastus\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/3e709c2d-7b65-4529-b396-3466a961fc8a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '3893' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestz3gaemtns-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestz3gaemtns-8ecadf-dd299f2c.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestz3gaemtns-8ecadf-dd299f2c.portal.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_eastus\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/3e709c2d-7b65-4529-b396-3466a961fc8a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '3893' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "sku": {"name": "Basic", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": + "cliakstest-clitestz3gaemtns-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": + "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"gitops": {"enabled": true}}, "nodeResourceGroup": + "MC_clitest000001_cliakstest000002_eastus", "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/3e709c2d-7b65-4529-b396-3466a961fc8a"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + Content-Length: + - '2718' + Content-Type: + - application/json + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestz3gaemtns-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestz3gaemtns-8ecadf-dd299f2c.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestz3gaemtns-8ecadf-dd299f2c.portal.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"gitops\": {\n \"enabled\": true,\n \"config\": null\n }\n + \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/3e709c2d-7b65-4529-b396-3466a961fc8a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/58c5f5f9-4281-400b-8454-8d6352b4324b?api-version=2017-08-31 + cache-control: + - no-cache + content-length: + - '3983' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/58c5f5f9-4281-400b-8454-8d6352b4324b?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"f9f5c558-8142-0b40-8454-8d6352b4324b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:15:49.9466666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:16:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/58c5f5f9-4281-400b-8454-8d6352b4324b?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"f9f5c558-8142-0b40-8454-8d6352b4324b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:15:49.9466666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:16:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/58c5f5f9-4281-400b-8454-8d6352b4324b?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"f9f5c558-8142-0b40-8454-8d6352b4324b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:15:49.9466666Z\",\n \"endTime\": + \"2021-12-01T14:16:59.1889339Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:17:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestz3gaemtns-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestz3gaemtns-8ecadf-dd299f2c.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestz3gaemtns-8ecadf-dd299f2c.portal.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"gitops\": {\n \"enabled\": true,\n \"config\": null,\n \"identity\": + {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/gitops-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/3e709c2d-7b65-4529-b396-3466a961fc8a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4345' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:17:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +version: 1 diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_openservicemesh.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_openservicemesh.yaml old mode 100755 new mode 100644 index e9939f6abd2..447f10a4016 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_openservicemesh.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addon_with_openservicemesh.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:51:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:07:41Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 06:51:12 GMT + - Wed, 01 Dec 2021 14:07:41 GMT expires: - '-1' pragma: @@ -43,18 +43,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestexkob7u6t-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest5sk7eiip7-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -65,38 +66,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1391' + - '1748' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestexkob7u6t-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestexkob7u6t-8ecadf-1afedb3c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestexkob7u6t-8ecadf-1afedb3c.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest5sk7eiip7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest5sk7eiip7-8ecadf-c6cf394a.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest5sk7eiip7-8ecadf-c6cf394a.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -104,22 +106,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e702b1b2-593a-47ef-9ad1-fe23417a146a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/495b0264-626c-47ed-bd0b-d8e054f6f95d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2778' + - '3236' content-type: - application/json date: - - Tue, 19 Oct 2021 06:51:15 GMT + - Wed, 01 Dec 2021 14:07:46 GMT expires: - '-1' pragma: @@ -131,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -149,23 +152,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e702b1b2-593a-47ef-9ad1-fe23417a146a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/495b0264-626c-47ed-bd0b-d8e054f6f95d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2b102e7-3a59-ef47-9ad1-fe23417a146a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:51:16.54Z\"\n }" + string: "{\n \"name\": \"64025b49-6c62-ed47-bd0b-d8e054f6f95d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:07:46.2233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:51:46 GMT + - Wed, 01 Dec 2021 14:08:16 GMT expires: - '-1' pragma: @@ -197,23 +200,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e702b1b2-593a-47ef-9ad1-fe23417a146a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/495b0264-626c-47ed-bd0b-d8e054f6f95d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2b102e7-3a59-ef47-9ad1-fe23417a146a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:51:16.54Z\"\n }" + string: "{\n \"name\": \"64025b49-6c62-ed47-bd0b-d8e054f6f95d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:07:46.2233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:52:16 GMT + - Wed, 01 Dec 2021 14:08:46 GMT expires: - '-1' pragma: @@ -245,23 +248,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e702b1b2-593a-47ef-9ad1-fe23417a146a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/495b0264-626c-47ed-bd0b-d8e054f6f95d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2b102e7-3a59-ef47-9ad1-fe23417a146a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:51:16.54Z\"\n }" + string: "{\n \"name\": \"64025b49-6c62-ed47-bd0b-d8e054f6f95d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:07:46.2233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:52:46 GMT + - Wed, 01 Dec 2021 14:09:16 GMT expires: - '-1' pragma: @@ -293,23 +296,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e702b1b2-593a-47ef-9ad1-fe23417a146a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/495b0264-626c-47ed-bd0b-d8e054f6f95d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2b102e7-3a59-ef47-9ad1-fe23417a146a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:51:16.54Z\"\n }" + string: "{\n \"name\": \"64025b49-6c62-ed47-bd0b-d8e054f6f95d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:07:46.2233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:53:16 GMT + - Wed, 01 Dec 2021 14:09:46 GMT expires: - '-1' pragma: @@ -341,23 +344,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e702b1b2-593a-47ef-9ad1-fe23417a146a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/495b0264-626c-47ed-bd0b-d8e054f6f95d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2b102e7-3a59-ef47-9ad1-fe23417a146a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:51:16.54Z\"\n }" + string: "{\n \"name\": \"64025b49-6c62-ed47-bd0b-d8e054f6f95d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:07:46.2233333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:53:46 GMT + - Wed, 01 Dec 2021 14:10:17 GMT expires: - '-1' pragma: @@ -389,24 +392,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e702b1b2-593a-47ef-9ad1-fe23417a146a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/495b0264-626c-47ed-bd0b-d8e054f6f95d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2b102e7-3a59-ef47-9ad1-fe23417a146a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:51:16.54Z\",\n \"endTime\": - \"2021-10-19T06:54:16.2804055Z\"\n }" + string: "{\n \"name\": \"64025b49-6c62-ed47-bd0b-d8e054f6f95d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:07:46.2233333Z\",\n \"endTime\": + \"2021-12-01T14:10:23.3934101Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 06:54:16 GMT + - Wed, 01 Dec 2021 14:10:47 GMT expires: - '-1' pragma: @@ -438,57 +441,60 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestexkob7u6t-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestexkob7u6t-8ecadf-1afedb3c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestexkob7u6t-8ecadf-1afedb3c.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest5sk7eiip7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest5sk7eiip7-8ecadf-c6cf394a.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest5sk7eiip7-8ecadf-c6cf394a.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fa14bf56-6796-4a71-9582-1914b4c1d30a\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b320fc34-1532-440c-a2e9-4b035dc5bcc9\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 06:54:17 GMT + - Wed, 01 Dec 2021 14:10:47 GMT expires: - '-1' pragma: @@ -520,57 +526,60 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestexkob7u6t-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestexkob7u6t-8ecadf-1afedb3c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestexkob7u6t-8ecadf-1afedb3c.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest5sk7eiip7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest5sk7eiip7-8ecadf-c6cf394a.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest5sk7eiip7-8ecadf-c6cf394a.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fa14bf56-6796-4a71-9582-1914b4c1d30a\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b320fc34-1532-440c-a2e9-4b035dc5bcc9\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 06:54:17 GMT + - Wed, 01 Dec 2021 14:10:48 GMT expires: - '-1' pragma: @@ -591,24 +600,25 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestexkob7u6t-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitest5sk7eiip7-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": - {"enabled": true, "config": {}}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": true, + "config": {}}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fa14bf56-6796-4a71-9582-1914b4c1d30a"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b320fc34-1532-440c-a2e9-4b035dc5bcc9"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -619,66 +629,69 @@ interactions: Connection: - keep-alive Content-Length: - - '2334' + - '2745' Content-Type: - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestexkob7u6t-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestexkob7u6t-8ecadf-1afedb3c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestexkob7u6t-8ecadf-1afedb3c.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest5sk7eiip7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest5sk7eiip7-8ecadf-c6cf394a.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest5sk7eiip7-8ecadf-c6cf394a.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": {}\n + {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null\n \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fa14bf56-6796-4a71-9582-1914b4c1d30a\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b320fc34-1532-440c-a2e9-4b035dc5bcc9\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d24986b3-7396-4a94-8b8c-afd8627be5b4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16eaf9b2-d2b7-431a-8305-d77f7684bab8?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3538' + - '3998' content-type: - application/json date: - - Tue, 19 Oct 2021 06:54:18 GMT + - Wed, 01 Dec 2021 14:10:52 GMT expires: - '-1' pragma: @@ -694,7 +707,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16eaf9b2-d2b7-431a-8305-d77f7684bab8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b2f9ea16-b7d2-1a43-8305-d77f7684bab8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:10:51.8666666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:11:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -712,23 +773,23 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d24986b3-7396-4a94-8b8c-afd8627be5b4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16eaf9b2-d2b7-431a-8305-d77f7684bab8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b38649d2-9673-944a-8b8c-afd8627be5b4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:54:19.65Z\"\n }" + string: "{\n \"name\": \"b2f9ea16-b7d2-1a43-8305-d77f7684bab8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:10:51.8666666Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 06:54:49 GMT + - Wed, 01 Dec 2021 14:11:52 GMT expires: - '-1' pragma: @@ -760,24 +821,24 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d24986b3-7396-4a94-8b8c-afd8627be5b4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16eaf9b2-d2b7-431a-8305-d77f7684bab8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b38649d2-9673-944a-8b8c-afd8627be5b4\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:54:19.65Z\",\n \"endTime\": - \"2021-10-19T06:55:16.6370951Z\"\n }" + string: "{\n \"name\": \"b2f9ea16-b7d2-1a43-8305-d77f7684bab8\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:10:51.8666666Z\",\n \"endTime\": + \"2021-12-01T14:11:53.8291143Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 06:55:19 GMT + - Wed, 01 Dec 2021 14:12:22 GMT expires: - '-1' pragma: @@ -809,60 +870,63 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestexkob7u6t-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestexkob7u6t-8ecadf-1afedb3c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestexkob7u6t-8ecadf-1afedb3c.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest5sk7eiip7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest5sk7eiip7-8ecadf-c6cf394a.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest5sk7eiip7-8ecadf-c6cf394a.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": {},\n + {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null,\n \ \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/openservicemesh-cliakstest000002\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fa14bf56-6796-4a71-9582-1914b4c1d30a\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b320fc34-1532-440c-a2e9-4b035dc5bcc9\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3910' + - '4370' content-type: - application/json date: - - Tue, 19 Oct 2021 06:55:19 GMT + - Wed, 01 Dec 2021 14:12:23 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addons_confcom_addon.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addons_confcom_addon.yaml old mode 100755 new mode 100644 index 439e585057d..a23287e1720 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addons_confcom_addon.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_addons_confcom_addon.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:37:19Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:12:25Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:37:20 GMT + - Wed, 01 Dec 2021 14:12:26 GMT expires: - '-1' pragma: @@ -43,18 +43,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestmb4m5j2cg-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestnbdx7jsxo-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -65,38 +66,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1391' + - '1748' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestmb4m5j2cg-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestmb4m5j2cg-8ecadf-439f10f9.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestmb4m5j2cg-8ecadf-439f10f9.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestnbdx7jsxo-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestnbdx7jsxo-8ecadf-140f4313.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestnbdx7jsxo-8ecadf-140f4313.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -104,22 +106,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1deedf-9eec-4ca6-88eb-fb251fe734fe?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55aad99c-b3e9-4176-9d27-064ef7cfd28b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2778' + - '3236' content-type: - application/json date: - - Tue, 19 Oct 2021 07:37:23 GMT + - Wed, 01 Dec 2021 14:12:30 GMT expires: - '-1' pragma: @@ -131,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1197' status: code: 201 message: Created @@ -149,311 +152,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1deedf-9eec-4ca6-88eb-fb251fe734fe?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"dfee1d3e-ec9e-a64c-88eb-fb251fe734fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:37:23.7233333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:37:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1deedf-9eec-4ca6-88eb-fb251fe734fe?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"dfee1d3e-ec9e-a64c-88eb-fb251fe734fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:37:23.7233333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:38:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1deedf-9eec-4ca6-88eb-fb251fe734fe?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"dfee1d3e-ec9e-a64c-88eb-fb251fe734fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:37:23.7233333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:38:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1deedf-9eec-4ca6-88eb-fb251fe734fe?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"dfee1d3e-ec9e-a64c-88eb-fb251fe734fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:37:23.7233333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:39:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1deedf-9eec-4ca6-88eb-fb251fe734fe?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"dfee1d3e-ec9e-a64c-88eb-fb251fe734fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:37:23.7233333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:39:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1deedf-9eec-4ca6-88eb-fb251fe734fe?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"dfee1d3e-ec9e-a64c-88eb-fb251fe734fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:37:23.7233333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:40:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --ssh-key-value -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1deedf-9eec-4ca6-88eb-fb251fe734fe?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55aad99c-b3e9-4176-9d27-064ef7cfd28b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfee1d3e-ec9e-a64c-88eb-fb251fe734fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:37:23.7233333Z\"\n }" + string: "{\n \"name\": \"9cd9aa55-e9b3-7641-9d27-064ef7cfd28b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:30.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:40:53 GMT + - Wed, 01 Dec 2021 14:13:01 GMT expires: - '-1' pragma: @@ -485,23 +200,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1deedf-9eec-4ca6-88eb-fb251fe734fe?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55aad99c-b3e9-4176-9d27-064ef7cfd28b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfee1d3e-ec9e-a64c-88eb-fb251fe734fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:37:23.7233333Z\"\n }" + string: "{\n \"name\": \"9cd9aa55-e9b3-7641-9d27-064ef7cfd28b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:30.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:41:24 GMT + - Wed, 01 Dec 2021 14:13:31 GMT expires: - '-1' pragma: @@ -533,23 +248,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1deedf-9eec-4ca6-88eb-fb251fe734fe?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55aad99c-b3e9-4176-9d27-064ef7cfd28b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfee1d3e-ec9e-a64c-88eb-fb251fe734fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:37:23.7233333Z\"\n }" + string: "{\n \"name\": \"9cd9aa55-e9b3-7641-9d27-064ef7cfd28b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:30.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:41:53 GMT + - Wed, 01 Dec 2021 14:14:01 GMT expires: - '-1' pragma: @@ -581,23 +296,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1deedf-9eec-4ca6-88eb-fb251fe734fe?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55aad99c-b3e9-4176-9d27-064ef7cfd28b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfee1d3e-ec9e-a64c-88eb-fb251fe734fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:37:23.7233333Z\"\n }" + string: "{\n \"name\": \"9cd9aa55-e9b3-7641-9d27-064ef7cfd28b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:30.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:42:23 GMT + - Wed, 01 Dec 2021 14:14:31 GMT expires: - '-1' pragma: @@ -629,23 +344,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1deedf-9eec-4ca6-88eb-fb251fe734fe?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55aad99c-b3e9-4176-9d27-064ef7cfd28b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfee1d3e-ec9e-a64c-88eb-fb251fe734fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:37:23.7233333Z\"\n }" + string: "{\n \"name\": \"9cd9aa55-e9b3-7641-9d27-064ef7cfd28b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:30.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:42:54 GMT + - Wed, 01 Dec 2021 14:15:01 GMT expires: - '-1' pragma: @@ -677,23 +392,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1deedf-9eec-4ca6-88eb-fb251fe734fe?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55aad99c-b3e9-4176-9d27-064ef7cfd28b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfee1d3e-ec9e-a64c-88eb-fb251fe734fe\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:37:23.7233333Z\"\n }" + string: "{\n \"name\": \"9cd9aa55-e9b3-7641-9d27-064ef7cfd28b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:30.85Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:43:24 GMT + - Wed, 01 Dec 2021 14:15:31 GMT expires: - '-1' pragma: @@ -725,24 +440,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1deedf-9eec-4ca6-88eb-fb251fe734fe?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55aad99c-b3e9-4176-9d27-064ef7cfd28b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfee1d3e-ec9e-a64c-88eb-fb251fe734fe\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:37:23.7233333Z\",\n \"endTime\": - \"2021-10-19T07:43:47.1910598Z\"\n }" + string: "{\n \"name\": \"9cd9aa55-e9b3-7641-9d27-064ef7cfd28b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:12:30.85Z\",\n \"endTime\": + \"2021-12-01T14:15:48.6166809Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Tue, 19 Oct 2021 07:43:53 GMT + - Wed, 01 Dec 2021 14:16:01 GMT expires: - '-1' pragma: @@ -774,57 +489,60 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestmb4m5j2cg-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestmb4m5j2cg-8ecadf-439f10f9.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestmb4m5j2cg-8ecadf-439f10f9.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestnbdx7jsxo-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestnbdx7jsxo-8ecadf-140f4313.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestnbdx7jsxo-8ecadf-140f4313.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/11527fef-386f-436b-ab61-9e723792b72b\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fd1ebfe-d225-4ec1-8e27-df7575e9bf08\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 07:43:54 GMT + - Wed, 01 Dec 2021 14:16:02 GMT expires: - '-1' pragma: @@ -856,57 +574,60 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestmb4m5j2cg-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestmb4m5j2cg-8ecadf-439f10f9.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestmb4m5j2cg-8ecadf-439f10f9.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestnbdx7jsxo-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestnbdx7jsxo-8ecadf-140f4313.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestnbdx7jsxo-8ecadf-140f4313.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/11527fef-386f-436b-ab61-9e723792b72b\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fd1ebfe-d225-4ec1-8e27-df7575e9bf08\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 07:43:55 GMT + - Wed, 01 Dec 2021 14:16:04 GMT expires: - '-1' pragma: @@ -927,25 +648,26 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestmb4m5j2cg-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestnbdx7jsxo-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": - {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "nodeResourceGroup": + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": + true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/11527fef-386f-436b-ab61-9e723792b72b"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fd1ebfe-d225-4ec1-8e27-df7575e9bf08"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -956,38 +678,39 @@ interactions: Connection: - keep-alive Content-Length: - - '2372' + - '2783' Content-Type: - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestmb4m5j2cg-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestmb4m5j2cg-8ecadf-439f10f9.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestmb4m5j2cg-8ecadf-439f10f9.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestnbdx7jsxo-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestnbdx7jsxo-8ecadf-140f4313.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestnbdx7jsxo-8ecadf-140f4313.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n }\n },\n \"nodeResourceGroup\": @@ -995,28 +718,30 @@ interactions: \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/11527fef-386f-436b-ab61-9e723792b72b\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fd1ebfe-d225-4ec1-8e27-df7575e9bf08\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c77f817-f26a-4d41-a05f-74d01224bac8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d502b2c-4a75-4bc0-a850-2aeef0a7a5c8?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3589' + - '4047' content-type: - application/json date: - - Tue, 19 Oct 2021 07:43:57 GMT + - Wed, 01 Dec 2021 14:16:07 GMT expires: - '-1' pragma: @@ -1032,7 +757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1184' status: code: 200 message: OK @@ -1050,14 +775,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c77f817-f26a-4d41-a05f-74d01224bac8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d502b2c-4a75-4bc0-a850-2aeef0a7a5c8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"17f8777c-6af2-414d-a05f-74d01224bac8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:43:57.7933333Z\"\n }" + string: "{\n \"name\": \"2c2b503d-754a-c04b-a850-2aeef0a7a5c8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:16:06.9466666Z\"\n }" headers: cache-control: - no-cache @@ -1066,7 +791,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:44:27 GMT + - Wed, 01 Dec 2021 14:16:37 GMT expires: - '-1' pragma: @@ -1098,15 +823,15 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c77f817-f26a-4d41-a05f-74d01224bac8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d502b2c-4a75-4bc0-a850-2aeef0a7a5c8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"17f8777c-6af2-414d-a05f-74d01224bac8\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:43:57.7933333Z\",\n \"endTime\": - \"2021-10-19T07:44:51.5469518Z\"\n }" + string: "{\n \"name\": \"2c2b503d-754a-c04b-a850-2aeef0a7a5c8\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:16:06.9466666Z\",\n \"endTime\": + \"2021-12-01T14:17:04.9758877Z\"\n }" headers: cache-control: - no-cache @@ -1115,7 +840,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:44:57 GMT + - Wed, 01 Dec 2021 14:17:07 GMT expires: - '-1' pragma: @@ -1147,32 +872,33 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestmb4m5j2cg-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestmb4m5j2cg-8ecadf-439f10f9.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestmb4m5j2cg-8ecadf-439f10f9.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestnbdx7jsxo-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestnbdx7jsxo-8ecadf-140f4313.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestnbdx7jsxo-8ecadf-140f4313.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n },\n \"identity\": @@ -1182,26 +908,28 @@ interactions: \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/11527fef-386f-436b-ab61-9e723792b72b\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4fd1ebfe-d225-4ec1-8e27-df7575e9bf08\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3964' + - '4422' content-type: - application/json date: - - Tue, 19 Oct 2021 07:44:57 GMT + - Wed, 01 Dec 2021 14:17:08 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_monitoring_with_aad_auth_msi.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_monitoring_with_aad_auth_msi.yaml new file mode 100644 index 00000000000..9bc2869ffec --- /dev/null +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_monitoring_with_aad_auth_msi.yaml @@ -0,0 +1,2252 @@ +interactions: +- request: + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest6xb7xxiwg-8ecadf", + "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1748' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --node-count + --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6xb7xxiwg-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest6xb7xxiwg-8ecadf-96a2404c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest6xb7xxiwg-8ecadf-96a2404c.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3bf870a7-5d50-43d1-bdc8-65312b031a3b?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '3236' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --node-count + --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3bf870a7-5d50-43d1-bdc8-65312b031a3b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a770f83b-505d-d143-bdc8-65312b031a3b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:15:28.57Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --node-count + --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3bf870a7-5d50-43d1-bdc8-65312b031a3b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a770f83b-505d-d143-bdc8-65312b031a3b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:15:28.57Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:16:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --node-count + --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3bf870a7-5d50-43d1-bdc8-65312b031a3b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a770f83b-505d-d143-bdc8-65312b031a3b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:15:28.57Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:16:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --node-count + --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3bf870a7-5d50-43d1-bdc8-65312b031a3b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a770f83b-505d-d143-bdc8-65312b031a3b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:15:28.57Z\",\n \"endTime\": + \"2021-12-01T14:17:27.038703Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '164' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:17:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --node-count + --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6xb7xxiwg-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest6xb7xxiwg-8ecadf-96a2404c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest6xb7xxiwg-8ecadf-96a2404c.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1f633d2f-faa2-4e2d-bea5-fe0ddeb8bc95\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '3899' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:17:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6xb7xxiwg-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest6xb7xxiwg-8ecadf-96a2404c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest6xb7xxiwg-8ecadf-96a2404c.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1f633d2f-faa2-4e2d-bea5-fe0ddeb8bc95\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '3899' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:17:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"cause":"automation","date":"2021-12-01T14:15:23Z","deletion_due_time":"1638627436","deletion_marked_by":"gc","product":"azurecli"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '372' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:17:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 01 Dec 2021 14:17:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2?api-version=2015-11-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": + \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"sku\": {\r\n \"name\": \"standalone\",\r\n \"lastSkuUpdate\": + \"Mon, 02 Aug 2021 07:30:13 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n + \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n + \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": + \"Wed, 01 Dec 2021 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": + \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n + \ \"modifiedDate\": \"Mon, 29 Nov 2021 09:57:04 GMT\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n + \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n + \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": + \"westus2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1162' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:17:32 GMT + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2015-11-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": + \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"sku\": {\r\n \"name\": \"standalone\",\r\n \"lastSkuUpdate\": + \"Mon, 02 Aug 2021 07:30:13 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n + \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n + \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": + \"Wed, 01 Dec 2021 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": + \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n + \ \"modifiedDate\": \"Mon, 29 Nov 2021 09:57:04 GMT\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n + \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n + \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": + \"westus2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1162' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:17:32 GMT + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-11-01 + response: + body: + string: "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\",\"name\":\"eastus\",\"displayName\":\"East + US\",\"regionalDisplayName\":\"(US) East US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"westus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\",\"name\":\"eastus2\",\"displayName\":\"East + US 2\",\"regionalDisplayName\":\"(US) East US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"centralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstg\",\"name\":\"eastusstg\",\"displayName\":\"East + US STG\",\"regionalDisplayName\":\"(US) East US STG\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"southcentralusstg\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstg\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\",\"name\":\"southcentralus\",\"displayName\":\"South + Central US\",\"regionalDisplayName\":\"(US) South Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\":\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"northcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstg\",\"name\":\"southcentralusstg\",\"displayName\":\"South + Central US STG\",\"regionalDisplayName\":\"(US) South Central US STG\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\":\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"eastusstg\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstg\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\",\"name\":\"westus2\",\"displayName\":\"West + US 2\",\"regionalDisplayName\":\"(US) West US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-119.852\",\"latitude\":\"47.233\",\"physicalLocation\":\"Washington\",\"pairedRegion\":[{\"name\":\"westcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus3\",\"name\":\"westus3\",\"displayName\":\"West + US 3\",\"regionalDisplayName\":\"(US) West US 3\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-112.074036\",\"latitude\":\"33.448376\",\"physicalLocation\":\"Phoenix\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\",\"name\":\"australiaeast\",\"displayName\":\"Australia + East\",\"regionalDisplayName\":\"(Asia Pacific) Australia East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"151.2094\",\"latitude\":\"-33.86\",\"physicalLocation\":\"New + South Wales\",\"pairedRegion\":[{\"name\":\"australiasoutheast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\",\"name\":\"southeastasia\",\"displayName\":\"Southeast + Asia\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"103.833\",\"latitude\":\"1.283\",\"physicalLocation\":\"Singapore\",\"pairedRegion\":[{\"name\":\"eastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\",\"name\":\"northeurope\",\"displayName\":\"North + Europe\",\"regionalDisplayName\":\"(Europe) North Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-6.2597\",\"latitude\":\"53.3478\",\"physicalLocation\":\"Ireland\",\"pairedRegion\":[{\"name\":\"westeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedencentral\",\"name\":\"swedencentral\",\"displayName\":\"Sweden + Central\",\"regionalDisplayName\":\"(Europe) Sweden Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"17.14127\",\"latitude\":\"60.67488\",\"physicalLocation\":\"G\xE4vle\",\"pairedRegion\":[{\"name\":\"swedensouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedensouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\",\"name\":\"uksouth\",\"displayName\":\"UK + South\",\"regionalDisplayName\":\"(Europe) UK South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-0.799\",\"latitude\":\"50.941\",\"physicalLocation\":\"London\",\"pairedRegion\":[{\"name\":\"ukwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\",\"name\":\"westeurope\",\"displayName\":\"West + Europe\",\"regionalDisplayName\":\"(Europe) West Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"4.9\",\"latitude\":\"52.3667\",\"physicalLocation\":\"Netherlands\",\"pairedRegion\":[{\"name\":\"northeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\",\"name\":\"centralus\",\"displayName\":\"Central + US\",\"regionalDisplayName\":\"(US) Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"physicalLocation\":\"Iowa\",\"pairedRegion\":[{\"name\":\"eastus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\",\"name\":\"northcentralus\",\"displayName\":\"North + Central US\",\"regionalDisplayName\":\"(US) North Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-87.6278\",\"latitude\":\"41.8819\",\"physicalLocation\":\"Illinois\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\",\"name\":\"westus\",\"displayName\":\"West + US\",\"regionalDisplayName\":\"(US) West US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-122.417\",\"latitude\":\"37.783\",\"physicalLocation\":\"California\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\",\"name\":\"southafricanorth\",\"displayName\":\"South + Africa North\",\"regionalDisplayName\":\"(Africa) South Africa North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Africa\",\"longitude\":\"28.218370\",\"latitude\":\"-25.731340\",\"physicalLocation\":\"Johannesburg\",\"pairedRegion\":[{\"name\":\"southafricawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\",\"name\":\"centralindia\",\"displayName\":\"Central + India\",\"regionalDisplayName\":\"(Asia Pacific) Central India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"73.9197\",\"latitude\":\"18.5822\",\"physicalLocation\":\"Pune\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\",\"name\":\"eastasia\",\"displayName\":\"East + Asia\",\"regionalDisplayName\":\"(Asia Pacific) East Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"114.188\",\"latitude\":\"22.267\",\"physicalLocation\":\"Hong + Kong\",\"pairedRegion\":[{\"name\":\"southeastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\",\"name\":\"japaneast\",\"displayName\":\"Japan + East\",\"regionalDisplayName\":\"(Asia Pacific) Japan East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"139.77\",\"latitude\":\"35.68\",\"physicalLocation\":\"Tokyo, + Saitama\",\"pairedRegion\":[{\"name\":\"japanwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\",\"name\":\"jioindiawest\",\"displayName\":\"Jio + India West\",\"regionalDisplayName\":\"(Asia Pacific) Jio India West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"70.05773\",\"latitude\":\"22.470701\",\"physicalLocation\":\"Jamnagar\",\"pairedRegion\":[{\"name\":\"jioindiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\",\"name\":\"koreacentral\",\"displayName\":\"Korea + Central\",\"regionalDisplayName\":\"(Asia Pacific) Korea Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"126.9780\",\"latitude\":\"37.5665\",\"physicalLocation\":\"Seoul\",\"pairedRegion\":[{\"name\":\"koreasouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\",\"name\":\"canadacentral\",\"displayName\":\"Canada + Central\",\"regionalDisplayName\":\"(Canada) Canada Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Canada\",\"longitude\":\"-79.383\",\"latitude\":\"43.653\",\"physicalLocation\":\"Toronto\",\"pairedRegion\":[{\"name\":\"canadaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\",\"name\":\"francecentral\",\"displayName\":\"France + Central\",\"regionalDisplayName\":\"(Europe) France Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.3730\",\"latitude\":\"46.3772\",\"physicalLocation\":\"Paris\",\"pairedRegion\":[{\"name\":\"francesouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\",\"name\":\"germanywestcentral\",\"displayName\":\"Germany + West Central\",\"regionalDisplayName\":\"(Europe) Germany West Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.682127\",\"latitude\":\"50.110924\",\"physicalLocation\":\"Frankfurt\",\"pairedRegion\":[{\"name\":\"germanynorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\",\"name\":\"norwayeast\",\"displayName\":\"Norway + East\",\"regionalDisplayName\":\"(Europe) Norway East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"10.752245\",\"latitude\":\"59.913868\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwaywest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\",\"name\":\"switzerlandnorth\",\"displayName\":\"Switzerland + North\",\"regionalDisplayName\":\"(Europe) Switzerland North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.564572\",\"latitude\":\"47.451542\",\"physicalLocation\":\"Zurich\",\"pairedRegion\":[{\"name\":\"switzerlandwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\",\"name\":\"uaenorth\",\"displayName\":\"UAE + North\",\"regionalDisplayName\":\"(Middle East) UAE North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Middle + East\",\"longitude\":\"55.316666\",\"latitude\":\"25.266666\",\"physicalLocation\":\"Dubai\",\"pairedRegion\":[{\"name\":\"uaecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\",\"name\":\"brazilsouth\",\"displayName\":\"Brazil + South\",\"regionalDisplayName\":\"(South America) Brazil South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"South + America\",\"longitude\":\"-46.633\",\"latitude\":\"-23.55\",\"physicalLocation\":\"Sao + Paulo State\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralusstage\",\"name\":\"centralusstage\",\"displayName\":\"Central + US (Stage)\",\"regionalDisplayName\":\"(US) Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstage\",\"name\":\"eastusstage\",\"displayName\":\"East + US (Stage)\",\"regionalDisplayName\":\"(US) East US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2stage\",\"name\":\"eastus2stage\",\"displayName\":\"East + US 2 (Stage)\",\"regionalDisplayName\":\"(US) East US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralusstage\",\"name\":\"northcentralusstage\",\"displayName\":\"North + Central US (Stage)\",\"regionalDisplayName\":\"(US) North Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstage\",\"name\":\"southcentralusstage\",\"displayName\":\"South + Central US (Stage)\",\"regionalDisplayName\":\"(US) South Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westusstage\",\"name\":\"westusstage\",\"displayName\":\"West + US (Stage)\",\"regionalDisplayName\":\"(US) West US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2stage\",\"name\":\"westus2stage\",\"displayName\":\"West + US 2 (Stage)\",\"regionalDisplayName\":\"(US) West US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asia\",\"name\":\"asia\",\"displayName\":\"Asia\",\"regionalDisplayName\":\"Asia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asiapacific\",\"name\":\"asiapacific\",\"displayName\":\"Asia + Pacific\",\"regionalDisplayName\":\"Asia Pacific\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australia\",\"name\":\"australia\",\"displayName\":\"Australia\",\"regionalDisplayName\":\"Australia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazil\",\"name\":\"brazil\",\"displayName\":\"Brazil\",\"regionalDisplayName\":\"Brazil\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canada\",\"name\":\"canada\",\"displayName\":\"Canada\",\"regionalDisplayName\":\"Canada\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/europe\",\"name\":\"europe\",\"displayName\":\"Europe\",\"regionalDisplayName\":\"Europe\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/france\",\"name\":\"france\",\"displayName\":\"France\",\"regionalDisplayName\":\"France\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germany\",\"name\":\"germany\",\"displayName\":\"Germany\",\"regionalDisplayName\":\"Germany\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/global\",\"name\":\"global\",\"displayName\":\"Global\",\"regionalDisplayName\":\"Global\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/india\",\"name\":\"india\",\"displayName\":\"India\",\"regionalDisplayName\":\"India\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japan\",\"name\":\"japan\",\"displayName\":\"Japan\",\"regionalDisplayName\":\"Japan\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/korea\",\"name\":\"korea\",\"displayName\":\"Korea\",\"regionalDisplayName\":\"Korea\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norway\",\"name\":\"norway\",\"displayName\":\"Norway\",\"regionalDisplayName\":\"Norway\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafrica\",\"name\":\"southafrica\",\"displayName\":\"South + Africa\",\"regionalDisplayName\":\"South Africa\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerland\",\"name\":\"switzerland\",\"displayName\":\"Switzerland\",\"regionalDisplayName\":\"Switzerland\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uae\",\"name\":\"uae\",\"displayName\":\"United + Arab Emirates\",\"regionalDisplayName\":\"United Arab Emirates\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uk\",\"name\":\"uk\",\"displayName\":\"United + Kingdom\",\"regionalDisplayName\":\"United Kingdom\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstates\",\"name\":\"unitedstates\",\"displayName\":\"United + States\",\"regionalDisplayName\":\"United States\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasiastage\",\"name\":\"eastasiastage\",\"displayName\":\"East + Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) East Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasiastage\",\"name\":\"southeastasiastage\",\"displayName\":\"Southeast + Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\",\"name\":\"centraluseuap\",\"displayName\":\"Central + US EUAP\",\"regionalDisplayName\":\"(US) Central US EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"pairedRegion\":[{\"name\":\"eastus2euap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\",\"name\":\"eastus2euap\",\"displayName\":\"East + US 2 EUAP\",\"regionalDisplayName\":\"(US) East US 2 EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"pairedRegion\":[{\"name\":\"centraluseuap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\",\"name\":\"westcentralus\",\"displayName\":\"West + Central US\",\"regionalDisplayName\":\"(US) West Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-110.234\",\"latitude\":\"40.890\",\"physicalLocation\":\"Wyoming\",\"pairedRegion\":[{\"name\":\"westus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\",\"name\":\"southafricawest\",\"displayName\":\"South + Africa West\",\"regionalDisplayName\":\"(Africa) South Africa West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Africa\",\"longitude\":\"18.843266\",\"latitude\":\"-34.075691\",\"physicalLocation\":\"Cape + Town\",\"pairedRegion\":[{\"name\":\"southafricanorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\",\"name\":\"australiacentral\",\"displayName\":\"Australia + Central\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\",\"name\":\"australiacentral2\",\"displayName\":\"Australia + Central 2\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\",\"name\":\"australiasoutheast\",\"displayName\":\"Australia + Southeast\",\"regionalDisplayName\":\"(Asia Pacific) Australia Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"144.9631\",\"latitude\":\"-37.8136\",\"physicalLocation\":\"Victoria\",\"pairedRegion\":[{\"name\":\"australiaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\",\"name\":\"japanwest\",\"displayName\":\"Japan + West\",\"regionalDisplayName\":\"(Asia Pacific) Japan West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"135.5022\",\"latitude\":\"34.6939\",\"physicalLocation\":\"Osaka\",\"pairedRegion\":[{\"name\":\"japaneast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral\",\"name\":\"jioindiacentral\",\"displayName\":\"Jio + India Central\",\"regionalDisplayName\":\"(Asia Pacific) Jio India Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"79.08886\",\"latitude\":\"21.146633\",\"physicalLocation\":\"Nagpur\",\"pairedRegion\":[{\"name\":\"jioindiawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\",\"name\":\"koreasouth\",\"displayName\":\"Korea + South\",\"regionalDisplayName\":\"(Asia Pacific) Korea South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"129.0756\",\"latitude\":\"35.1796\",\"physicalLocation\":\"Busan\",\"pairedRegion\":[{\"name\":\"koreacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\",\"name\":\"southindia\",\"displayName\":\"South + India\",\"regionalDisplayName\":\"(Asia Pacific) South India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"80.1636\",\"latitude\":\"12.9822\",\"physicalLocation\":\"Chennai\",\"pairedRegion\":[{\"name\":\"centralindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westindia\",\"name\":\"westindia\",\"displayName\":\"West + India\",\"regionalDisplayName\":\"(Asia Pacific) West India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"72.868\",\"latitude\":\"19.088\",\"physicalLocation\":\"Mumbai\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\",\"name\":\"canadaeast\",\"displayName\":\"Canada + East\",\"regionalDisplayName\":\"(Canada) Canada East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Canada\",\"longitude\":\"-71.217\",\"latitude\":\"46.817\",\"physicalLocation\":\"Quebec\",\"pairedRegion\":[{\"name\":\"canadacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\",\"name\":\"francesouth\",\"displayName\":\"France + South\",\"regionalDisplayName\":\"(Europe) France South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.1972\",\"latitude\":\"43.8345\",\"physicalLocation\":\"Marseille\",\"pairedRegion\":[{\"name\":\"francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\",\"name\":\"germanynorth\",\"displayName\":\"Germany + North\",\"regionalDisplayName\":\"(Europe) Germany North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.806422\",\"latitude\":\"53.073635\",\"physicalLocation\":\"Berlin\",\"pairedRegion\":[{\"name\":\"germanywestcentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\",\"name\":\"norwaywest\",\"displayName\":\"Norway + West\",\"regionalDisplayName\":\"(Europe) Norway West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"5.733107\",\"latitude\":\"58.969975\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwayeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedensouth\",\"name\":\"swedensouth\",\"displayName\":\"Sweden + South\",\"regionalDisplayName\":\"(Europe) Sweden South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"13.0007\",\"latitude\":\"55.6059\",\"physicalLocation\":\"Malmo\",\"pairedRegion\":[{\"name\":\"swedencentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedencentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\",\"name\":\"switzerlandwest\",\"displayName\":\"Switzerland + West\",\"regionalDisplayName\":\"(Europe) Switzerland West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"6.143158\",\"latitude\":\"46.204391\",\"physicalLocation\":\"Geneva\",\"pairedRegion\":[{\"name\":\"switzerlandnorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\",\"name\":\"ukwest\",\"displayName\":\"UK + West\",\"regionalDisplayName\":\"(Europe) UK West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"-3.084\",\"latitude\":\"53.427\",\"physicalLocation\":\"Cardiff\",\"pairedRegion\":[{\"name\":\"uksouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\",\"name\":\"uaecentral\",\"displayName\":\"UAE + Central\",\"regionalDisplayName\":\"(Middle East) UAE Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Middle + East\",\"longitude\":\"54.366669\",\"latitude\":\"24.466667\",\"physicalLocation\":\"Abu + Dhabi\",\"pairedRegion\":[{\"name\":\"uaenorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsoutheast\",\"name\":\"brazilsoutheast\",\"displayName\":\"Brazil + Southeast\",\"regionalDisplayName\":\"(South America) Brazil Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"South + America\",\"longitude\":\"-43.2075\",\"latitude\":\"-22.90278\",\"physicalLocation\":\"Rio\",\"pairedRegion\":[{\"name\":\"brazilsouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusslv\",\"name\":\"eastusslv\",\"displayName\":\"East + US SLV\",\"regionalDisplayName\":\"(South America) East US SLV\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"South + America\",\"longitude\":\"-43.2075\",\"latitude\":\"-22.90278\",\"physicalLocation\":\"Silverstone\",\"pairedRegion\":[{\"name\":\"eastusslv\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusslv\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/qatarcentral\",\"name\":\"qatarcentral\",\"displayName\":\"Qatar + Central\",\"regionalDisplayName\":\"(Europe) Qatar Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"51.439327\",\"latitude\":\"25.551462\",\"physicalLocation\":\"Doha\",\"pairedRegion\":[{\"name\":\"westeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"}]}}]}" + headers: + cache-control: + - no-cache + content-length: + - '30870' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:17:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Insights?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights","namespace":"microsoft.insights","authorizations":[{"applicationId":"6bccf540-eb86-4037-af03-7fa058c2db75","roleDefinitionId":"89dcede2-9219-403a-9723-d3c6473f9472"},{"applicationId":"11c174dc-1945-4a9a-a36b-c79a0f246b9b","roleDefinitionId":"dd9d4347-f397-45f2-b538-85f21c90037b"},{"applicationId":"035f9e1d-4f00-4419-bf50-bf2d87eb4878","roleDefinitionId":"323795fe-ba3d-4f5a-ad42-afb4e1ea9485"},{"applicationId":"f5c26e74-f226-4ae8-85f0-b4af0080ac9e","roleDefinitionId":"529d7ae6-e892-4d43-809d-8547aeb90643"},{"applicationId":"b503eb83-1222-4dcc-b116-b98ed5216e05","roleDefinitionId":"68699c37-c689-44d4-9248-494b782d46ae"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"},{"applicationId":"3af5a1e8-2459-45cb-8683-bcd6cccbcc13","roleDefinitionId":"b1309299-720d-4159-9897-6158a61aee41"},{"applicationId":"6a0a243c-0886-468a-a4c2-eff52c7445da","roleDefinitionId":"d2eda64b-c5e6-4930-8642-2d80ecd7c2e2"},{"applicationId":"707be275-6b9d-4ee7-88f9-c0c2bd646e0f","roleDefinitionId":"fa027d90-6ba0-4c33-9a54-59edaf2327e7"},{"applicationId":"461e8683-5575-4561-ac7f-899cc907d62a","roleDefinitionId":"68699c37-c689-44d4-9248-494b782d46ae"},{"applicationId":"562db366-1b96-45d2-aa4a-f2148cef2240","roleDefinitionId":"4109c8be-c1c8-4be0-af52-9d3c76c140ab"},{"applicationId":"e933bd07-d2ee-4f1d-933c-3752b819567b","roleDefinitionId":"abbcfd44-e662-419a-9b5a-478f8e2f57c9"},{"applicationId":"f6b60513-f290-450e-a2f3-9930de61c5e7","roleDefinitionId":"4ef11659-08ac-48af-98a7-25fb6b1e1bc4"},{"applicationId":"12743ff8-d3de-49d0-a4ce-6c91a4245ea0","roleDefinitionId":"207b20a7-6802-4ae4-aaa2-1a36dd45bba0"},{"applicationId":"58ef1dbd-684c-47d6-8ffc-61ea7a197b95","roleDefinitionId":"dd9d4347-f397-45f2-b538-85f21c90037b"}],"resourceTypes":[{"resourceType":"components","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Norway West","Australia Southeast","Australia Central 2","Germany West + Central","Switzerland West","UAE Central","UK West","Japan West","Brazil Southeast","UAE + North","Australia Central","France South","South India","West US 3","Canada + East","Jio India West","Korea South"],"apiVersions":["2020-02-02-preview","2020-02-02","2018-05-01-preview","2015-05-01","2014-12-01-preview","2014-08-01","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"components/query","locations":[],"apiVersions":["2018-04-20"],"capabilities":"None"},{"resourceType":"components/metadata","locations":[],"apiVersions":["2018-04-20"],"capabilities":"None"},{"resourceType":"components/metrics","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","East US 2","East Asia","West US","Central + US","South Africa North","North Central US","Brazil South","Switzerland North","Australia + Southeast","Norway East","Norway West"],"apiVersions":["2018-04-20","2014-04-01"],"capabilities":"None"},{"resourceType":"components/events","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","East US 2","East Asia","West US","Central + US","South Africa North","North Central US"],"apiVersions":["2018-04-20"],"capabilities":"None"},{"resourceType":"components/syntheticmonitorlocations","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Norway West","Australia Southeast","Australia Central 2","Germany West + Central","Switzerland West","UAE Central","UK West","Japan West","Brazil Southeast","UAE + North","Australia Central","France South","South India","West US 3","Canada + East","Jio India West","Korea South"],"apiVersions":["2020-02-02-preview","2020-02-02","2018-05-01-preview","2015-05-01","2014-12-01-preview","2014-08-01","2014-04-01"],"capabilities":"None"},{"resourceType":"webtests","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Norway West","Australia Southeast","Australia Central 2","Germany West + Central","Switzerland West","UAE Central","UK West","Brazil Southeast","Japan + West","UAE North","Australia Central","France South","South India","West US + 3","Canada East","Jio India West","Korea South"],"apiVersions":["2018-05-01-preview","2015-05-01","2014-08-01","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"webtests/getTestResultFile","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","East US 2","East Asia","West US","Central + US","South Africa North","North Central US"],"apiVersions":["2020-02-10-preview"],"capabilities":"None"},{"resourceType":"scheduledqueryrules","locations":["West + Central US","Australia East","Central US","East US","East US 2","France Central","Japan + East","North Europe","South Africa North","Southeast Asia","UK South","West + Europe","West US 2","Central India","Canada Central","Australia Southeast","South + Central US","Australia Central","Korea Central","East Asia","West US","North + Central US","Brazil South","UK West","Switzerland North","Switzerland West","UAE + Central","Germany West Central","Australia Central 2","Brazil SouthEast","Norway + East","UAE North","Japan West","South India","France South","Norway West","East + US 2 EUAP"],"apiVersions":["2021-08-01","2021-02-01-preview","2020-05-01-preview","2018-04-16","2017-09-01-preview"],"defaultApiVersion":"2018-04-16","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"components/pricingPlans","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"migrateToNewPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"rollbackToLegacyPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"listMigrationdate","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"logprofiles","locations":[],"apiVersions":["2016-03-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"}],"capabilities":"None"},{"resourceType":"migratealertrules","locations":[],"apiVersions":["2018-03-01"],"capabilities":"None"},{"resourceType":"metricalerts","locations":["Global"],"apiVersions":["2018-03-01","2017-09-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"alertrules","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Central US","Australia + East","Australia Southeast","Brazil South","UK South","UK West","South India","Central + India","West India","Canada East","Canada Central","West Central US","West + US 2","Korea Central","Australia Central","Australia Central 2","France Central","South + Africa North","UAE North","Korea South","France South","East US 2 EUAP","Central + US EUAP","South Africa West","UAE Central"],"apiVersions":["2016-03-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"autoscalesettings","locations":["West + US","East US","North Europe","South Central US","East US 2","Central US","Australia + Southeast","Brazil South","UK South","UK West","South India","Central India","West + India","Canada East","Canada Central","West Central US","West US 2","Korea + Central","Australia Central","Australia Central 2","France Central","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","North Central + US","Australia East","South Africa North","UAE North","Switzerland North","Germany + West Central","Norway East","West US 3","Jio India West","Korea South","France + South","East US 2 EUAP","Central US EUAP","South Africa West","UAE Central","Switzerland + West","Germany North","Norway West","Brazil Southeast","Jio India Central","Sweden + South","Sweden Central"],"apiVersions":["2021-05-01-preview","2015-04-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"eventtypes","locations":[],"apiVersions":["2017-03-01-preview","2016-09-01-preview","2015-04-01","2014-11-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-01"}],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":["East + US"],"apiVersions":["2015-04-01","2014-04-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2015-04-01","2014-04-01"],"capabilities":"None"},{"resourceType":"vmInsightsOnboardingStatuses","locations":[],"apiVersions":["2018-11-27-preview"],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-04-01","2014-06-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-01"}],"capabilities":"None"},{"resourceType":"diagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea Central","Australia Central","Australia Central 2","France + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Korea South","East US + 2 EUAP","Central US EUAP","France South","South Africa West","UAE Central","Switzerland + West","Germany North","Norway West","Brazil Southeast","Jio India Central","Sweden + South","Sweden Central"],"apiVersions":["2021-05-01-preview","2017-05-01-preview","2016-09-01","2015-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-09-01"}],"capabilities":"SupportsExtension"},{"resourceType":"diagnosticSettingsCategories","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea Central","Australia Central","Australia Central 2","France + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Korea South","East US + 2 EUAP","Central US EUAP","France South","South Africa West","UAE Central","Switzerland + West","Germany North","Norway West","Brazil Southeast","Jio India Central","Sweden + South","Sweden Central"],"apiVersions":["2021-05-01-preview","2017-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"extendedDiagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea Central","Australia Central","Australia Central 2","France + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Korea South","France + South","East US 2 EUAP","Central US EUAP","South Africa West","UAE Central","Switzerland + West","Germany North","Norway West","Brazil Southeast","Jio India Central","Sweden + South","Sweden Central"],"apiVersions":["2017-02-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-02-01"}],"capabilities":"SupportsExtension"},{"resourceType":"metricDefinitions","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Australia Central","Australia + Central 2","Brazil South","Brazil Southeast","South India","Central India","West + India","North Europe","West US 2","Jio India West","West US 3","West Central + US","Korea Central","UK South","UK West","France Central","South Africa North","South + Africa West","UAE North","Switzerland North","Germany West Central","Norway + East","Jio India Central","Sweden Central","Sweden South","Korea South","East + US 2 EUAP","Central US EUAP","France South","UAE Central","Switzerland West","Germany + North","Norway West"],"apiVersions":["2018-01-01","2017-12-01-preview","2017-09-01-preview","2017-05-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-01"}],"capabilities":"SupportsExtension"},{"resourceType":"logDefinitions","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea Central","Australia Central","Australia Central 2","France + Central","Korea South","France South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2015-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-07-01"}],"capabilities":"SupportsExtension"},{"resourceType":"eventCategories","locations":[],"apiVersions":["2015-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-01"}],"capabilities":"None"},{"resourceType":"metrics","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Australia Central","Australia + Central 2","Brazil South","Brazil Southeast","South India","Central India","West + India","North Europe","West US 2","Jio India West","West US 3","West Central + US","Korea Central","UK South","UK West","France Central","South Africa North","South + Africa West","UAE North","Switzerland North","Germany West Central","Norway + East","Jio India Central","Sweden Central","Sweden South","Korea South","East + US 2 EUAP","Central US EUAP","France South","UAE Central","Switzerland West","Germany + North","Norway West"],"apiVersions":["2021-05-01","2019-07-01","2018-01-01","2017-12-01-preview","2017-09-01-preview","2017-05-01-preview","2016-09-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-01"}],"capabilities":"SupportsExtension"},{"resourceType":"metricbatch","locations":[],"apiVersions":["2019-01-01-preview"],"capabilities":"None"},{"resourceType":"metricNamespaces","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Australia Central","Australia + Central 2","Brazil South","Brazil Southeast","South India","Central India","West + India","North Europe","West US 2","Jio India West","West US 3","West Central + US","Korea Central","UK South","UK West","France Central","South Africa North","South + Africa West","UAE North","Switzerland North","Germany West Central","Norway + East","Jio India Central","Sweden Central","Sweden South","Korea South","East + US 2 EUAP","Central US EUAP","France South","UAE Central","Switzerland West","Germany + North","Norway West"],"apiVersions":["2017-12-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"notificationstatus","locations":[],"apiVersions":["2021-09-01"],"capabilities":"None"},{"resourceType":"createnotifications","locations":[],"apiVersions":["2021-09-01"],"capabilities":"None"},{"resourceType":"actiongroups","locations":["Global"],"apiVersions":["2021-09-01","2019-06-01","2019-03-01","2018-09-01","2018-03-01","2017-04-01","2017-03-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"activityLogAlerts","locations":["Global"],"apiVersions":["2020-10-01","2017-04-01","2017-03-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-04-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"baseline","locations":[],"apiVersions":["2018-09-01","2017-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"metricbaselines","locations":[],"apiVersions":["2019-03-01","2018-09-01"],"capabilities":"SupportsExtension"},{"resourceType":"calculatebaseline","locations":[],"apiVersions":["2018-09-01","2017-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"workbooks","locations":["West + Europe","South Central US","East US","North Europe","Southeast Asia","West + US 2","Japan East","Australia East","Korea Central","France Central","Central + US","East US 2","East Asia","West US","Canada Central","Central India","UK + South","UK West","South Africa North","North Central US","Brazil South","Switzerland + North","Norway East","Norway West","Australia Southeast","Australia Central + 2","Germany West Central","Switzerland West","UAE Central","Japan West","Brazil + Southeast","UAE North","Australia Central","France South","South India","West + Central US","West US 3","Canada East","Jio India West","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-08-01","2021-03-08","2020-10-20","2020-02-12","2018-06-17-preview","2018-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"workbooktemplates","locations":["West + Europe","South Central US","East US","North Europe","Southeast Asia","West + US 2","Japan East","Australia East","Korea Central","France Central","Central + US","East US 2","East Asia","West US","Canada Central","Central India","UK + South","UK West","South Africa North","North Central US","Brazil South","Switzerland + North","Norway East","Norway West","Australia Southeast","Australia Central + 2","Germany West Central","Switzerland West","UAE Central","Japan West","Brazil + Southeast","UAE North","Australia Central","France South","South India","West + Central US","West US 3","Canada East","Jio India West","Korea South"],"apiVersions":["2020-11-20","2019-10-17-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"myWorkbooks","locations":["West + Europe","South Central US","East US","North Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Norway West","Australia Southeast","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-03-08","2020-10-20","2020-02-12","2018-06-17-preview","2018-06-15-preview","2018-06-01-preview","2016-06-15-preview"],"capabilities":"SupportsExtension"},{"resourceType":"logs","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","France Central","France South","Australia Central","South + Africa North","Korea South","Central US EUAP","East US 2 EUAP","Australia + Central 2","South Africa West","UAE Central","UAE North"],"apiVersions":["2018-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"transactions","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","East US 2","East Asia","West US","Central + US","South Africa North","North Central US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-10-17-preview"],"capabilities":"SupportsExtension"},{"resourceType":"topology","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","East US 2","East Asia","West US","Central + US","South Africa North","North Central US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-10-17-preview"],"capabilities":"SupportsExtension"},{"resourceType":"generateLiveToken","locations":[],"apiVersions":["2021-10-14","2020-06-02-preview"],"capabilities":"SupportsExtension"},{"resourceType":"dataCollectionRules","locations":["Australia + Southeast","Canada Central","Japan East","Australia East","Central India","Germany + West Central","North Central US","South Central US","East US","Central US","West + Europe","West US 2","Southeast Asia","East US 2","UK South","North Europe","West + US","Australia Central","West Central US","East Asia","UK West","Korea Central","France + Central","South Africa North","Switzerland North","Australia Central 2","Brazil + Southeast","France South","Norway West","UAE North","Japan West","Norway East","Switzerland + West","Brazil South","East US 2 EUAP"],"apiVersions":["2021-04-01","2019-11-01-preview"],"defaultApiVersion":"2021-04-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dataCollectionRuleAssociations","locations":["Australia + Southeast","Canada Central","Japan East","Australia East","Central India","Germany + West Central","North Central US","South Central US","East US","Central US","West + Europe","West US 2","Southeast Asia","East US 2","UK South","North Europe","West + US","Australia Central","West Central US","East Asia","UK West","Korea Central","France + Central","South Africa North","Switzerland North","Brazil South","Australia + Central 2","Brazil Southeast","Canada East","France South","Norway West","UAE + North","Japan West","Norway East","Switzerland West","Korea South","East US + 2 EUAP"],"apiVersions":["2021-04-01","2019-11-01-preview"],"defaultApiVersion":"2021-04-01","capabilities":"SupportsExtension"},{"resourceType":"dataCollectionEndpoints","locations":["Australia + Southeast","Canada Central","Japan East","Australia East","Central India","Germany + West Central","North Central US","South Central US","East US","Central US","West + Europe","West US 2","Southeast Asia","East US 2","UK South","North Europe","West + US","Australia Central","West Central US","East Asia","UK West","Korea Central","France + Central","South Africa North","Switzerland North","Brazil South","Australia + Central 2","Brazil Southeast","Canada East","France South","Norway West","UAE + North","Japan West","Norway East","Switzerland West","Korea South","East US + 2 EUAP"],"apiVersions":["2021-04-01"],"defaultApiVersion":"2021-04-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dataCollectionEndpoints/scopedPrivateLinkProxies","locations":["Australia + Southeast","Canada Central","Japan East","Australia East","Central India","Germany + West Central","North Central US","South Central US","East US","Central US","West + Europe","West US 2","Southeast Asia","East US 2","UK South","North Europe","West + US","Australia Central","West Central US","East Asia","UK West","Korea Central","France + Central","South Africa North","Switzerland North","Brazil South","Australia + Central 2","Brazil Southeast","Canada East","France South","Norway West","UAE + North","Japan West","Norway East","Switzerland West","Korea South","East US + 2 EUAP"],"apiVersions":["2021-04-01"],"defaultApiVersion":"2021-04-01","capabilities":"None"},{"resourceType":"privateLinkScopes","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateLinkScopes/privateEndpointConnections","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"},{"resourceType":"privateLinkScopes/privateEndpointConnectionProxies","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"},{"resourceType":"privateLinkScopes/scopedResources","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"},{"resourceType":"components/linkedstorageaccounts","locations":["East + US","West Central US","South Central US","North Europe","West Europe","Southeast + Asia","West US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Norway West","Australia Southeast"],"apiVersions":["2020-03-01-preview"],"capabilities":"None"},{"resourceType":"privateLinkScopeOperationStatuses","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '27917' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:17:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"dataSources": {"extensions": [{"name": + "ContainerInsightsExtension", "streams": ["Microsoft-Perf", "Microsoft-ContainerInventory", + "Microsoft-ContainerLog", "Microsoft-ContainerLogV2", "Microsoft-ContainerNodeInventory", + "Microsoft-KubeEvents", "Microsoft-KubeHealth", "Microsoft-KubeMonAgentEvents", + "Microsoft-KubeNodeInventory", "Microsoft-KubePodInventory", "Microsoft-KubePVInventory", + "Microsoft-KubeServices", "Microsoft-InsightsMetrics"], "extensionName": "ContainerInsights"}]}, + "dataFlows": [{"streams": ["Microsoft-Perf", "Microsoft-ContainerInventory", + "Microsoft-ContainerLog", "Microsoft-ContainerLogV2", "Microsoft-ContainerNodeInventory", + "Microsoft-KubeEvents", "Microsoft-KubeHealth", "Microsoft-KubeMonAgentEvents", + "Microsoft-KubeNodeInventory", "Microsoft-KubePodInventory", "Microsoft-KubePVInventory", + "Microsoft-KubeServices", "Microsoft-InsightsMetrics"], "destinations": ["la-workspace"]}], + "destinations": {"logAnalytics": [{"workspaceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", + "name": "la-workspace"}]}}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + Content-Length: + - '1248' + Content-Type: + - application/json + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"immutableId":"dcr-78b5a913da4f4d5cb0c12d527d2ef9dd","dataSources":{"extensions":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"extensionName":"ContainerInsights","name":"ContainerInsightsExtension"}]},"destinations":{"logAnalytics":[{"workspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","workspaceId":"e897efd7-55de-4860-ac51-7403ccb7e3cf","name":"la-workspace"}]},"dataFlows":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"destinations":["la-workspace"]}],"provisioningState":"Succeeded"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRules","etag":"\"d80033f0-0000-0800-0000-61a784010000\""}' + headers: + api-supported-versions: + - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview + cache-control: + - no-cache + content-length: + - '1725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:17:36 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2bbfbac8-e1b0-44af-b9c6-3a40669d37e3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '59' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"dataCollectionRuleId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", + "description": "routes monitoring data to a Log Analytics workspace"}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + Content-Length: + - '342' + Content-Type: + - application/json + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"description":"routes monitoring data to a Log Analytics + workspace","dataCollectionRuleId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRuleAssociations","etag":"\"d80042f0-0000-0800-0000-61a784020000\""}' + headers: + api-supported-versions: + - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:17:38 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2bbfbac8-e1b0-44af-b9c6-3a40669d37e3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '59' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": + "cliakstest-clitest6xb7xxiwg-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": + "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"omsagent": {"enabled": true, "config": + {"logAnalyticsWorkspaceResourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", + "useAADAuth": "True"}}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", + "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1f633d2f-faa2-4e2d-bea5-fe0ddeb8bc95"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + Content-Length: + - '2999' + Content-Type: + - application/json + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6xb7xxiwg-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest6xb7xxiwg-8ecadf-96a2404c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest6xb7xxiwg-8ecadf-96a2404c.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n + \ \"useAADAuth\": \"True\"\n }\n }\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1f633d2f-faa2-4e2d-bea5-fe0ddeb8bc95\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/196fa5ab-8d20-4f74-a255-e8832b1ed004?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '4269' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:17:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/196fa5ab-8d20-4f74-a255-e8832b1ed004?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"aba56f19-208d-744f-a255-e8832b1ed004\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:41.98Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:18:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/196fa5ab-8d20-4f74-a255-e8832b1ed004?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"aba56f19-208d-744f-a255-e8832b1ed004\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:41.98Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:18:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/196fa5ab-8d20-4f74-a255-e8832b1ed004?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"aba56f19-208d-744f-a255-e8832b1ed004\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:17:41.98Z\",\n \"endTime\": + \"2021-12-01T14:18:46.3279373Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '165' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6xb7xxiwg-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest6xb7xxiwg-8ecadf-96a2404c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest6xb7xxiwg-8ecadf-96a2404c.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n + \ \"useAADAuth\": \"True\"\n },\n \"identity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omsagent-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1f633d2f-faa2-4e2d-bea5-fe0ddeb8bc95\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4634' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables + publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2021-11-11T20:13:44.2828715Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' + headers: + cache-control: + - no-cache + content-length: + - '776' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:19:13 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", + "principalId":"00000000-0000-0000-0000-000000000001"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + Cookie: + - x-ms-gateway-slice=Production + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/69f992c6-7703-4b8f-9a0a-29d27d66899f?api-version=2020-04-01-preview + response: + body: + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T14:19:14.2091359Z","updatedOn":"2021-12-01T14:19:14.4748434Z","createdBy":null,"updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/69f992c6-7703-4b8f-9a0a-29d27d66899f","type":"Microsoft.Authorization/roleAssignments","name":"69f992c6-7703-4b8f-9a0a-29d27d66899f"}' + headers: + cache-control: + - no-cache + content-length: + - '1029' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:19:16 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - rest + Connection: + - keep-alive + ParameterSetName: + - --method --url + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"immutableId":"dcr-78b5a913da4f4d5cb0c12d527d2ef9dd","dataSources":{"extensions":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"extensionName":"ContainerInsights","name":"ContainerInsightsExtension"}]},"destinations":{"logAnalytics":[{"workspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","workspaceId":"e897efd7-55de-4860-ac51-7403ccb7e3cf","name":"la-workspace"}]},"dataFlows":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"destinations":["la-workspace"]}],"provisioningState":"Succeeded"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRules","etag":"\"d80024f2-0000-0800-0000-61a784520000\""}' + headers: + api-supported-versions: + - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview + cache-control: + - no-cache + content-length: + - '1725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:19:16 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2bbfbac8-e1b0-44af-b9c6-3a40669d37e3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - rest + Connection: + - keep-alive + ParameterSetName: + - --method --url + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"description":"routes monitoring data to a Log Analytics + workspace","dataCollectionRuleId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRuleAssociations","etag":"\"d80042f0-0000-0800-0000-61a784020000\""}' + headers: + api-supported-versions: + - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:19:17 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2bbfbac8-e1b0-44af-b9c6-3a40669d37e3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6xb7xxiwg-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest6xb7xxiwg-8ecadf-96a2404c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest6xb7xxiwg-8ecadf-96a2404c.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n + \ \"useAADAuth\": \"True\"\n },\n \"identity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omsagent-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1f633d2f-faa2-4e2d-bea5-fe0ddeb8bc95\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4634' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"dataCollectionRuleId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", + "description": "routes monitoring data to a Log Analytics workspace"}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + Content-Length: + - '342' + Content-Type: + - application/json + ParameterSetName: + - -a -g -n + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + response: + body: + string: '' + headers: + api-supported-versions: + - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 01 Dec 2021 14:19:19 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2bbfbac8-e1b0-44af-b9c6-3a40669d37e3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14997' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": + "cliakstest-clitest6xb7xxiwg-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": + "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"omsagent": {"enabled": false}}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1f633d2f-faa2-4e2d-bea5-fe0ddeb8bc95"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + Content-Length: + - '2725' + Content-Type: + - application/json + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6xb7xxiwg-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest6xb7xxiwg-8ecadf-96a2404c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest6xb7xxiwg-8ecadf-96a2404c.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": false,\n \"config\": null\n + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1f633d2f-faa2-4e2d-bea5-fe0ddeb8bc95\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b44cc27-80bc-45fa-aa27-c130e5eeb419?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '3992' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1195' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b44cc27-80bc-45fa-aa27-c130e5eeb419?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"27cc445b-bc80-fa45-aa27-c130e5eeb419\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:19:22.34Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b44cc27-80bc-45fa-aa27-c130e5eeb419?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"27cc445b-bc80-fa45-aa27-c130e5eeb419\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:19:22.34Z\",\n \"endTime\": + \"2021-12-01T14:20:18.2907507Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '165' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:20:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest6xb7xxiwg-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest6xb7xxiwg-8ecadf-96a2404c.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest6xb7xxiwg-8ecadf-96a2404c.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": false,\n \"config\": null\n + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1f633d2f-faa2-4e2d-bea5-fe0ddeb8bc95\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '3994' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:20:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --yes --no-wait + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c6825d2c-e543-477b-9a6d-a4dbd7789caf?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 01 Dec 2021 14:20:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/c6825d2c-e543-477b-9a6d-a4dbd7789caf?api-version=2016-03-30 + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14997' + status: + code: 202 + message: Accepted +version: 1 diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_monitoring_with_aad_auth_uai.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_monitoring_with_aad_auth_uai.yaml new file mode 100644 index 00000000000..0ad0031d1e0 --- /dev/null +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_monitoring_with_aad_auth_uai.yaml @@ -0,0 +1,2406 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - identity create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:20:26Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '313' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:20:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - identity create + Connection: + - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-msi/0.2.0 Azure-SDK-For-Python + AZURECLI/2.30.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai?api-version=2015-08-31-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai","name":"cliakstest000002_uai","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001","clientSecretUrl":"https://control-westus2.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=4caf3d7e-1213-48f7-ae34-3c67e594a654&aid=6e432794-4ae5-4b49-86ac-d1215ebeae0c"}}' + headers: + cache-control: + - no-cache + content-length: + - '822' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:20:30 GMT + expires: + - '-1' + location: + - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1194' + status: + code: 201 + message: Created +- request: + body: '{"location": "westus2", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai": + {}}}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestcnsoy4if7-8ecadf", + "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1946' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --node-count + --ssh-key-value --assign-identity + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestcnsoy4if7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestcnsoy4if7-8ecadf-0a9b690f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestcnsoy4if7-8ecadf-0a9b690f.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": + {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai\": + {}\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n + \ }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6d1d240b-8f43-4934-a2bc-e47df45dcfdd?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '3333' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:20:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1193' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --node-count + --ssh-key-value --assign-identity + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6d1d240b-8f43-4934-a2bc-e47df45dcfdd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0b241d6d-438f-3449-a2bc-e47df45dcfdd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:34.14Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:21:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --node-count + --ssh-key-value --assign-identity + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6d1d240b-8f43-4934-a2bc-e47df45dcfdd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0b241d6d-438f-3449-a2bc-e47df45dcfdd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:34.14Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:21:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --node-count + --ssh-key-value --assign-identity + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6d1d240b-8f43-4934-a2bc-e47df45dcfdd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0b241d6d-438f-3449-a2bc-e47df45dcfdd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:34.14Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:22:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --node-count + --ssh-key-value --assign-identity + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6d1d240b-8f43-4934-a2bc-e47df45dcfdd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0b241d6d-438f-3449-a2bc-e47df45dcfdd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:34.14Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:22:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --node-count + --ssh-key-value --assign-identity + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6d1d240b-8f43-4934-a2bc-e47df45dcfdd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0b241d6d-438f-3449-a2bc-e47df45dcfdd\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:20:34.14Z\",\n \"endTime\": + \"2021-12-01T14:22:45.4271862Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '165' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:23:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --node-count + --ssh-key-value --assign-identity + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestcnsoy4if7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestcnsoy4if7-8ecadf-0a9b690f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestcnsoy4if7-8ecadf-0a9b690f.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b8445e97-93a9-448f-9f1b-3ca4bbcf4baa\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n + \ }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4117' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:23:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestcnsoy4if7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestcnsoy4if7-8ecadf-0a9b690f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestcnsoy4if7-8ecadf-0a9b690f.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b8445e97-93a9-448f-9f1b-3ca4bbcf4baa\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n + \ }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4117' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:23:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:20:26Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '313' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:23:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 01 Dec 2021 14:23:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2?api-version=2015-11-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": + \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"sku\": {\r\n \"name\": \"standalone\",\r\n \"lastSkuUpdate\": + \"Mon, 02 Aug 2021 07:30:13 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n + \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n + \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": + \"Wed, 01 Dec 2021 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": + \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n + \ \"modifiedDate\": \"Mon, 29 Nov 2021 09:57:04 GMT\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n + \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n + \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": + \"westus2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1162' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:23:07 GMT + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2015-11-01-preview + response: + body: + string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": + \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"sku\": {\r\n \"name\": \"standalone\",\r\n \"lastSkuUpdate\": + \"Mon, 02 Aug 2021 07:30:13 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n + \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n + \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": + \"Wed, 01 Dec 2021 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": + \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n + \ \"modifiedDate\": \"Mon, 29 Nov 2021 09:57:04 GMT\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n + \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n + \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": + \"westus2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1162' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:23:08 GMT + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-11-01 + response: + body: + string: "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\",\"name\":\"eastus\",\"displayName\":\"East + US\",\"regionalDisplayName\":\"(US) East US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"westus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\",\"name\":\"eastus2\",\"displayName\":\"East + US 2\",\"regionalDisplayName\":\"(US) East US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"centralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstg\",\"name\":\"eastusstg\",\"displayName\":\"East + US STG\",\"regionalDisplayName\":\"(US) East US STG\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"southcentralusstg\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstg\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\",\"name\":\"southcentralus\",\"displayName\":\"South + Central US\",\"regionalDisplayName\":\"(US) South Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\":\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"northcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstg\",\"name\":\"southcentralusstg\",\"displayName\":\"South + Central US STG\",\"regionalDisplayName\":\"(US) South Central US STG\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\":\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"eastusstg\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstg\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\",\"name\":\"westus2\",\"displayName\":\"West + US 2\",\"regionalDisplayName\":\"(US) West US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-119.852\",\"latitude\":\"47.233\",\"physicalLocation\":\"Washington\",\"pairedRegion\":[{\"name\":\"westcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus3\",\"name\":\"westus3\",\"displayName\":\"West + US 3\",\"regionalDisplayName\":\"(US) West US 3\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-112.074036\",\"latitude\":\"33.448376\",\"physicalLocation\":\"Phoenix\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\",\"name\":\"australiaeast\",\"displayName\":\"Australia + East\",\"regionalDisplayName\":\"(Asia Pacific) Australia East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"151.2094\",\"latitude\":\"-33.86\",\"physicalLocation\":\"New + South Wales\",\"pairedRegion\":[{\"name\":\"australiasoutheast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\",\"name\":\"southeastasia\",\"displayName\":\"Southeast + Asia\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"103.833\",\"latitude\":\"1.283\",\"physicalLocation\":\"Singapore\",\"pairedRegion\":[{\"name\":\"eastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\",\"name\":\"northeurope\",\"displayName\":\"North + Europe\",\"regionalDisplayName\":\"(Europe) North Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-6.2597\",\"latitude\":\"53.3478\",\"physicalLocation\":\"Ireland\",\"pairedRegion\":[{\"name\":\"westeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedencentral\",\"name\":\"swedencentral\",\"displayName\":\"Sweden + Central\",\"regionalDisplayName\":\"(Europe) Sweden Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"17.14127\",\"latitude\":\"60.67488\",\"physicalLocation\":\"G\xE4vle\",\"pairedRegion\":[{\"name\":\"swedensouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedensouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\",\"name\":\"uksouth\",\"displayName\":\"UK + South\",\"regionalDisplayName\":\"(Europe) UK South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-0.799\",\"latitude\":\"50.941\",\"physicalLocation\":\"London\",\"pairedRegion\":[{\"name\":\"ukwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\",\"name\":\"westeurope\",\"displayName\":\"West + Europe\",\"regionalDisplayName\":\"(Europe) West Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"4.9\",\"latitude\":\"52.3667\",\"physicalLocation\":\"Netherlands\",\"pairedRegion\":[{\"name\":\"northeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\",\"name\":\"centralus\",\"displayName\":\"Central + US\",\"regionalDisplayName\":\"(US) Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"physicalLocation\":\"Iowa\",\"pairedRegion\":[{\"name\":\"eastus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\",\"name\":\"northcentralus\",\"displayName\":\"North + Central US\",\"regionalDisplayName\":\"(US) North Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-87.6278\",\"latitude\":\"41.8819\",\"physicalLocation\":\"Illinois\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\",\"name\":\"westus\",\"displayName\":\"West + US\",\"regionalDisplayName\":\"(US) West US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-122.417\",\"latitude\":\"37.783\",\"physicalLocation\":\"California\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\",\"name\":\"southafricanorth\",\"displayName\":\"South + Africa North\",\"regionalDisplayName\":\"(Africa) South Africa North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Africa\",\"longitude\":\"28.218370\",\"latitude\":\"-25.731340\",\"physicalLocation\":\"Johannesburg\",\"pairedRegion\":[{\"name\":\"southafricawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\",\"name\":\"centralindia\",\"displayName\":\"Central + India\",\"regionalDisplayName\":\"(Asia Pacific) Central India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"73.9197\",\"latitude\":\"18.5822\",\"physicalLocation\":\"Pune\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\",\"name\":\"eastasia\",\"displayName\":\"East + Asia\",\"regionalDisplayName\":\"(Asia Pacific) East Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"114.188\",\"latitude\":\"22.267\",\"physicalLocation\":\"Hong + Kong\",\"pairedRegion\":[{\"name\":\"southeastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\",\"name\":\"japaneast\",\"displayName\":\"Japan + East\",\"regionalDisplayName\":\"(Asia Pacific) Japan East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"139.77\",\"latitude\":\"35.68\",\"physicalLocation\":\"Tokyo, + Saitama\",\"pairedRegion\":[{\"name\":\"japanwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\",\"name\":\"jioindiawest\",\"displayName\":\"Jio + India West\",\"regionalDisplayName\":\"(Asia Pacific) Jio India West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"70.05773\",\"latitude\":\"22.470701\",\"physicalLocation\":\"Jamnagar\",\"pairedRegion\":[{\"name\":\"jioindiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\",\"name\":\"koreacentral\",\"displayName\":\"Korea + Central\",\"regionalDisplayName\":\"(Asia Pacific) Korea Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"126.9780\",\"latitude\":\"37.5665\",\"physicalLocation\":\"Seoul\",\"pairedRegion\":[{\"name\":\"koreasouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\",\"name\":\"canadacentral\",\"displayName\":\"Canada + Central\",\"regionalDisplayName\":\"(Canada) Canada Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Canada\",\"longitude\":\"-79.383\",\"latitude\":\"43.653\",\"physicalLocation\":\"Toronto\",\"pairedRegion\":[{\"name\":\"canadaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\",\"name\":\"francecentral\",\"displayName\":\"France + Central\",\"regionalDisplayName\":\"(Europe) France Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.3730\",\"latitude\":\"46.3772\",\"physicalLocation\":\"Paris\",\"pairedRegion\":[{\"name\":\"francesouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\",\"name\":\"germanywestcentral\",\"displayName\":\"Germany + West Central\",\"regionalDisplayName\":\"(Europe) Germany West Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.682127\",\"latitude\":\"50.110924\",\"physicalLocation\":\"Frankfurt\",\"pairedRegion\":[{\"name\":\"germanynorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\",\"name\":\"norwayeast\",\"displayName\":\"Norway + East\",\"regionalDisplayName\":\"(Europe) Norway East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"10.752245\",\"latitude\":\"59.913868\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwaywest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\",\"name\":\"switzerlandnorth\",\"displayName\":\"Switzerland + North\",\"regionalDisplayName\":\"(Europe) Switzerland North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.564572\",\"latitude\":\"47.451542\",\"physicalLocation\":\"Zurich\",\"pairedRegion\":[{\"name\":\"switzerlandwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\",\"name\":\"uaenorth\",\"displayName\":\"UAE + North\",\"regionalDisplayName\":\"(Middle East) UAE North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Middle + East\",\"longitude\":\"55.316666\",\"latitude\":\"25.266666\",\"physicalLocation\":\"Dubai\",\"pairedRegion\":[{\"name\":\"uaecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\",\"name\":\"brazilsouth\",\"displayName\":\"Brazil + South\",\"regionalDisplayName\":\"(South America) Brazil South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"South + America\",\"longitude\":\"-46.633\",\"latitude\":\"-23.55\",\"physicalLocation\":\"Sao + Paulo State\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralusstage\",\"name\":\"centralusstage\",\"displayName\":\"Central + US (Stage)\",\"regionalDisplayName\":\"(US) Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstage\",\"name\":\"eastusstage\",\"displayName\":\"East + US (Stage)\",\"regionalDisplayName\":\"(US) East US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2stage\",\"name\":\"eastus2stage\",\"displayName\":\"East + US 2 (Stage)\",\"regionalDisplayName\":\"(US) East US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralusstage\",\"name\":\"northcentralusstage\",\"displayName\":\"North + Central US (Stage)\",\"regionalDisplayName\":\"(US) North Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstage\",\"name\":\"southcentralusstage\",\"displayName\":\"South + Central US (Stage)\",\"regionalDisplayName\":\"(US) South Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westusstage\",\"name\":\"westusstage\",\"displayName\":\"West + US (Stage)\",\"regionalDisplayName\":\"(US) West US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2stage\",\"name\":\"westus2stage\",\"displayName\":\"West + US 2 (Stage)\",\"regionalDisplayName\":\"(US) West US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asia\",\"name\":\"asia\",\"displayName\":\"Asia\",\"regionalDisplayName\":\"Asia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asiapacific\",\"name\":\"asiapacific\",\"displayName\":\"Asia + Pacific\",\"regionalDisplayName\":\"Asia Pacific\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australia\",\"name\":\"australia\",\"displayName\":\"Australia\",\"regionalDisplayName\":\"Australia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazil\",\"name\":\"brazil\",\"displayName\":\"Brazil\",\"regionalDisplayName\":\"Brazil\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canada\",\"name\":\"canada\",\"displayName\":\"Canada\",\"regionalDisplayName\":\"Canada\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/europe\",\"name\":\"europe\",\"displayName\":\"Europe\",\"regionalDisplayName\":\"Europe\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/france\",\"name\":\"france\",\"displayName\":\"France\",\"regionalDisplayName\":\"France\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germany\",\"name\":\"germany\",\"displayName\":\"Germany\",\"regionalDisplayName\":\"Germany\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/global\",\"name\":\"global\",\"displayName\":\"Global\",\"regionalDisplayName\":\"Global\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/india\",\"name\":\"india\",\"displayName\":\"India\",\"regionalDisplayName\":\"India\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japan\",\"name\":\"japan\",\"displayName\":\"Japan\",\"regionalDisplayName\":\"Japan\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/korea\",\"name\":\"korea\",\"displayName\":\"Korea\",\"regionalDisplayName\":\"Korea\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norway\",\"name\":\"norway\",\"displayName\":\"Norway\",\"regionalDisplayName\":\"Norway\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafrica\",\"name\":\"southafrica\",\"displayName\":\"South + Africa\",\"regionalDisplayName\":\"South Africa\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerland\",\"name\":\"switzerland\",\"displayName\":\"Switzerland\",\"regionalDisplayName\":\"Switzerland\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uae\",\"name\":\"uae\",\"displayName\":\"United + Arab Emirates\",\"regionalDisplayName\":\"United Arab Emirates\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uk\",\"name\":\"uk\",\"displayName\":\"United + Kingdom\",\"regionalDisplayName\":\"United Kingdom\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstates\",\"name\":\"unitedstates\",\"displayName\":\"United + States\",\"regionalDisplayName\":\"United States\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasiastage\",\"name\":\"eastasiastage\",\"displayName\":\"East + Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) East Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasiastage\",\"name\":\"southeastasiastage\",\"displayName\":\"Southeast + Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\",\"name\":\"centraluseuap\",\"displayName\":\"Central + US EUAP\",\"regionalDisplayName\":\"(US) Central US EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"pairedRegion\":[{\"name\":\"eastus2euap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\",\"name\":\"eastus2euap\",\"displayName\":\"East + US 2 EUAP\",\"regionalDisplayName\":\"(US) East US 2 EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"pairedRegion\":[{\"name\":\"centraluseuap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\",\"name\":\"westcentralus\",\"displayName\":\"West + Central US\",\"regionalDisplayName\":\"(US) West Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-110.234\",\"latitude\":\"40.890\",\"physicalLocation\":\"Wyoming\",\"pairedRegion\":[{\"name\":\"westus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\",\"name\":\"southafricawest\",\"displayName\":\"South + Africa West\",\"regionalDisplayName\":\"(Africa) South Africa West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Africa\",\"longitude\":\"18.843266\",\"latitude\":\"-34.075691\",\"physicalLocation\":\"Cape + Town\",\"pairedRegion\":[{\"name\":\"southafricanorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\",\"name\":\"australiacentral\",\"displayName\":\"Australia + Central\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\",\"name\":\"australiacentral2\",\"displayName\":\"Australia + Central 2\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\",\"name\":\"australiasoutheast\",\"displayName\":\"Australia + Southeast\",\"regionalDisplayName\":\"(Asia Pacific) Australia Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"144.9631\",\"latitude\":\"-37.8136\",\"physicalLocation\":\"Victoria\",\"pairedRegion\":[{\"name\":\"australiaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\",\"name\":\"japanwest\",\"displayName\":\"Japan + West\",\"regionalDisplayName\":\"(Asia Pacific) Japan West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"135.5022\",\"latitude\":\"34.6939\",\"physicalLocation\":\"Osaka\",\"pairedRegion\":[{\"name\":\"japaneast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral\",\"name\":\"jioindiacentral\",\"displayName\":\"Jio + India Central\",\"regionalDisplayName\":\"(Asia Pacific) Jio India Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"79.08886\",\"latitude\":\"21.146633\",\"physicalLocation\":\"Nagpur\",\"pairedRegion\":[{\"name\":\"jioindiawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\",\"name\":\"koreasouth\",\"displayName\":\"Korea + South\",\"regionalDisplayName\":\"(Asia Pacific) Korea South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"129.0756\",\"latitude\":\"35.1796\",\"physicalLocation\":\"Busan\",\"pairedRegion\":[{\"name\":\"koreacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\",\"name\":\"southindia\",\"displayName\":\"South + India\",\"regionalDisplayName\":\"(Asia Pacific) South India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"80.1636\",\"latitude\":\"12.9822\",\"physicalLocation\":\"Chennai\",\"pairedRegion\":[{\"name\":\"centralindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westindia\",\"name\":\"westindia\",\"displayName\":\"West + India\",\"regionalDisplayName\":\"(Asia Pacific) West India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"72.868\",\"latitude\":\"19.088\",\"physicalLocation\":\"Mumbai\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\",\"name\":\"canadaeast\",\"displayName\":\"Canada + East\",\"regionalDisplayName\":\"(Canada) Canada East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Canada\",\"longitude\":\"-71.217\",\"latitude\":\"46.817\",\"physicalLocation\":\"Quebec\",\"pairedRegion\":[{\"name\":\"canadacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\",\"name\":\"francesouth\",\"displayName\":\"France + South\",\"regionalDisplayName\":\"(Europe) France South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.1972\",\"latitude\":\"43.8345\",\"physicalLocation\":\"Marseille\",\"pairedRegion\":[{\"name\":\"francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\",\"name\":\"germanynorth\",\"displayName\":\"Germany + North\",\"regionalDisplayName\":\"(Europe) Germany North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.806422\",\"latitude\":\"53.073635\",\"physicalLocation\":\"Berlin\",\"pairedRegion\":[{\"name\":\"germanywestcentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\",\"name\":\"norwaywest\",\"displayName\":\"Norway + West\",\"regionalDisplayName\":\"(Europe) Norway West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"5.733107\",\"latitude\":\"58.969975\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwayeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedensouth\",\"name\":\"swedensouth\",\"displayName\":\"Sweden + South\",\"regionalDisplayName\":\"(Europe) Sweden South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"13.0007\",\"latitude\":\"55.6059\",\"physicalLocation\":\"Malmo\",\"pairedRegion\":[{\"name\":\"swedencentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedencentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\",\"name\":\"switzerlandwest\",\"displayName\":\"Switzerland + West\",\"regionalDisplayName\":\"(Europe) Switzerland West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"6.143158\",\"latitude\":\"46.204391\",\"physicalLocation\":\"Geneva\",\"pairedRegion\":[{\"name\":\"switzerlandnorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\",\"name\":\"ukwest\",\"displayName\":\"UK + West\",\"regionalDisplayName\":\"(Europe) UK West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"-3.084\",\"latitude\":\"53.427\",\"physicalLocation\":\"Cardiff\",\"pairedRegion\":[{\"name\":\"uksouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\",\"name\":\"uaecentral\",\"displayName\":\"UAE + Central\",\"regionalDisplayName\":\"(Middle East) UAE Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Middle + East\",\"longitude\":\"54.366669\",\"latitude\":\"24.466667\",\"physicalLocation\":\"Abu + Dhabi\",\"pairedRegion\":[{\"name\":\"uaenorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsoutheast\",\"name\":\"brazilsoutheast\",\"displayName\":\"Brazil + Southeast\",\"regionalDisplayName\":\"(South America) Brazil Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"South + America\",\"longitude\":\"-43.2075\",\"latitude\":\"-22.90278\",\"physicalLocation\":\"Rio\",\"pairedRegion\":[{\"name\":\"brazilsouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusslv\",\"name\":\"eastusslv\",\"displayName\":\"East + US SLV\",\"regionalDisplayName\":\"(South America) East US SLV\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"South + America\",\"longitude\":\"-43.2075\",\"latitude\":\"-22.90278\",\"physicalLocation\":\"Silverstone\",\"pairedRegion\":[{\"name\":\"eastusslv\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusslv\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/qatarcentral\",\"name\":\"qatarcentral\",\"displayName\":\"Qatar + Central\",\"regionalDisplayName\":\"(Europe) Qatar Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"51.439327\",\"latitude\":\"25.551462\",\"physicalLocation\":\"Doha\",\"pairedRegion\":[{\"name\":\"westeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"}]}}]}" + headers: + cache-control: + - no-cache + content-length: + - '30870' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:23:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Insights?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights","namespace":"microsoft.insights","authorizations":[{"applicationId":"6bccf540-eb86-4037-af03-7fa058c2db75","roleDefinitionId":"89dcede2-9219-403a-9723-d3c6473f9472"},{"applicationId":"11c174dc-1945-4a9a-a36b-c79a0f246b9b","roleDefinitionId":"dd9d4347-f397-45f2-b538-85f21c90037b"},{"applicationId":"035f9e1d-4f00-4419-bf50-bf2d87eb4878","roleDefinitionId":"323795fe-ba3d-4f5a-ad42-afb4e1ea9485"},{"applicationId":"f5c26e74-f226-4ae8-85f0-b4af0080ac9e","roleDefinitionId":"529d7ae6-e892-4d43-809d-8547aeb90643"},{"applicationId":"b503eb83-1222-4dcc-b116-b98ed5216e05","roleDefinitionId":"68699c37-c689-44d4-9248-494b782d46ae"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"},{"applicationId":"3af5a1e8-2459-45cb-8683-bcd6cccbcc13","roleDefinitionId":"b1309299-720d-4159-9897-6158a61aee41"},{"applicationId":"6a0a243c-0886-468a-a4c2-eff52c7445da","roleDefinitionId":"d2eda64b-c5e6-4930-8642-2d80ecd7c2e2"},{"applicationId":"707be275-6b9d-4ee7-88f9-c0c2bd646e0f","roleDefinitionId":"fa027d90-6ba0-4c33-9a54-59edaf2327e7"},{"applicationId":"461e8683-5575-4561-ac7f-899cc907d62a","roleDefinitionId":"68699c37-c689-44d4-9248-494b782d46ae"},{"applicationId":"562db366-1b96-45d2-aa4a-f2148cef2240","roleDefinitionId":"4109c8be-c1c8-4be0-af52-9d3c76c140ab"},{"applicationId":"e933bd07-d2ee-4f1d-933c-3752b819567b","roleDefinitionId":"abbcfd44-e662-419a-9b5a-478f8e2f57c9"},{"applicationId":"f6b60513-f290-450e-a2f3-9930de61c5e7","roleDefinitionId":"4ef11659-08ac-48af-98a7-25fb6b1e1bc4"},{"applicationId":"12743ff8-d3de-49d0-a4ce-6c91a4245ea0","roleDefinitionId":"207b20a7-6802-4ae4-aaa2-1a36dd45bba0"},{"applicationId":"58ef1dbd-684c-47d6-8ffc-61ea7a197b95","roleDefinitionId":"dd9d4347-f397-45f2-b538-85f21c90037b"}],"resourceTypes":[{"resourceType":"components","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Norway West","Australia Southeast","Australia Central 2","Germany West + Central","Switzerland West","UAE Central","UK West","Japan West","Brazil Southeast","UAE + North","Australia Central","France South","South India","West US 3","Canada + East","Jio India West","Korea South"],"apiVersions":["2020-02-02-preview","2020-02-02","2018-05-01-preview","2015-05-01","2014-12-01-preview","2014-08-01","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"components/query","locations":[],"apiVersions":["2018-04-20"],"capabilities":"None"},{"resourceType":"components/metadata","locations":[],"apiVersions":["2018-04-20"],"capabilities":"None"},{"resourceType":"components/metrics","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","East US 2","East Asia","West US","Central + US","South Africa North","North Central US","Brazil South","Switzerland North","Australia + Southeast","Norway East","Norway West"],"apiVersions":["2018-04-20","2014-04-01"],"capabilities":"None"},{"resourceType":"components/events","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","East US 2","East Asia","West US","Central + US","South Africa North","North Central US"],"apiVersions":["2018-04-20"],"capabilities":"None"},{"resourceType":"components/syntheticmonitorlocations","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Norway West","Australia Southeast","Australia Central 2","Germany West + Central","Switzerland West","UAE Central","UK West","Japan West","Brazil Southeast","UAE + North","Australia Central","France South","South India","West US 3","Canada + East","Jio India West","Korea South"],"apiVersions":["2020-02-02-preview","2020-02-02","2018-05-01-preview","2015-05-01","2014-12-01-preview","2014-08-01","2014-04-01"],"capabilities":"None"},{"resourceType":"webtests","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Norway West","Australia Southeast","Australia Central 2","Germany West + Central","Switzerland West","UAE Central","UK West","Brazil Southeast","Japan + West","UAE North","Australia Central","France South","South India","West US + 3","Canada East","Jio India West","Korea South"],"apiVersions":["2018-05-01-preview","2015-05-01","2014-08-01","2014-04-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"webtests/getTestResultFile","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","East US 2","East Asia","West US","Central + US","South Africa North","North Central US"],"apiVersions":["2020-02-10-preview"],"capabilities":"None"},{"resourceType":"scheduledqueryrules","locations":["West + Central US","Australia East","Central US","East US","East US 2","France Central","Japan + East","North Europe","South Africa North","Southeast Asia","UK South","West + Europe","West US 2","Central India","Canada Central","Australia Southeast","South + Central US","Australia Central","Korea Central","East Asia","West US","North + Central US","Brazil South","UK West","Switzerland North","Switzerland West","UAE + Central","Germany West Central","Australia Central 2","Brazil SouthEast","Norway + East","UAE North","Japan West","South India","France South","Norway West","East + US 2 EUAP"],"apiVersions":["2021-08-01","2021-02-01-preview","2020-05-01-preview","2018-04-16","2017-09-01-preview"],"defaultApiVersion":"2018-04-16","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"components/pricingPlans","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"migrateToNewPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"rollbackToLegacyPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"listMigrationdate","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"logprofiles","locations":[],"apiVersions":["2016-03-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"}],"capabilities":"None"},{"resourceType":"migratealertrules","locations":[],"apiVersions":["2018-03-01"],"capabilities":"None"},{"resourceType":"metricalerts","locations":["Global"],"apiVersions":["2018-03-01","2017-09-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"alertrules","locations":["West US","East + US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Central US","Australia + East","Australia Southeast","Brazil South","UK South","UK West","South India","Central + India","West India","Canada East","Canada Central","West Central US","West + US 2","Korea Central","Australia Central","Australia Central 2","France Central","South + Africa North","UAE North","Korea South","France South","East US 2 EUAP","Central + US EUAP","South Africa West","UAE Central"],"apiVersions":["2016-03-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"autoscalesettings","locations":["West + US","East US","North Europe","South Central US","East US 2","Central US","Australia + Southeast","Brazil South","UK South","UK West","South India","Central India","West + India","Canada East","Canada Central","West Central US","West US 2","Korea + Central","Australia Central","Australia Central 2","France Central","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","North Central + US","Australia East","South Africa North","UAE North","Switzerland North","Germany + West Central","Norway East","West US 3","Jio India West","Korea South","France + South","East US 2 EUAP","Central US EUAP","South Africa West","UAE Central","Switzerland + West","Germany North","Norway West","Brazil Southeast","Jio India Central","Sweden + South","Sweden Central"],"apiVersions":["2021-05-01-preview","2015-04-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"eventtypes","locations":[],"apiVersions":["2017-03-01-preview","2016-09-01-preview","2015-04-01","2014-11-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-01"}],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":["East + US"],"apiVersions":["2015-04-01","2014-04-01"],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2015-04-01","2014-04-01"],"capabilities":"None"},{"resourceType":"vmInsightsOnboardingStatuses","locations":[],"apiVersions":["2018-11-27-preview"],"capabilities":"SupportsExtension"},{"resourceType":"operations","locations":[],"apiVersions":["2015-04-01","2014-06-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-01"}],"capabilities":"None"},{"resourceType":"diagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea Central","Australia Central","Australia Central 2","France + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Korea South","East US + 2 EUAP","Central US EUAP","France South","South Africa West","UAE Central","Switzerland + West","Germany North","Norway West","Brazil Southeast","Jio India Central","Sweden + South","Sweden Central"],"apiVersions":["2021-05-01-preview","2017-05-01-preview","2016-09-01","2015-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-09-01"}],"capabilities":"SupportsExtension"},{"resourceType":"diagnosticSettingsCategories","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea Central","Australia Central","Australia Central 2","France + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Korea South","East US + 2 EUAP","Central US EUAP","France South","South Africa West","UAE Central","Switzerland + West","Germany North","Norway West","Brazil Southeast","Jio India Central","Sweden + South","Sweden Central"],"apiVersions":["2021-05-01-preview","2017-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"extendedDiagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea Central","Australia Central","Australia Central 2","France + Central","South Africa North","UAE North","Switzerland North","Germany West + Central","Norway East","West US 3","Jio India West","Korea South","France + South","East US 2 EUAP","Central US EUAP","South Africa West","UAE Central","Switzerland + West","Germany North","Norway West","Brazil Southeast","Jio India Central","Sweden + South","Sweden Central"],"apiVersions":["2017-02-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-02-01"}],"capabilities":"SupportsExtension"},{"resourceType":"metricDefinitions","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Australia Central","Australia + Central 2","Brazil South","Brazil Southeast","South India","Central India","West + India","North Europe","West US 2","Jio India West","West US 3","West Central + US","Korea Central","UK South","UK West","France Central","South Africa North","South + Africa West","UAE North","Switzerland North","Germany West Central","Norway + East","Jio India Central","Sweden Central","Sweden South","Korea South","East + US 2 EUAP","Central US EUAP","France South","UAE Central","Switzerland West","Germany + North","Norway West"],"apiVersions":["2018-01-01","2017-12-01-preview","2017-09-01-preview","2017-05-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-01"}],"capabilities":"SupportsExtension"},{"resourceType":"logDefinitions","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea Central","Australia Central","Australia Central 2","France + Central","Korea South","France South","East US 2 EUAP","Central US EUAP"],"apiVersions":["2015-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-07-01"}],"capabilities":"SupportsExtension"},{"resourceType":"eventCategories","locations":[],"apiVersions":["2015-04-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2015-04-01"}],"capabilities":"None"},{"resourceType":"metrics","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Australia Central","Australia + Central 2","Brazil South","Brazil Southeast","South India","Central India","West + India","North Europe","West US 2","Jio India West","West US 3","West Central + US","Korea Central","UK South","UK West","France Central","South Africa North","South + Africa West","UAE North","Switzerland North","Germany West Central","Norway + East","Jio India Central","Sweden Central","Sweden South","Korea South","East + US 2 EUAP","Central US EUAP","France South","UAE Central","Switzerland West","Germany + North","Norway West"],"apiVersions":["2021-05-01","2019-07-01","2018-01-01","2017-12-01-preview","2017-09-01-preview","2017-05-01-preview","2016-09-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-01"}],"capabilities":"SupportsExtension"},{"resourceType":"metricbatch","locations":[],"apiVersions":["2019-01-01-preview"],"capabilities":"None"},{"resourceType":"metricNamespaces","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Australia Central","Australia + Central 2","Brazil South","Brazil Southeast","South India","Central India","West + India","North Europe","West US 2","Jio India West","West US 3","West Central + US","Korea Central","UK South","UK West","France Central","South Africa North","South + Africa West","UAE North","Switzerland North","Germany West Central","Norway + East","Jio India Central","Sweden Central","Sweden South","Korea South","East + US 2 EUAP","Central US EUAP","France South","UAE Central","Switzerland West","Germany + North","Norway West"],"apiVersions":["2017-12-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"notificationstatus","locations":[],"apiVersions":["2021-09-01"],"capabilities":"None"},{"resourceType":"createnotifications","locations":[],"apiVersions":["2021-09-01"],"capabilities":"None"},{"resourceType":"actiongroups","locations":["Global"],"apiVersions":["2021-09-01","2019-06-01","2019-03-01","2018-09-01","2018-03-01","2017-04-01","2017-03-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"activityLogAlerts","locations":["Global"],"apiVersions":["2020-10-01","2017-04-01","2017-03-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-04-01"}],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"baseline","locations":[],"apiVersions":["2018-09-01","2017-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"metricbaselines","locations":[],"apiVersions":["2019-03-01","2018-09-01"],"capabilities":"SupportsExtension"},{"resourceType":"calculatebaseline","locations":[],"apiVersions":["2018-09-01","2017-11-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"workbooks","locations":["West + Europe","South Central US","East US","North Europe","Southeast Asia","West + US 2","Japan East","Australia East","Korea Central","France Central","Central + US","East US 2","East Asia","West US","Canada Central","Central India","UK + South","UK West","South Africa North","North Central US","Brazil South","Switzerland + North","Norway East","Norway West","Australia Southeast","Australia Central + 2","Germany West Central","Switzerland West","UAE Central","Japan West","Brazil + Southeast","UAE North","Australia Central","France South","South India","West + Central US","West US 3","Canada East","Jio India West","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-08-01","2021-03-08","2020-10-20","2020-02-12","2018-06-17-preview","2018-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"workbooktemplates","locations":["West + Europe","South Central US","East US","North Europe","Southeast Asia","West + US 2","Japan East","Australia East","Korea Central","France Central","Central + US","East US 2","East Asia","West US","Canada Central","Central India","UK + South","UK West","South Africa North","North Central US","Brazil South","Switzerland + North","Norway East","Norway West","Australia Southeast","Australia Central + 2","Germany West Central","Switzerland West","UAE Central","Japan West","Brazil + Southeast","UAE North","Australia Central","France South","South India","West + Central US","West US 3","Canada East","Jio India West","Korea South"],"apiVersions":["2020-11-20","2019-10-17-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"myWorkbooks","locations":["West + Europe","South Central US","East US","North Europe","Southeast Asia","West + US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Norway West","Australia Southeast","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-03-08","2020-10-20","2020-02-12","2018-06-17-preview","2018-06-15-preview","2018-06-01-preview","2016-06-15-preview"],"capabilities":"SupportsExtension"},{"resourceType":"logs","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","France Central","France South","Australia Central","South + Africa North","Korea South","Central US EUAP","East US 2 EUAP","Australia + Central 2","South Africa West","UAE Central","UAE North"],"apiVersions":["2018-03-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"transactions","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","East US 2","East Asia","West US","Central + US","South Africa North","North Central US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-10-17-preview"],"capabilities":"SupportsExtension"},{"resourceType":"topology","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2","UK South","Central India","Canada Central","Japan East","Australia + East","Korea Central","France Central","East US 2","East Asia","West US","Central + US","South Africa North","North Central US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-10-17-preview"],"capabilities":"SupportsExtension"},{"resourceType":"generateLiveToken","locations":[],"apiVersions":["2021-10-14","2020-06-02-preview"],"capabilities":"SupportsExtension"},{"resourceType":"dataCollectionRules","locations":["Australia + Southeast","Canada Central","Japan East","Australia East","Central India","Germany + West Central","North Central US","South Central US","East US","Central US","West + Europe","West US 2","Southeast Asia","East US 2","UK South","North Europe","West + US","Australia Central","West Central US","East Asia","UK West","Korea Central","France + Central","South Africa North","Switzerland North","Australia Central 2","Brazil + Southeast","France South","Norway West","UAE North","Japan West","Norway East","Switzerland + West","Brazil South","East US 2 EUAP"],"apiVersions":["2021-04-01","2019-11-01-preview"],"defaultApiVersion":"2021-04-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dataCollectionRuleAssociations","locations":["Australia + Southeast","Canada Central","Japan East","Australia East","Central India","Germany + West Central","North Central US","South Central US","East US","Central US","West + Europe","West US 2","Southeast Asia","East US 2","UK South","North Europe","West + US","Australia Central","West Central US","East Asia","UK West","Korea Central","France + Central","South Africa North","Switzerland North","Brazil South","Australia + Central 2","Brazil Southeast","Canada East","France South","Norway West","UAE + North","Japan West","Norway East","Switzerland West","Korea South","East US + 2 EUAP"],"apiVersions":["2021-04-01","2019-11-01-preview"],"defaultApiVersion":"2021-04-01","capabilities":"SupportsExtension"},{"resourceType":"dataCollectionEndpoints","locations":["Australia + Southeast","Canada Central","Japan East","Australia East","Central India","Germany + West Central","North Central US","South Central US","East US","Central US","West + Europe","West US 2","Southeast Asia","East US 2","UK South","North Europe","West + US","Australia Central","West Central US","East Asia","UK West","Korea Central","France + Central","South Africa North","Switzerland North","Brazil South","Australia + Central 2","Brazil Southeast","Canada East","France South","Norway West","UAE + North","Japan West","Norway East","Switzerland West","Korea South","East US + 2 EUAP"],"apiVersions":["2021-04-01"],"defaultApiVersion":"2021-04-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dataCollectionEndpoints/scopedPrivateLinkProxies","locations":["Australia + Southeast","Canada Central","Japan East","Australia East","Central India","Germany + West Central","North Central US","South Central US","East US","Central US","West + Europe","West US 2","Southeast Asia","East US 2","UK South","North Europe","West + US","Australia Central","West Central US","East Asia","UK West","Korea Central","France + Central","South Africa North","Switzerland North","Brazil South","Australia + Central 2","Brazil Southeast","Canada East","France South","Norway West","UAE + North","Japan West","Norway East","Switzerland West","Korea South","East US + 2 EUAP"],"apiVersions":["2021-04-01"],"defaultApiVersion":"2021-04-01","capabilities":"None"},{"resourceType":"privateLinkScopes","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateLinkScopes/privateEndpointConnections","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"},{"resourceType":"privateLinkScopes/privateEndpointConnectionProxies","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"},{"resourceType":"privateLinkScopes/scopedResources","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"},{"resourceType":"components/linkedstorageaccounts","locations":["East + US","West Central US","South Central US","North Europe","West Europe","Southeast + Asia","West US 2","UK South","Canada Central","Central India","Japan East","Australia + East","Korea Central","France Central","Central US","East US 2","East Asia","West + US","South Africa North","North Central US","Brazil South","Switzerland North","Norway + East","Norway West","Australia Southeast"],"apiVersions":["2020-03-01-preview"],"capabilities":"None"},{"resourceType":"privateLinkScopeOperationStatuses","locations":["Global"],"apiVersions":["2021-09-01","2021-07-01-preview","2019-10-17-preview"],"defaultApiVersion":"2019-10-17-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '27917' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:23:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"dataSources": {"extensions": [{"name": + "ContainerInsightsExtension", "streams": ["Microsoft-Perf", "Microsoft-ContainerInventory", + "Microsoft-ContainerLog", "Microsoft-ContainerLogV2", "Microsoft-ContainerNodeInventory", + "Microsoft-KubeEvents", "Microsoft-KubeHealth", "Microsoft-KubeMonAgentEvents", + "Microsoft-KubeNodeInventory", "Microsoft-KubePodInventory", "Microsoft-KubePVInventory", + "Microsoft-KubeServices", "Microsoft-InsightsMetrics"], "extensionName": "ContainerInsights"}]}, + "dataFlows": [{"streams": ["Microsoft-Perf", "Microsoft-ContainerInventory", + "Microsoft-ContainerLog", "Microsoft-ContainerLogV2", "Microsoft-ContainerNodeInventory", + "Microsoft-KubeEvents", "Microsoft-KubeHealth", "Microsoft-KubeMonAgentEvents", + "Microsoft-KubeNodeInventory", "Microsoft-KubePodInventory", "Microsoft-KubePVInventory", + "Microsoft-KubeServices", "Microsoft-InsightsMetrics"], "destinations": ["la-workspace"]}], + "destinations": {"logAnalytics": [{"workspaceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", + "name": "la-workspace"}]}}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + Content-Length: + - '1248' + Content-Type: + - application/json + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"immutableId":"dcr-78b5a913da4f4d5cb0c12d527d2ef9dd","dataSources":{"extensions":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"extensionName":"ContainerInsights","name":"ContainerInsightsExtension"}]},"destinations":{"logAnalytics":[{"workspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","workspaceId":"e897efd7-55de-4860-ac51-7403ccb7e3cf","name":"la-workspace"}]},"dataFlows":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"destinations":["la-workspace"]}],"provisioningState":"Succeeded"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRules","etag":"\"d8001ff7-0000-0800-0000-61a7854f0000\""}' + headers: + api-supported-versions: + - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview + cache-control: + - no-cache + content-length: + - '1725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:23:11 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2bbfbac8-e1b0-44af-b9c6-3a40669d37e3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '59' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"dataCollectionRuleId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", + "description": "routes monitoring data to a Log Analytics workspace"}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + Content-Length: + - '342' + Content-Type: + - application/json + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"description":"routes monitoring data to a Log Analytics + workspace","dataCollectionRuleId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRuleAssociations","etag":"\"d80038f7-0000-0800-0000-61a785510000\""}' + headers: + api-supported-versions: + - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:23:12 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2bbfbac8-e1b0-44af-b9c6-3a40669d37e3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '59' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": + {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai": + {}}}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": "cliakstest-clitestcnsoy4if7-8ecadf", + "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": + 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", + "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, + "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"omsagent": {"enabled": true, "config": + {"logAnalyticsWorkspaceResourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", + "useAADAuth": "True"}}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", + "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b8445e97-93a9-448f-9f1b-3ca4bbcf4baa"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + Content-Length: + - '3197' + Content-Type: + - application/json + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestcnsoy4if7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestcnsoy4if7-8ecadf-0a9b690f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestcnsoy4if7-8ecadf-0a9b690f.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n + \ \"useAADAuth\": \"True\"\n }\n }\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b8445e97-93a9-448f-9f1b-3ca4bbcf4baa\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n + \ }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/964ee847-9d85-4edc-8977-4de85436e630?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '4487' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:23:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/964ee847-9d85-4edc-8977-4de85436e630?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"47e84e96-859d-dc4e-8977-4de85436e630\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:23:16.21Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:23:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/964ee847-9d85-4edc-8977-4de85436e630?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"47e84e96-859d-dc4e-8977-4de85436e630\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:23:16.21Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:24:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/964ee847-9d85-4edc-8977-4de85436e630?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"47e84e96-859d-dc4e-8977-4de85436e630\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:23:16.21Z\",\n \"endTime\": + \"2021-12-01T14:24:18.8549292Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '165' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:24:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestcnsoy4if7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestcnsoy4if7-8ecadf-0a9b690f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestcnsoy4if7-8ecadf-0a9b690f.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n + \ \"useAADAuth\": \"True\"\n },\n \"identity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omsagent-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b8445e97-93a9-448f-9f1b-3ca4bbcf4baa\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n + \ }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4852' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:24:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables + publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2021-11-11T20:13:44.2828715Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' + headers: + cache-control: + - no-cache + content-length: + - '776' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:24:47 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", + "principalId":"00000000-0000-0000-0000-000000000001"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + Cookie: + - x-ms-gateway-slice=Production + ParameterSetName: + - -a --resource-group --name --enable-msi-auth-for-monitoring + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/47829144-b269-466a-b1d5-8e2102ddc5c4?api-version=2020-04-01-preview + response: + body: + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T14:24:48.6146228Z","updatedOn":"2021-12-01T14:24:48.8958049Z","createdBy":null,"updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/47829144-b269-466a-b1d5-8e2102ddc5c4","type":"Microsoft.Authorization/roleAssignments","name":"47829144-b269-466a-b1d5-8e2102ddc5c4"}' + headers: + cache-control: + - no-cache + content-length: + - '1029' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:24:51 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1191' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - rest + Connection: + - keep-alive + ParameterSetName: + - --method --url + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"immutableId":"dcr-78b5a913da4f4d5cb0c12d527d2ef9dd","dataSources":{"extensions":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"extensionName":"ContainerInsights","name":"ContainerInsightsExtension"}]},"destinations":{"logAnalytics":[{"workspaceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","workspaceId":"e897efd7-55de-4860-ac51-7403ccb7e3cf","name":"la-workspace"}]},"dataFlows":[{"streams":["Microsoft-Perf","Microsoft-ContainerInventory","Microsoft-ContainerLog","Microsoft-ContainerLogV2","Microsoft-ContainerNodeInventory","Microsoft-KubeEvents","Microsoft-KubeHealth","Microsoft-KubeMonAgentEvents","Microsoft-KubeNodeInventory","Microsoft-KubePodInventory","Microsoft-KubePVInventory","Microsoft-KubeServices","Microsoft-InsightsMetrics"],"destinations":["la-workspace"]}],"provisioningState":"Succeeded"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRules","etag":"\"d8001ff7-0000-0800-0000-61a7854f0000\""}' + headers: + api-supported-versions: + - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview + cache-control: + - no-cache + content-length: + - '1725' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:24:50 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2bbfbac8-e1b0-44af-b9c6-3a40669d37e3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - rest + Connection: + - keep-alive + ParameterSetName: + - --method --url + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"description":"routes monitoring data to a Log Analytics + workspace","dataCollectionRuleId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","name":"send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2","type":"Microsoft.Insights/dataCollectionRuleAssociations","etag":"\"d80038f7-0000-0800-0000-61a785510000\""}' + headers: + api-supported-versions: + - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:24:51 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2bbfbac8-e1b0-44af-b9c6-3a40669d37e3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestcnsoy4if7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestcnsoy4if7-8ecadf-0a9b690f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestcnsoy4if7-8ecadf-0a9b690f.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n + \ \"useAADAuth\": \"True\"\n },\n \"identity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omsagent-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b8445e97-93a9-448f-9f1b-3ca4bbcf4baa\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n + \ }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4852' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:24:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "properties": {"dataCollectionRuleId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Insights/dataCollectionRules/MSCI-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", + "description": "routes monitoring data to a Log Analytics workspace"}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + Content-Length: + - '342' + Content-Type: + - application/json + ParameterSetName: + - -a -g -n + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.30.0 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Insights/dataCollectionRuleAssociations/send-to-defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2019-11-01-preview + response: + body: + string: '' + headers: + api-supported-versions: + - 2019-11-01-preview, 2021-04-01, 2021-09-01-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 01 Dec 2021 14:24:53 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:2bbfbac8-e1b0-44af-b9c6-3a40669d37e3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": + {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai": + {}}}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": "cliakstest-clitestcnsoy4if7-8ecadf", + "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": + 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", + "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, + "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"omsagent": {"enabled": false}}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b8445e97-93a9-448f-9f1b-3ca4bbcf4baa"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + Content-Length: + - '2923' + Content-Type: + - application/json + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestcnsoy4if7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestcnsoy4if7-8ecadf-0a9b690f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestcnsoy4if7-8ecadf-0a9b690f.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": false,\n \"config\": null\n + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b8445e97-93a9-448f-9f1b-3ca4bbcf4baa\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n + \ }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e02e032c-8b97-4907-a8e7-2b569be86612?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '4210' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:24:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1194' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e02e032c-8b97-4907-a8e7-2b569be86612?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2c032ee0-978b-0749-a8e7-2b569be86612\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:24:56.9433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:25:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e02e032c-8b97-4907-a8e7-2b569be86612?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2c032ee0-978b-0749-a8e7-2b569be86612\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:24:56.9433333Z\",\n \"endTime\": + \"2021-12-01T14:25:57.9494272Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:25:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestcnsoy4if7-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestcnsoy4if7-8ecadf-0a9b690f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestcnsoy4if7-8ecadf-0a9b690f.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": false,\n \"config\": null\n + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b8445e97-93a9-448f-9f1b-3ca4bbcf4baa\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002_uai\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n + \ }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4212' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:25:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --yes --no-wait + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e15eb504-75d8-4c5e-b485-e8adb2050de5?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 01 Dec 2021 14:25:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/e15eb504-75d8-4c5e-b485-e8adb2050de5?api-version=2016-03-30 + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14995' + status: + code: 202 + message: Accepted +version: 1 diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_utlra_ssd.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_utlra_ssd.yaml old mode 100755 new mode 100644 index c975d9e8e99..a6f525593a6 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_utlra_ssd.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_enable_utlra_ssd.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:36:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:09:47Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 06:36:10 GMT + - Wed, 01 Dec 2021 14:09:47 GMT expires: - '-1' pragma: @@ -43,19 +43,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestpibjiyx55-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest67h5qs7ux-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_D2s_v3", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "availabilityZones": ["1", "2", "3"], "enableNodePublicIP": false, - "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "availabilityZones": ["1", "2", "3"], "enableNodePublicIP": + false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": true, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -66,39 +66,40 @@ interactions: Connection: - keep-alive Content-Length: - - '1428' + - '1785' Content-Type: - application/json ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestpibjiyx55-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestpibjiyx55-8ecadf-b7e19cf8.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestpibjiyx55-8ecadf-b7e19cf8.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest67h5qs7ux-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest67h5qs7ux-8ecadf-aa335f9f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest67h5qs7ux-8ecadf-aa335f9f.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": true,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": true,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -106,22 +107,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/401046fd-b055-45e1-b4ec-d2fe2da00d76?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe1155e7-7632-4cb9-8b2d-e2526e60e381?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2845' + - '3303' content-type: - application/json date: - - Tue, 19 Oct 2021 06:36:13 GMT + - Wed, 01 Dec 2021 14:09:52 GMT expires: - '-1' pragma: @@ -133,7 +135,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 201 message: Created @@ -151,14 +153,62 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe1155e7-7632-4cb9-8b2d-e2526e60e381?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e75511fe-3276-b94c-8b2d-e2526e60e381\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:52.88Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:10:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/401046fd-b055-45e1-b4ec-d2fe2da00d76?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe1155e7-7632-4cb9-8b2d-e2526e60e381?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fd461040-55b0-e145-b4ec-d2fe2da00d76\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:13.84Z\"\n }" + string: "{\n \"name\": \"e75511fe-3276-b94c-8b2d-e2526e60e381\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:52.88Z\"\n }" headers: cache-control: - no-cache @@ -167,7 +217,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:36:44 GMT + - Wed, 01 Dec 2021 14:10:53 GMT expires: - '-1' pragma: @@ -199,14 +249,14 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/401046fd-b055-45e1-b4ec-d2fe2da00d76?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe1155e7-7632-4cb9-8b2d-e2526e60e381?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fd461040-55b0-e145-b4ec-d2fe2da00d76\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:13.84Z\"\n }" + string: "{\n \"name\": \"e75511fe-3276-b94c-8b2d-e2526e60e381\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:52.88Z\"\n }" headers: cache-control: - no-cache @@ -215,7 +265,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:37:14 GMT + - Wed, 01 Dec 2021 14:11:23 GMT expires: - '-1' pragma: @@ -247,14 +297,14 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/401046fd-b055-45e1-b4ec-d2fe2da00d76?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe1155e7-7632-4cb9-8b2d-e2526e60e381?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fd461040-55b0-e145-b4ec-d2fe2da00d76\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:13.84Z\"\n }" + string: "{\n \"name\": \"e75511fe-3276-b94c-8b2d-e2526e60e381\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:52.88Z\"\n }" headers: cache-control: - no-cache @@ -263,7 +313,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:37:43 GMT + - Wed, 01 Dec 2021 14:11:53 GMT expires: - '-1' pragma: @@ -295,14 +345,14 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/401046fd-b055-45e1-b4ec-d2fe2da00d76?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe1155e7-7632-4cb9-8b2d-e2526e60e381?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fd461040-55b0-e145-b4ec-d2fe2da00d76\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:13.84Z\"\n }" + string: "{\n \"name\": \"e75511fe-3276-b94c-8b2d-e2526e60e381\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:52.88Z\"\n }" headers: cache-control: - no-cache @@ -311,7 +361,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:38:13 GMT + - Wed, 01 Dec 2021 14:12:23 GMT expires: - '-1' pragma: @@ -343,14 +393,14 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/401046fd-b055-45e1-b4ec-d2fe2da00d76?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe1155e7-7632-4cb9-8b2d-e2526e60e381?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fd461040-55b0-e145-b4ec-d2fe2da00d76\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:13.84Z\"\n }" + string: "{\n \"name\": \"e75511fe-3276-b94c-8b2d-e2526e60e381\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:52.88Z\"\n }" headers: cache-control: - no-cache @@ -359,7 +409,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:38:44 GMT + - Wed, 01 Dec 2021 14:12:54 GMT expires: - '-1' pragma: @@ -391,14 +441,14 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/401046fd-b055-45e1-b4ec-d2fe2da00d76?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe1155e7-7632-4cb9-8b2d-e2526e60e381?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fd461040-55b0-e145-b4ec-d2fe2da00d76\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:36:13.84Z\"\n }" + string: "{\n \"name\": \"e75511fe-3276-b94c-8b2d-e2526e60e381\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:09:52.88Z\"\n }" headers: cache-control: - no-cache @@ -407,7 +457,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:39:14 GMT + - Wed, 01 Dec 2021 14:13:24 GMT expires: - '-1' pragma: @@ -439,24 +489,24 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/401046fd-b055-45e1-b4ec-d2fe2da00d76?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe1155e7-7632-4cb9-8b2d-e2526e60e381?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fd461040-55b0-e145-b4ec-d2fe2da00d76\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:36:13.84Z\",\n \"endTime\": - \"2021-10-19T06:39:30.20312Z\"\n }" + string: "{\n \"name\": \"e75511fe-3276-b94c-8b2d-e2526e60e381\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:09:52.88Z\",\n \"endTime\": + \"2021-12-01T14:13:49.3376782Z\"\n }" headers: cache-control: - no-cache content-length: - - '163' + - '165' content-type: - application/json date: - - Tue, 19 Oct 2021 06:39:43 GMT + - Wed, 01 Dec 2021 14:13:54 GMT expires: - '-1' pragma: @@ -488,58 +538,61 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestpibjiyx55-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestpibjiyx55-8ecadf-b7e19cf8.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestpibjiyx55-8ecadf-b7e19cf8.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest67h5qs7ux-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest67h5qs7ux-8ecadf-aa335f9f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest67h5qs7ux-8ecadf-aa335f9f.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": true,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": true,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e2aabd53-08d8-4dc3-8180-26d917c2012a\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1160d00e-6f5d-4620-a79b-89b443d0d8fb\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3508' + - '3966' content-type: - application/json date: - - Tue, 19 Oct 2021 06:39:43 GMT + - Wed, 01 Dec 2021 14:13:54 GMT expires: - '-1' pragma: @@ -573,8 +626,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -582,17 +635,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b98370cf-5380-4ef7-96f9-7aa0a2c1542b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad214eb8-1aac-4fe7-bea6-ece6acda3500?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 06:39:45 GMT + - Wed, 01 Dec 2021 14:13:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b98370cf-5380-4ef7-96f9-7aa0a2c1542b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ad214eb8-1aac-4fe7-bea6-ece6acda3500?api-version=2016-03-30 pragma: - no-cache server: @@ -602,7 +655,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_maintenanceconfiguration.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_maintenanceconfiguration.yaml old mode 100755 new mode 100644 index b711eb9190b..d8a50601706 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_maintenanceconfiguration.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_maintenanceconfiguration.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:06:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:13:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:06:52 GMT + - Wed, 01 Dec 2021 14:13:58 GMT expires: - '-1' pragma: @@ -43,18 +43,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesterwhmqta3-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesthduzmqt5c-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -65,38 +66,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1391' + - '1748' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesterwhmqta3-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesterwhmqta3-8ecadf-10a7c8a7.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesterwhmqta3-8ecadf-10a7c8a7.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthduzmqt5c-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthduzmqt5c-8ecadf-0b49741b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthduzmqt5c-8ecadf-0b49741b.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -104,22 +106,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed1a303-d33f-4e53-9270-6e02c0c199f8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6261b4f6-c0d4-4a34-aee5-23476f1a4be8?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2778' + - '3236' content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:56 GMT + - Wed, 01 Dec 2021 14:14:02 GMT expires: - '-1' pragma: @@ -131,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -149,71 +152,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed1a303-d33f-4e53-9270-6e02c0c199f8?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"03a3d14e-3fd3-534e-9270-6e02c0c199f8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:56.62Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:07:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed1a303-d33f-4e53-9270-6e02c0c199f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6261b4f6-c0d4-4a34-aee5-23476f1a4be8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"03a3d14e-3fd3-534e-9270-6e02c0c199f8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:56.62Z\"\n }" + string: "{\n \"name\": \"f6b46162-d4c0-344a-aee5-23476f1a4be8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:03.2333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:07:56 GMT + - Wed, 01 Dec 2021 14:14:33 GMT expires: - '-1' pragma: @@ -245,23 +200,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed1a303-d33f-4e53-9270-6e02c0c199f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6261b4f6-c0d4-4a34-aee5-23476f1a4be8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"03a3d14e-3fd3-534e-9270-6e02c0c199f8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:56.62Z\"\n }" + string: "{\n \"name\": \"f6b46162-d4c0-344a-aee5-23476f1a4be8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:03.2333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:08:26 GMT + - Wed, 01 Dec 2021 14:15:03 GMT expires: - '-1' pragma: @@ -293,23 +248,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed1a303-d33f-4e53-9270-6e02c0c199f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6261b4f6-c0d4-4a34-aee5-23476f1a4be8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"03a3d14e-3fd3-534e-9270-6e02c0c199f8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:56.62Z\"\n }" + string: "{\n \"name\": \"f6b46162-d4c0-344a-aee5-23476f1a4be8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:03.2333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:08:56 GMT + - Wed, 01 Dec 2021 14:15:33 GMT expires: - '-1' pragma: @@ -341,23 +296,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed1a303-d33f-4e53-9270-6e02c0c199f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6261b4f6-c0d4-4a34-aee5-23476f1a4be8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"03a3d14e-3fd3-534e-9270-6e02c0c199f8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:56.62Z\"\n }" + string: "{\n \"name\": \"f6b46162-d4c0-344a-aee5-23476f1a4be8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:03.2333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:09:26 GMT + - Wed, 01 Dec 2021 14:16:04 GMT expires: - '-1' pragma: @@ -389,23 +344,24 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed1a303-d33f-4e53-9270-6e02c0c199f8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6261b4f6-c0d4-4a34-aee5-23476f1a4be8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"03a3d14e-3fd3-534e-9270-6e02c0c199f8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:56.62Z\"\n }" + string: "{\n \"name\": \"f6b46162-d4c0-344a-aee5-23476f1a4be8\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:14:03.2333333Z\",\n \"endTime\": + \"2021-12-01T14:16:18.5459298Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 07:09:56 GMT + - Wed, 01 Dec 2021 14:16:34 GMT expires: - '-1' pragma: @@ -437,106 +393,60 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed1a303-d33f-4e53-9270-6e02c0c199f8?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"03a3d14e-3fd3-534e-9270-6e02c0c199f8\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:06:56.62Z\",\n \"endTime\": - \"2021-10-19T07:10:10.843341Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '164' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:10:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesterwhmqta3-8ecadf\",\n \"fqdn\": - \"cliakstest-clitesterwhmqta3-8ecadf-10a7c8a7.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitesterwhmqta3-8ecadf-10a7c8a7.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesthduzmqt5c-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesthduzmqt5c-8ecadf-0b49741b.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesthduzmqt5c-8ecadf-0b49741b.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bd10b668-c66b-44d3-bb94-2481e0b1328c\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9c95b957-2658-42ce-8ae5-90daa516ccbb\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:27 GMT + - Wed, 01 Dec 2021 14:16:34 GMT expires: - '-1' pragma: @@ -568,10 +478,10 @@ interactions: ParameterSetName: - -g --cluster-name -n --weekday --start-hour User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2021-10-01 response: body: string: "{\n \"value\": []\n }" @@ -583,7 +493,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:28 GMT + - Wed, 01 Dec 2021 14:16:35 GMT expires: - '-1' pragma: @@ -620,10 +530,10 @@ interactions: ParameterSetName: - -g --cluster-name -n --weekday --start-hour User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default\",\n @@ -638,7 +548,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:28 GMT + - Wed, 01 Dec 2021 14:16:36 GMT expires: - '-1' pragma: @@ -654,7 +564,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1194' status: code: 200 message: OK @@ -672,10 +582,10 @@ interactions: ParameterSetName: - -g --cluster-name -n --config-file User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2021-10-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default\",\n @@ -690,7 +600,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:28 GMT + - Wed, 01 Dec 2021 14:16:36 GMT expires: - '-1' pragma: @@ -729,10 +639,10 @@ interactions: ParameterSetName: - -g --cluster-name -n --config-file User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default\",\n @@ -751,7 +661,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:29 GMT + - Wed, 01 Dec 2021 14:16:37 GMT expires: - '-1' pragma: @@ -767,7 +677,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 200 message: OK @@ -785,10 +695,10 @@ interactions: ParameterSetName: - -g --cluster-name -n User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default\",\n @@ -807,7 +717,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:29 GMT + - Wed, 01 Dec 2021 14:16:37 GMT expires: - '-1' pragma: @@ -841,10 +751,10 @@ interactions: ParameterSetName: - -g --cluster-name -n User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations/default?api-version=2021-10-01 response: body: string: '' @@ -854,7 +764,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Oct 2021 07:10:30 GMT + - Wed, 01 Dec 2021 14:16:37 GMT expires: - '-1' pragma: @@ -866,7 +776,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14995' + - '14999' status: code: 200 message: OK @@ -884,10 +794,10 @@ interactions: ParameterSetName: - -g --cluster-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/maintenanceConfigurations?api-version=2021-10-01 response: body: string: "{\n \"value\": []\n }" @@ -899,7 +809,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:30 GMT + - Wed, 01 Dec 2021 14:16:38 GMT expires: - '-1' pragma: @@ -933,8 +843,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -942,17 +852,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7ad29e0-e9a3-4422-8e6b-a426589966c8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a324a92e-f200-42ce-9246-c65b13be8f35?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 07:10:31 GMT + - Wed, 01 Dec 2021 14:16:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/a7ad29e0-e9a3-4422-8e6b-a426589966c8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/a324a92e-f200-42ce-9246-c65b13be8f35?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_gpu_instance_profile.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_gpu_instance_profile.yaml index 395bcf1fbc1..44f7deb3e73 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_gpu_instance_profile.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_gpu_instance_profile.yaml @@ -2,1331 +2,2337 @@ interactions: - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --nodepool-name -c --ssh-key-value] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.5 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --nodepool-name -c --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T08:11:47Z"},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['312'] - content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Oct 2021 08:11:49 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:12:10Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '312' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:12:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestjwe2d5euf-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestslqjt234b-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "c000003"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "c000003"}], "linuxProfile": + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - Content-Length: ['1716'] - Content-Type: [application/json] - ParameterSetName: [--resource-group --name --nodepool-name -c --ssh-key-value] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1744' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --nodepool-name -c --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: - body: {string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestjwe2d5euf-8ecadf\",\n \"fqdn\": \"cliakstest-clitestjwe2d5euf-8ecadf-01d38178.hcp.eastus.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestjwe2d5euf-8ecadf-01d38178.portal.hcp.eastus.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"\ - count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus\",\n \ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\"\ - : \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n\ - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\"\ - : \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\"\ - : \"Basic\",\n \"tier\": \"Free\"\n }\n }"} - headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/6cf7faee-58d4-4e7a-a547-29fcc3b63c5d?api-version=2017-08-31'] - cache-control: [no-cache] - content-length: ['3100'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:12:00 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] - status: {code: 201, message: Created} + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestslqjt234b-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestslqjt234b-8ecadf-f1adccd9.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestslqjt234b-8ecadf-f1adccd9.portal.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_eastus\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/78f6a609-1a14-4a3d-bced-04a9c89d31c3?api-version=2017-08-31 + cache-control: + - no-cache + content-length: + - '3229' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:12:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --nodepool-name -c --ssh-key-value] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --nodepool-name -c --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/6cf7faee-58d4-4e7a-a547-29fcc3b63c5d?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/78f6a609-1a14-4a3d-bced-04a9c89d31c3?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"eefaf76c-d458-7a4e-a547-29fcc3b63c5d\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:11:59.73Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:12:30 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"09a6f678-141a-3d4a-bced-04a9c89d31c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:16.2266666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:12:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --nodepool-name -c --ssh-key-value] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --nodepool-name -c --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/6cf7faee-58d4-4e7a-a547-29fcc3b63c5d?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/78f6a609-1a14-4a3d-bced-04a9c89d31c3?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"eefaf76c-d458-7a4e-a547-29fcc3b63c5d\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:11:59.73Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:13:00 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"09a6f678-141a-3d4a-bced-04a9c89d31c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:16.2266666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:13:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --nodepool-name -c --ssh-key-value] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --nodepool-name -c --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/6cf7faee-58d4-4e7a-a547-29fcc3b63c5d?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/78f6a609-1a14-4a3d-bced-04a9c89d31c3?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"eefaf76c-d458-7a4e-a547-29fcc3b63c5d\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:11:59.73Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:13:32 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"09a6f678-141a-3d4a-bced-04a9c89d31c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:16.2266666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:13:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --nodepool-name -c --ssh-key-value] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --nodepool-name -c --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/6cf7faee-58d4-4e7a-a547-29fcc3b63c5d?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/78f6a609-1a14-4a3d-bced-04a9c89d31c3?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"eefaf76c-d458-7a4e-a547-29fcc3b63c5d\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:11:59.73Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:14:02 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"09a6f678-141a-3d4a-bced-04a9c89d31c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:16.2266666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:14:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --nodepool-name -c --ssh-key-value] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --nodepool-name -c --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/6cf7faee-58d4-4e7a-a547-29fcc3b63c5d?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/78f6a609-1a14-4a3d-bced-04a9c89d31c3?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"eefaf76c-d458-7a4e-a547-29fcc3b63c5d\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:11:59.73Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:14:32 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"09a6f678-141a-3d4a-bced-04a9c89d31c3\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:12:16.2266666Z\",\n \"endTime\": + \"2021-12-01T14:14:43.6889716Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:14:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --nodepool-name -c --ssh-key-value] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --nodepool-name -c --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/6cf7faee-58d4-4e7a-a547-29fcc3b63c5d?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: - body: {string: "{\n \"name\": \"eefaf76c-d458-7a4e-a547-29fcc3b63c5d\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:11:59.73Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:15:02 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestslqjt234b-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestslqjt234b-8ecadf-f1adccd9.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestslqjt234b-8ecadf-f1adccd9.portal.hcp.eastus.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_eastus\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/706edb75-49e0-41ed-bd54-adf2d3a3710e\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '3890' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:14:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --nodepool-name -c --ssh-key-value] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/6cf7faee-58d4-4e7a-a547-29fcc3b63c5d?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2021-10-01 response: - body: {string: "{\n \"name\": \"eefaf76c-d458-7a4e-a547-29fcc3b63c5d\",\n \"\ - status\": \"Succeeded\",\n \"startTime\": \"2021-10-19T08:11:59.73Z\",\n\ - \ \"endTime\": \"2021-10-19T08:15:16.5965211Z\"\n }"} - headers: - cache-control: [no-cache] - content-length: ['165'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:15:33 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n + \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false\n }\n }\n ]\n }" + headers: + cache-control: + - no-cache + content-length: + - '1001' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:14:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"count": 1, "vmSize": "standard_nd96asr_v4", "workloadRuntime": + "OCIContainer", "osType": "Linux", "scaleDownMode": "Delete", "mode": "User", + "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], + "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, + "gpuInstanceProfile": "MIG3g"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + Content-Length: + - '427' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n + \ \"name\": \"c000004\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"standard_nd96asr_v4\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Ephemeral\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + false,\n \"gpuInstanceProfile\": \"MIG3g\",\n \"osType\": \"Linux\",\n + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2gpucontainerd-2021.11.06\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 + cache-control: + - no-cache + content-length: + - '985' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:14:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1194' + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --nodepool-name -c --ssh-key-value] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestjwe2d5euf-8ecadf\",\n \"fqdn\": \"cliakstest-clitestjwe2d5euf-8ecadf-01d38178.hcp.eastus.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestjwe2d5euf-8ecadf-01d38178.portal.hcp.eastus.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"\ - count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus\",\n \ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/0dc6d39a-39d3-4bf5-bdeb-c1dc68db6a6d\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }"} - headers: - cache-control: [no-cache] - content-length: ['3761'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:15:34 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ - ,\n \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ - ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ - kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n\ - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ - code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n\ - \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n \"enableFIPS\": false\n\ - \ }\n }\n ]\n }"} - headers: - cache-control: [no-cache] - content-length: ['968'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:15:35 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: - body: '{"properties": {"count": 1, "vmSize": "standard_nd96asr_v4", "workloadRuntime": - "OCIContainer", "osType": "Linux", "scaleDownMode": "Delete", "mode": "User", - "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], - "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, - "gpuInstanceProfile": "MIG3g"}}' + body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - Content-Length: ['427'] - Content-Type: [application/json] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2021-09-01 + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:16:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:16:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:17:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\ - ,\n \"name\": \"c000004\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ - ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"standard_nd96asr_v4\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Ephemeral\",\n \"kubeletDiskType\"\ - : \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n\ - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ - ,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ - \ \"enableUltraSSD\": false,\n \"gpuInstanceProfile\": \"MIG3g\",\n \ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2gpucontainerd-2021.10.02\",\n \"upgradeSettings\"\ - : {},\n \"enableFIPS\": false\n }\n }"} - headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31'] - cache-control: [no-cache] - content-length: ['985'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:15:39 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] - status: {code: 201, message: Created} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:17:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:16:09 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:18:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:16:40 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:18:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:17:10 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:17:40 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:18:11 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:20:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:18:42 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:20:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:19:12 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:21:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:19:42 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:21:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:20:13 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:22:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:20:43 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:22:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:21:13 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:23:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:21:45 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:23:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:22:15 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:24:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:22:45 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:24:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:23:15 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:25:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:23:45 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:25:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:24:16 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:26:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:24:47 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:26:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:25:17 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:27:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:25:47 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:27:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:26:18 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:28:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:26:48 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:28:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:27:18 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:29:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:27:50 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:29:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:28:20 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:30:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e8a48043-b012-4cf4-a874-2374eef3b25e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dd73f33b-7bdb-4d7f-8a2c-6ea6b23c0062?api-version=2017-08-31 response: - body: {string: "{\n \"name\": \"4380a4e8-12b0-f44c-a874-2374eef3b25e\",\n \"\ - status\": \"Succeeded\",\n \"startTime\": \"2021-10-19T08:15:39.8566666Z\"\ - ,\n \"endTime\": \"2021-10-19T08:28:34.0016136Z\"\n }"} - headers: - cache-control: [no-cache] - content-length: ['170'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:28:50 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"3bf373dd-db7b-7f4d-8a2c-6ea6b23c0062\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:14:50.7433333Z\",\n \"endTime\": + \"2021-12-01T14:30:37.4599673Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:30:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --gpu-instance-profile - -c --aks-custom-headers --node-vm-size] - UseGPUDedicatedVHD: ['true'] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --gpu-instance-profile -c --aks-custom-headers + --node-vm-size + UseGPUDedicatedVHD: + - 'true' + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2021-10-01 response: - body: {string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\ - ,\n \"name\": \"c000004\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ - ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"standard_nd96asr_v4\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Ephemeral\",\n \"kubeletDiskType\"\ - : \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n\ - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ - ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ - code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"\ - enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\"\ - : false,\n \"enableUltraSSD\": false,\n \"gpuInstanceProfile\": \"MIG3g\"\ - ,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2gpucontainerd-2021.10.02\",\n \"upgradeSettings\"\ - : {},\n \"enableFIPS\": false\n }\n }"} - headers: - cache-control: [no-cache] - content-length: ['986'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 08:28:51 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n + \ \"name\": \"c000004\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"standard_nd96asr_v4\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Ephemeral\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + false,\n \"gpuInstanceProfile\": \"MIG3g\",\n \"osType\": \"Linux\",\n + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2gpucontainerd-2021.11.06\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '986' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:30:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks delete] - Connection: [keep-alive] - Content-Length: ['0'] - ParameterSetName: [-g -n --yes --no-wait] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --yes --no-wait + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: - body: {string: ''} - headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/0e74c5c7-fed5-4477-a420-8d0493bc4ca4?api-version=2017-08-31'] - cache-control: [no-cache] - content-length: ['0'] - date: ['Tue, 19 Oct 2021 08:28:54 GMT'] - expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/0e74c5c7-fed5-4477-a420-8d0493bc4ca4?api-version=2017-08-31'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14998'] - status: {code: 202, message: Accepted} + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/eee58582-c5db-43b7-a689-e7ede0050888?api-version=2017-08-31 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 01 Dec 2021 14:30:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/eee58582-c5db-43b7-a689-e7ede0050888?api-version=2017-08-31 + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + status: + code: 202 + message: Accepted version: 1 diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml old mode 100755 new mode 100644 index a74b1d74411..8595abf7e8d --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:17:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:30:59Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '313' + - '312' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:17:15 GMT + - Wed, 01 Dec 2021 14:30:59 GMT expires: - '-1' pragma: @@ -42,19 +42,19 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest7akhb76ox-8ecadf", + body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitests5hc7dwcb-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "c000003"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "c000003"}], "linuxProfile": + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -65,61 +65,63 @@ interactions: Connection: - keep-alive Content-Length: - - '1388' + - '1744' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest7akhb76ox-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest7akhb76ox-8ecadf-854ef225.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest7akhb76ox-8ecadf-854ef225.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitests5hc7dwcb-8ecadf\",\n \"fqdn\": + \"cliakstest-clitests5hc7dwcb-8ecadf-6afe72a5.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitests5hc7dwcb-8ecadf-6afe72a5.portal.hcp.eastus.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_eastus\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8c9311-ab53-4746-9242-e38cee754b55?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e9342145-f3d8-4d55-a1b5-de08f66bdbb9?api-version=2017-08-31 cache-control: - no-cache content-length: - - '2775' + - '3229' content-type: - application/json date: - - Tue, 19 Oct 2021 07:17:18 GMT + - Wed, 01 Dec 2021 14:31:04 GMT expires: - '-1' pragma: @@ -131,7 +133,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' status: code: 201 message: Created @@ -149,14 +151,62 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e9342145-f3d8-4d55-a1b5-de08f66bdbb9?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"452134e9-d8f3-554d-a1b5-de08f66bdbb9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:31:04.2466666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:31:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --nodepool-name -c --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8c9311-ab53-4746-9242-e38cee754b55?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e9342145-f3d8-4d55-a1b5-de08f66bdbb9?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"11938c4f-53ab-4647-9242-e38cee754b55\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:17:18.5166666Z\"\n }" + string: "{\n \"name\": \"452134e9-d8f3-554d-a1b5-de08f66bdbb9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:31:04.2466666Z\"\n }" headers: cache-control: - no-cache @@ -165,7 +215,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:17:48 GMT + - Wed, 01 Dec 2021 14:32:04 GMT expires: - '-1' pragma: @@ -197,14 +247,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8c9311-ab53-4746-9242-e38cee754b55?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e9342145-f3d8-4d55-a1b5-de08f66bdbb9?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"11938c4f-53ab-4647-9242-e38cee754b55\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:17:18.5166666Z\"\n }" + string: "{\n \"name\": \"452134e9-d8f3-554d-a1b5-de08f66bdbb9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:31:04.2466666Z\"\n }" headers: cache-control: - no-cache @@ -213,7 +263,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:18:18 GMT + - Wed, 01 Dec 2021 14:32:34 GMT expires: - '-1' pragma: @@ -245,14 +295,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8c9311-ab53-4746-9242-e38cee754b55?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e9342145-f3d8-4d55-a1b5-de08f66bdbb9?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"11938c4f-53ab-4647-9242-e38cee754b55\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:17:18.5166666Z\"\n }" + string: "{\n \"name\": \"452134e9-d8f3-554d-a1b5-de08f66bdbb9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:31:04.2466666Z\"\n }" headers: cache-control: - no-cache @@ -261,7 +311,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:18:48 GMT + - Wed, 01 Dec 2021 14:33:04 GMT expires: - '-1' pragma: @@ -293,14 +343,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8c9311-ab53-4746-9242-e38cee754b55?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e9342145-f3d8-4d55-a1b5-de08f66bdbb9?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"11938c4f-53ab-4647-9242-e38cee754b55\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:17:18.5166666Z\"\n }" + string: "{\n \"name\": \"452134e9-d8f3-554d-a1b5-de08f66bdbb9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:31:04.2466666Z\"\n }" headers: cache-control: - no-cache @@ -309,7 +359,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:19:17 GMT + - Wed, 01 Dec 2021 14:33:35 GMT expires: - '-1' pragma: @@ -341,14 +391,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8c9311-ab53-4746-9242-e38cee754b55?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e9342145-f3d8-4d55-a1b5-de08f66bdbb9?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"11938c4f-53ab-4647-9242-e38cee754b55\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:17:18.5166666Z\"\n }" + string: "{\n \"name\": \"452134e9-d8f3-554d-a1b5-de08f66bdbb9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:31:04.2466666Z\"\n }" headers: cache-control: - no-cache @@ -357,7 +407,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:19:48 GMT + - Wed, 01 Dec 2021 14:34:05 GMT expires: - '-1' pragma: @@ -389,15 +439,15 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8c9311-ab53-4746-9242-e38cee754b55?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e9342145-f3d8-4d55-a1b5-de08f66bdbb9?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"11938c4f-53ab-4647-9242-e38cee754b55\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:17:18.5166666Z\",\n \"endTime\": - \"2021-10-19T07:20:04.1493449Z\"\n }" + string: "{\n \"name\": \"452134e9-d8f3-554d-a1b5-de08f66bdbb9\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:31:04.2466666Z\",\n \"endTime\": + \"2021-12-01T14:34:07.4901556Z\"\n }" headers: cache-control: - no-cache @@ -406,7 +456,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:18 GMT + - Wed, 01 Dec 2021 14:34:35 GMT expires: - '-1' pragma: @@ -438,57 +488,60 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest7akhb76ox-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest7akhb76ox-8ecadf-854ef225.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest7akhb76ox-8ecadf-854ef225.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitests5hc7dwcb-8ecadf\",\n \"fqdn\": + \"cliakstest-clitests5hc7dwcb-8ecadf-6afe72a5.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitests5hc7dwcb-8ecadf-6afe72a5.portal.hcp.eastus.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_eastus\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fa16a6bd-0f8a-43ad-baa2-db0abea028f5\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/3f9ae63b-4101-4630-93d2-49f0dfba8e68\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3438' + - '3890' content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:18 GMT + - Wed, 01 Dec 2021 14:34:35 GMT expires: - '-1' pragma: @@ -520,10 +573,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2021-10-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -531,22 +584,22 @@ interactions: \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n \"enableFIPS\": false\n - \ }\n }\n ]\n }" + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '968' + - '1001' content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:19 GMT + - Wed, 01 Dec 2021 14:34:37 GMT expires: - '-1' pragma: @@ -587,10 +640,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -603,11 +656,11 @@ interactions: \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"CBLMariner\",\n \"nodeImageVersion\": - \"AKSCBLMariner-V1-2021.10.02\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + \"AKSCBLMariner-V1-2021.11.06\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0df267a9-2620-4048-8233-1ab68dde35c0?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e2e87539-72d0-4264-814e-505cc4d8534a?api-version=2017-08-31 cache-control: - no-cache content-length: @@ -615,7 +668,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:23 GMT + - Wed, 01 Dec 2021 14:34:40 GMT expires: - '-1' pragma: @@ -645,14 +698,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0df267a9-2620-4048-8233-1ab68dde35c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e2e87539-72d0-4264-814e-505cc4d8534a?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a967f20d-2026-4840-8233-1ab68dde35c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:23.1266666Z\"\n }" + string: "{\n \"name\": \"3975e8e2-d072-6442-814e-505cc4d8534a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:34:40.3966666Z\"\n }" headers: cache-control: - no-cache @@ -661,7 +714,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:53 GMT + - Wed, 01 Dec 2021 14:35:10 GMT expires: - '-1' pragma: @@ -693,14 +746,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0df267a9-2620-4048-8233-1ab68dde35c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e2e87539-72d0-4264-814e-505cc4d8534a?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a967f20d-2026-4840-8233-1ab68dde35c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:23.1266666Z\"\n }" + string: "{\n \"name\": \"3975e8e2-d072-6442-814e-505cc4d8534a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:34:40.3966666Z\"\n }" headers: cache-control: - no-cache @@ -709,7 +762,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:21:22 GMT + - Wed, 01 Dec 2021 14:35:40 GMT expires: - '-1' pragma: @@ -741,14 +794,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0df267a9-2620-4048-8233-1ab68dde35c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e2e87539-72d0-4264-814e-505cc4d8534a?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a967f20d-2026-4840-8233-1ab68dde35c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:23.1266666Z\"\n }" + string: "{\n \"name\": \"3975e8e2-d072-6442-814e-505cc4d8534a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:34:40.3966666Z\"\n }" headers: cache-control: - no-cache @@ -757,7 +810,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:21:52 GMT + - Wed, 01 Dec 2021 14:36:10 GMT expires: - '-1' pragma: @@ -789,14 +842,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0df267a9-2620-4048-8233-1ab68dde35c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e2e87539-72d0-4264-814e-505cc4d8534a?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a967f20d-2026-4840-8233-1ab68dde35c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:23.1266666Z\"\n }" + string: "{\n \"name\": \"3975e8e2-d072-6442-814e-505cc4d8534a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:34:40.3966666Z\"\n }" headers: cache-control: - no-cache @@ -805,7 +858,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:22:23 GMT + - Wed, 01 Dec 2021 14:36:40 GMT expires: - '-1' pragma: @@ -837,14 +890,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0df267a9-2620-4048-8233-1ab68dde35c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e2e87539-72d0-4264-814e-505cc4d8534a?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a967f20d-2026-4840-8233-1ab68dde35c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:23.1266666Z\"\n }" + string: "{\n \"name\": \"3975e8e2-d072-6442-814e-505cc4d8534a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:34:40.3966666Z\"\n }" headers: cache-control: - no-cache @@ -853,7 +906,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:22:52 GMT + - Wed, 01 Dec 2021 14:37:11 GMT expires: - '-1' pragma: @@ -885,14 +938,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0df267a9-2620-4048-8233-1ab68dde35c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e2e87539-72d0-4264-814e-505cc4d8534a?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a967f20d-2026-4840-8233-1ab68dde35c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:23.1266666Z\"\n }" + string: "{\n \"name\": \"3975e8e2-d072-6442-814e-505cc4d8534a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:34:40.3966666Z\"\n }" headers: cache-control: - no-cache @@ -901,7 +954,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:23:22 GMT + - Wed, 01 Dec 2021 14:37:43 GMT expires: - '-1' pragma: @@ -933,14 +986,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0df267a9-2620-4048-8233-1ab68dde35c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e2e87539-72d0-4264-814e-505cc4d8534a?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a967f20d-2026-4840-8233-1ab68dde35c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:23.1266666Z\"\n }" + string: "{\n \"name\": \"3975e8e2-d072-6442-814e-505cc4d8534a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:34:40.3966666Z\"\n }" headers: cache-control: - no-cache @@ -949,7 +1002,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:23:53 GMT + - Wed, 01 Dec 2021 14:38:13 GMT expires: - '-1' pragma: @@ -981,15 +1034,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0df267a9-2620-4048-8233-1ab68dde35c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e2e87539-72d0-4264-814e-505cc4d8534a?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a967f20d-2026-4840-8233-1ab68dde35c0\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:20:23.1266666Z\",\n \"endTime\": - \"2021-10-19T07:23:53.6305526Z\"\n }" + string: "{\n \"name\": \"3975e8e2-d072-6442-814e-505cc4d8534a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:34:40.3966666Z\",\n \"endTime\": + \"2021-12-01T14:38:40.6755689Z\"\n }" headers: cache-control: - no-cache @@ -998,7 +1051,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:24:23 GMT + - Wed, 01 Dec 2021 14:38:43 GMT expires: - '-1' pragma: @@ -1030,10 +1083,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -1046,7 +1099,7 @@ interactions: \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"CBLMariner\",\n \"nodeImageVersion\": - \"AKSCBLMariner-V1-2021.10.02\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + \"AKSCBLMariner-V1-2021.11.06\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: @@ -1056,7 +1109,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:24:23 GMT + - Wed, 01 Dec 2021 14:38:44 GMT expires: - '-1' pragma: @@ -1090,8 +1143,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -1099,17 +1152,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a9d3b0f7-3071-4a38-9845-6a5209630bf4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c543243f-e991-4b70-a5db-80efb3a39fe4?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 07:24:31 GMT + - Wed, 01 Dec 2021 14:38:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/a9d3b0f7-3071-4a38-9845-6a5209630bf4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/c543243f-e991-4b70-a5db-80efb3a39fe4?api-version=2017-08-31 pragma: - no-cache server: @@ -1119,7 +1172,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14995' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_workload_runtime.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_workload_runtime.yaml old mode 100755 new mode 100644 index 880d76aa88d..b9d8736944c --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_workload_runtime.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_add_with_workload_runtime.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:00:34Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:11:52Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '313' + - '312' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:00:35 GMT + - Wed, 01 Dec 2021 14:11:52 GMT expires: - '-1' pragma: @@ -42,19 +42,19 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestirloboxxj-8ecadf", + body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest2s4fndbdk-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "c000003"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "c000003"}], "linuxProfile": + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -65,61 +65,63 @@ interactions: Connection: - keep-alive Content-Length: - - '1388' + - '1744' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestirloboxxj-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestirloboxxj-8ecadf-302e0dbe.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestirloboxxj-8ecadf-302e0dbe.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest2s4fndbdk-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest2s4fndbdk-8ecadf-c76d6c5c.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest2s4fndbdk-8ecadf-c76d6c5c.portal.hcp.eastus.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_eastus\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5a875081-9c54-47c2-b4dd-36816df01b9e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/f8bb52b1-de26-4737-8e71-be4387ce18a9?api-version=2017-08-31 cache-control: - no-cache content-length: - - '2775' + - '3229' content-type: - application/json date: - - Tue, 19 Oct 2021 07:00:39 GMT + - Wed, 01 Dec 2021 14:11:57 GMT expires: - '-1' pragma: @@ -131,7 +133,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' status: code: 201 message: Created @@ -149,23 +151,71 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/f8bb52b1-de26-4737-8e71-be4387ce18a9?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"b152bbf8-26de-3747-8e71-be4387ce18a9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:56.79Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:12:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --nodepool-name -c --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5a875081-9c54-47c2-b4dd-36816df01b9e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/f8bb52b1-de26-4737-8e71-be4387ce18a9?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8150875a-549c-c247-b4dd-36816df01b9e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:00:39.0733333Z\"\n }" + string: "{\n \"name\": \"b152bbf8-26de-3747-8e71-be4387ce18a9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:56.79Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:09 GMT + - Wed, 01 Dec 2021 14:12:56 GMT expires: - '-1' pragma: @@ -197,23 +247,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5a875081-9c54-47c2-b4dd-36816df01b9e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/f8bb52b1-de26-4737-8e71-be4387ce18a9?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8150875a-549c-c247-b4dd-36816df01b9e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:00:39.0733333Z\"\n }" + string: "{\n \"name\": \"b152bbf8-26de-3747-8e71-be4387ce18a9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:56.79Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:01:38 GMT + - Wed, 01 Dec 2021 14:13:27 GMT expires: - '-1' pragma: @@ -245,23 +295,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5a875081-9c54-47c2-b4dd-36816df01b9e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/f8bb52b1-de26-4737-8e71-be4387ce18a9?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8150875a-549c-c247-b4dd-36816df01b9e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:00:39.0733333Z\"\n }" + string: "{\n \"name\": \"b152bbf8-26de-3747-8e71-be4387ce18a9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:56.79Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:02:08 GMT + - Wed, 01 Dec 2021 14:13:57 GMT expires: - '-1' pragma: @@ -293,23 +343,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5a875081-9c54-47c2-b4dd-36816df01b9e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/f8bb52b1-de26-4737-8e71-be4387ce18a9?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8150875a-549c-c247-b4dd-36816df01b9e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:00:39.0733333Z\"\n }" + string: "{\n \"name\": \"b152bbf8-26de-3747-8e71-be4387ce18a9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:11:56.79Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:02:38 GMT + - Wed, 01 Dec 2021 14:14:28 GMT expires: - '-1' pragma: @@ -341,24 +391,24 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5a875081-9c54-47c2-b4dd-36816df01b9e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/f8bb52b1-de26-4737-8e71-be4387ce18a9?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8150875a-549c-c247-b4dd-36816df01b9e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:00:39.0733333Z\",\n \"endTime\": - \"2021-10-19T07:02:51.6200026Z\"\n }" + string: "{\n \"name\": \"b152bbf8-26de-3747-8e71-be4387ce18a9\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:11:56.79Z\",\n \"endTime\": + \"2021-12-01T14:14:30.0800221Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Tue, 19 Oct 2021 07:03:09 GMT + - Wed, 01 Dec 2021 14:14:57 GMT expires: - '-1' pragma: @@ -390,57 +440,60 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestirloboxxj-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestirloboxxj-8ecadf-302e0dbe.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestirloboxxj-8ecadf-302e0dbe.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest2s4fndbdk-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest2s4fndbdk-8ecadf-c76d6c5c.hcp.eastus.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest2s4fndbdk-8ecadf-c76d6c5c.portal.hcp.eastus.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_eastus\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/72614bd1-dc04-496b-9813-8f930b2205da\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/07ca0137-f584-40a4-817a-b421663765b3\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3438' + - '3890' content-type: - application/json date: - - Tue, 19 Oct 2021 07:03:09 GMT + - Wed, 01 Dec 2021 14:14:58 GMT expires: - '-1' pragma: @@ -472,10 +525,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --workload-runtime User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2021-10-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -483,22 +536,22 @@ interactions: \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n \"enableFIPS\": false\n - \ }\n }\n ]\n }" + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '968' + - '1001' content-type: - application/json date: - - Tue, 19 Oct 2021 07:03:10 GMT + - Wed, 01 Dec 2021 14:14:59 GMT expires: - '-1' pragma: @@ -538,10 +591,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --workload-runtime User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -553,11 +606,11 @@ interactions: \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ed1decc-d474-4f21-bc26-9ade49cc9670?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/137b756c-b908-40e3-864f-b8c5f2242648?api-version=2017-08-31 cache-control: - no-cache content-length: @@ -565,7 +618,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:03:12 GMT + - Wed, 01 Dec 2021 14:15:04 GMT expires: - '-1' pragma: @@ -577,7 +630,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1194' status: code: 201 message: Created @@ -595,14 +648,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --workload-runtime User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ed1decc-d474-4f21-bc26-9ade49cc9670?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/137b756c-b908-40e3-864f-b8c5f2242648?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"ccded17e-74d4-214f-bc26-9ade49cc9670\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:12.93Z\"\n }" + string: "{\n \"name\": \"6c757b13-08b9-e340-864f-b8c5f2242648\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:15:05.33Z\"\n }" headers: cache-control: - no-cache @@ -611,7 +664,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:03:42 GMT + - Wed, 01 Dec 2021 14:15:35 GMT expires: - '-1' pragma: @@ -643,14 +696,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --workload-runtime User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ed1decc-d474-4f21-bc26-9ade49cc9670?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/137b756c-b908-40e3-864f-b8c5f2242648?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"ccded17e-74d4-214f-bc26-9ade49cc9670\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:12.93Z\"\n }" + string: "{\n \"name\": \"6c757b13-08b9-e340-864f-b8c5f2242648\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:15:05.33Z\"\n }" headers: cache-control: - no-cache @@ -659,7 +712,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:04:13 GMT + - Wed, 01 Dec 2021 14:16:05 GMT expires: - '-1' pragma: @@ -691,14 +744,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --workload-runtime User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ed1decc-d474-4f21-bc26-9ade49cc9670?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/137b756c-b908-40e3-864f-b8c5f2242648?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"ccded17e-74d4-214f-bc26-9ade49cc9670\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:12.93Z\"\n }" + string: "{\n \"name\": \"6c757b13-08b9-e340-864f-b8c5f2242648\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:15:05.33Z\"\n }" headers: cache-control: - no-cache @@ -707,7 +760,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:04:43 GMT + - Wed, 01 Dec 2021 14:16:35 GMT expires: - '-1' pragma: @@ -739,14 +792,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --workload-runtime User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ed1decc-d474-4f21-bc26-9ade49cc9670?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/137b756c-b908-40e3-864f-b8c5f2242648?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"ccded17e-74d4-214f-bc26-9ade49cc9670\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:12.93Z\"\n }" + string: "{\n \"name\": \"6c757b13-08b9-e340-864f-b8c5f2242648\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:15:05.33Z\"\n }" headers: cache-control: - no-cache @@ -755,7 +808,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:05:12 GMT + - Wed, 01 Dec 2021 14:17:06 GMT expires: - '-1' pragma: @@ -787,14 +840,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --workload-runtime User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ed1decc-d474-4f21-bc26-9ade49cc9670?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/137b756c-b908-40e3-864f-b8c5f2242648?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"ccded17e-74d4-214f-bc26-9ade49cc9670\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:12.93Z\"\n }" + string: "{\n \"name\": \"6c757b13-08b9-e340-864f-b8c5f2242648\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:15:05.33Z\"\n }" headers: cache-control: - no-cache @@ -803,7 +856,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:05:43 GMT + - Wed, 01 Dec 2021 14:17:36 GMT expires: - '-1' pragma: @@ -835,14 +888,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --workload-runtime User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ed1decc-d474-4f21-bc26-9ade49cc9670?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/137b756c-b908-40e3-864f-b8c5f2242648?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"ccded17e-74d4-214f-bc26-9ade49cc9670\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:03:12.93Z\"\n }" + string: "{\n \"name\": \"6c757b13-08b9-e340-864f-b8c5f2242648\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:15:05.33Z\"\n }" headers: cache-control: - no-cache @@ -851,7 +904,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:13 GMT + - Wed, 01 Dec 2021 14:18:06 GMT expires: - '-1' pragma: @@ -883,15 +936,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --workload-runtime User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ed1decc-d474-4f21-bc26-9ade49cc9670?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/137b756c-b908-40e3-864f-b8c5f2242648?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"ccded17e-74d4-214f-bc26-9ade49cc9670\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:03:12.93Z\",\n \"endTime\": - \"2021-10-19T07:06:15.3315323Z\"\n }" + string: "{\n \"name\": \"6c757b13-08b9-e340-864f-b8c5f2242648\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:15:05.33Z\",\n \"endTime\": + \"2021-12-01T14:18:09.0691296Z\"\n }" headers: cache-control: - no-cache @@ -900,7 +953,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:43 GMT + - Wed, 01 Dec 2021 14:18:36 GMT expires: - '-1' pragma: @@ -932,10 +985,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --workload-runtime User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n @@ -947,7 +1000,7 @@ interactions: \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: @@ -957,7 +1010,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:43 GMT + - Wed, 01 Dec 2021 14:18:36 GMT expires: - '-1' pragma: @@ -991,8 +1044,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -1000,17 +1053,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/353e11da-0337-48eb-b9e8-d8fbac065c90?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/bbb002f7-5919-4d57-84a1-793b7c6cdde3?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 07:06:45 GMT + - Wed, 01 Dec 2021 14:18:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/353e11da-0337-48eb-b9e8-d8fbac065c90?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/bbb002f7-5919-4d57-84a1-793b7c6cdde3?api-version=2017-08-31 pragma: - no-cache server: @@ -1020,7 +1073,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14995' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_get_upgrades.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_get_upgrades.yaml old mode 100755 new mode 100644 index 85e9c390ebf..d6bf46ffe00 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_get_upgrades.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_get_upgrades.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:10:57Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:18:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:11:00 GMT + - Wed, 01 Dec 2021 14:18:40 GMT expires: - '-1' pragma: @@ -43,18 +43,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestx23ourlcs-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest3ita2s6uu-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "c000003"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "c000003"}], "linuxProfile": + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -65,38 +65,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1388' + - '1745' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestx23ourlcs-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestx23ourlcs-8ecadf-f3470f35.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestx23ourlcs-8ecadf-f3470f35.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest3ita2s6uu-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest3ita2s6uu-8ecadf-b23d8b8f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest3ita2s6uu-8ecadf-b23d8b8f.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -104,22 +105,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f8d7ac85-b5e6-4866-b567-23f7087dc7fd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40956df4-6da6-48f0-84cc-c30a3e46810a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2775' + - '3233' content-type: - application/json date: - - Tue, 19 Oct 2021 07:11:05 GMT + - Wed, 01 Dec 2021 14:18:45 GMT expires: - '-1' pragma: @@ -149,14 +151,62 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40956df4-6da6-48f0-84cc-c30a3e46810a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f46d9540-a66d-f048-84cc-c30a3e46810a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:18:45.1666666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --nodepool-name -c --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f8d7ac85-b5e6-4866-b567-23f7087dc7fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40956df4-6da6-48f0-84cc-c30a3e46810a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"85acd7f8-e6b5-6648-b567-23f7087dc7fd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:11:04.8733333Z\"\n }" + string: "{\n \"name\": \"f46d9540-a66d-f048-84cc-c30a3e46810a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:18:45.1666666Z\"\n }" headers: cache-control: - no-cache @@ -165,7 +215,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:11:35 GMT + - Wed, 01 Dec 2021 14:19:45 GMT expires: - '-1' pragma: @@ -197,14 +247,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f8d7ac85-b5e6-4866-b567-23f7087dc7fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40956df4-6da6-48f0-84cc-c30a3e46810a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"85acd7f8-e6b5-6648-b567-23f7087dc7fd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:11:04.8733333Z\"\n }" + string: "{\n \"name\": \"f46d9540-a66d-f048-84cc-c30a3e46810a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:18:45.1666666Z\"\n }" headers: cache-control: - no-cache @@ -213,7 +263,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:12:05 GMT + - Wed, 01 Dec 2021 14:20:15 GMT expires: - '-1' pragma: @@ -245,14 +295,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f8d7ac85-b5e6-4866-b567-23f7087dc7fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40956df4-6da6-48f0-84cc-c30a3e46810a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"85acd7f8-e6b5-6648-b567-23f7087dc7fd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:11:04.8733333Z\"\n }" + string: "{\n \"name\": \"f46d9540-a66d-f048-84cc-c30a3e46810a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:18:45.1666666Z\"\n }" headers: cache-control: - no-cache @@ -261,7 +311,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:12:34 GMT + - Wed, 01 Dec 2021 14:20:45 GMT expires: - '-1' pragma: @@ -293,14 +343,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f8d7ac85-b5e6-4866-b567-23f7087dc7fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40956df4-6da6-48f0-84cc-c30a3e46810a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"85acd7f8-e6b5-6648-b567-23f7087dc7fd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:11:04.8733333Z\"\n }" + string: "{\n \"name\": \"f46d9540-a66d-f048-84cc-c30a3e46810a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:18:45.1666666Z\"\n }" headers: cache-control: - no-cache @@ -309,7 +359,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:13:04 GMT + - Wed, 01 Dec 2021 14:21:15 GMT expires: - '-1' pragma: @@ -341,24 +391,24 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f8d7ac85-b5e6-4866-b567-23f7087dc7fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40956df4-6da6-48f0-84cc-c30a3e46810a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"85acd7f8-e6b5-6648-b567-23f7087dc7fd\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:11:04.8733333Z\",\n \"endTime\": - \"2021-10-19T07:13:05.86013Z\"\n }" + string: "{\n \"name\": \"f46d9540-a66d-f048-84cc-c30a3e46810a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:18:45.1666666Z\",\n \"endTime\": + \"2021-12-01T14:21:19.8950808Z\"\n }" headers: cache-control: - no-cache content-length: - - '168' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 07:13:35 GMT + - Wed, 01 Dec 2021 14:21:45 GMT expires: - '-1' pragma: @@ -390,57 +440,60 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestx23ourlcs-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestx23ourlcs-8ecadf-f3470f35.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestx23ourlcs-8ecadf-f3470f35.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest3ita2s6uu-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest3ita2s6uu-8ecadf-b23d8b8f.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest3ita2s6uu-8ecadf-b23d8b8f.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6bdad088-a7d9-42f4-8b2a-e931519b4411\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/27f1600f-478a-44d7-b6f6-b078ce908384\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3438' + - '3896' content-type: - application/json date: - - Tue, 19 Oct 2021 07:13:35 GMT + - Wed, 01 Dec 2021 14:21:46 GMT expires: - '-1' pragma: @@ -472,16 +525,16 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/upgradeProfiles/default?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/upgradeProfiles/default?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/upgradeProfiles/default\",\n \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools/upgradeProfiles\",\n \ \"properties\": {\n \"kubernetesVersion\": \"1.20.9\",\n \"osType\": - \"Linux\",\n \"latestNodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\"\n + \"Linux\",\n \"latestNodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\"\n \ }\n }" headers: cache-control: @@ -491,7 +544,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:13:35 GMT + - Wed, 01 Dec 2021 14:21:47 GMT expires: - '-1' pragma: @@ -525,8 +578,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -534,17 +587,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/289e96a9-641f-46d2-8a19-71cc3a123d14?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/adc2735b-cea4-4081-ba04-99f4610e95a2?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 07:13:37 GMT + - Wed, 01 Dec 2021 14:21:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/289e96a9-641f-46d2-8a19-71cc3a123d14?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/adc2735b-cea4-4081-ba04-99f4610e95a2?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_stop_and_start.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_stop_and_start.yaml index 61e192fd1e3..d76db62ff33 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_stop_and_start.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_stop_and_start.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.7.9 (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-10-21T15:29:59Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:11:59Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 21 Oct 2021 15:30:03 GMT + - Wed, 01 Dec 2021 14:11:59 GMT expires: - '-1' pragma: @@ -43,13 +43,14 @@ interactions: message: OK - request: body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestta77mrq42-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestm6cawfdrv-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": @@ -65,37 +66,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1726' + - '1754' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestta77mrq42-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestta77mrq42-8ecadf-d7be5f0e.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestta77mrq42-8ecadf-d7be5f0e.portal.hcp.centraluseuap.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestm6cawfdrv-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestm6cawfdrv-8ecadf-56f6a577.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestm6cawfdrv-8ecadf-56f6a577.portal.hcp.centraluseuap.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n @@ -104,22 +106,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/504bef9e-6e3c-451b-9e10-9db0b080a40e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/493b5f11-9afa-467a-8d36-134bac97d10c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3131' + - '3260' content-type: - application/json date: - - Thu, 21 Oct 2021 15:30:08 GMT + - Wed, 01 Dec 2021 14:12:02 GMT expires: - '-1' pragma: @@ -131,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -149,14 +152,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/504bef9e-6e3c-451b-9e10-9db0b080a40e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/493b5f11-9afa-467a-8d36-134bac97d10c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9eef4b50-3c6e-1b45-9e10-9db0b080a40e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-21T15:30:09.2733333Z\"\n }" + string: "{\n \"name\": \"115f3b49-fa9a-7a46-8d36-134bac97d10c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:02.9333333Z\"\n }" headers: cache-control: - no-cache @@ -165,7 +168,7 @@ interactions: content-type: - application/json date: - - Thu, 21 Oct 2021 15:30:38 GMT + - Wed, 01 Dec 2021 14:12:32 GMT expires: - '-1' pragma: @@ -197,14 +200,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/504bef9e-6e3c-451b-9e10-9db0b080a40e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/493b5f11-9afa-467a-8d36-134bac97d10c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9eef4b50-3c6e-1b45-9e10-9db0b080a40e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-21T15:30:09.2733333Z\"\n }" + string: "{\n \"name\": \"115f3b49-fa9a-7a46-8d36-134bac97d10c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:02.9333333Z\"\n }" headers: cache-control: - no-cache @@ -213,7 +216,7 @@ interactions: content-type: - application/json date: - - Thu, 21 Oct 2021 15:31:09 GMT + - Wed, 01 Dec 2021 14:13:03 GMT expires: - '-1' pragma: @@ -245,14 +248,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/504bef9e-6e3c-451b-9e10-9db0b080a40e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/493b5f11-9afa-467a-8d36-134bac97d10c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9eef4b50-3c6e-1b45-9e10-9db0b080a40e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-21T15:30:09.2733333Z\"\n }" + string: "{\n \"name\": \"115f3b49-fa9a-7a46-8d36-134bac97d10c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:02.9333333Z\"\n }" headers: cache-control: - no-cache @@ -261,7 +264,7 @@ interactions: content-type: - application/json date: - - Thu, 21 Oct 2021 15:31:39 GMT + - Wed, 01 Dec 2021 14:13:33 GMT expires: - '-1' pragma: @@ -293,14 +296,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/504bef9e-6e3c-451b-9e10-9db0b080a40e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/493b5f11-9afa-467a-8d36-134bac97d10c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9eef4b50-3c6e-1b45-9e10-9db0b080a40e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-21T15:30:09.2733333Z\"\n }" + string: "{\n \"name\": \"115f3b49-fa9a-7a46-8d36-134bac97d10c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:02.9333333Z\"\n }" headers: cache-control: - no-cache @@ -309,7 +312,7 @@ interactions: content-type: - application/json date: - - Thu, 21 Oct 2021 15:32:09 GMT + - Wed, 01 Dec 2021 14:14:02 GMT expires: - '-1' pragma: @@ -341,14 +344,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/504bef9e-6e3c-451b-9e10-9db0b080a40e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/493b5f11-9afa-467a-8d36-134bac97d10c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9eef4b50-3c6e-1b45-9e10-9db0b080a40e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-21T15:30:09.2733333Z\"\n }" + string: "{\n \"name\": \"115f3b49-fa9a-7a46-8d36-134bac97d10c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:12:02.9333333Z\"\n }" headers: cache-control: - no-cache @@ -357,7 +360,7 @@ interactions: content-type: - application/json date: - - Thu, 21 Oct 2021 15:32:39 GMT + - Wed, 01 Dec 2021 14:14:33 GMT expires: - '-1' pragma: @@ -389,15 +392,15 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/504bef9e-6e3c-451b-9e10-9db0b080a40e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/493b5f11-9afa-467a-8d36-134bac97d10c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9eef4b50-3c6e-1b45-9e10-9db0b080a40e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-21T15:30:09.2733333Z\",\n \"endTime\": - \"2021-10-21T15:33:02.8393042Z\"\n }" + string: "{\n \"name\": \"115f3b49-fa9a-7a46-8d36-134bac97d10c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:12:02.9333333Z\",\n \"endTime\": + \"2021-12-01T14:14:40.7079699Z\"\n }" headers: cache-control: - no-cache @@ -406,7 +409,7 @@ interactions: content-type: - application/json date: - - Thu, 21 Oct 2021 15:33:09 GMT + - Wed, 01 Dec 2021 14:15:03 GMT expires: - '-1' pragma: @@ -438,57 +441,60 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestta77mrq42-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestta77mrq42-8ecadf-d7be5f0e.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestta77mrq42-8ecadf-d7be5f0e.portal.hcp.centraluseuap.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestm6cawfdrv-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestm6cawfdrv-8ecadf-56f6a577.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestm6cawfdrv-8ecadf-56f6a577.portal.hcp.centraluseuap.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/bb5e2f8a-cbaa-4422-8f28-c00e91bf2857\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/638d1b32-3543-4eb0-a9fd-46bca6b891bb\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3806' + - '3935' content-type: - application/json date: - - Thu, 21 Oct 2021 15:33:09 GMT + - Wed, 01 Dec 2021 14:15:03 GMT expires: - '-1' pragma: @@ -520,10 +526,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2021-10-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n @@ -531,22 +537,22 @@ interactions: \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.13\",\n \"enableFIPS\": false\n - \ }\n }\n ]\n }" + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '974' + - '1007' content-type: - application/json date: - - Thu, 21 Oct 2021 15:33:12 GMT + - Wed, 01 Dec 2021 14:15:04 GMT expires: - '-1' pragma: @@ -586,10 +592,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -602,11 +608,11 @@ interactions: \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.13\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/ef74d9eb-b394-467a-8a27-e8e9c1850052?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e0a750a0-dc13-48e2-9675-26b463bbdf2c?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -614,7 +620,7 @@ interactions: content-type: - application/json date: - - Thu, 21 Oct 2021 15:33:14 GMT + - Wed, 01 Dec 2021 14:15:06 GMT expires: - '-1' pragma: @@ -626,7 +632,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -644,23 +650,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/ef74d9eb-b394-467a-8a27-e8e9c1850052?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e0a750a0-dc13-48e2-9675-26b463bbdf2c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ebd974ef-94b3-7a46-8a27-e8e9c1850052\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-21T15:33:14.46Z\"\n }" + string: "{\n \"name\": \"a050a7e0-13dc-e248-9675-26b463bbdf2c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:15:06.9Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Thu, 21 Oct 2021 15:33:44 GMT + - Wed, 01 Dec 2021 14:15:36 GMT expires: - '-1' pragma: @@ -692,23 +698,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/ef74d9eb-b394-467a-8a27-e8e9c1850052?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e0a750a0-dc13-48e2-9675-26b463bbdf2c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ebd974ef-94b3-7a46-8a27-e8e9c1850052\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-21T15:33:14.46Z\"\n }" + string: "{\n \"name\": \"a050a7e0-13dc-e248-9675-26b463bbdf2c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:15:06.9Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Thu, 21 Oct 2021 15:34:14 GMT + - Wed, 01 Dec 2021 14:16:07 GMT expires: - '-1' pragma: @@ -740,23 +746,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/ef74d9eb-b394-467a-8a27-e8e9c1850052?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e0a750a0-dc13-48e2-9675-26b463bbdf2c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ebd974ef-94b3-7a46-8a27-e8e9c1850052\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-21T15:33:14.46Z\"\n }" + string: "{\n \"name\": \"a050a7e0-13dc-e248-9675-26b463bbdf2c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:15:06.9Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Thu, 21 Oct 2021 15:34:44 GMT + - Wed, 01 Dec 2021 14:16:36 GMT expires: - '-1' pragma: @@ -788,23 +794,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/ef74d9eb-b394-467a-8a27-e8e9c1850052?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e0a750a0-dc13-48e2-9675-26b463bbdf2c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ebd974ef-94b3-7a46-8a27-e8e9c1850052\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-21T15:33:14.46Z\"\n }" + string: "{\n \"name\": \"a050a7e0-13dc-e248-9675-26b463bbdf2c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:15:06.9Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Thu, 21 Oct 2021 15:35:14 GMT + - Wed, 01 Dec 2021 14:17:06 GMT expires: - '-1' pragma: @@ -836,23 +842,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/ef74d9eb-b394-467a-8a27-e8e9c1850052?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e0a750a0-dc13-48e2-9675-26b463bbdf2c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ebd974ef-94b3-7a46-8a27-e8e9c1850052\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-21T15:33:14.46Z\"\n }" + string: "{\n \"name\": \"a050a7e0-13dc-e248-9675-26b463bbdf2c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:15:06.9Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '120' content-type: - application/json date: - - Thu, 21 Oct 2021 15:35:44 GMT + - Wed, 01 Dec 2021 14:17:37 GMT expires: - '-1' pragma: @@ -884,15 +890,63 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/ef74d9eb-b394-467a-8a27-e8e9c1850052?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e0a750a0-dc13-48e2-9675-26b463bbdf2c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ebd974ef-94b3-7a46-8a27-e8e9c1850052\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-21T15:33:14.46Z\",\n \"endTime\": - \"2021-10-21T15:36:14.168593Z\"\n }" + string: "{\n \"name\": \"a050a7e0-13dc-e248-9675-26b463bbdf2c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:15:06.9Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '120' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:18:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e0a750a0-dc13-48e2-9675-26b463bbdf2c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a050a7e0-13dc-e248-9675-26b463bbdf2c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:15:06.9Z\",\n \"endTime\": + \"2021-12-01T14:18:37.5451356Z\"\n }" headers: cache-control: - no-cache @@ -901,7 +955,7 @@ interactions: content-type: - application/json date: - - Thu, 21 Oct 2021 15:36:15 GMT + - Wed, 01 Dec 2021 14:18:37 GMT expires: - '-1' pragma: @@ -933,10 +987,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -949,7 +1003,7 @@ interactions: \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.13\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n }" headers: cache-control: @@ -959,7 +1013,7 @@ interactions: content-type: - application/json date: - - Thu, 21 Oct 2021 15:36:15 GMT + - Wed, 01 Dec 2021 14:18:37 GMT expires: - '-1' pragma: @@ -991,10 +1045,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2021-10-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1007,29 +1061,29 @@ interactions: \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.13\",\n \"enableFIPS\": false\n - \ }\n }\n ]\n }" + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1980' + - '2013' content-type: - application/json date: - - Thu, 21 Oct 2021 15:36:16 GMT + - Wed, 01 Dec 2021 14:18:38 GMT expires: - '-1' pragma: @@ -1061,10 +1115,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1077,7 +1131,7 @@ interactions: \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.13\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n }" headers: cache-control: @@ -1087,7 +1141,7 @@ interactions: content-type: - application/json date: - - Thu, 21 Oct 2021 15:36:16 GMT + - Wed, 01 Dec 2021 14:18:38 GMT expires: - '-1' pragma: @@ -1131,10 +1185,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1147,11 +1201,11 @@ interactions: \ \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/ca3194cd-a503-4639-9b7e-af516b73d058?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0fdd6bdd-9261-48c9-a316-83b02e5ecbe8?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1159,7 +1213,7 @@ interactions: content-type: - application/json date: - - Thu, 21 Oct 2021 15:36:18 GMT + - Wed, 01 Dec 2021 14:18:40 GMT expires: - '-1' pragma: @@ -1175,7 +1229,57 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1193' + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/PreviewStartStopAgentPool + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool stop + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --nodepool-name --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0fdd6bdd-9261-48c9-a316-83b02e5ecbe8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"dd6bdd0f-6192-c948-a316-83b02e5ecbe8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:18:40.5266666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1195,14 +1299,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/ca3194cd-a503-4639-9b7e-af516b73d058?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0fdd6bdd-9261-48c9-a316-83b02e5ecbe8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cd9431ca-03a5-3946-9b7e-af516b73d058\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-21T15:36:18.6766666Z\"\n }" + string: "{\n \"name\": \"dd6bdd0f-6192-c948-a316-83b02e5ecbe8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:18:40.5266666Z\"\n }" headers: cache-control: - no-cache @@ -1211,7 +1315,7 @@ interactions: content-type: - application/json date: - - Thu, 21 Oct 2021 15:36:48 GMT + - Wed, 01 Dec 2021 14:19:40 GMT expires: - '-1' pragma: @@ -1245,15 +1349,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/ca3194cd-a503-4639-9b7e-af516b73d058?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0fdd6bdd-9261-48c9-a316-83b02e5ecbe8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cd9431ca-03a5-3946-9b7e-af516b73d058\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-21T15:36:18.6766666Z\",\n \"endTime\": - \"2021-10-21T15:36:55.9872187Z\"\n }" + string: "{\n \"name\": \"dd6bdd0f-6192-c948-a316-83b02e5ecbe8\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:18:40.5266666Z\",\n \"endTime\": + \"2021-12-01T14:19:49.9593262Z\"\n }" headers: cache-control: - no-cache @@ -1262,7 +1366,7 @@ interactions: content-type: - application/json date: - - Thu, 21 Oct 2021 15:37:18 GMT + - Wed, 01 Dec 2021 14:20:10 GMT expires: - '-1' pragma: @@ -1296,10 +1400,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1312,7 +1416,7 @@ interactions: \ \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: @@ -1322,7 +1426,7 @@ interactions: content-type: - application/json date: - - Thu, 21 Oct 2021 15:37:18 GMT + - Wed, 01 Dec 2021 14:20:11 GMT expires: - '-1' pragma: @@ -1354,10 +1458,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2021-10-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1371,28 +1475,28 @@ interactions: \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.13\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.13\",\n \"enableFIPS\": false\n - \ }\n }\n ]\n }" + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2013' + - '2046' content-type: - application/json date: - - Thu, 21 Oct 2021 15:37:19 GMT + - Wed, 01 Dec 2021 14:20:12 GMT expires: - '-1' pragma: @@ -1424,10 +1528,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1440,7 +1544,7 @@ interactions: \ \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: @@ -1450,7 +1554,7 @@ interactions: content-type: - application/json date: - - Thu, 21 Oct 2021 15:37:20 GMT + - Wed, 01 Dec 2021 14:20:12 GMT expires: - '-1' pragma: @@ -1494,10 +1598,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1510,11 +1614,11 @@ interactions: \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0fcfb5ac-52ca-4655-8e48-d78c26907bf0?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/ca5b8793-d1f4-4786-888d-40fd51618650?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1522,7 +1626,7 @@ interactions: content-type: - application/json date: - - Thu, 21 Oct 2021 15:37:21 GMT + - Wed, 01 Dec 2021 14:20:14 GMT expires: - '-1' pragma: @@ -1538,207 +1642,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: null - headers: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/PreviewStartStopAgentPool - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool start - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --nodepool-name --aks-custom-headers - User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0fcfb5ac-52ca-4655-8e48-d78c26907bf0?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"acb5cf0f-ca52-5546-8e48-d78c26907bf0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-21T15:37:22.85Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Thu, 21 Oct 2021 15:37:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/PreviewStartStopAgentPool - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool start - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --nodepool-name --aks-custom-headers - User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0fcfb5ac-52ca-4655-8e48-d78c26907bf0?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"acb5cf0f-ca52-5546-8e48-d78c26907bf0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-21T15:37:22.85Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Thu, 21 Oct 2021 15:38:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/PreviewStartStopAgentPool - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool start - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --nodepool-name --aks-custom-headers - User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0fcfb5ac-52ca-4655-8e48-d78c26907bf0?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"acb5cf0f-ca52-5546-8e48-d78c26907bf0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-21T15:37:22.85Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Thu, 21 Oct 2021 15:38:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/PreviewStartStopAgentPool - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool start - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --nodepool-name --aks-custom-headers - User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0fcfb5ac-52ca-4655-8e48-d78c26907bf0?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"acb5cf0f-ca52-5546-8e48-d78c26907bf0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-21T15:37:22.85Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Thu, 21 Oct 2021 15:39:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff + - '1195' status: code: 200 message: OK @@ -1758,14 +1662,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0fcfb5ac-52ca-4655-8e48-d78c26907bf0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/ca5b8793-d1f4-4786-888d-40fd51618650?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"acb5cf0f-ca52-5546-8e48-d78c26907bf0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-21T15:37:22.85Z\"\n }" + string: "{\n \"name\": \"93875bca-f4d1-8647-888d-40fd51618650\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:14.47Z\"\n }" headers: cache-control: - no-cache @@ -1774,7 +1678,7 @@ interactions: content-type: - application/json date: - - Thu, 21 Oct 2021 15:39:53 GMT + - Wed, 01 Dec 2021 14:20:44 GMT expires: - '-1' pragma: @@ -1808,14 +1712,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0fcfb5ac-52ca-4655-8e48-d78c26907bf0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/ca5b8793-d1f4-4786-888d-40fd51618650?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"acb5cf0f-ca52-5546-8e48-d78c26907bf0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-21T15:37:22.85Z\"\n }" + string: "{\n \"name\": \"93875bca-f4d1-8647-888d-40fd51618650\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:14.47Z\"\n }" headers: cache-control: - no-cache @@ -1824,7 +1728,7 @@ interactions: content-type: - application/json date: - - Thu, 21 Oct 2021 15:40:23 GMT + - Wed, 01 Dec 2021 14:21:13 GMT expires: - '-1' pragma: @@ -1858,14 +1762,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0fcfb5ac-52ca-4655-8e48-d78c26907bf0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/ca5b8793-d1f4-4786-888d-40fd51618650?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"acb5cf0f-ca52-5546-8e48-d78c26907bf0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-21T15:37:22.85Z\"\n }" + string: "{\n \"name\": \"93875bca-f4d1-8647-888d-40fd51618650\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:14.47Z\"\n }" headers: cache-control: - no-cache @@ -1874,7 +1778,7 @@ interactions: content-type: - application/json date: - - Thu, 21 Oct 2021 15:40:53 GMT + - Wed, 01 Dec 2021 14:21:44 GMT expires: - '-1' pragma: @@ -1908,15 +1812,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0fcfb5ac-52ca-4655-8e48-d78c26907bf0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/ca5b8793-d1f4-4786-888d-40fd51618650?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"acb5cf0f-ca52-5546-8e48-d78c26907bf0\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-21T15:37:22.85Z\",\n \"endTime\": - \"2021-10-21T15:41:00.1503506Z\"\n }" + string: "{\n \"name\": \"93875bca-f4d1-8647-888d-40fd51618650\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:20:14.47Z\",\n \"endTime\": + \"2021-12-01T14:22:12.2878116Z\"\n }" headers: cache-control: - no-cache @@ -1925,7 +1829,7 @@ interactions: content-type: - application/json date: - - Thu, 21 Oct 2021 15:41:23 GMT + - Wed, 01 Dec 2021 14:22:14 GMT expires: - '-1' pragma: @@ -1959,10 +1863,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -1975,7 +1879,7 @@ interactions: \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\",\n + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: @@ -1985,7 +1889,7 @@ interactions: content-type: - application/json date: - - Thu, 21 Oct 2021 15:41:23 GMT + - Wed, 01 Dec 2021 14:22:14 GMT expires: - '-1' pragma: @@ -2019,8 +1923,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.27.2 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.7.9 - (Darwin-20.6.0-x86_64-i386-64bit) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -2028,17 +1932,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/74b18aa0-68d8-4666-ae80-69b406af8ff6?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/a4820bfa-9c17-4083-aae8-8c7165b432b6?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 21 Oct 2021 15:41:24 GMT + - Wed, 01 Dec 2021 14:22:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/74b18aa0-68d8-4666-ae80-69b406af8ff6?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/a4820bfa-9c17-4083-aae8-8c7165b432b6?api-version=2016-03-30 pragma: - no-cache server: @@ -2048,7 +1952,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_label_msi.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_label_msi.yaml index 9a26bffe800..2e6b2ac1475 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_label_msi.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_nodepool_update_label_msi.yaml @@ -1,58 +1,19 @@ interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.11 (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-08-17T05:13:57Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '313' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 17 Aug 2021 05:13:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": - [{"count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux", "type": "VirtualMachineScaleSets", + [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", + "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCdSf3GlgnRl9XJiQavZ1p3M3+DN3eFnnpk9B1UH3JQZW/5sePzrG3ucDRcIDPTBItawvuyHqv1RK4AhAyT9TI4aG8l5amgnCzktgNhqibqJhQCdxkoIJdxcUwCgV+McodZ5IgVjKj9E4XXG68XAYCwo8cUPbyq25BkhWBK4Qmn7DT1SnB4eZdmA9tIO46FbKXvV1p8U9CixwSSKTmnTfq+DMRBX016k9UFWewREFR6+vu9bosp4MDEWgx3beSJoUty+LpOfCSzA9i5z0R5/LF3dvF0fiKWfCu+oztDmT39Zvdh0GPqfJTnPylHlkSJMXP6MItFrOKWZukhhFjCIZDz - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}}}' + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -63,59 +24,62 @@ interactions: Connection: - keep-alive Content-Length: - - '1252' + - '1730' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.7\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1a36a607.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-1a36a607.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-98bda293.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-98bda293.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\",\n + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.7\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {},\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"enableFIPS\": false\n + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCdSf3GlgnRl9XJiQavZ1p3M3+DN3eFnnpk9B1UH3JQZW/5sePzrG3ucDRcIDPTBItawvuyHqv1RK4AhAyT9TI4aG8l5amgnCzktgNhqibqJhQCdxkoIJdxcUwCgV+McodZ5IgVjKj9E4XXG68XAYCwo8cUPbyq25BkhWBK4Qmn7DT1SnB4eZdmA9tIO46FbKXvV1p8U9CixwSSKTmnTfq+DMRBX016k9UFWewREFR6+vu9bosp4MDEWgx3beSJoUty+LpOfCSzA9i5z0R5/LF3dvF0fiKWfCu+oztDmT39Zvdh0GPqfJTnPylHlkSJMXP6MItFrOKWZukhhFjCIZDz - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n - \ },\n \"maxAgentPools\": 100\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c688756d-100b-4399-ac5f-826928bada72?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f533b7be-279e-45dd-937c-5e7cd16e19ca?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2599' + - '3182' content-type: - application/json date: - - Tue, 17 Aug 2021 05:14:05 GMT + - Wed, 01 Dec 2021 14:22:22 GMT expires: - '-1' pragma: @@ -127,7 +91,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -145,14 +109,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c688756d-100b-4399-ac5f-826928bada72?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f533b7be-279e-45dd-937c-5e7cd16e19ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6d7588c6-0b10-9943-ac5f-826928bada72\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-08-17T05:14:04.6366666Z\"\n }" + string: "{\n \"name\": \"beb733f5-9e27-dd45-937c-5e7cd16e19ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:22:22.6833333Z\"\n }" headers: cache-control: - no-cache @@ -161,7 +125,7 @@ interactions: content-type: - application/json date: - - Tue, 17 Aug 2021 05:14:34 GMT + - Wed, 01 Dec 2021 14:22:52 GMT expires: - '-1' pragma: @@ -193,14 +157,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c688756d-100b-4399-ac5f-826928bada72?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f533b7be-279e-45dd-937c-5e7cd16e19ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6d7588c6-0b10-9943-ac5f-826928bada72\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-08-17T05:14:04.6366666Z\"\n }" + string: "{\n \"name\": \"beb733f5-9e27-dd45-937c-5e7cd16e19ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:22:22.6833333Z\"\n }" headers: cache-control: - no-cache @@ -209,7 +173,7 @@ interactions: content-type: - application/json date: - - Tue, 17 Aug 2021 05:15:04 GMT + - Wed, 01 Dec 2021 14:23:23 GMT expires: - '-1' pragma: @@ -241,14 +205,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c688756d-100b-4399-ac5f-826928bada72?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f533b7be-279e-45dd-937c-5e7cd16e19ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6d7588c6-0b10-9943-ac5f-826928bada72\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-08-17T05:14:04.6366666Z\"\n }" + string: "{\n \"name\": \"beb733f5-9e27-dd45-937c-5e7cd16e19ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:22:22.6833333Z\"\n }" headers: cache-control: - no-cache @@ -257,7 +221,7 @@ interactions: content-type: - application/json date: - - Tue, 17 Aug 2021 05:15:34 GMT + - Wed, 01 Dec 2021 14:23:53 GMT expires: - '-1' pragma: @@ -289,14 +253,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c688756d-100b-4399-ac5f-826928bada72?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f533b7be-279e-45dd-937c-5e7cd16e19ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6d7588c6-0b10-9943-ac5f-826928bada72\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-08-17T05:14:04.6366666Z\"\n }" + string: "{\n \"name\": \"beb733f5-9e27-dd45-937c-5e7cd16e19ca\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:22:22.6833333Z\"\n }" headers: cache-control: - no-cache @@ -305,7 +269,7 @@ interactions: content-type: - application/json date: - - Tue, 17 Aug 2021 05:16:04 GMT + - Wed, 01 Dec 2021 14:24:22 GMT expires: - '-1' pragma: @@ -337,63 +301,15 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c688756d-100b-4399-ac5f-826928bada72?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f533b7be-279e-45dd-937c-5e7cd16e19ca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6d7588c6-0b10-9943-ac5f-826928bada72\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-08-17T05:14:04.6366666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 17 Aug 2021 05:16:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c688756d-100b-4399-ac5f-826928bada72?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"6d7588c6-0b10-9943-ac5f-826928bada72\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-08-17T05:14:04.6366666Z\",\n \"endTime\": - \"2021-08-17T05:16:37.4745994Z\"\n }" + string: "{\n \"name\": \"beb733f5-9e27-dd45-937c-5e7cd16e19ca\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:22:22.6833333Z\",\n \"endTime\": + \"2021-12-01T14:24:38.8678418Z\"\n }" headers: cache-control: - no-cache @@ -402,7 +318,7 @@ interactions: content-type: - application/json date: - - Tue, 17 Aug 2021 05:17:05 GMT + - Wed, 01 Dec 2021 14:24:53 GMT expires: - '-1' pragma: @@ -434,55 +350,59 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.7\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1a36a607.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-1a36a607.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-98bda293.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-98bda293.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.7\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {},\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"enableFIPS\": false\n + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCdSf3GlgnRl9XJiQavZ1p3M3+DN3eFnnpk9B1UH3JQZW/5sePzrG3ucDRcIDPTBItawvuyHqv1RK4AhAyT9TI4aG8l5amgnCzktgNhqibqJhQCdxkoIJdxcUwCgV+McodZ5IgVjKj9E4XXG68XAYCwo8cUPbyq25BkhWBK4Qmn7DT1SnB4eZdmA9tIO46FbKXvV1p8U9CixwSSKTmnTfq+DMRBX016k9UFWewREFR6+vu9bosp4MDEWgx3beSJoUty+LpOfCSzA9i5z0R5/LF3dvF0fiKWfCu+oztDmT39Zvdh0GPqfJTnPylHlkSJMXP6MItFrOKWZukhhFjCIZDz - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/55ff474a-8dcc-47fc-9ba1-2caee875bbcc\"\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/62e376c8-2d8f-406e-b48a-dc85b375dfa9\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3262' + - '3845' content-type: - application/json date: - - Tue, 17 Aug 2021 05:17:05 GMT + - Wed, 01 Dec 2021 14:24:54 GMT expires: - '-1' pragma: @@ -514,55 +434,59 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.7\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1a36a607.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-1a36a607.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-98bda293.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-98bda293.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.7\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {},\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"enableFIPS\": false\n + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCdSf3GlgnRl9XJiQavZ1p3M3+DN3eFnnpk9B1UH3JQZW/5sePzrG3ucDRcIDPTBItawvuyHqv1RK4AhAyT9TI4aG8l5amgnCzktgNhqibqJhQCdxkoIJdxcUwCgV+McodZ5IgVjKj9E4XXG68XAYCwo8cUPbyq25BkhWBK4Qmn7DT1SnB4eZdmA9tIO46FbKXvV1p8U9CixwSSKTmnTfq+DMRBX016k9UFWewREFR6+vu9bosp4MDEWgx3beSJoUty+LpOfCSzA9i5z0R5/LF3dvF0fiKWfCu+oztDmT39Zvdh0GPqfJTnPylHlkSJMXP6MItFrOKWZukhhFjCIZDz - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/55ff474a-8dcc-47fc-9ba1-2caee875bbcc\"\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/62e376c8-2d8f-406e-b48a-dc85b375dfa9\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3262' + - '3845' content-type: - application/json date: - - Tue, 17 Aug 2021 05:17:06 GMT + - Wed, 01 Dec 2021 14:24:54 GMT expires: - '-1' pragma: @@ -596,14 +520,14 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2021-10-01 response: body: string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVVsa1drOWtlbnBWTVdjMGVrY3ZPR1F2U1VwUk9VVjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BGZDA5RVJUTk5SRlYzVGtSRk5GZG9aMUJOYWtFeFRWUkJORTFVWTNkT1ZFVXdUVlJvWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuZEhWVEZWWVVSWlJVVlZaRWw1UWtKMFdtbFhSelJ2SzNWR1IwcDNkVkJuTlVsMFFrUXhhRzV4TlVWRmRtMU1kRFpZVTBONWJEZDZhWFZoTmtsT1JFa0tjaXNyUkVNek5XTlVWeXROVWtKdWJHWnllbFJ6TUdSMVFrbHZkMWc1UldnclIyZ3hTVWd2ZHpCVE9VbGpZWEJZTm1wWFFWRjNjblpFWldaS1F6QnVaUXB6WTJKQ1p6TjVZbEJLVTFOc1UwUXhibUZHUkdKdmEyWmllakI0Y0VaTVNISTVSVGxxUm5kMlRYRlJLelpETjNSc1ZIVXJjM2RYTkdWaVdFNU5jbkZxQ2pNdk4zcDZZWE5UWkVkc1drSTFNSEpxWTFsc1lWaDBUVmhOYmpsbmRtc3hkREp3YzNCSGVYVmlWVFZwU0VJd1NGQkNhVmxDY0ZSeGFHdDFXRTVhUW1jS2NGa3pjMGg1ZFVaMVRUQkNhR3RYTW1ZeloyaHlaRGxrWm0wMWRsRjZUbUpyWmpSYWRHZHZWeTlGY25KNlZtbHpTek42V1c4M05uYzRXSEJ0VDFKS2VBcG1XRXBuU0hKMWEybGFUVmhWWlRjcmJHNXJiMnR5VHpsNmMyY3ZkemxQZEdaWVpIQnlOUzkxUVZkelYyMVFSV2hrWmxNelozcGhUM3AzVUVOVFUydE5Da1ZLTDFOUFUwbGxiMkZRUjA5WmRXNU5ZU3MyYVZKVVdqWmhObEJ6SzBsNVVHZzVOelYwWkdGTWIwcEZTa0ZLV0dkRE5VcHhWVWwxWTFoMVNrTkplRWdLVGpkamJGSmFha3htTTNVMk1tODJWRWx0WjBaQldYQnVMM1UxWW1SRFFXeFRLMWxxUVdaUEsyYzJNVUpZVG14b1pUZGpiemcwVG5Rd1dWZ3Jkalp6U1FwR0x6QmpUMDFVUmpsQ1JYbGhVM052UkZkaWFrVXpNV0o0VWt0aWVsQTNXVGhvVkVJMGVWaHhPV0ZNY1U1a1VtZENlVkVyY0VGM2JXVkRUVmhEYVZoWENuUkZWMlp6THpaWk1WVndTMWMxY3pZelpsSkdjRFZXSzAxUlRFMW1OblJJWTJwM1pVaE5SVTUyT1ZwWmJGTjJkVEZIV0VKRlZsRTVNVE5OTVZkbFNXWUtiVmxVTmxWR2NHZE9hVXhhZUZkb1FVNHhjRnAwVHpkMlRFRTVLMGxJUkc1WmNrVkpWaTlJZDFjeFZVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1MzbDFjbm95VEhwRVpuQlRkazFRQ2k5VVlWYzNhMjh6WTBkMlJrMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlExRjVXRlpyZHpkUFlrNVRUVUo0U0RWclNDdFZhMUk1UW1JS1ZqTkhhRVZ1WTNWU1lteDROVFV3YzJsRWNHTklSVEZvVFRCM1pVMTBSazQwYzFneGRuSkZkemRpTUU1S1ozY3hRV1ZZT1RNeU5UbDROemROWWs1WVFncHJZMjlLWVZkelkwYzVWemR1ZDBsMU0xZEZWbEZoS3pGWWRtOXlNRFpPVDBrMWVDODFiREJuYWk5VVZUWXhZV0pOV21NNGQyNU1RVU5MUjJoTVNtTkxDbE52YVRnekt6Vk1TVkJvWTBOR2VrMXFiakUwVWxkQ2RUY3ZWV1ZpT0ZsdVJFWnBRVmx5UTJ0eVJqY3pTVzl1T1VoeFZFVk9Sa1ppZWxkNU5VUjRRWG9LUzFaVU9EUTFVRE5GU2xwS09IVk1URTVDWjJsRGFFOVVNR1JPVWtsNGFXOTRiMUJFYVRsS1RuTlhiR295TVVWMk5FbHFkMjV2U3pkcFFuUTNabWx4TkFwQlpWSkxRV2RuWTJoU0swWnZRbFJtUzA1eFYwTjNNWEpKTVZOSlRUZGpOa3cwUmswdlpISXlVM0Z2UVU5TU1UVTNLMEp3ZW1KbGR6TTJhazlvZUVaekNsaHVUVXM1UkZCb1YyeGlZMnA2VGtKVk56ZHBPVkJJVlRaTVkyeEJla2xaVEd4c2FIQlhVa0ZZWkRKdFVYbDNlVmRxTkRKdldtcFNTSE41TW10Q2RYUUtURWxNTUVoUFJtMWtZVnBIU1hWM05uSTFkbTlyTWsxalkyNHJSRGxNYVRCSFZtVm9VSEJIUmpCdFUzcHJVVk53ZUdSb2JXdGlUalJzZWpoVlJGSnFRd3AwVDNkUVZ5dElVelo2WTJSdE0zVlNURFZSWTNONlpEUjVTbWcxWW1sb2VVRkNabGwxUkhsMVRuWnBSMnN5WVV0Vk5YUjZZMjVKTDJKT1psbHZZWEJRQ2pabVoyOWhabFZOYVRsVU9EQTBjSEowTDNNeFdFeDJkVWd3ZW1Gdk5GQXZlVmhRUlVFeVR6UndjRk5vZVcxS09UZDZTR1IwVkhaWFJuaDZObFJ5TmtnS1dqZElTbUoxTkVWaE1FZ3lNa2haYWtsc1JUTTVZVUp3YlZwQmNsSnBLelUxZEdkQ2NtVmFUMmhPWlRWbGVIcDFLMjVGWXpJM2JqZEpWVzVDVFZKbGJnbzBTVTFGV1ZBeGJYZFZaWFV5T0d0eFQwRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zYzV0eWFvNi0xYTM2YTYwNy5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHJibzJpeQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHJibzJpeQogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdDV3NWhvdm1xbDNfY2xpYWtzdGVzdHJibzJpeQogIG5hbWU6IGNsaWFrc3Rlc3RyYm8yaXkKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0cmJvMml5CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdDV3NWhvdm1xbDNfY2xpYWtzdGVzdHJibzJpeQogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlZUWnFiVmhFZEc1UmRrSnhlVFJNTTJjMWVsVlVla0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFZSQk5FMVVZM2RPVkVFd1RWUm9ZVVozTUhsTmVrRTBUVlJqZDA1VVJUQk5WR2hoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTjBUU3RRUVhSMlprRkNUU3RaU3pCME5sYzRVa01LTDFsTlJGbGxWMFpqUTBkeFJVODNlRTUzZVZWR05tODVTblJSVm1KS1ZqTlFVMGhWYzFKbVYzTkZTSFlyZDBsWlJVNUhaazRyV1dGNVNYRnZlRTF5T1FwdVdVaGhUM3BNWlVrclFrOTJUWFZRTDNOeGRrdFVla3hIZEdSeFRWUmxRV05pZUZaV1UxZFZVblY1YVN0d2VuRmtNM1pxU1VnMFltRTJNRWQwYVhCUENteHZTaTlwT1d4S00zSk5PRmhGU21ka2RHaDNjM2hoTjNaakx6bEdWa3RpTW5WeFEybE1TSFJvVTFCNVFsUnhiams1UmxsNWQzVlZNbWM1UkhoUWFqTUtWVEFyYkN0Q0wzaFBTbU5tVG1Nd1JqVXpaRzk0YTJSMFR6SktkQ3MwZEZaM1EyNHpUV1pPY1RaRE9HdHZZMDFSU2xZemFIVnVlVlppVkVwQk1XOXRaUXAwVkd0RWRrSk1hMkZ4VmpsWGNtSjJSRXhoUzFWVE9FbEdhSGxVWjBKbE1YWnNTbXQwUjFGMWEyWTJhV1l3ZUc1aFFVZ3hXSEJMVFVocVlXRXJTVTByQ2xoNU9FVnFXWEY1VGs5QlMwVmhOVE0wYkhRdlFqQlpkazVqTjBaSFFtcHZlVXRUVlVoa2EzUnVUWEpNV0VWMGRtdFZhV0pYWmpKb1FqRTRSWGRQY2tVS04wbGhSeTk1V2xKTmFVcExPUzh6WlZCWWFEbGxMMFJUYm5OVU0yMHdka2hRZGpkdVIwWmpjamREUkZod2RESkhRVU5YY2xCS0wxRmtXRGhhVGpSWlFncHhjVVpNT0dwYWVteG5TR0ZGYkZVMVVsQXdVVGhMY0UxNWNHRlBOMnRhU25wWUwxRkVka1ZNU1ZGVVV6aHRlVEpEVEdKbGVpOTFUbVlyUTFSMFZWaHhDbHBuWVM5T01HWmxNVkptT0M5bGNYaExWbUZRTW1zMlZtczNkRWhYU1ZaU1EwbGpRVXA0V0ZwTmVXb3dRMEZSTDJKeVFscG9NMlEwWlV0S1pHdExMMVFLTDA5TFRETm1UaXRwVkdvelduUkVkbmg1YjFvd2Npc3pWVmhVUTJGTU0ydGtiVTFNTnpOQ01HUmlOVkozU1hGdGVEbHplR3BLUlVweVNtaHVXWEJ1TVFwRVdHczRWVUZ6V1ZOTlJqaHNSWFJKWldOT2FXNTNTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsTnpjbkU0T1drNGR6TUtObFZ5ZWtRdk1ESnNkVFZMVGpOQ2NuaFVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRlBWMDV0YWtabVJ6ZHJha2hsZWt0Wk4yNTNNd293YlZOclMzZHBXblJFTTBWRVFsVlVaVzk1TTNNMFRHcEZha2N5ZUZONVRpdHJWVWhpUVVwQlIxUlFZVk53T1VWRVRIZEpTa0ZOVFdOSldIcEVkMUVyQ21GMFNrNVRNblYxZFdsMVRqTlFkWEl6VkdOUWExaGhURkpXVFUxS2IweEdiRlJ5VnpCcGNVMW9TSEp0YUVaeGVqRllSM1F6ZG5kRGJ6RnNiVW80TXpNS1lqSnZVV2xKU0cxbVN6aE1PVVZsWlhkNFZsa3dVMGtyU0VreWFHRk5NMXAwWkVoelRVdHJWRlpRZFdSdFVYTTRUbUp3UjBjMmVqVTFZbEZ2VGs1Q2VncFNlV1J3WmtSbWRIQktSRUZNVFc5VmVVNXpkbkphVVZoaGEzUm9VMHROTURGWVJYSnJNMjV1TVhSU1YyZHNPRWN4TmtaelJsTTVWVWhHYkhodlR6bDRDbGhxYmxwU1F6WndVRFYzVUdsVVYxZHFhVFZHUXpsNFJ6ZE5WR2xPY1hWcGMxcHJSMVozVUZWaWVVRndkWEIzUTNOaVlrMUJaMjVUTUM5TGRrTk1ZVlVLTTNGRGIyRllkVUpHYUROTU4wc3lWR2xMTDBwRWRtZERkVU0wTkRkTVMxZFNZbVZHUlhrek9FeHdVRmR2YlZOdldEVkxPVGx1UjBzNVpucEZRaXRSWXdveWVWZDZaa1pZWjBKWFpHRndNMk0wVmxoaU1rVkpjVEF6WVVKMmRuQlhja3h1V1VwdGIyVjFhRnAwU0VSNGNGRmhUemhCVG1WNGNFaEtVM0ZHYzA5YUNrMHZUMUJOVFZNM2RIRk1WMUpITTNCaGIyUXpRbE4zWW1rM1p6bGpjbk5hUVVGclp6ZEROV2M1WWpRMk9HVXhkVlZHZGxSV1ZqWmpaM2hPVEhvM05sY0tVMmxaYVVaTVluWXJkVGxsZFUxc2RYVk5Ta3R0TUZVNFZVUnpTME0zYUdGWVR6Uk1OMEpvVVdKdmQyWldRVzFYU2xoMVRXNVZUemxDVm5SWFozRkJOd3BVY2xKQ2FsaFdlRWhoYjJwT1VtMURWVm93VVdaNFUxaDJZazlLUjBKbWFVMVlWVmM1UTNWa1FVMUtRekpoUTJzeFVEWkNURFJYYVd3MVIyeDBiMGhaQ2t4dWVtTXplU3R1UjJWaE0wSlBNMjlEVW1SSk5qZDNQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJjbFJRYW5kTVlqTjNRVlJRYlVOMFRHVnNka1ZSZGpKRVFUSkliR2hZUVdoeGFFUjFPRlJqVFd4Q1pYRlFVMkpWQ2taWGVWWmtlakJvTVV4RldERnlRa0kzTDNORFIwSkVVbTU2Wm0xSGMybExjVTFVU3k5YU1rSXlhbk41TTJsUVoxUnlla3hxTHpkTGNubHJPSGw0Y2xnS1lXcEZNMmRJUnpoV1ZsVnNiRVZpYzI5MmNXTTJibVEzTkhsQ0swY3lkWFJDY2xseFZIQmhRMlkwZGxwVFpEWjZVRVo0UTFsSVlsbGpURTFYZFRjelVBb3ZVbFpUYlRseWNXZHZhWGczV1ZWcU9HZFZObkF2WmxKWFRYTk1iRTV2VUZFNFZEUTVNVTVRY0dablpqaFVhVmhJZWxoT1FtVmtNMkZOV2toaVZIUnBDbUptZFV4V1kwRndPWHBJZW1GMVozWktTMGhFUlVOV1pEUmljRGhzVnpCNVVVNWhTbTV5VlRWQk4zZFROVWR4YkdaV2NUSTNkM2t5YVd4RmRrTkNXV01LYXpSQldIUmlOVk5hVEZKclRIQklLMjl1T1UxYU1tZENPVlkyVTJwQ05ESnRkbWxFVUd3NGRrSkpNa3R6YWxSblEyaEhkV1FyU21KbWQyUkhUSHBZVHdwNFVtZFpOazFwYTJ4Q00xcE1XbnBMZVRGNFRHSTFSa2x0TVc0NWIxRmtaa0pOUkhGNFQzbEhhSFk0YlZWVVNXbFRkbVk1TTJveE5HWllkbmN3Y0RkRkNqazFkRXg0ZWpjck5YaG9XRXNyZDJjeE5tSmthR2RCYkhGNmVXWXdTRll2UjFSbFIwRmhjV2hUTDBreVl6VlpRakpvU2xaUFZWUTVSVkJEY1ZSTmNWY0thblUxUjFOak1TOHdRVGQ0UTNsRlJUQjJTbk4wWjJreU0zTXZOMnBZTDJkck4xWkdObTFaUjNaNlpFZ3pkRlZZTDFBemNYTlRiRmRxT1hCUGJGcFBOd3BTTVdsR1ZWRnBTRUZEWTFZeVZFMXZPVUZuUlZBeU5uZFhXV1F6WlVocGFWaGFRM1l3TDNwcGFUa3plbVp2YXpRNU1tSlJOemhqY1Vka1N5OTBNVVl3Q25kdGFUazFTRnBxUXlzNWQyUklWeXRWWTBOTGNITm1ZazFaZVZKRFlYbFpXakpMV2psUk1UVlFSa0ZNUjBWcVFtWktVa3hUU0c1RVdYQTRRMEYzUlVFS1FWRkxRMEZuUVdWSmRHZDFPRTlpT0c1NGJYSjRWMU14Ym00dmQyeEJSMWQwYUV4clpUbFZkbkpTUTFkSlpHcHlZalEyYzFsNlVXeHZhVmxFWjBSNVFncHpSM0ZSWWxWNVluWTVXRzFqUVRZMVNVWllSMDVVZVVSRWRrdDFNMEptTmpZMkx6TklUa1J5WjJ0bU9DOTJNSFpMZDB0eU5rUnBkeTl0TVVWNVVWWlhDalUyUkVwUmRXNXliR0ZXTVRKdFNsRTJOV1JzYkM4clkwZHNaMVZKYmxsRlZWVllNbG95ZUZOU1ZUZzNWRFZLY2xWWk0xVkVjblpCYzJ4UlZWVkRkbUlLYlVsTk1EWTJVMDFsVFVwNU9WWnBWV3haWlc1V05sZDFVMlpvZW5WRFp6QnVXVFphVUhod01GVk1NR2x0VG5GaEwxWjZlVTFhU0RONGRuWkJZVTVaYXdwaU5tMUdORmMxUzJSdFlteFRWWE5xWlc1dmR6SmlXVlIxUVVKeUx5dFplWE41WlhGWVN5ODRkSEZ5TjNaMkswZzBORnBIV25WeFJEZzFZWE5vWW1ZMkNsVTNWRmR6V1hCWWNHTlRZV1pYZEZJd1UyMDBabGt4VFhVME4wTkpkMVJ2TUhkRk56VnpjbkUzZHpsbldYazVlVVowU0dOM1NXWjVVbVZCTmtSVFdWZ0tUVU5PVjFwMlVXUldaRVZvUVZKTWNGWmlObEI1WkVOcFZsbG5TVFZpUnpCWGVrRkNXRm9yU0hJd055ODBRMVZWUkhkV1lUTnlTV1JrZFRsWGFVVXZOd3B4ZUZaV1RIbElZalZ4YjNFMlZWa3pSeXRYUjJndmIzTm1LekJLU2swck1uaFRSMnRhUVM4dk9GQXZhRXNyT1hscGN6QjBSVXg1WWtveGNVRmxVbkJhQ25rd01XVnRLekEzV0hwUFpGTTRaRFZqUXpOUlFrOUZURXAwTVM5SGIwcDVXbUYzVmtSaVpWcG9SRWhoY1VKWGIybDVMemRGS3psdlVqVTVLM3BDU0ZjS1ZtNWlRbk5zVjJWNmFqTTRSMU5CTTFGWWIybFRTVTVPUVRJMk1Ha3haMWhCVEhKRGQzZEJSVE5qVWtka01Yb3phMjR5UTJZMWVqRkpSblZtTldGc013cDFiMHBzYURKdmFsaE5VME55ZW14a0t5OUdhWGMwYlROVU1EQnBNVTF2U2psT2JIZFVTbVpDUkZoTFIyeHZkMWMwVVV0RFFWRkZRWGhMWmxNNWIxaENDbEJUZG1neGNURjBjbGcxVVRNMmFtdGhSbUZTU3poUmRGZFdUV05zWkVGMmEwbFVTVWhRWkZKb09ERTRVSEZoVFhCdWNIcE5kMjlyY21SRE1FSjRSMEVLY1RaVk5YUm9hbEJGTVcwM1VUZ3lZV2N6UTB4cE1FUkxRVVJGZDJReFJEQmxWblpQWXpKMlFWbHRaSGcyY1ZFeFZtdDZRakZxVmxneFJsUjFRVE5FVGdwV1YwSkhZaXRMVkhOSlp5dFdTamRFWVVSRlVYcDNkMXBrYURFdlpIbFdNVlYyUTFZeWRURlNZVFExV0ZOcFdIaDBhM296TXlzM05tbE5ZVWd3UVhKRkNsRlNOMkpLYkZWSlF6TjNZMnA1ZHpOR1RsVXJVMVJEVWtSWmJXaE9UWHB5VVNzNVRucGllak16WnpsaFprcFpkbmRCVlhoMEsxQnhjbWxxWVZGU1JGa0tSV1pZUTJKaE1WcExhMlV3ZEhaQ1RUaHZjSEZ5TWtWS1JYSndTV2REVW1NMmMwVk9hMDV1YkVONlVXUllTVEJyZDNSTFRVRlFURzR2UzNWc1oxRXpWZ3B0YUdveFdHNUtiekJoVEcxNmQwdERRVkZGUVRSWWFFVnFMMGswVTNCblZDdDRjVTlTVFUxNUx6TTRNemMwVEVsQmEyRjFSVmx3V2tweE0yRXdVMkZEQ2t4eWJ6VnRaazAwYlVoVmJYQlFPVlJpYTBwa1YxYzVZVU5FWTBWTE1VbE1kbEE0V1RkV2EzaExiMWxCY2xFek5GQmhWRTk0TDNoQmVuZGFXVnBTVERFS2RqQTNUakJ5VGtsTk9GaHNUMEZNUTAxcVVGWTVTWEVyVDJGbmFsZG5OelpCWmxORlptYzRMMUV4YlRjeWNubDRSek40WjFGck5tMXNZM05xV0hCb1JBcEJhMmhRZFdaSVZqaDNSVmhHTUhoRE0xaHNNMVpETkVseFRVdGFWeXRhTkdoMU9XZENVMFJ2VmtoMk1sTktjR1pxTVdweGFtdHpPVEpTWmpKUVZFRlFDbFkzZW1wblNGVnhUWFZEY0V4T04yWkVVRkp3WmpCelpWaGhXRFpxUWl0eU1VWjZSR2w2Y1U4NU9VbFhWeTlpVlhOdmMyWkNiMFpLWjJoQlZUVmxXRllLVmtWUVJqaFBjRzVDV2pkNFRFUmlPSE51ZUdWM05FdEdZakJEY3pKVlUwWk9VemRvVGtWVE4wMVJTME5CVVVGVmIzSjFjbUpNZFhKVVNtbEdTekoxZGdvMFpYQm5ibVIwYURZemRVOVRVMkYwUldWRFZrRXJVMG95VEZWaEwxRlVUVXRGTjJGVlExaEJURzFqTms5ME1VRmpMemhCU1hWRlMyOWxjbVJhWkhOTkNqTTRVMko0T0RWdU4yNDFiVWhYVmxaQlpGSm9TVTVwVjJnMFEzaGpaVkZrVERGbGRqRkpNVmxSWms5NFNUWllWWFpTYWtGMVlYbERVV1pyUTAxd1pHMEtNV1JWWTJ0b1FsWk9XbXBoT0ZJd1Z6Tk9LMDFTUW5vNGJVRjRVbXBqWlZkaWNtaFJTMjh3YW05Uk16bHlTbXRVYTNsdFlrNW9XVVE0TVZoNGRuTm9OZ3BXUVhFelNqRXJZMU4zWjJaTEx6VTRiV2t5Vmxkak9YbE5TVVpOYW05RVFVSTBTbkZSYlZFclZsRXdlbWszU1V4c2JsQlphMmRxY1ZWWmVWZGlOMDVGQ210WlQzZEZjVlYzWVdvdmNIRldaMGhhUVRkS2FUUmtTV2gyZFVOalMzSjBUWGR1Um5SWVdHWkVOMHh5VVhCSUwxaEpLMmRpUkVFeU0wWnRZa1ZKZUZvS1QzbDJXRUZ2U1VKQlVVTnJkbTl1Y1ZjclVVSnlVMnM0VjNWVlJraFdVRkZIUW1FME4wOW9WSE5YTVZNMU4waEpZakZRY0dGeFprbHRUVEp3ZWxkMldBcERhRXRaYTA4NVdFdDVjVzFTU2xOWFYwRjVNVEJ3WXpsSE0wRk9WRkpTT1hFM1oyMTFiMUpsUm0xUU5VRkViMmxwZEVwbU1rRkRNRXhzU2pVeVFVZDZDbmR4T1M5M05WRTVkR3cxYnpscksxVk9WMVJRVlhjMFpVTTFiMkoxWlhoU2RTdHNiRXBIWVUxWVRUZEJOVVpOV1U1SWRUbHFTMlUxY2xScFJEa3dOa3NLTlc5elIzWlFVa2RsTlVKVVl5dGthakV2ZWxOb05EUmtiV2cyWnpSTVEyaDFiMjU2T1hOb1NVbzBTVXhSY2sxSlVURm1jVEJaYTBWYVRVbGxhRWd5TWdvcmVYcG9NbXc1UlZObWIycDRja2RFV0RsdE5FNVNVVXRqVmxZMFJDdDFVemRJUkd3NVZ6ZHZibTV4YlN0RFZFdzBhRUpFUVhwS2FrSmljRWRHUWk4ckNtNVhieTlGYkdGR00wSlpjRFpPTm5sellVVmhhRGxUUmxSaFNFUXpWWGxvUVc5SlFrRklWRmh3ZDBOMVdYcHVjWFJOZGpoYWVWaEdhbkptUjBSRlpUY0tUVFJrU1VWMGFtbHJlazVJWml0aVQyNUhNRXBXUjBGQldrRXJkMmMyVkZkWmRFOUhSbVUxY2taRVdHbHBZVUY1WlZCRldWTjRUblpQYlhoUldHUTVSZ3BLVGs5SE1rdzNlWEk0U0hsa2FUSnRiVmROUlZnMFpGSlRRMmxwWW1GdFJXTTVVMWREY1VoNGR5OXlWM0JrTkdNNFdscE5SRVZsWjB3eFkwTklXbmdyQ2tjdlpUTk9Lek5YUm14blRUbFBaVFJuYjFoR1ZVNDRTSFkxUVhCRFRtTlpWMmxKV1dKVWEySkNPVEIwWVhKNGFFNXRVRE5VY0ZRMFFVeExMMHRvZFU0S1pqSk9ja0kzYUdOeVYwWTVVM1pWTTBGV1YwMUtUMjE2TTBGRlJqbEthVFZ3WlV0Q09VOHJRbU5WYTNOaFoxZG9USEJVZWxrM01uUkRiRlpGTlRCS1NRb3pVblppSzBkSlVrMUJVbEp0Vlc1VmRVWXZWbU5pTVVadGQxTnZMMVkwTlVkbmJFbGljRTFaY0dOVWEzbDNlVVZxSzBsUVprcE1VbWhTUlQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBkODcwNDY0MjVkYjc5MDM4ZGUzNzZmOGUxOTMyNzBlNDZlNTA1NzhiOTFhODNiM2MzOTk2MDIyMjRiNzRkOWY3YWY0ODU5Mzk1MThjYWZiZDE4NDJmZWFjZGJlMzgxNWZjZDk4Njg1M2E1MzFhYWUyNjMxYzBiMzVkMDBiYjZjOAo=\"\n + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVV4ME5XVmtLMGx4YTNSNWRHdHRlVWcxVDNVclYyTjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BGZUUxcVFYaE5WRkY0VFdwUk1GZG9aMUJOYWtFeFRWUkZlVTFFUlhoT1JFbDVUa1JTWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuY3lhRGxZVW5oemNDczBObEpHY0hkdlZtbzBTbEprYldOak9HOURPRTFEV1M5NEt5OWhha016YkVoRGIxSkVMM014V21scGQyZE9iRUpRTjJadlYyY0tiekpIVXk5cVVFSXliamhqZWxSemFGUlhlak1yZFdoU01WRnZWRFVyWW5OckwzaHdVMjVrWTJRM1MyWm5VRzA1VkU1cVpYQmxSek5JYWxsR1drMDNhQW80TW5wNWFqTm1RM0JWTldoVWRuZ3hlRWxvV0ZOMFkzTmlVVTl4YjFoVmVWTTNkbFZ2V2pkRlkzVk9iakp1TWtsTFptUTVRa0ZUV1V0Q00wcHlhMHBJQ2tsYU9USklZV053VEcxTk5FNVBPWFZOUkdwdGJIRTJXRGsxZVhWTFlpdDZUbGRNWjBveVVVaFJOV2MzUldSVFkxUjZUVkZESzFsU05IQnRNM2s1YjFZS1ZVaFRjMUZRVjNSc1FXOWhZbUY1Tm5GUGVWcDNja0pOZVROU09WVlZkVE5DVW5CTE9GTktRWFU0UVdoTlJESkVjbkZOVDJFMFRtSnFOMnh2T1M4NVFncE5aSE0xVnpacU5sbGFSV05CYzFGaVpYQkhZV3hOTjJsTFRUVk9PVmhLYTFadmIzRXlURlZxTW5WeE1VeE1WV3gzSzNCWmNTdG1lalZKVVdOcVFsbHJDbTU2WlhoRlptcHlja1ZsVkUxM1NVeHJTVFJPTVcxT04zQkpSRlV6VEd0dFFsRnlRMHR3WVM5alpFRlViV2xVWVdFNWVYTnhkazF2TWpsbmQxTm9ibk1LZDNGTWJYTXdOakJCZEZKR1JVWjBha05yTlc5aVQxSXdZVXRKUjJGM2MydGpiMDFOYVVVMGQyOHpRV1V3WjJaM2JtUmtlWFZpTTJOdk1WaGpiRlIzYVFwUVNVMTFXR053WmtNNE1rUjBTWEJ1UldKeVp6QnRaRGRXVG1NeUwwOVZVa3hKUmt4Q0sydGxjVGh1VWpGWFYwTjBNRmxQU0d4UGVVazRhakpKUVVoYUNtRkZPVUZVZVRjNFZHZGljRlZpY1ROeFJVdDRZVTEyWVZsU2RUbFRTQ3RxY0Zod1VEUXdTWFJ2WjNsRWRrdE1jakZzYjJoVlJubDFVRkJuTVZKUmEySUtVSGd5Y1RoeE5EWjVZMk5TVWxGd1RUQk1XSGRFYldNMmJUVTJTSGhxVjBSdlRHMU9Rbk5QVjB0VlZVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1JEQlZSbVJsYVdwTmNWUTRPRGQ2Q2xseWIzbHhjelJXVVUxQmJVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlEzQnllVmQzUkRWUk4zVkNaVmRCWXpnelYyTjFSM2d5ZFVFS2VuTlZkMDVFYlhKVWVrVlhaSG8yZEVkUE1uWldWVWsxWmtsUE4wUkxaRmw1SzJReU9VWlJWV1YxUmk5bFV6Z3hSM2h3YVdGMk5UWmtXbkpOY1dGU053cEdjbVl2ZUZoaGNVUXJZalIxUkhacE5IWnlVM2gzWlhKeWFXRmhkVmhOUzFaeVdFcE5jMGx1U0ZOTk5TOXliR2hYV1VWaVFrc3lOemd2VEcxcEt6TldDa1pyWkVaQlZVWkNiV3hIWnk5Q1RsbDBkbFZ5TWswckt6QlhWamg1T0c0d0wwTkJOR1pvUldRMFpHd3JMeXRRUm5ob1ZWbHhTRk5LVlVOSGIycGtURmdLU3pCclRuUnZPVGd4TDB0WlZ6Y3JUVTAxYlZnNGRWWmxUWEIxT0dZeVNFUXhVVzE1YUhWRGJIRmFiRlJoV2xWSGVIUlVjRnB6WWpOSVQzcHNTMmN3WVFwelUxVnZNV2xhY0dwVlRGQmtWbEJpTldKU1ZrMDBiVmxFWmxCVVRrb3dMM3BvT1hJd09HOHJhbFJFUlhKQ2J6RmlORUU0VlRNelNFTldlVFpKY0M5c0NtbzRXbUZIWmxsMVZVaDJSaXRZYW5GUVVFMXhOamx5VG5CS01GUlNibTVJTTA0eVUzcFdaa2xYVTJWb1JsUnliMFZIV0c5emRVRTBRVWd3YjFwR1VIZ0tUemRHWWpkSFFuWklPV0pvYzNkUVVHSnJRVkJTU1RWclpYUlRMMmxaZHpSM1RVaGplR0ZyUTBsSlNHbHZSelpPVEdkeVJUUnFNblZHVGtabGMxZDFXZ3A2V2xsd1kzVjRka0kwZUZGT1N6VXdNMmt5TTA5akwxTkljVGszZW5KM2VUbHdORzFOWkRKdVExWlVNRWRIYmpaMmQwa3paR1U1YVNzNFJYTTJlRzB4Q2tkbGNHdFZPR1pDWkhKT04wRnJOVUpCWVU5TlVVSXlVRkZTWXpkNmNWWnBTVXgyTVVWblQxcDJSVUZLT0U5U1ZtWlpUMkZESzFWd2MyVnZWRW8yUTFNS1VWbzJkUzkyYlRWcFF6ZE5NREFyTTJweVRuaFdkM0pDVEZSbU0yeG9iMjFOU0d0U2RrUlJkQ3M0T0hGdlJqWkxNbEVyZVRnM01XaHVNVnBCYzBKaFRBcE1aMGd6TUhoS1RUWXlTSGg1Um5SWFYwRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zeXJqNnZ1Yi05OGJkYTI5My5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHhuaXZsdgpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHhuaXZsdgogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGpqdWx6amRmMzRfY2xpYWtzdGVzdHhuaXZsdgogIG5hbWU6IGNsaWFrc3Rlc3R4bml2bHYKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0eG5pdmx2CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGpqdWx6amRmMzRfY2xpYWtzdGVzdHhuaXZsdgogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlNrdHZjVmxFZVhWTFpuQTRTVlpDUTFGVlZFeFRSRUZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFZSRmVVMUVSWGhPUkVWNVRrUlNZVVozTUhsTmVrVjVUVVJGZUU1RVNYbE9SRkpoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTTJMMHhLV1VwR1NsTXpXWGhMTTJNd1NIQlBObm9LZFVOdFFXTTFaM0ZEUkdvMGR5OXVkWGRKWkZoYWJ5OTNSalF5ZVZwSlZ6ZEVTVE56WlhSaWFtMVNSMDVIYVRFdmVXVm5lbWd3UW1KMlMxSnNWRVJDYlFwaFRtZFVaV1pwY2tsTGRqbG9hRzR3TkRCSFpEbDZOV2x6WjFReFUwMXlhRWhCUTBNMVlqRnNVMGxqYVc5a1pYbFdNRWhTSzJNdkx6bE5PREpOVGtZMENqQXpkM1ZrTlhoalJWQndjVUl3WTFaalNGUjRNalkzWjFGblpWUlJOVXgzUlhkTlZWVnNWVU5uYVVoNE1UTnplRWt2ZFRGVWFGRTNaMFp1ZDJONlFsTUtaa2hvVFdGUk1DdFdPRU14Y1VKQk9ETnpSMVpyYldJckwzWkRWa1pCVEV0bFJHaHlRbmx6TldaQ1NVOUdZWGszY0VSQk4wd3ZkQ3ROZVZnd1kxaGxUd3AzVWpGMVJsWnpkSHBrVFVvM1FUVkdORXRWTmxGT2JGbHlhVmRzYkhvd1ZtNHlLM05UV2tkd1MyUTJLM0JTTjAxU1JFd3liVTFTWW5kUlNpOVZkV0pqQ2xOaVUxUjNNMEZKYjB4S1QyeFljMHBpTUhsQmVsTlZRMFJXZUhKWVEwSmhhRGhIWXpWSFYxVktaM0ZqYW5KNFVHOXBVbGMwU21KbVRXODJlSFpHVUZJS1duTk5Zbll5T1VSUEt6RnJkMFpDVHl0bFZIQTJVRFZwWnk5Q1ZFTmpkRzVqWjFWamRucDNRWEo0YVc4d2MzY3ZWM1k1TTBobE56aHNaREZUV0cxV1Z3cHBiMDlSTkVORVIzbHNjMGMxTlV4SU1YQktkMGhJYkVsT0szVTJhVzFoWlU5MFJVNDJUbkFyVWxGM1FqVlFha1l2ZEVFM1NFNXJSbVJQYmxSUFdGQk9DazlUTVZOVVltNUZRVE5aYWxKMGVuTjZVREpUTUVFNVZtTkRjbXhIYlVwRGEwNVNNM1k1Y21KQlEzSldjREJ4Y1ZCS2IzUnhNWFpKTlVOWk5FcHpTa0VLYVhkaVNrVnZXVXcwUW5WTE5qQndZM0E0VFdnNVEyVnlRM0ZRZVhGRFZXUnlRVlV3VUROUlowZ3ZUMmd4TDFSUlYwaHNWeTh6ZVc5MlowZDJZbHBQV0Fvdk56UkNNa3g2T0haeVFsRjVNVkJMYms1Sk4yVlJTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsRTVSa0pZV0c5dmVrc0theTlRVHpneVN6Wk5jWEpQUmxWRVFVcHFRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRlFiVEJwYjI1SmFHdzFRblZQZUhFdlNsbE1iUXBSVjFaUFltUldORE55ZDFrd1lrNXhlbFJOTDNGclYxQlpaalJxVFZGT1lqTllNRm9yZG05VU9UZDJXRXhpUmxsdk1FTlFiVWcwYTNkdFFXaGlaaXR2Q201ek1XcE1XbHAwVG5CRkt6aHNlVlJSVEZnM2FuVnJkbFJRVVZkUlZtVmhTV1JSYVZOa1FtVlFSelZuYUhndldqSjFhREpaU0U5VmJDOHdTelJoYVdnS1NscHZlSEZaU2poS2VWbHdTamQzZGpZNFNXdERRMWxSTldSU1FXNHhLMGRLTnpNeFVYVTVMMGd2VGxsMmJWSmpNVlYwZDA5UFIwNXFWMEZaUnpKSVpncHdMMlJZZW1kMFZFdzFUWGR6TVdWSmNWUXZXSFU1UkRaelIwNHhha3R6U0hNNE1ESmlWV0pMVG5WRU5pOXBOM1pXVldkRkwwaHBVa1kyWmxvclJHUlNDbU5CYUVrd1VEZzVXR2RqV1hwTVpUZERRemhYZDJGb1RWUkhZVmt2WjNOQlMyTlhkMll5UkdSQlZqWkdTbkE0ZUhKaUt6VmlSMnd3ZVdsclprWm1OSElLT1RoeWEzcFNUVklyVFU1V1kxRllTMjFtTlhoUVlucHNSREpvYmpWUVZHNXRhV2RKVUZoWlVtZ3JSMlJKVUVaV01GcExWVkZPZVRReVUyTkhZMlpRZEFwc1IxcGFaazVSWjFkSlpYRk1OM2hVYnpoRVlYcFZRa1J4U2twV1RqZFRXRU5KTlRCcWRqTldlalpzYVhSRmMyWkVla0phUXpSa1dVTmpSMlZrYVdKaENraEZjbmd2U21SRFlYcGhZV3hUU1dsUFZIQkdPWEk0VmxsUlpIazRTWFppZDJzeFR5dExja2g1TDJOU00wRXhSMngxVjIwelZYWldORkpXVFRaRFdqQUtTRTVtYlVsRFdqaGtZbHBzZDNNeFl5OTRRV2M1TlRoWmFYRk5NV2xQTDFvNE4yTk1ObkoxYldsck1UaHJaMUowUW5aNWVEVnViMHh4UzJaV1pIVk1Wd3BVTkVWS1VXUk9lRmxGYVRac2VqSk5SbE5wY2tOc2RESjNTbVJDZW5Kc2NtVmpZbTR4Vnk5Mk0xazRhRGMwWmtkQldrRmxabHA0TmxFNFdsQlZaRnB5Q2prNVJWbEdSRlZFVHpWdk0xWjRNM2xoY1c5UU5GTjNQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJkWFo1ZVZkRFVsTlZkREpOVTNRelRrSTJWSFZ6TjJkd1owaFBXVXRuWnpRclRWQTFOM05EU0ZZeVlWQTRRbVZPQ25OdFUwWjFkM2xPTjBoeVZ6UTFhMUpxVW05MFpqaHViMDAwWkVGWE4zbHJXbFYzZDFwdGFsbEZNMjQwY1hsRGNpOVpXVm81VDA1Q2JtWmpLMWx5U1VVS09WVnFTelJTZDBGbmRWYzVXbFZwU0VseFNGaHpiR1JDTUdadVVDOHZWRkJPYWtSU1pVNU9PRXh1WldOWVFrUTJZV2RrU0VaWVFqQTRaSFYxTkVWSlNBcHJNRTlUT0VKTlJFWkdTbFpCYjBsb09HUmtOMDFUVURkMFZUUlZUelJDV2poSVRYZFZibmcwVkVkclRsQnNaa0YwWVdkUlVFNDNRbXhhU20wdmRqZDNDbXhTVVVONWJtYzBZWGRqY2s5WWQxTkVhRmR6ZFRaUmQwOTVMemRtYWsxc09VaEdNMnB6UldSaWFGWmlUR016VkVObGQwOVNaVU5zVDJ0RVdsZExOR3dLY0Zwak9VWmFPWFp5UlcxU2NWTnVaWFp4VldWNlJWRjVPWEJxUlZjNFJVTm1NVXh0TTBWdE1HczRUbmREUzBONVZIQldOME5YT1UxblRUQnNRV2N4WXdwaE1YZG5WMjltUW01UFVteHNRMWxMYmtrMk9GUTJTV3RXZFVOWE0zcExUM05pZUZRd1YySkVSemM1ZGxGNmRuUmFUVUpSVkhadWF6WmxhaXRaYjFCM0NsVjNia3hhTTBsR1NFdzRPRUZMT0ZseFRreE5VREZ5TDJSNE0zVXZTbGhrVld3MWJGWnZjVVJyVDBGbmVITndZa0oxWlZONE9XRlRZMEo0TlZORVpuSUtkVzl3Ylc1cWNsSkVaV3BoWm10VlRVRmxWRFI0WmpkUlQzaDZXa0pZVkhBd2VteDZlbFJyZEZWck1qVjRRVTR5U1RCaVl6ZE5lamxyZEVGUVZsaEJjUW8xVW5CcFVYQkVWV1EzTDJFeWQwRnhNV0ZrUzNGcWVXRk1ZWFJpZVU5UmJVOURZa05SU1hOSGVWSkxSME1yUVdKcGRYUkxXRXRtUkVsbVVXNXhkM0ZxQ2poeFoyeElZWGRHVGtRNU1FbENMM3B2WkdZd01FWm9OVloyT1RoeFREUkNjakl5Vkd3dkt5dEJaR2s0TDB3MmQxVk5kRlI1Y0hwVFR6TnJRMEYzUlVFS1FWRkxRMEZuUVhZM05VcEZLMGRNUjJKYVpVZHdaQzl1UVhOb1V5dElXbXBSVERoVmJqTkZSR3BVU1c5dEswUlhZbWwxWlZWR2REWkVWREJtVnpkUFV3cHRWbU16YkRocmFFWkZTSFo2WWtscFlUVjZOMG8xZHpWbU9VOHdibFpKZG1oQmFGVjZjRnB2T0hoVU5tRTNkM0J2TDFkNFZscFFhREJrZURRMGVsaGhDbGROTURaQ2RVeHNOVkJ0YmpsaGFXaEVUbkpsT0d0TFp6Qk9hMU5yV25velUwdERhMFphU1hNeGJISktlWG9yWm5SVlRHRnhVRXhMVGxCMVdsbHFXbUVLTkd4U05uaFRUM2R1VWpSMU1XUjFNR1ZwVkVSelJEZGxXSEJzV0haRFRWYzJOazlEYUZCeFdsWXhSalpYVm5wc1dFWm1aRXhVZHprMk5XaG1hMWg0WkFwTE9GSlJRVEZsV214elRHMW5PSFk1YTBkd00zbDFUVVJFU1dWeE5rTlZSVlZMVGtWV1kzbDRZMWgxYWxCR2FpOVhlSEZrUjJ3dk5sZEtRa2hXT0RGSkNreE5RVlI2ZGtWVmFrdzBaR1poY0Zjdk5HcDJVVTFpUlVneGRXaFZkMFpRZDJGalkyRTJkVEJNU0dnNWFXZGtTRWh4VTNkYVprZFJjVEE1TXpjMGFrUUtkbTh2TjBoTVIya3lSMFJrZG5sdlNVWndjME5EYTNwTVltSmlVekZ0WjA1MFJIcFlTRXhPYVdOS1RrVktZelEwY0RCSE1YUnJjRkoxY3pJMk4xSkpOQXBrUzBOR1FXVkJWVGxhZERkcVUxRk9SM1ZhT0ZZMFpETm9TbGhrU2pNclprRXZNVEJ4ZG1WeFlsbFFhM1JtTUZwSVdFMHhlV05PY0c1TVlrNWtjR1l6Q21OME9HUlNURFZaTXpaMFpFMTNkRVJKVEhscFdHcDJURUZOYWxjNFJHOXVXSFoyZGtweVkzcEZPV1p5YlVOdVVIaE5ibWc0VUM5blFrWXZZbEJYZFRRS2J5dFFNMngwVDI5NmFuaFpOekJ2TlRkS2FrNTJlRko0TWtwek9YTjJlRXRLY1d0UUsxWjNTV0ZIWTNNNFlraHNjRlYzY0djdlZVOUJaa2t5UTNvM1p3cFFiVWRzWXl0MmVUVndjR2RuU214TVluY3hWRGMxWTJoMGFrNW1VbTFMT1ZwdWREZEhVakJyZEc4Mk0yRmFVMk0xVVV0RFFWRkZRWGxFTURKb2NFRjZDbWcyU1ROcGQxSnRhM2hTUzBOdlQxWkdaVVpUWjNGWFZVOTFXSGx1UnpGckwxWkRRMWR3ZGtaWmFXTkRiR2REYW5wQ1kyWnFiSFU1YzFod2FWTklVMjBLU2xCWWRDdHlZWEZNU0ZObFVYQTFSazQ1WXpWVGNIYzFVMnR2YkVwcFNsUndVVEp4U1VNeVdsZHpNSE01VEVSR1owOXBSVmhOT1U1MWIwZ3hWWFZNV0FwQ1FYZHlNMkZ0WnpaMFQyaENja2xSZUVGek1FNXNRV2xTWkVkdWIyMVJaR3hpTUd0d1NrOW9jRlI1VGpCME1qQTFVSGhwTUZOV05IcGhWbTF6UWpaaENtaFFOSFZJZEhOSGNrbDFNa2hVZDNWT2RYUlZPVTVsWjNaTE15ODBiVXRqVW5kUlRrRmpkWEZaUlhWSFVsRmlaRTAzZDBoTVdIQk1MMkZOT0RaVldFRUtSamt5VlZreFltRXhWemhxTVZCVUswOXJjWGRNTlRVd09ITjJjamhoYW1wRFluaHpNelZyU0ZZMmVrcERNM2hRV0hoV1drbzJha3ROVmt0cVdYYzFRZ3BYVG5kU1JXcHVSRmhSV0V4VGQwdERRVkZGUVRkM04wUjFWVWgwY0dac00wWkJWM2x5ZDNSTE1pOTZORlpQWVU5UVVqQk5RWEZTZEVaWFlrUTVTV016Q20xSk9WQXZNbko0Um0xdVMxbGFMMHBRVXk5d2MyaHViVWgwY1dkSVVtMUZWbGRZYWtsM1JrNUJOVTV1VUd0eWRFSm9aRmRzVWpKeFlVdFdOMnR6VUZBS1RGaDRWVGxpZDB4dVVHNUpRVXRZYWk5b09GVTFPRTh3TUdsalQwOXFTblZ3TWtoWWNFMUpXbEJJU0RVMVVrbDRUbWwyUVhFM1RrTk9hR0pQTUd0VFpBcHFNVWg0T1VVeWQyNUdaV2x1WkVwRlowSlJVa3BhWkVKVWNtWjRZbE00YzA5UmNuQndVemxoVldWMmRUSlJjMmgwUTFnelVtczNVWFV2ZGl0WlZHSkRDa05RTkdKQlQyVlBVM0ZLTlVKQmVDOTFLMlZFY3poWFFsYzVXR0Y0ZEhJMFpHRlNNMkp2Y2t4eWR6Um1kSHBoTDJWblpqWk1URVpCY1c5a2VtSmtOVGNLZUU1d1JXVkhNMjFxVmxrMU5FaFJXV2QzUWpKNGJrMDRSVTlRZFdOMFMyWkNWamxpY0V4eE1YbDNTME5CVVVGemRUaG5abTVpTVRGVmNEaFlPVzQyTXdvMGRrNDNhamxRVW14SmJuSldMMUpoYVVJMlFVcGplRWMzZVVvdkwxbGlSMGMzVEhaTlpYUnNNemxEVkRkQ2FtWjFiR2xWYlZWTE5IaFNlRXRSTVRaWUNrZGxTakZRV1dnelNtbFVUbUl3VFRWUWIwVTBSMHhyV2tOWmJERk5UbkYxZERKSFVYUkxSV0UwUm1OYWNVNUtWR3hWTjNGSGJsVjNiVlYwTDJSTVRGZ0tXWHB1TlVabVV6WTFNRzVrZWtZNGNuVTVLelJZY1dSb1YxZFZSRkV4ZGpoWWVDOU1LMDh5T1hKcmFXaE5jamRtUzJ4R1ltcFRjVEpDVm1KdFZ6aFpUUW8zUWxabFUwdERSMk50UzBSYVJubHlZV2t2WkUxdGVEVlVVVlpsTTJ4SlRYVjZTMlV6ZURaNGRsSk1XbUpTV0cwM2RqTm1iVEEyUkhodFQzUkpZVEF6Q25VeVIwVTFUWEZoTWxNMmRFcE1aelYxWVdKWVZWRlRVRzB3UjNwWWFYVlBkMkpKVlZZNGQyWnJUbEptUlUweFF6UmFVbEYyT1VkSVpWaHdlVEpQWVRFS1RrZE5ja0Z2U1VKQlJsRnhia3B4UkV4amNUYzVSVXh0V25GNlpXbDJTemxPUTIxblMzZEJNVlU1T0hsVFVESTFLM1JCUkUwek0xSktNV1JGVEdKSE5BcGxXSEUxY1ZRMlZIVm1TSE13UjNGWmFYSnlNRWQyVml0TksxSkdUblp3UmxWYWNFeEJkbmxqUW5VemJGUm1VV1ZJTUROcVFuWlNObmtyWW1jeVF6TnBDbVUxY0U5NlpVUlJla3RzTURkQ2NqVnBWR0pSVUhOc1RERTBTelJ0S3pNclMzWXJUakJwYmtOaFkyMUxRMWwyUm5BdlpUaEdUVlUzUlhKaWVrTXpWbWNLU0ZjM00yTjNjWFJDWjFJMFNuQlJlV2w0ZG00clpXWjZaMkZQV1RodVNGcFpXRk5zVTBzMlIyd3pURE50VDBreWNrczVTbVZxVGpCVk9HMVVkbFJPYkFveFRHMXhUazlpVW1OcWN5OUdTRnBwTm5VMFRXUnRTR3hFS3l0d2FXMUZUakZtYWtwdE9IazFUbXR0TlRsdmVWUjBMelE0TUU1TVZVUnFkR2RhYTFodkNub3JVRWwyUlVOVVZIbzBOMjlFUWt0TU9DOWFaa0ZsUjA1V2RtZExUbFZEWjJkRlFrRk5WRGt2V1UxbWVYZGpVMFk1VjBwM09XVlZPVkpGTUcweFVURUtTVU4yTVU4NVJHTlpiMDVxVGtwMGVWSnpUMFpxV1ZwTFNtWnVWSGxNTkhOdVJqTkVTRmx1TVZWWVdFdDZhMXBSUmsxRVJYTlVWVUpRUTBka1VuZ3dXZ3AyZDBscVNUWkpWVGRPUjJsU2FuZFNhMmhPVFVsRllXSkRVRXB6ZGpneFZsZHRhR2w2YWtKSE5YUXhUU3N2TVhsVGEwYzBURXhXVjBzeVRuQjVTakZ4Q2pkWlZ6RjNVM0EzUzNjMGFtSjZNRXRIS3pKU1IzSm5SMnRyT0ZwSWJuVTRjMnhtYWtVMlV6azVlbEZCVVdsUlRXWlBTM0ZVVGxaaVF6QnBZWGc0ZGpnS1RXUjNlbmhQU0hKc1lsQjZXSHBhU21OaFFYVnZaVXcwZGpGbVpUUlFhM05wTTBjd1VFaDJaR3BpVkc1bU9WVkNiM3BrYzJ3ck4zZHJZMmszWVZSVFlRcEdXVzlLTkdOak1YcHdVSFJRUzBvemMzbE9WWE5YVm5GRlpqZEZVMUY2YzNjeVRGRTBlV3QyVmxONFdWVkRSbEJwZURod1psTlVUa2t3ZHowS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiA2NzE0MDU3YzE2YzhjZGNlM2NhZTI2ZjRjZmFkNGJiYmVjN2FhYzMwNTVjYjA2YzJiZWIzMTY5MDRiZDFjNjhjNGEwYTJmN2E5YTg3ZjhhZmQ4YTQzZGRiZDViYTg2NGNhZjZkODQ4ZGUzNWViNTQ2YmQ4Mjg4Y2E0ZWRlNjY2NQo=\"\n \ }\n ]\n }" headers: cache-control: @@ -613,7 +537,7 @@ interactions: content-type: - application/json date: - - Tue, 17 Aug 2021 05:17:06 GMT + - Wed, 01 Dec 2021 14:24:56 GMT expires: - '-1' pragma: @@ -647,34 +571,33 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.7\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\": - \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n },\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n + \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": + false\n }\n }" headers: cache-control: - no-cache content-length: - - '999' + - '926' content-type: - application/json date: - - Tue, 17 Aug 2021 05:25:20 GMT + - Wed, 01 Dec 2021 14:24:56 GMT expires: - '-1' pragma: @@ -694,9 +617,10 @@ interactions: message: OK - request: body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": - 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": - "Linux", "osSKU": "Ubuntu", "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.20.7", "upgradeSettings": {}, "enableNodePublicIP": + 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", + "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, + "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.20.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "nodeLabels": {"label1": "value1"}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' headers: @@ -709,42 +633,42 @@ interactions: Connection: - keep-alive Content-Length: - - '462' + - '533' Content-Type: - application/json ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.7\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\": - \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n },\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {\n \"label1\": \"value1\"\n },\n \"mode\": + \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5cc968af-ae60-46c0-a0aa-134d06b5c5fc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb4c37ea-59ae-43d3-803e-28dc156d7d1e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1000' + - '999' content-type: - application/json date: - - Tue, 17 Aug 2021 05:25:22 GMT + - Wed, 01 Dec 2021 14:24:58 GMT expires: - '-1' pragma: @@ -760,7 +684,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1195' status: code: 200 message: OK @@ -778,24 +702,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5cc968af-ae60-46c0-a0aa-134d06b5c5fc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb4c37ea-59ae-43d3-803e-28dc156d7d1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"af68c95c-60ae-c046-a0aa-134d06b5c5fc\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-08-17T05:25:22.4966666Z\",\n \"endTime\": - \"2021-08-17T05:25:25.9739935Z\"\n }" + string: "{\n \"name\": \"ea374ccb-ae59-d343-803e-28dc156d7d1e\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:24:59.14Z\",\n \"endTime\": + \"2021-12-01T14:25:06.5702426Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Tue, 17 Aug 2021 05:25:52 GMT + - Wed, 01 Dec 2021 14:25:28 GMT expires: - '-1' pragma: @@ -827,34 +751,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.7\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\": - \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n },\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {\n \"label1\": \"value1\"\n },\n \"mode\": + \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1001' + - '1000' content-type: - application/json date: - - Tue, 17 Aug 2021 05:25:52 GMT + - Wed, 01 Dec 2021 14:25:29 GMT expires: - '-1' pragma: @@ -886,34 +810,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-10-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.7\",\n \"enableNodePublicIP\": - false,\n \"nodeLabels\": {\n \"label1\": \"value1\"\n - \ },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n - \ \"enableFIPS\": false\n }\n }\n ]\n - }" + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {\n \"label1\": \"value1\"\n },\n \"mode\": + \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2029' + - '1089' content-type: - application/json date: - - Tue, 17 Aug 2021 05:21:12 GMT + - Wed, 01 Dec 2021 14:25:30 GMT expires: - '-1' pragma: @@ -945,34 +869,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.7\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\": - \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value2\"\n },\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {\n \"label1\": \"value1\"\n },\n \"mode\": + \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '999' + - '1000' content-type: - application/json date: - - Tue, 17 Aug 2021 05:25:20 GMT + - Wed, 01 Dec 2021 14:25:31 GMT expires: - '-1' pragma: @@ -992,9 +916,10 @@ interactions: message: OK - request: body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": - 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": - "Linux", "osSKU": "Ubuntu", "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.20.7", "upgradeSettings": {}, "enableNodePublicIP": + 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", + "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, + "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.20.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "nodeLabels": {"label1": "value2"}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' headers: @@ -1007,42 +932,42 @@ interactions: Connection: - keep-alive Content-Length: - - '462' + - '533' Content-Type: - application/json ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.7\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\": - \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value2\"\n },\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {\n \"label1\": \"value2\"\n },\n \"mode\": + \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5cc968af-ae60-46c0-a0aa-134d06b5c5fc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a5a0946-5c20-4baf-8709-5f77b0cb29da?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1000' + - '999' content-type: - application/json date: - - Tue, 17 Aug 2021 05:25:22 GMT + - Wed, 01 Dec 2021 14:25:33 GMT expires: - '-1' pragma: @@ -1058,7 +983,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1196' status: code: 200 message: OK @@ -1076,15 +1001,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5cc968af-ae60-46c0-a0aa-134d06b5c5fc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a5a0946-5c20-4baf-8709-5f77b0cb29da?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"af68c95c-60ae-c046-a0aa-134d06b5c5fc\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-08-17T05:25:22.4966666Z\",\n \"endTime\": - \"2021-08-17T05:25:25.9739935Z\"\n }" + string: "{\n \"name\": \"46095a7a-205c-af4b-8709-5f77b0cb29da\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:25:33.7333333Z\",\n \"endTime\": + \"2021-12-01T14:25:37.6717166Z\"\n }" headers: cache-control: - no-cache @@ -1093,7 +1018,7 @@ interactions: content-type: - application/json date: - - Tue, 17 Aug 2021 05:25:52 GMT + - Wed, 01 Dec 2021 14:26:03 GMT expires: - '-1' pragma: @@ -1125,34 +1050,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.7\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\": - \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value2\"\n },\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {\n \"label1\": \"value2\"\n },\n \"mode\": + \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1001' + - '1000' content-type: - application/json date: - - Tue, 17 Aug 2021 05:25:52 GMT + - Wed, 01 Dec 2021 14:26:03 GMT expires: - '-1' pragma: @@ -1184,34 +1109,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.7\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\": - \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value2\"\n },\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"nodeLabels\": {\n \"label1\": \"value2\"\n },\n \"mode\": + \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1001' + - '1000' content-type: - application/json date: - - Tue, 17 Aug 2021 05:25:53 GMT + - Wed, 01 Dec 2021 14:26:04 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_pod_identity_usage.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_pod_identity_usage.yaml new file mode 100644 index 00000000000..12716356fdb --- /dev/null +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_pod_identity_usage.yaml @@ -0,0 +1,2086 @@ +interactions: +- request: + body: '{"location": "westus2"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - identity create + Connection: + - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --resource-group --name --location + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-msi/0.2.0 Azure-SDK-For-Python + AZURECLI/2.30.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id000003?api-version=2015-08-31-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id000003","name":"id000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001","clientSecretUrl":"https://control-westus2.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id000003/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=511a2fcf-d950-4904-bd3d-067ad86ac760&aid=a78fc400-d26d-42f4-bba1-ec8af9b8108d"}}' + headers: + cache-control: + - no-cache + content-length: + - '780' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:14:01 GMT + expires: + - '-1' + location: + - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id000003 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1195' + status: + code: 201 + message: Created +- request: + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest7f34666pf-8ecadf", + "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "podIdentityProfile": {"enabled": + true, "allowNetworkPluginKubenet": true}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1824' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-pod-identity + --enable-pod-identity-with-kubenet --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest7f34666pf-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"podIdentityProfile\": {\n \"enabled\": + true,\n \"allowNetworkPluginKubenet\": true\n },\n \"disableLocalAccounts\": + false\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4f81d43-cfc5-4052-bba1-ac75a85d9077?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '3328' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:14:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-pod-identity + --enable-pod-identity-with-kubenet --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4f81d43-cfc5-4052-bba1-ac75a85d9077?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"431df8f4-c5cf-5240-bba1-ac75a85d9077\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:06.1Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '120' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:14:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-pod-identity + --enable-pod-identity-with-kubenet --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4f81d43-cfc5-4052-bba1-ac75a85d9077?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"431df8f4-c5cf-5240-bba1-ac75a85d9077\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:06.1Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '120' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-pod-identity + --enable-pod-identity-with-kubenet --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4f81d43-cfc5-4052-bba1-ac75a85d9077?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"431df8f4-c5cf-5240-bba1-ac75a85d9077\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:06.1Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '120' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:15:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-pod-identity + --enable-pod-identity-with-kubenet --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4f81d43-cfc5-4052-bba1-ac75a85d9077?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"431df8f4-c5cf-5240-bba1-ac75a85d9077\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:14:06.1Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '120' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:16:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-pod-identity + --enable-pod-identity-with-kubenet --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4f81d43-cfc5-4052-bba1-ac75a85d9077?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"431df8f4-c5cf-5240-bba1-ac75a85d9077\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:14:06.1Z\",\n \"endTime\": + \"2021-12-01T14:16:12.4566672Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '164' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:16:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-pod-identity + --enable-pod-identity-with-kubenet --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest7f34666pf-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4e886f40-84df-44a7-a9cf-8e5c275db3f2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": + true\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '3991' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:16:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity add + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group --namespace --name --identity-resource-id + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest7f34666pf-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4e886f40-84df-44a7-a9cf-8e5c275db3f2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": + true\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '3991' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:16:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity add + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --cluster-name --resource-group --namespace --name --identity-resource-id + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-msi/0.2.0 Azure-SDK-For-Python + AZURECLI/2.30.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id000003?api-version=2015-08-31-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id000003","name":"id000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001","clientSecretUrl":"https://control-westus2.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id000003/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=511a2fcf-d950-4904-bd3d-067ad86ac760&aid=a78fc400-d26d-42f4-bba1-ec8af9b8108d"}}' + headers: + cache-control: + - no-cache + content-length: + - '780' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:16:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity add + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group --namespace --name --identity-resource-id + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.managedidentity/userassignedidentities/id000003/providers/Microsoft.Authorization/roleAssignments?$filter=atScope%28%29%20and%20assignedTo%28%27210a2e8c-7ba3-441b-823c-41f4af3b4f76%27%29&api-version=2020-04-01-preview + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:16:40 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity add + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group --namespace --name --identity-resource-id + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.managedidentity/userassignedidentities/id000003/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Managed%20Identity%20Operator%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Managed Identity Operator","type":"BuiltInRole","description":"Read + and Assign User Assigned Identity","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.ManagedIdentity/userAssignedIdentities/*/read","Microsoft.ManagedIdentity/userAssignedIdentities/*/assign/action","Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Resources/deployments/*","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2017-12-14T19:52:04.3924594Z","updatedOn":"2021-11-11T20:13:38.9523759Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","type":"Microsoft.Authorization/roleDefinitions","name":"f1a07417-d97a-45cb-824c-7a7467783830"}]}' + headers: + cache-control: + - no-cache + content-length: + - '918' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:16:40 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830", + "principalId":"00000000-0000-0000-0000-000000000001"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity add + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + Cookie: + - x-ms-gateway-slice=Production + ParameterSetName: + - --cluster-name --resource-group --namespace --name --identity-resource-id + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.managedidentity/userassignedidentities/id000003/providers/Microsoft.Authorization/roleAssignments/7285e94f-509a-42c1-8dd9-2567bc02528f?api-version=2020-04-01-preview + response: + body: + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.managedidentity/userassignedidentities/id000003","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T14:16:41.0518865Z","updatedOn":"2021-12-01T14:16:41.3019380Z","createdBy":null,"updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.managedidentity/userassignedidentities/id000003/providers/Microsoft.Authorization/roleAssignments/7285e94f-509a-42c1-8dd9-2567bc02528f","type":"Microsoft.Authorization/roleAssignments","name":"7285e94f-509a-42c1-8dd9-2567bc02528f"}' + headers: + cache-control: + - no-cache + content-length: + - '1021' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:16:42 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 201 + message: Created +- request: + body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": + "cliakstest-clitest7f34666pf-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": + "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "podIdentityProfile": {"enabled": true, "allowNetworkPluginKubenet": true, "userAssignedIdentities": + [{"name": "test-name", "namespace": "test-namespace", "identity": {"resourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id000003", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}], + "userAssignedIdentityExceptions": []}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", + "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4e886f40-84df-44a7-a9cf-8e5c275db3f2"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity add + Connection: + - keep-alive + Content-Length: + - '3204' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --resource-group --namespace --name --identity-resource-id + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest7f34666pf-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4e886f40-84df-44a7-a9cf-8e5c275db3f2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": + true,\n \"userAssignedIdentities\": [\n {\n \"name\": \"test-name\",\n + \ \"namespace\": \"test-namespace\",\n \"identity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id000003\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ },\n \"provisioningState\": \"Updating\"\n }\n ]\n },\n + \ \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8f050a1-b82f-436f-9af7-36c50bc538ec?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '4465' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:17:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity add + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group --namespace --name --identity-resource-id + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8f050a1-b82f-436f-9af7-36c50bc538ec?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a150f0e8-2fb8-6f43-9af7-36c50bc538ec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:16.4933333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:17:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity add + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group --namespace --name --identity-resource-id + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8f050a1-b82f-436f-9af7-36c50bc538ec?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a150f0e8-2fb8-6f43-9af7-36c50bc538ec\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:17:16.4933333Z\",\n \"endTime\": + \"2021-12-01T14:18:15.3841014Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:18:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity add + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group --namespace --name --identity-resource-id + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest7f34666pf-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4e886f40-84df-44a7-a9cf-8e5c275db3f2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": + true,\n \"userAssignedIdentities\": [\n {\n \"name\": \"test-name\",\n + \ \"namespace\": \"test-namespace\",\n \"identity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id000003\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ },\n \"provisioningState\": \"Assigned\"\n }\n ]\n },\n + \ \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4467' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:18:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity delete + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group --namespace --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest7f34666pf-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4e886f40-84df-44a7-a9cf-8e5c275db3f2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": + true,\n \"userAssignedIdentities\": [\n {\n \"name\": \"test-name\",\n + \ \"namespace\": \"test-namespace\",\n \"identity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id000003\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ },\n \"provisioningState\": \"Assigned\"\n }\n ]\n },\n + \ \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4467' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:18:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": + "cliakstest-clitest7f34666pf-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": + "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "podIdentityProfile": {"enabled": true, "allowNetworkPluginKubenet": true, "userAssignedIdentities": + [], "userAssignedIdentityExceptions": []}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", + "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4e886f40-84df-44a7-a9cf-8e5c275db3f2"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity delete + Connection: + - keep-alive + Content-Length: + - '2866' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --resource-group --namespace --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest7f34666pf-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4e886f40-84df-44a7-a9cf-8e5c275db3f2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": + true,\n \"userAssignedIdentities\": [\n {\n \"name\": \"test-name\",\n + \ \"namespace\": \"test-namespace\",\n \"identity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id000003\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ },\n \"provisioningState\": \"Deleting\"\n }\n ]\n },\n + \ \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8ee9c18a-a3df-4467-86e9-06114a5fd862?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '4465' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:18:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1195' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity delete + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group --namespace --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8ee9c18a-a3df-4467-86e9-06114a5fd862?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8ac1e98e-dfa3-6744-86e9-06114a5fd862\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:18:21.6833333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:18:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity delete + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group --namespace --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8ee9c18a-a3df-4467-86e9-06114a5fd862?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8ac1e98e-dfa3-6744-86e9-06114a5fd862\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:18:21.6833333Z\",\n \"endTime\": + \"2021-12-01T14:19:20.7131184Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity delete + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group --namespace --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest7f34666pf-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4e886f40-84df-44a7-a9cf-8e5c275db3f2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": + true\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '3991' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity add + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group --namespace --name --identity-resource-id + --binding-selector + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest7f34666pf-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4e886f40-84df-44a7-a9cf-8e5c275db3f2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": + true\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '3991' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity add + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --cluster-name --resource-group --namespace --name --identity-resource-id + --binding-selector + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-msi/0.2.0 Azure-SDK-For-Python + AZURECLI/2.30.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id000003?api-version=2015-08-31-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id000003","name":"id000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001","clientSecretUrl":"https://control-westus2.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id000003/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=511a2fcf-d950-4904-bd3d-067ad86ac760&aid=a78fc400-d26d-42f4-bba1-ec8af9b8108d"}}' + headers: + cache-control: + - no-cache + content-length: + - '780' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:19:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity add + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group --namespace --name --identity-resource-id + --binding-selector + User-Agent: + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.managedidentity/userassignedidentities/id000003/providers/Microsoft.Authorization/roleAssignments?$filter=atScope%28%29%20and%20assignedTo%28%27210a2e8c-7ba3-441b-823c-41f4af3b4f76%27%29&api-version=2020-04-01-preview + response: + body: + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.managedidentity/userassignedidentities/id000003","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T14:16:41.5832333Z","updatedOn":"2021-12-01T14:16:41.5832333Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.managedidentity/userassignedidentities/id000003/providers/Microsoft.Authorization/roleAssignments/7285e94f-509a-42c1-8dd9-2567bc02528f","type":"Microsoft.Authorization/roleAssignments","name":"7285e94f-509a-42c1-8dd9-2567bc02528f"}]}' + headers: + cache-control: + - no-cache + content-length: + - '1067' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 01 Dec 2021 14:19:24 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": + "cliakstest-clitest7f34666pf-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": + "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "podIdentityProfile": {"enabled": true, "allowNetworkPluginKubenet": true, "userAssignedIdentities": + [{"name": "test-name-binding-selector", "namespace": "test-namespace-binding-selector", + "bindingSelector": "binding_test", "identity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id000003", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}], + "userAssignedIdentityExceptions": []}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", + "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4e886f40-84df-44a7-a9cf-8e5c275db3f2"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity add + Connection: + - keep-alive + Content-Length: + - '3273' + Content-Type: + - application/json + ParameterSetName: + - --cluster-name --resource-group --namespace --name --identity-resource-id + --binding-selector + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest7f34666pf-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4e886f40-84df-44a7-a9cf-8e5c275db3f2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": + true,\n \"userAssignedIdentities\": [\n {\n \"name\": \"test-name-binding-selector\",\n + \ \"namespace\": \"test-namespace-binding-selector\",\n \"identity\": + {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id000003\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ },\n \"bindingSelector\": \"binding_test\",\n \"provisioningState\": + \"Updating\"\n }\n ]\n },\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/67eaa28a-8d8c-43a9-b2d4-505b4b8d368c?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '4540' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1195' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity add + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group --namespace --name --identity-resource-id + --binding-selector + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/67eaa28a-8d8c-43a9-b2d4-505b4b8d368c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8aa2ea67-8c8d-a943-b2d4-505b4b8d368c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:19:27.97Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity add + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group --namespace --name --identity-resource-id + --binding-selector + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/67eaa28a-8d8c-43a9-b2d4-505b4b8d368c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8aa2ea67-8c8d-a943-b2d4-505b4b8d368c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:19:27.97Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:20:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity add + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group --namespace --name --identity-resource-id + --binding-selector + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/67eaa28a-8d8c-43a9-b2d4-505b4b8d368c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8aa2ea67-8c8d-a943-b2d4-505b4b8d368c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:19:27.97Z\",\n \"endTime\": + \"2021-12-01T14:20:43.926Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '161' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:20:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks pod-identity add + Connection: + - keep-alive + ParameterSetName: + - --cluster-name --resource-group --namespace --name --identity-resource-id + --binding-selector + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest7f34666pf-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest7f34666pf-8ecadf-3ceb2493.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4e886f40-84df-44a7-a9cf-8e5c275db3f2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"podIdentityProfile\": {\n \"enabled\": true,\n \"allowNetworkPluginKubenet\": + true,\n \"userAssignedIdentities\": [\n {\n \"name\": \"test-name-binding-selector\",\n + \ \"namespace\": \"test-namespace-binding-selector\",\n \"identity\": + {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id000003\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ },\n \"bindingSelector\": \"binding_test\",\n \"provisioningState\": + \"Assigned\"\n }\n ]\n },\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4542' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:20:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --resource-group --name --yes --no-wait + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/58b4da42-cd23-4e47-927d-766f25b76a6b?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 01 Dec 2021 14:21:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/58b4da42-cd23-4e47-927d-766f25b76a6b?api-version=2016-03-30 + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14996' + status: + code: 202 + message: Accepted +version: 1 diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_snapshot.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_snapshot.yaml index 95db17c5318..00e26c3d48a 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_snapshot.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_snapshot.yaml @@ -13,54 +13,52 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators?api-version=2019-04-01&resource-type=managedClusters response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators\"\ - ,\n \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\"\ - ,\n \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.19.11\",\n \"upgrades\"\ - : [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.19.13\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.20.7\"\n },\n {\n \"\ - orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": \"1.20.9\"\ - \n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.19.13\",\n \"upgrades\": [\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.20.7\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.20.9\"\n }\n ]\n },\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.20.7\",\n \"upgrades\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.20.9\"\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.21.1\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.21.2\"\n }\n ]\n },\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.20.9\",\n \"default\": true,\n \"upgrades\": [\n {\n \ - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.21.1\"\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.21.2\"\n }\n ]\n },\n \ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.21.1\",\n \"upgrades\": [\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.21.2\"\n },\n\ - \ {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.22.1\",\n \"isPreview\": true\n },\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.22.2\",\n \"\ - isPreview\": true\n }\n ]\n },\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.21.2\",\n \"upgrades\"\ - : [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\"\ - : \"1.22.1\",\n \"isPreview\": true\n },\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.22.2\",\n \"\ - isPreview\": true\n }\n ]\n },\n {\n \"orchestratorType\"\ - : \"Kubernetes\",\n \"orchestratorVersion\": \"1.22.1\",\n \"isPreview\"\ - : true,\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.22.2\",\n \"isPreview\": true\n\ - \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\"\ - ,\n \"orchestratorVersion\": \"1.22.2\",\n \"isPreview\": true\n \ - \ }\n ]\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators\",\n + \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\",\n + \ \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.19.11\",\n \"upgrades\": + [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.19.13\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.20.7\"\n },\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.20.9\"\n }\n ]\n + \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.19.13\",\n \"upgrades\": [\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.20.7\"\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.20.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.20.7\",\n \"upgrades\": [\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.20.9\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.21.1\"\n },\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.21.2\"\n }\n ]\n + \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.20.9\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.21.1\"\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.21.2\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.21.1\",\n \"upgrades\": [\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.21.2\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.22.1\",\n \"isPreview\": true\n + \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.22.2\",\n \"isPreview\": true\n }\n ]\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.21.2\",\n \"upgrades\": [\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.22.1\",\n \"isPreview\": true\n + \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.22.2\",\n \"isPreview\": true\n }\n ]\n },\n {\n + \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": + \"1.22.1\",\n \"isPreview\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": + \"Kubernetes\",\n \"orchestratorVersion\": \"1.22.2\",\n \"isPreview\": + true\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n + \ \"orchestratorVersion\": \"1.22.2\",\n \"isPreview\": true\n }\n + \ ]\n }\n }" headers: cache-control: - no-cache @@ -69,7 +67,7 @@ interactions: content-type: - application/json date: - - Tue, 02 Nov 2021 17:00:21 GMT + - Wed, 01 Dec 2021 16:36:05 GMT expires: - '-1' pragma: @@ -88,668 +86,87 @@ interactions: code: 200 message: OK - request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --ssh-key-value - -o - User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-resource/19.0.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-02T17:00:20Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '313' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Nov 2021 17:00:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestjd7xyxbgt-26fe00", - "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "c000004"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": - false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '1717' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --ssh-key-value - -o - User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestjd7xyxbgt-26fe00\",\n \"fqdn\": \"cliakstest-clitestjd7xyxbgt-26fe00-cda81aba.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestjd7xyxbgt-26fe00-cda81aba.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"c000004\",\n \"\ - count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.23\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\"\ - : \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n\ - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\"\ - : \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\"\ - : \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a20b954a-1bb3-4714-bcbc-3807919cf966?api-version=2016-03-30 - cache-control: - - no-cache - content-length: - - '3120' - content-type: - - application/json - date: - - Tue, 02 Nov 2021 17:00:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --ssh-key-value - -o - User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a20b954a-1bb3-4714-bcbc-3807919cf966?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"4a950ba2-b31b-1447-bcbc-3807919cf966\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:00:27.61Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 02 Nov 2021 17:00:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --ssh-key-value - -o - User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a20b954a-1bb3-4714-bcbc-3807919cf966?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"4a950ba2-b31b-1447-bcbc-3807919cf966\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:00:27.61Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 02 Nov 2021 17:01:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --ssh-key-value - -o - User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a20b954a-1bb3-4714-bcbc-3807919cf966?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"4a950ba2-b31b-1447-bcbc-3807919cf966\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:00:27.61Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 02 Nov 2021 17:01:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --ssh-key-value - -o - User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a20b954a-1bb3-4714-bcbc-3807919cf966?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"4a950ba2-b31b-1447-bcbc-3807919cf966\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:00:27.61Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 02 Nov 2021 17:02:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --ssh-key-value - -o - User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a20b954a-1bb3-4714-bcbc-3807919cf966?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"4a950ba2-b31b-1447-bcbc-3807919cf966\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:00:27.61Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 02 Nov 2021 17:02:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --ssh-key-value - -o - User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a20b954a-1bb3-4714-bcbc-3807919cf966?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"4a950ba2-b31b-1447-bcbc-3807919cf966\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:00:27.61Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 02 Nov 2021 17:03:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --ssh-key-value - -o - User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a20b954a-1bb3-4714-bcbc-3807919cf966?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"4a950ba2-b31b-1447-bcbc-3807919cf966\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:00:27.61Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 02 Nov 2021 17:03:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --ssh-key-value - -o - User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a20b954a-1bb3-4714-bcbc-3807919cf966?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"4a950ba2-b31b-1447-bcbc-3807919cf966\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:00:27.61Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 02 Nov 2021 17:04:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --ssh-key-value - -o - User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a20b954a-1bb3-4714-bcbc-3807919cf966?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"4a950ba2-b31b-1447-bcbc-3807919cf966\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:00:27.61Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 02 Nov 2021 17:04:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --ssh-key-value - -o - User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a20b954a-1bb3-4714-bcbc-3807919cf966?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"4a950ba2-b31b-1447-bcbc-3807919cf966\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:00:27.61Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 02 Nov 2021 17:05:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesttshwj7kie-8ecadf", + "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "c000004"}], "linuxProfile": + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - aks create Connection: - keep-alive + Content-Length: + - '1745' + Content-Type: + - application/json ParameterSetName: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a20b954a-1bb3-4714-bcbc-3807919cf966?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"4a950ba2-b31b-1447-bcbc-3807919cf966\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:00:27.61Z\"\n }" + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesttshwj7kie-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesttshwj7kie-8ecadf-2566cbd9.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesttshwj7kie-8ecadf-2566cbd9.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000004\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e924c3b-dc78-4006-b04e-2fc820c3b562?api-version=2016-03-30 cache-control: - no-cache content-length: - - '121' + - '3233' content-type: - application/json date: - - Tue, 02 Nov 2021 17:05:58 GMT + - Wed, 01 Dec 2021 16:36:10 GMT expires: - '-1' pragma: @@ -758,15 +175,13 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -782,23 +197,23 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a20b954a-1bb3-4714-bcbc-3807919cf966?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e924c3b-dc78-4006-b04e-2fc820c3b562?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a950ba2-b31b-1447-bcbc-3807919cf966\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:00:27.61Z\"\n }" + string: "{\n \"name\": \"3b4c929e-78dc-0640-b04e-2fc820c3b562\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:36:11.2533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 02 Nov 2021 17:06:28 GMT + - Wed, 01 Dec 2021 16:36:41 GMT expires: - '-1' pragma: @@ -831,23 +246,23 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a20b954a-1bb3-4714-bcbc-3807919cf966?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e924c3b-dc78-4006-b04e-2fc820c3b562?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a950ba2-b31b-1447-bcbc-3807919cf966\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:00:27.61Z\"\n }" + string: "{\n \"name\": \"3b4c929e-78dc-0640-b04e-2fc820c3b562\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:36:11.2533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 02 Nov 2021 17:06:59 GMT + - Wed, 01 Dec 2021 16:37:11 GMT expires: - '-1' pragma: @@ -880,23 +295,23 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a20b954a-1bb3-4714-bcbc-3807919cf966?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e924c3b-dc78-4006-b04e-2fc820c3b562?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a950ba2-b31b-1447-bcbc-3807919cf966\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:00:27.61Z\"\n }" + string: "{\n \"name\": \"3b4c929e-78dc-0640-b04e-2fc820c3b562\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:36:11.2533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 02 Nov 2021 17:07:29 GMT + - Wed, 01 Dec 2021 16:37:41 GMT expires: - '-1' pragma: @@ -929,23 +344,23 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a20b954a-1bb3-4714-bcbc-3807919cf966?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e924c3b-dc78-4006-b04e-2fc820c3b562?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a950ba2-b31b-1447-bcbc-3807919cf966\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:00:27.61Z\"\n }" + string: "{\n \"name\": \"3b4c929e-78dc-0640-b04e-2fc820c3b562\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:36:11.2533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 02 Nov 2021 17:07:59 GMT + - Wed, 01 Dec 2021 16:38:11 GMT expires: - '-1' pragma: @@ -978,23 +393,23 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a20b954a-1bb3-4714-bcbc-3807919cf966?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e924c3b-dc78-4006-b04e-2fc820c3b562?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a950ba2-b31b-1447-bcbc-3807919cf966\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:00:27.61Z\"\n }" + string: "{\n \"name\": \"3b4c929e-78dc-0640-b04e-2fc820c3b562\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:36:11.2533333Z\"\n }" headers: cache-control: - no-cache content-length: - - '121' + - '126' content-type: - application/json date: - - Tue, 02 Nov 2021 17:08:29 GMT + - Wed, 01 Dec 2021 16:38:42 GMT expires: - '-1' pragma: @@ -1027,24 +442,24 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a20b954a-1bb3-4714-bcbc-3807919cf966?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e924c3b-dc78-4006-b04e-2fc820c3b562?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a950ba2-b31b-1447-bcbc-3807919cf966\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2021-11-02T17:00:27.61Z\",\n \"endTime\"\ - : \"2021-11-02T17:08:59.8291186Z\"\n }" + string: "{\n \"name\": \"3b4c929e-78dc-0640-b04e-2fc820c3b562\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T16:36:11.2533333Z\",\n \"endTime\": + \"2021-12-01T16:39:08.6490482Z\"\n }" headers: cache-control: - no-cache content-length: - - '165' + - '170' content-type: - application/json date: - - Tue, 02 Nov 2021 17:08:59 GMT + - Wed, 01 Dec 2021 16:39:12 GMT expires: - '-1' pragma: @@ -1077,60 +492,60 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestjd7xyxbgt-26fe00\",\n \"fqdn\": \"cliakstest-clitestjd7xyxbgt-26fe00-cda81aba.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestjd7xyxbgt-26fe00-cda81aba.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"c000004\",\n \"\ - count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.23\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/adb502ac-3ed6-4794-8105-7f3ec60b2aa9\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitesttshwj7kie-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesttshwj7kie-8ecadf-2566cbd9.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesttshwj7kie-8ecadf-2566cbd9.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000004\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b64f4b32-dc76-489f-9d70-04586f5470c8\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3783' + - '3896' content-type: - application/json date: - - Tue, 02 Nov 2021 17:09:00 GMT + - Wed, 01 Dec 2021 16:39:12 GMT expires: - '-1' pragma: @@ -1162,22 +577,21 @@ interactions: ParameterSetName: - --resource-group --name --location --aks-custom-headers --nodepool-id -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-resource/19.0.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-02T17:00:20Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"cause":"automation","date":"2021-12-01T16:36:05Z","deletion_due_time":"1638635835","deletion_marked_by":"gc","product":"azurecli"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '313' + - '372' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Nov 2021 17:09:01 GMT + - Wed, 01 Dec 2021 16:39:12 GMT expires: - '-1' pragma: @@ -1213,33 +627,32 @@ interactions: ParameterSetName: - --resource-group --name --location --aks-custom-headers --nodepool-id -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2021-10-01 response: body: - string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ - ,\n \"type\": \"Microsoft.ContainerService/Snapshots\",\n \"location\":\ - \ \"westus2\",\n \"systemData\": {\n \"createdBy\": \"charlili@microsoft.com\"\ - ,\n \"createdByType\": \"User\",\n \"createdAt\": \"2021-11-02T17:09:03.7412262Z\"\ - ,\n \"lastModifiedBy\": \"charlili@microsoft.com\",\n \"lastModifiedByType\"\ - : \"User\",\n \"lastModifiedAt\": \"2021-11-02T17:09:03.7412262Z\"\n },\n\ - \ \"properties\": {\n \"creationData\": {\n \"sourceResourceId\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\ - \n },\n \"snapshotType\": \"NodePool\",\n \"kubernetesVersion\": \"\ - 1.20.9\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.23\"\ - ,\n \"osType\": \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": \"\ - Standard_DS2_v2\"\n }\n }" + string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\",\n + \ \"type\": \"Microsoft.ContainerService/Snapshots\",\n \"location\": \"westus2\",\n + \ \"systemData\": {\n \"createdBy\": \"tylloyd@microsoft.com\",\n \"createdByType\": + \"User\",\n \"createdAt\": \"2021-12-01T16:39:14.8485966Z\",\n \"lastModifiedBy\": + \"tylloyd@microsoft.com\",\n \"lastModifiedByType\": \"User\",\n \"lastModifiedAt\": + \"2021-12-01T16:39:14.8485966Z\"\n },\n \"properties\": {\n \"creationData\": + {\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\n + \ },\n \"snapshotType\": \"NodePool\",\n \"kubernetesVersion\": \"1.20.9\",\n + \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"osType\": + \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": \"Standard_DS2_v2\"\n + \ }\n }" headers: cache-control: - no-cache content-length: - - '976' + - '994' content-type: - application/json date: - - Tue, 02 Nov 2021 17:09:03 GMT + - Wed, 01 Dec 2021 16:39:15 GMT expires: - '-1' pragma: @@ -1275,8 +688,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -1284,17 +697,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/357fa4b3-6d4f-4ba4-a78f-7d39021dc8ad?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd49f022-6edd-4197-8a30-98750ea32fc9?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Nov 2021 17:09:04 GMT + - Wed, 01 Dec 2021 16:39:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/357fa4b3-6d4f-4ba4-a78f-7d39021dc8ad?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/fd49f022-6edd-4197-8a30-98750ea32fc9?api-version=2016-03-30 pragma: - no-cache server: @@ -1322,33 +735,32 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2021-10-01 response: body: - string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ - ,\n \"type\": \"Microsoft.ContainerService/Snapshots\",\n \"location\":\ - \ \"westus2\",\n \"systemData\": {\n \"createdBy\": \"charlili@microsoft.com\"\ - ,\n \"createdByType\": \"User\",\n \"createdAt\": \"2021-11-02T17:09:03.7412262Z\"\ - ,\n \"lastModifiedBy\": \"charlili@microsoft.com\",\n \"lastModifiedByType\"\ - : \"User\",\n \"lastModifiedAt\": \"2021-11-02T17:09:03.7412262Z\"\n },\n\ - \ \"properties\": {\n \"creationData\": {\n \"sourceResourceId\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\ - \n },\n \"snapshotType\": \"NodePool\",\n \"kubernetesVersion\": \"\ - 1.20.9\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.23\"\ - ,\n \"osType\": \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": \"\ - Standard_DS2_v2\"\n }\n }" + string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\",\n + \ \"type\": \"Microsoft.ContainerService/Snapshots\",\n \"location\": \"westus2\",\n + \ \"systemData\": {\n \"createdBy\": \"tylloyd@microsoft.com\",\n \"createdByType\": + \"User\",\n \"createdAt\": \"2021-12-01T16:39:14.8485966Z\",\n \"lastModifiedBy\": + \"tylloyd@microsoft.com\",\n \"lastModifiedByType\": \"User\",\n \"lastModifiedAt\": + \"2021-12-01T16:39:14.8485966Z\"\n },\n \"properties\": {\n \"creationData\": + {\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\n + \ },\n \"snapshotType\": \"NodePool\",\n \"kubernetesVersion\": \"1.20.9\",\n + \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"osType\": + \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": \"Standard_DS2_v2\"\n + \ }\n }" headers: cache-control: - no-cache content-length: - - '976' + - '994' content-type: - application/json date: - - Tue, 02 Nov 2021 17:09:05 GMT + - Wed, 01 Dec 2021 16:39:17 GMT expires: - '-1' pragma: @@ -1380,34 +792,33 @@ interactions: ParameterSetName: - --resource-group -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots?api-version=2021-10-01 response: body: - string: "{\n \"value\": [\n {\n \"name\": \"s000006\",\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ - ,\n \"type\": \"Microsoft.ContainerService/Snapshots\",\n \"location\"\ - : \"westus2\",\n \"systemData\": {\n \"createdBy\": \"charlili@microsoft.com\"\ - ,\n \"createdByType\": \"User\",\n \"createdAt\": \"2021-11-02T17:09:03.7412262Z\"\ - ,\n \"lastModifiedBy\": \"charlili@microsoft.com\",\n \"lastModifiedByType\"\ - : \"User\",\n \"lastModifiedAt\": \"2021-11-02T17:09:03.7412262Z\"\n \ - \ },\n \"properties\": {\n \"creationData\": {\n \"sourceResourceId\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\ - \n },\n \"snapshotType\": \"NodePool\",\n \"kubernetesVersion\"\ - : \"1.20.9\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.23\"\ - ,\n \"osType\": \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\"\ - : \"Standard_DS2_v2\"\n }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\",\n + \ \"type\": \"Microsoft.ContainerService/Snapshots\",\n \"location\": + \"westus2\",\n \"systemData\": {\n \"createdBy\": \"tylloyd@microsoft.com\",\n + \ \"createdByType\": \"User\",\n \"createdAt\": \"2021-12-01T16:39:14.8485966Z\",\n + \ \"lastModifiedBy\": \"tylloyd@microsoft.com\",\n \"lastModifiedByType\": + \"User\",\n \"lastModifiedAt\": \"2021-12-01T16:39:14.8485966Z\"\n },\n + \ \"properties\": {\n \"creationData\": {\n \"sourceResourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\n + \ },\n \"snapshotType\": \"NodePool\",\n \"kubernetesVersion\": + \"1.20.9\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"osType\": \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": + \"Standard_DS2_v2\"\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1049' + - '1067' content-type: - application/json date: - - Tue, 02 Nov 2021 17:09:06 GMT + - Wed, 01 Dec 2021 16:39:19 GMT expires: - '-1' pragma: @@ -1440,77 +851,32 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --aks-custom-headers -k --ssh-key-value -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-resource/19.0.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-02T17:00:20Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '313' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Nov 2021 17:09:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --snapshot-id - --aks-custom-headers -k --ssh-key-value -o - User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2021-10-01 response: body: - string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ - ,\n \"type\": \"Microsoft.ContainerService/Snapshots\",\n \"location\":\ - \ \"westus2\",\n \"systemData\": {\n \"createdBy\": \"charlili@microsoft.com\"\ - ,\n \"createdByType\": \"User\",\n \"createdAt\": \"2021-11-02T17:09:03.7412262Z\"\ - ,\n \"lastModifiedBy\": \"charlili@microsoft.com\",\n \"lastModifiedByType\"\ - : \"User\",\n \"lastModifiedAt\": \"2021-11-02T17:09:03.7412262Z\"\n },\n\ - \ \"properties\": {\n \"creationData\": {\n \"sourceResourceId\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\ - \n },\n \"snapshotType\": \"NodePool\",\n \"kubernetesVersion\": \"\ - 1.20.9\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.23\"\ - ,\n \"osType\": \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": \"\ - Standard_DS2_v2\"\n }\n }" + string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\",\n + \ \"type\": \"Microsoft.ContainerService/Snapshots\",\n \"location\": \"westus2\",\n + \ \"systemData\": {\n \"createdBy\": \"tylloyd@microsoft.com\",\n \"createdByType\": + \"User\",\n \"createdAt\": \"2021-12-01T16:39:14.8485966Z\",\n \"lastModifiedBy\": + \"tylloyd@microsoft.com\",\n \"lastModifiedByType\": \"User\",\n \"lastModifiedAt\": + \"2021-12-01T16:39:14.8485966Z\"\n },\n \"properties\": {\n \"creationData\": + {\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\n + \ },\n \"snapshotType\": \"NodePool\",\n \"kubernetesVersion\": \"1.20.9\",\n + \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"osType\": + \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": \"Standard_DS2_v2\"\n + \ }\n }" headers: cache-control: - no-cache content-length: - - '976' + - '994' content-type: - application/json date: - - Tue, 02 Nov 2021 17:09:07 GMT + - Wed, 01 Dec 2021 16:39:19 GMT expires: - '-1' pragma: @@ -1530,13 +896,13 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "1.21.2", "dnsPrefix": "cliakstest-clitestjd7xyxbgt-26fe00", + {"kubernetesVersion": "1.21.2", "dnsPrefix": "cliakstest-clitesttshwj7kie-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", - "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "creationData": {"sourceResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006"}, + "OCIContainer", "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, + "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, + "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": + -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "creationData": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006"}, "name": "c000004"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": @@ -1556,66 +922,65 @@ interactions: Connection: - keep-alive Content-Length: - - '1922' + - '1960' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --aks-custom-headers -k --ssh-key-value -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2021-09-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.21.2\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestjd7xyxbgt-26fe00\",\n \"fqdn\": \"cliakstest-clitestjd7xyxbgt-26fe00-2b998f7d.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestjd7xyxbgt-26fe00-2b998f7d.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"c000004\",\n \"\ - count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.21.2\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.23\"\ - ,\n \"enableFIPS\": false,\n \"creationData\": {\n \"sourceResourceId\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ - \n }\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"\ - azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ - : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\"\ - : \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n\ - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\"\ - : \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\"\ - : \"Basic\",\n \"tier\": \"Free\"\n }\n }" + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.21.2\",\n \"dnsPrefix\": \"cliakstest-clitesttshwj7kie-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesttshwj7kie-8ecadf-13448a88.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesttshwj7kie-8ecadf-13448a88.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000004\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.21.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false,\n + \ \"creationData\": {\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\n + \ }\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/466afca3-6091-4260-9bb5-ae6102f26ef1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8505aec4-fdcd-4423-b72a-ad2ec72a1136?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3318' + - '3441' content-type: - application/json date: - - Tue, 02 Nov 2021 17:09:12 GMT + - Wed, 01 Dec 2021 16:39:29 GMT expires: - '-1' pragma: @@ -1648,14 +1013,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --aks-custom-headers -k --ssh-key-value -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/466afca3-6091-4260-9bb5-ae6102f26ef1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8505aec4-fdcd-4423-b72a-ad2ec72a1136?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a3fc6a46-9160-6042-9bb5-ae6102f26ef1\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:09:12.8466666Z\"\n }" + string: "{\n \"name\": \"c4ae0585-cdfd-2344-b72a-ad2ec72a1136\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:39:25.4833333Z\"\n }" headers: cache-control: - no-cache @@ -1664,7 +1029,7 @@ interactions: content-type: - application/json date: - - Tue, 02 Nov 2021 17:09:42 GMT + - Wed, 01 Dec 2021 16:40:00 GMT expires: - '-1' pragma: @@ -1699,14 +1064,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --aks-custom-headers -k --ssh-key-value -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/466afca3-6091-4260-9bb5-ae6102f26ef1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8505aec4-fdcd-4423-b72a-ad2ec72a1136?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a3fc6a46-9160-6042-9bb5-ae6102f26ef1\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:09:12.8466666Z\"\n }" + string: "{\n \"name\": \"c4ae0585-cdfd-2344-b72a-ad2ec72a1136\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:39:25.4833333Z\"\n }" headers: cache-control: - no-cache @@ -1715,7 +1080,7 @@ interactions: content-type: - application/json date: - - Tue, 02 Nov 2021 17:10:13 GMT + - Wed, 01 Dec 2021 16:40:29 GMT expires: - '-1' pragma: @@ -1750,14 +1115,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --aks-custom-headers -k --ssh-key-value -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/466afca3-6091-4260-9bb5-ae6102f26ef1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8505aec4-fdcd-4423-b72a-ad2ec72a1136?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a3fc6a46-9160-6042-9bb5-ae6102f26ef1\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:09:12.8466666Z\"\n }" + string: "{\n \"name\": \"c4ae0585-cdfd-2344-b72a-ad2ec72a1136\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:39:25.4833333Z\"\n }" headers: cache-control: - no-cache @@ -1766,7 +1131,7 @@ interactions: content-type: - application/json date: - - Tue, 02 Nov 2021 17:10:42 GMT + - Wed, 01 Dec 2021 16:41:00 GMT expires: - '-1' pragma: @@ -1801,14 +1166,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --aks-custom-headers -k --ssh-key-value -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/466afca3-6091-4260-9bb5-ae6102f26ef1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8505aec4-fdcd-4423-b72a-ad2ec72a1136?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a3fc6a46-9160-6042-9bb5-ae6102f26ef1\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:09:12.8466666Z\"\n }" + string: "{\n \"name\": \"c4ae0585-cdfd-2344-b72a-ad2ec72a1136\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:39:25.4833333Z\"\n }" headers: cache-control: - no-cache @@ -1817,7 +1182,7 @@ interactions: content-type: - application/json date: - - Tue, 02 Nov 2021 17:11:13 GMT + - Wed, 01 Dec 2021 16:41:30 GMT expires: - '-1' pragma: @@ -1852,14 +1217,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --aks-custom-headers -k --ssh-key-value -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/466afca3-6091-4260-9bb5-ae6102f26ef1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8505aec4-fdcd-4423-b72a-ad2ec72a1136?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a3fc6a46-9160-6042-9bb5-ae6102f26ef1\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:09:12.8466666Z\"\n }" + string: "{\n \"name\": \"c4ae0585-cdfd-2344-b72a-ad2ec72a1136\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:39:25.4833333Z\"\n }" headers: cache-control: - no-cache @@ -1868,7 +1233,7 @@ interactions: content-type: - application/json date: - - Tue, 02 Nov 2021 17:11:43 GMT + - Wed, 01 Dec 2021 16:42:00 GMT expires: - '-1' pragma: @@ -1903,14 +1268,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --aks-custom-headers -k --ssh-key-value -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/466afca3-6091-4260-9bb5-ae6102f26ef1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8505aec4-fdcd-4423-b72a-ad2ec72a1136?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a3fc6a46-9160-6042-9bb5-ae6102f26ef1\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:09:12.8466666Z\"\n }" + string: "{\n \"name\": \"c4ae0585-cdfd-2344-b72a-ad2ec72a1136\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:39:25.4833333Z\"\n }" headers: cache-control: - no-cache @@ -1919,7 +1284,7 @@ interactions: content-type: - application/json date: - - Tue, 02 Nov 2021 17:12:13 GMT + - Wed, 01 Dec 2021 16:42:30 GMT expires: - '-1' pragma: @@ -1954,15 +1319,15 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --aks-custom-headers -k --ssh-key-value -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/466afca3-6091-4260-9bb5-ae6102f26ef1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8505aec4-fdcd-4423-b72a-ad2ec72a1136?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a3fc6a46-9160-6042-9bb5-ae6102f26ef1\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2021-11-02T17:09:12.8466666Z\",\n \"\ - endTime\": \"2021-11-02T17:12:31.1469723Z\"\n }" + string: "{\n \"name\": \"c4ae0585-cdfd-2344-b72a-ad2ec72a1136\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T16:39:25.4833333Z\",\n \"endTime\": + \"2021-12-01T16:42:45.9857916Z\"\n }" headers: cache-control: - no-cache @@ -1971,7 +1336,7 @@ interactions: content-type: - application/json date: - - Tue, 02 Nov 2021 17:12:44 GMT + - Wed, 01 Dec 2021 16:43:01 GMT expires: - '-1' pragma: @@ -2006,62 +1371,61 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --aks-custom-headers -k --ssh-key-value -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.21.2\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestjd7xyxbgt-26fe00\",\n \"fqdn\": \"cliakstest-clitestjd7xyxbgt-26fe00-2b998f7d.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestjd7xyxbgt-26fe00-2b998f7d.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"c000004\",\n \"\ - count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.21.2\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.23\"\ - ,\n \"enableFIPS\": false,\n \"creationData\": {\n \"sourceResourceId\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ - \n }\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"\ - azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ - : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/bcef668e-9545-44b8-ac3c-039c244775e0\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.21.2\",\n \"dnsPrefix\": \"cliakstest-clitesttshwj7kie-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesttshwj7kie-8ecadf-13448a88.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesttshwj7kie-8ecadf-13448a88.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000004\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.21.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false,\n + \ \"creationData\": {\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\n + \ }\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/56d7ddb4-0b30-454f-a132-0032981699f0\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3981' + - '4104' content-type: - application/json date: - - Tue, 02 Nov 2021 17:12:44 GMT + - Wed, 01 Dec 2021 16:43:01 GMT expires: - '-1' pragma: @@ -2094,35 +1458,35 @@ interactions: - --resource-group --cluster-name --name --node-count --aks-custom-headers -k --snapshot-id -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools?api-version=2021-10-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000004\"\ - ,\n \"name\": \"c000004\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ - ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ - kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n\ - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ - code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.2\",\n\ - \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2021.10.23\",\n \"enableFIPS\": false,\n\ - \ \"creationData\": {\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ - \n }\n }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000004\",\n + \ \"name\": \"c000004\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.21.2\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false,\n \"creationData\": {\n \"sourceResourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\n + \ }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1166' + - '1209' content-type: - application/json date: - - Tue, 02 Nov 2021 17:12:45 GMT + - Wed, 01 Dec 2021 16:43:02 GMT expires: - '-1' pragma: @@ -2155,33 +1519,32 @@ interactions: - --resource-group --cluster-name --name --node-count --aks-custom-headers -k --snapshot-id -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2021-10-01 response: body: - string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ - ,\n \"type\": \"Microsoft.ContainerService/Snapshots\",\n \"location\":\ - \ \"westus2\",\n \"systemData\": {\n \"createdBy\": \"charlili@microsoft.com\"\ - ,\n \"createdByType\": \"User\",\n \"createdAt\": \"2021-11-02T17:09:03.7412262Z\"\ - ,\n \"lastModifiedBy\": \"charlili@microsoft.com\",\n \"lastModifiedByType\"\ - : \"User\",\n \"lastModifiedAt\": \"2021-11-02T17:09:03.7412262Z\"\n },\n\ - \ \"properties\": {\n \"creationData\": {\n \"sourceResourceId\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\ - \n },\n \"snapshotType\": \"NodePool\",\n \"kubernetesVersion\": \"\ - 1.20.9\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.23\"\ - ,\n \"osType\": \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": \"\ - Standard_DS2_v2\"\n }\n }" + string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\",\n + \ \"type\": \"Microsoft.ContainerService/Snapshots\",\n \"location\": \"westus2\",\n + \ \"systemData\": {\n \"createdBy\": \"tylloyd@microsoft.com\",\n \"createdByType\": + \"User\",\n \"createdAt\": \"2021-12-01T16:39:14.8485966Z\",\n \"lastModifiedBy\": + \"tylloyd@microsoft.com\",\n \"lastModifiedByType\": \"User\",\n \"lastModifiedAt\": + \"2021-12-01T16:39:14.8485966Z\"\n },\n \"properties\": {\n \"creationData\": + {\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\n + \ },\n \"snapshotType\": \"NodePool\",\n \"kubernetesVersion\": \"1.20.9\",\n + \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"osType\": + \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": \"Standard_DS2_v2\"\n + \ }\n }" headers: cache-control: - no-cache content-length: - - '976' + - '994' content-type: - application/json date: - - Tue, 02 Nov 2021 17:12:45 GMT + - Wed, 01 Dec 2021 16:43:02 GMT expires: - '-1' pragma: @@ -2218,44 +1581,44 @@ interactions: Connection: - keep-alive Content-Length: - - '624' + - '634' Content-Type: - application/json ParameterSetName: - --resource-group --cluster-name --name --node-count --aks-custom-headers -k --snapshot-id -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005?api-version=2021-09-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005\"\ - ,\n \"name\": \"c000005\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ - ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ - : \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n\ - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ - ,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"orchestratorVersion\": \"1.21.2\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ - Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.23\"\ - ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false,\n \"creationData\"\ - : {\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ - \n }\n }\n }" + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005\",\n + \ \"name\": \"c000005\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.21.2\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false,\n \"creationData\": {\n \"sourceResourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\n + \ }\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff11d482-aecd-4d33-9a35-917934621006?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5169d1e4-6846-4edf-b175-28ccb70ae8d7?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1134' + - '1144' content-type: - application/json date: - - Tue, 02 Nov 2021 17:12:48 GMT + - Wed, 01 Dec 2021 16:43:05 GMT expires: - '-1' pragma: @@ -2267,7 +1630,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -2288,125 +1651,23 @@ interactions: - --resource-group --cluster-name --name --node-count --aks-custom-headers -k --snapshot-id -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff11d482-aecd-4d33-9a35-917934621006?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"82d411ff-cdae-334d-9a35-917934621006\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:12:49.0833333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 02 Nov 2021 17:13:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/SnapshotPreview - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --aks-custom-headers -k - --snapshot-id -o - User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff11d482-aecd-4d33-9a35-917934621006?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"82d411ff-cdae-334d-9a35-917934621006\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:12:49.0833333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 02 Nov 2021 17:13:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/SnapshotPreview - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --aks-custom-headers -k - --snapshot-id -o - User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff11d482-aecd-4d33-9a35-917934621006?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5169d1e4-6846-4edf-b175-28ccb70ae8d7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"82d411ff-cdae-334d-9a35-917934621006\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:12:49.0833333Z\"\n }" + string: "{\n \"name\": \"e4d16951-4668-df4e-b175-28ccb70ae8d7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:43:05.74Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:14:18 GMT + - Wed, 01 Dec 2021 16:43:35 GMT expires: - '-1' pragma: @@ -2441,23 +1702,23 @@ interactions: - --resource-group --cluster-name --name --node-count --aks-custom-headers -k --snapshot-id -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff11d482-aecd-4d33-9a35-917934621006?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5169d1e4-6846-4edf-b175-28ccb70ae8d7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"82d411ff-cdae-334d-9a35-917934621006\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:12:49.0833333Z\"\n }" + string: "{\n \"name\": \"e4d16951-4668-df4e-b175-28ccb70ae8d7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:43:05.74Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:14:48 GMT + - Wed, 01 Dec 2021 16:44:05 GMT expires: - '-1' pragma: @@ -2492,23 +1753,23 @@ interactions: - --resource-group --cluster-name --name --node-count --aks-custom-headers -k --snapshot-id -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff11d482-aecd-4d33-9a35-917934621006?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5169d1e4-6846-4edf-b175-28ccb70ae8d7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"82d411ff-cdae-334d-9a35-917934621006\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:12:49.0833333Z\"\n }" + string: "{\n \"name\": \"e4d16951-4668-df4e-b175-28ccb70ae8d7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:43:05.74Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:15:19 GMT + - Wed, 01 Dec 2021 16:44:36 GMT expires: - '-1' pragma: @@ -2543,23 +1804,23 @@ interactions: - --resource-group --cluster-name --name --node-count --aks-custom-headers -k --snapshot-id -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff11d482-aecd-4d33-9a35-917934621006?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5169d1e4-6846-4edf-b175-28ccb70ae8d7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"82d411ff-cdae-334d-9a35-917934621006\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:12:49.0833333Z\"\n }" + string: "{\n \"name\": \"e4d16951-4668-df4e-b175-28ccb70ae8d7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:43:05.74Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:15:49 GMT + - Wed, 01 Dec 2021 16:45:06 GMT expires: - '-1' pragma: @@ -2594,23 +1855,23 @@ interactions: - --resource-group --cluster-name --name --node-count --aks-custom-headers -k --snapshot-id -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff11d482-aecd-4d33-9a35-917934621006?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5169d1e4-6846-4edf-b175-28ccb70ae8d7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"82d411ff-cdae-334d-9a35-917934621006\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:12:49.0833333Z\"\n }" + string: "{\n \"name\": \"e4d16951-4668-df4e-b175-28ccb70ae8d7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:43:05.74Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:16:19 GMT + - Wed, 01 Dec 2021 16:45:35 GMT expires: - '-1' pragma: @@ -2645,23 +1906,23 @@ interactions: - --resource-group --cluster-name --name --node-count --aks-custom-headers -k --snapshot-id -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff11d482-aecd-4d33-9a35-917934621006?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5169d1e4-6846-4edf-b175-28ccb70ae8d7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"82d411ff-cdae-334d-9a35-917934621006\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:12:49.0833333Z\"\n }" + string: "{\n \"name\": \"e4d16951-4668-df4e-b175-28ccb70ae8d7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:43:05.74Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:16:49 GMT + - Wed, 01 Dec 2021 16:46:05 GMT expires: - '-1' pragma: @@ -2696,24 +1957,24 @@ interactions: - --resource-group --cluster-name --name --node-count --aks-custom-headers -k --snapshot-id -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff11d482-aecd-4d33-9a35-917934621006?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5169d1e4-6846-4edf-b175-28ccb70ae8d7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"82d411ff-cdae-334d-9a35-917934621006\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2021-11-02T17:12:49.0833333Z\",\n \"\ - endTime\": \"2021-11-02T17:16:50.5344549Z\"\n }" + string: "{\n \"name\": \"e4d16951-4668-df4e-b175-28ccb70ae8d7\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T16:43:05.74Z\",\n \"endTime\": + \"2021-12-01T16:46:09.2309266Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Tue, 02 Nov 2021 17:17:20 GMT + - Wed, 01 Dec 2021 16:46:36 GMT expires: - '-1' pragma: @@ -2748,35 +2009,35 @@ interactions: - --resource-group --cluster-name --name --node-count --aks-custom-headers -k --snapshot-id -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005\"\ - ,\n \"name\": \"c000005\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ - ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ - : \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n\ - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ - ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ - code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.2\",\n \"\ - enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\"\ - : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"\ - osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.23\"\ - ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false,\n \"creationData\"\ - : {\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ - \n }\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005\",\n + \ \"name\": \"c000005\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.21.2\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false,\n \"creationData\": {\n \"sourceResourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\n + \ }\n }\n }" headers: cache-control: - no-cache content-length: - - '1135' + - '1145' content-type: - application/json date: - - Tue, 02 Nov 2021 17:17:20 GMT + - Wed, 01 Dec 2021 16:46:37 GMT expires: - '-1' pragma: @@ -2808,74 +2069,73 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.21.2\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestjd7xyxbgt-26fe00\",\n \"fqdn\": \"cliakstest-clitestjd7xyxbgt-26fe00-2b998f7d.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestjd7xyxbgt-26fe00-2b998f7d.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"c000005\",\n \"\ - count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ - ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.2\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2021.10.23\",\n \"upgradeSettings\":\ - \ {},\n \"enableFIPS\": false,\n \"creationData\": {\n \"sourceResourceId\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ - \n }\n },\n {\n \"name\": \"c000004\",\n \"count\": 1,\n\ - \ \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \ - \ \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"\ - workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\"\ - : \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\"\ - ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ - : \"1.21.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2021.10.23\",\n \"enableFIPS\": false,\n\ - \ \"creationData\": {\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ - \n }\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"\ - azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ - : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/bcef668e-9545-44b8-ac3c-039c244775e0\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.21.2\",\n \"dnsPrefix\": \"cliakstest-clitesttshwj7kie-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesttshwj7kie-8ecadf-13448a88.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesttshwj7kie-8ecadf-13448a88.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000005\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.21.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false,\n \"creationData\": {\n \"sourceResourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\n + \ }\n },\n {\n \"name\": \"c000004\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n + \ \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": + false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.2\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false,\n \"creationData\": {\n \"sourceResourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\n + \ }\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/56d7ddb4-0b30-454f-a132-0032981699f0\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4907' + - '5040' content-type: - application/json date: - - Tue, 02 Nov 2021 17:17:21 GMT + - Wed, 01 Dec 2021 16:46:37 GMT expires: - '-1' pragma: @@ -2896,7 +2156,7 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.2", "dnsPrefix": - "cliakstest-clitestjd7xyxbgt-26fe00", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitesttshwj7kie-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", @@ -2905,8 +2165,8 @@ interactions: false, "enableUltraSSD": false, "enableFIPS": false, "name": "c000005"}, {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, - "osType": "Linux", "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": - "System", "orchestratorVersion": "1.22.2", "powerState": {"code": "Running"}, + "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.22.2", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "c000004"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== @@ -2915,10 +2175,11 @@ interactions: "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/bcef668e-9545-44b8-ac3c-039c244775e0"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003-agentpool", + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/56d7ddb4-0b30-454f-a132-0032981699f0"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -2929,79 +2190,78 @@ interactions: Connection: - keep-alive Content-Length: - - '3087' + - '3169' Content-Type: - application/json ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2021-09-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Upgrading\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.22.2\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestjd7xyxbgt-26fe00\",\n \"fqdn\": \"cliakstest-clitestjd7xyxbgt-26fe00-2b998f7d.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestjd7xyxbgt-26fe00-2b998f7d.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"c000005\",\n \"\ - count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ - ,\n \"provisioningState\": \"Upgrading\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.2\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2021.10.23\",\n \"upgradeSettings\":\ - \ {},\n \"enableFIPS\": false\n },\n {\n \"name\": \"c000004\"\ - ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Upgrading\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.22.2\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.23\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/bcef668e-9545-44b8-ac3c-039c244775e0\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Upgrading\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.22.2\",\n \"dnsPrefix\": \"cliakstest-clitesttshwj7kie-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesttshwj7kie-8ecadf-13448a88.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesttshwj7kie-8ecadf-13448a88.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000005\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Upgrading\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n },\n {\n \"name\": \"c000004\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Upgrading\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/56d7ddb4-0b30-454f-a132-0032981699f0\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4511' + - '4624' content-type: - application/json date: - - Tue, 02 Nov 2021 17:17:25 GMT + - Wed, 01 Dec 2021 16:46:42 GMT expires: - '-1' pragma: @@ -3017,7 +2277,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -3035,23 +2295,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:17:55 GMT + - Wed, 01 Dec 2021 16:47:11 GMT expires: - '-1' pragma: @@ -3083,23 +2343,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:18:25 GMT + - Wed, 01 Dec 2021 16:47:41 GMT expires: - '-1' pragma: @@ -3131,23 +2391,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:18:55 GMT + - Wed, 01 Dec 2021 16:48:12 GMT expires: - '-1' pragma: @@ -3179,23 +2439,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:19:26 GMT + - Wed, 01 Dec 2021 16:48:42 GMT expires: - '-1' pragma: @@ -3227,23 +2487,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:19:55 GMT + - Wed, 01 Dec 2021 16:49:12 GMT expires: - '-1' pragma: @@ -3275,23 +2535,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:20:26 GMT + - Wed, 01 Dec 2021 16:49:43 GMT expires: - '-1' pragma: @@ -3323,23 +2583,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:20:56 GMT + - Wed, 01 Dec 2021 16:50:12 GMT expires: - '-1' pragma: @@ -3371,23 +2631,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:21:26 GMT + - Wed, 01 Dec 2021 16:50:42 GMT expires: - '-1' pragma: @@ -3419,23 +2679,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:21:56 GMT + - Wed, 01 Dec 2021 16:51:13 GMT expires: - '-1' pragma: @@ -3467,23 +2727,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:22:27 GMT + - Wed, 01 Dec 2021 16:51:43 GMT expires: - '-1' pragma: @@ -3515,23 +2775,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:22:57 GMT + - Wed, 01 Dec 2021 16:52:13 GMT expires: - '-1' pragma: @@ -3563,23 +2823,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:23:27 GMT + - Wed, 01 Dec 2021 16:52:43 GMT expires: - '-1' pragma: @@ -3611,23 +2871,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:23:57 GMT + - Wed, 01 Dec 2021 16:53:14 GMT expires: - '-1' pragma: @@ -3659,23 +2919,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:24:27 GMT + - Wed, 01 Dec 2021 16:53:44 GMT expires: - '-1' pragma: @@ -3707,23 +2967,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:24:57 GMT + - Wed, 01 Dec 2021 16:54:14 GMT expires: - '-1' pragma: @@ -3755,23 +3015,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:25:27 GMT + - Wed, 01 Dec 2021 16:54:45 GMT expires: - '-1' pragma: @@ -3803,23 +3063,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:25:58 GMT + - Wed, 01 Dec 2021 16:55:14 GMT expires: - '-1' pragma: @@ -3851,23 +3111,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:26:28 GMT + - Wed, 01 Dec 2021 16:55:44 GMT expires: - '-1' pragma: @@ -3899,23 +3159,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:26:57 GMT + - Wed, 01 Dec 2021 16:56:14 GMT expires: - '-1' pragma: @@ -3947,23 +3207,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:27:27 GMT + - Wed, 01 Dec 2021 16:56:45 GMT expires: - '-1' pragma: @@ -3995,23 +3255,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:27:58 GMT + - Wed, 01 Dec 2021 16:57:15 GMT expires: - '-1' pragma: @@ -4043,23 +3303,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:28:28 GMT + - Wed, 01 Dec 2021 16:57:45 GMT expires: - '-1' pragma: @@ -4091,23 +3351,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:28:58 GMT + - Wed, 01 Dec 2021 16:58:16 GMT expires: - '-1' pragma: @@ -4139,23 +3399,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:29:28 GMT + - Wed, 01 Dec 2021 16:58:46 GMT expires: - '-1' pragma: @@ -4187,23 +3447,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:29:59 GMT + - Wed, 01 Dec 2021 16:59:16 GMT expires: - '-1' pragma: @@ -4235,23 +3495,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:30:29 GMT + - Wed, 01 Dec 2021 16:59:46 GMT expires: - '-1' pragma: @@ -4283,23 +3543,23 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\"\n }" headers: cache-control: - no-cache content-length: - - '120' + - '121' content-type: - application/json date: - - Tue, 02 Nov 2021 17:30:59 GMT + - Wed, 01 Dec 2021 17:00:16 GMT expires: - '-1' pragma: @@ -4331,24 +3591,24 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3573e4c-5da1-4ea6-a456-1e0fad82313c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79731769-0c59-4588-b51a-b64bb96c5906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4c3e57f3-a15d-a64e-a456-1e0fad82313c\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2021-11-02T17:17:25.4Z\",\n \"endTime\"\ - : \"2021-11-02T17:31:11.3861886Z\"\n }" + string: "{\n \"name\": \"69177379-590c-8845-b51a-b64bb96c5906\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T16:46:41.57Z\",\n \"endTime\": + \"2021-12-01T17:00:29.3498363Z\"\n }" headers: cache-control: - no-cache content-length: - - '164' + - '165' content-type: - application/json date: - - Tue, 02 Nov 2021 17:31:29 GMT + - Wed, 01 Dec 2021 17:00:46 GMT expires: - '-1' pragma: @@ -4380,71 +3640,70 @@ interactions: ParameterSetName: - --resource-group --name -k --yes -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ - ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"kubernetesVersion\": \"1.22.2\",\n \"dnsPrefix\"\ - : \"cliakstest-clitestjd7xyxbgt-26fe00\",\n \"fqdn\": \"cliakstest-clitestjd7xyxbgt-26fe00-2b998f7d.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestjd7xyxbgt-26fe00-2b998f7d.portal.hcp.westus2.staging.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"c000005\",\n \"\ - count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ - ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.2\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2021.10.23\",\n \"upgradeSettings\":\ - \ {},\n \"enableFIPS\": false\n },\n {\n \"name\": \"c000004\"\ - ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.22.2\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.23\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n\ - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\"\ - : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ - ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ - count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/bcef668e-9545-44b8-ac3c-039c244775e0\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"\ - maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ - : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.22.2\",\n \"dnsPrefix\": \"cliakstest-clitesttshwj7kie-8ecadf\",\n \"fqdn\": + \"cliakstest-clitesttshwj7kie-8ecadf-13448a88.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitesttshwj7kie-8ecadf-13448a88.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000005\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n },\n {\n \"name\": \"c000004\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.22.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/56d7ddb4-0b30-454f-a132-0032981699f0\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4511' + - '4624' content-type: - application/json date: - - Tue, 02 Nov 2021 17:31:29 GMT + - Wed, 01 Dec 2021 17:00:47 GMT expires: - '-1' pragma: @@ -4466,7 +3725,7 @@ interactions: body: null headers: AKSSnapshotId: - - /subscriptions/26fe00f8-9173-4872-9134-bb1d2e00343a/resourceGroups/clitestjd7xyxbgtz/providers/Microsoft.ContainerService/snapshots/smfzoc + - /subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/clitesttshwj7kiee/providers/Microsoft.ContainerService/snapshots/sgrdeikvwure2vq5 Accept: - application/json Accept-Encoding: @@ -4481,41 +3740,41 @@ interactions: - --resource-group --cluster-name -n --node-image-only --no-wait --snapshot-id -o User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005/upgradeNodeImageVersion?api-version=2021-09-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005\"\ - ,\n \"name\": \"c000005\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ - ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ - : \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n\ - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ - ,\n \"provisioningState\": \"UpgradingNodeImageVersion\",\n \"powerState\"\ - : {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.2\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\"\ - : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"\ - osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.23\"\ - ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false,\n \"creationData\"\ - : {\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ - \n }\n }\n }" + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005/upgradeNodeImageVersion?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005\",\n + \ \"name\": \"c000005\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"UpgradingNodeImageVersion\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.2\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false,\n \"creationData\": + {\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\n + \ }\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0c0d2474-771e-4517-a8b1-95c6676e1512?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c1531708-c534-4813-b75d-3620e8b03bcd?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1151' + - '1161' content-type: - application/json date: - - Tue, 02 Nov 2021 17:31:31 GMT + - Wed, 01 Dec 2021 17:00:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/0c0d2474-771e-4517-a8b1-95c6676e1512?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/c1531708-c534-4813-b75d-3620e8b03bcd?api-version=2016-03-30 pragma: - no-cache server: @@ -4543,35 +3802,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005?api-version=2021-10-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005\"\ - ,\n \"name\": \"c000005\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ - ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ - : \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n\ - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ - ,\n \"provisioningState\": \"UpgradingNodeImageVersion\",\n \"powerState\"\ - : {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.2\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\"\ - : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"\ - osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.23\"\ - ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false,\n \"creationData\"\ - : {\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ - \n }\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005\",\n + \ \"name\": \"c000005\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"UpgradingNodeImageVersion\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.2\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false,\n \"creationData\": + {\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\n + \ }\n }\n }" headers: cache-control: - no-cache content-length: - - '1151' + - '1161' content-type: - application/json date: - - Tue, 02 Nov 2021 17:31:32 GMT + - Wed, 01 Dec 2021 17:00:49 GMT expires: - '-1' pragma: @@ -4605,8 +3864,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2021-07-01 response: @@ -4614,17 +3873,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1ecd51db-7223-49ee-9b0e-ca53425821bd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ec3f0d4c-cc01-4f24-a862-d9d98c057abc?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Nov 2021 17:31:33 GMT + - Wed, 01 Dec 2021 17:00:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/1ecd51db-7223-49ee-9b0e-ca53425821bd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ec3f0d4c-cc01-4f24-a862-d9d98c057abc?api-version=2016-03-30 pragma: - no-cache server: @@ -4654,10 +3913,10 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.30.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.9.6 - (Linux-5.4.0-1055-azure-x86_64-with) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2021-10-01 response: body: string: '' @@ -4667,7 +3926,7 @@ interactions: content-length: - '0' date: - - Tue, 02 Nov 2021 17:31:34 GMT + - Wed, 01 Dec 2021 17:00:53 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_stop_and_start.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_stop_and_start.yaml old mode 100755 new mode 100644 index 56d49ade814..6891154043d --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_stop_and_start.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_stop_and_start.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:13:26Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:17:06Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:13:26 GMT + - Wed, 01 Dec 2021 14:17:06 GMT expires: - '-1' pragma: @@ -43,18 +43,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestorwomggif-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestxsivdpmgy-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -65,38 +66,39 @@ interactions: Connection: - keep-alive Content-Length: - - '1391' + - '1748' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestorwomggif-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestorwomggif-8ecadf-dc664c63.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestorwomggif-8ecadf-dc664c63.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestxsivdpmgy-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestxsivdpmgy-8ecadf-c65c076a.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestxsivdpmgy-8ecadf-c65c076a.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -104,22 +106,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e223d466-fc2c-4c0f-915c-030e407a3b19?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb03bfa2-0b08-47e6-8d29-fb0abab7bf77?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2778' + - '3236' content-type: - application/json date: - - Tue, 19 Oct 2021 07:13:30 GMT + - Wed, 01 Dec 2021 14:17:12 GMT expires: - '-1' pragma: @@ -131,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 201 message: Created @@ -149,14 +152,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e223d466-fc2c-4c0f-915c-030e407a3b19?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb03bfa2-0b08-47e6-8d29-fb0abab7bf77?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"66d423e2-2cfc-0f4c-915c-030e407a3b19\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:13:30.2933333Z\"\n }" + string: "{\n \"name\": \"a2bf03fb-080b-e647-8d29-fb0abab7bf77\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:12.2766666Z\"\n }" headers: cache-control: - no-cache @@ -165,7 +168,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:14:00 GMT + - Wed, 01 Dec 2021 14:17:42 GMT expires: - '-1' pragma: @@ -197,14 +200,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e223d466-fc2c-4c0f-915c-030e407a3b19?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb03bfa2-0b08-47e6-8d29-fb0abab7bf77?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"66d423e2-2cfc-0f4c-915c-030e407a3b19\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:13:30.2933333Z\"\n }" + string: "{\n \"name\": \"a2bf03fb-080b-e647-8d29-fb0abab7bf77\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:12.2766666Z\"\n }" headers: cache-control: - no-cache @@ -213,7 +216,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:14:29 GMT + - Wed, 01 Dec 2021 14:18:12 GMT expires: - '-1' pragma: @@ -245,14 +248,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e223d466-fc2c-4c0f-915c-030e407a3b19?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb03bfa2-0b08-47e6-8d29-fb0abab7bf77?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"66d423e2-2cfc-0f4c-915c-030e407a3b19\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:13:30.2933333Z\"\n }" + string: "{\n \"name\": \"a2bf03fb-080b-e647-8d29-fb0abab7bf77\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:12.2766666Z\"\n }" headers: cache-control: - no-cache @@ -261,7 +264,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:15:00 GMT + - Wed, 01 Dec 2021 14:18:43 GMT expires: - '-1' pragma: @@ -293,14 +296,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e223d466-fc2c-4c0f-915c-030e407a3b19?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb03bfa2-0b08-47e6-8d29-fb0abab7bf77?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"66d423e2-2cfc-0f4c-915c-030e407a3b19\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:13:30.2933333Z\"\n }" + string: "{\n \"name\": \"a2bf03fb-080b-e647-8d29-fb0abab7bf77\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:12.2766666Z\"\n }" headers: cache-control: - no-cache @@ -309,7 +312,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:15:30 GMT + - Wed, 01 Dec 2021 14:19:13 GMT expires: - '-1' pragma: @@ -341,14 +344,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e223d466-fc2c-4c0f-915c-030e407a3b19?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb03bfa2-0b08-47e6-8d29-fb0abab7bf77?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"66d423e2-2cfc-0f4c-915c-030e407a3b19\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:13:30.2933333Z\"\n }" + string: "{\n \"name\": \"a2bf03fb-080b-e647-8d29-fb0abab7bf77\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:12.2766666Z\"\n }" headers: cache-control: - no-cache @@ -357,7 +360,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:16:00 GMT + - Wed, 01 Dec 2021 14:19:42 GMT expires: - '-1' pragma: @@ -389,15 +392,15 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e223d466-fc2c-4c0f-915c-030e407a3b19?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb03bfa2-0b08-47e6-8d29-fb0abab7bf77?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"66d423e2-2cfc-0f4c-915c-030e407a3b19\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:13:30.2933333Z\",\n \"endTime\": - \"2021-10-19T07:16:29.3594449Z\"\n }" + string: "{\n \"name\": \"a2bf03fb-080b-e647-8d29-fb0abab7bf77\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:17:12.2766666Z\",\n \"endTime\": + \"2021-12-01T14:20:06.1022913Z\"\n }" headers: cache-control: - no-cache @@ -406,7 +409,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:16:30 GMT + - Wed, 01 Dec 2021 14:20:13 GMT expires: - '-1' pragma: @@ -438,57 +441,60 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestorwomggif-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestorwomggif-8ecadf-dc664c63.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestorwomggif-8ecadf-dc664c63.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestxsivdpmgy-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestxsivdpmgy-8ecadf-c65c076a.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestxsivdpmgy-8ecadf-c65c076a.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/50ad94ff-e61c-44c1-94be-048e24454bc1\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6513dc50-b1eb-475b-a4c5-4926421057ca\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3899' content-type: - application/json date: - - Tue, 19 Oct 2021 07:16:31 GMT + - Wed, 01 Dec 2021 14:20:14 GMT expires: - '-1' pragma: @@ -522,26 +528,26 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/stop?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/stop?api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34b2e85c-182b-4982-887a-dd2f8a7c2f22?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83bbefe4-c149-43ef-9608-ed6b2c32d3fc?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 07:16:32 GMT + - Wed, 01 Dec 2021 14:20:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/34b2e85c-182b-4982-887a-dd2f8a7c2f22?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/83bbefe4-c149-43ef-9608-ed6b2c32d3fc?api-version=2016-03-30 pragma: - no-cache server: @@ -569,110 +575,14 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34b2e85c-182b-4982-887a-dd2f8a7c2f22?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"5ce8b234-2b18-8249-887a-dd2f8a7c2f22\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:16:31.92Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:17:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks stop - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34b2e85c-182b-4982-887a-dd2f8a7c2f22?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"5ce8b234-2b18-8249-887a-dd2f8a7c2f22\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:16:31.92Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:17:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks stop - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34b2e85c-182b-4982-887a-dd2f8a7c2f22?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83bbefe4-c149-43ef-9608-ed6b2c32d3fc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5ce8b234-2b18-8249-887a-dd2f8a7c2f22\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:16:31.92Z\"\n }" + string: "{\n \"name\": \"e4efbb83-49c1-ef43-9608-ed6b2c32d3fc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:15.51Z\"\n }" headers: cache-control: - no-cache @@ -681,7 +591,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:18:02 GMT + - Wed, 01 Dec 2021 14:20:46 GMT expires: - '-1' pragma: @@ -713,14 +623,14 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34b2e85c-182b-4982-887a-dd2f8a7c2f22?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83bbefe4-c149-43ef-9608-ed6b2c32d3fc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5ce8b234-2b18-8249-887a-dd2f8a7c2f22\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:16:31.92Z\"\n }" + string: "{\n \"name\": \"e4efbb83-49c1-ef43-9608-ed6b2c32d3fc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:15.51Z\"\n }" headers: cache-control: - no-cache @@ -729,7 +639,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:18:32 GMT + - Wed, 01 Dec 2021 14:21:15 GMT expires: - '-1' pragma: @@ -761,14 +671,14 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34b2e85c-182b-4982-887a-dd2f8a7c2f22?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83bbefe4-c149-43ef-9608-ed6b2c32d3fc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5ce8b234-2b18-8249-887a-dd2f8a7c2f22\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:16:31.92Z\"\n }" + string: "{\n \"name\": \"e4efbb83-49c1-ef43-9608-ed6b2c32d3fc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:15.51Z\"\n }" headers: cache-control: - no-cache @@ -777,7 +687,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:19:01 GMT + - Wed, 01 Dec 2021 14:21:45 GMT expires: - '-1' pragma: @@ -809,14 +719,14 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34b2e85c-182b-4982-887a-dd2f8a7c2f22?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83bbefe4-c149-43ef-9608-ed6b2c32d3fc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5ce8b234-2b18-8249-887a-dd2f8a7c2f22\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:16:31.92Z\"\n }" + string: "{\n \"name\": \"e4efbb83-49c1-ef43-9608-ed6b2c32d3fc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:15.51Z\"\n }" headers: cache-control: - no-cache @@ -825,7 +735,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:19:32 GMT + - Wed, 01 Dec 2021 14:22:15 GMT expires: - '-1' pragma: @@ -857,15 +767,15 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34b2e85c-182b-4982-887a-dd2f8a7c2f22?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83bbefe4-c149-43ef-9608-ed6b2c32d3fc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5ce8b234-2b18-8249-887a-dd2f8a7c2f22\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:16:31.92Z\",\n \"endTime\": - \"2021-10-19T07:19:56.6124496Z\"\n }" + string: "{\n \"name\": \"e4efbb83-49c1-ef43-9608-ed6b2c32d3fc\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:20:15.51Z\",\n \"endTime\": + \"2021-12-01T14:22:39.1143089Z\"\n }" headers: cache-control: - no-cache @@ -874,7 +784,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:02 GMT + - Wed, 01 Dec 2021 14:22:45 GMT expires: - '-1' pragma: @@ -906,10 +816,10 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/34b2e85c-182b-4982-887a-dd2f8a7c2f22?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/83bbefe4-c149-43ef-9608-ed6b2c32d3fc?api-version=2016-03-30 response: body: string: '' @@ -919,11 +829,11 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:02 GMT + - Wed, 01 Dec 2021 14:22:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/34b2e85c-182b-4982-887a-dd2f8a7c2f22?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/83bbefe4-c149-43ef-9608-ed6b2c32d3fc?api-version=2016-03-30 pragma: - no-cache server: @@ -951,26 +861,26 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/start?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/start?api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/24af16fc-c538-4ac4-b6c1-86e7f289a2c5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/27a408bb-e57d-45e0-9058-98d74d00660d?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 07:20:03 GMT + - Wed, 01 Dec 2021 14:22:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/24af16fc-c538-4ac4-b6c1-86e7f289a2c5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/27a408bb-e57d-45e0-9058-98d74d00660d?api-version=2016-03-30 pragma: - no-cache server: @@ -998,62 +908,14 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/24af16fc-c538-4ac4-b6c1-86e7f289a2c5?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"fc16af24-38c5-c44a-b6c1-86e7f289a2c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:03.4366666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:20:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks start - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/24af16fc-c538-4ac4-b6c1-86e7f289a2c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/27a408bb-e57d-45e0-9058-98d74d00660d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fc16af24-38c5-c44a-b6c1-86e7f289a2c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:03.4366666Z\"\n }" + string: "{\n \"name\": \"bb08a427-7de5-e045-9058-98d74d00660d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:22:48.0733333Z\"\n }" headers: cache-control: - no-cache @@ -1062,7 +924,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:21:03 GMT + - Wed, 01 Dec 2021 14:23:17 GMT expires: - '-1' pragma: @@ -1094,14 +956,14 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/24af16fc-c538-4ac4-b6c1-86e7f289a2c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/27a408bb-e57d-45e0-9058-98d74d00660d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fc16af24-38c5-c44a-b6c1-86e7f289a2c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:03.4366666Z\"\n }" + string: "{\n \"name\": \"bb08a427-7de5-e045-9058-98d74d00660d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:22:48.0733333Z\"\n }" headers: cache-control: - no-cache @@ -1110,7 +972,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:21:33 GMT + - Wed, 01 Dec 2021 14:23:48 GMT expires: - '-1' pragma: @@ -1142,14 +1004,14 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/24af16fc-c538-4ac4-b6c1-86e7f289a2c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/27a408bb-e57d-45e0-9058-98d74d00660d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fc16af24-38c5-c44a-b6c1-86e7f289a2c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:03.4366666Z\"\n }" + string: "{\n \"name\": \"bb08a427-7de5-e045-9058-98d74d00660d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:22:48.0733333Z\"\n }" headers: cache-control: - no-cache @@ -1158,7 +1020,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:22:03 GMT + - Wed, 01 Dec 2021 14:24:18 GMT expires: - '-1' pragma: @@ -1190,14 +1052,14 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/24af16fc-c538-4ac4-b6c1-86e7f289a2c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/27a408bb-e57d-45e0-9058-98d74d00660d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fc16af24-38c5-c44a-b6c1-86e7f289a2c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:20:03.4366666Z\"\n }" + string: "{\n \"name\": \"bb08a427-7de5-e045-9058-98d74d00660d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:22:48.0733333Z\"\n }" headers: cache-control: - no-cache @@ -1206,7 +1068,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:22:32 GMT + - Wed, 01 Dec 2021 14:24:48 GMT expires: - '-1' pragma: @@ -1238,15 +1100,15 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/24af16fc-c538-4ac4-b6c1-86e7f289a2c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/27a408bb-e57d-45e0-9058-98d74d00660d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fc16af24-38c5-c44a-b6c1-86e7f289a2c5\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:20:03.4366666Z\",\n \"endTime\": - \"2021-10-19T07:22:49.1418719Z\"\n }" + string: "{\n \"name\": \"bb08a427-7de5-e045-9058-98d74d00660d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:22:48.0733333Z\",\n \"endTime\": + \"2021-12-01T14:24:57.9973884Z\"\n }" headers: cache-control: - no-cache @@ -1255,7 +1117,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:23:03 GMT + - Wed, 01 Dec 2021 14:25:18 GMT expires: - '-1' pragma: @@ -1287,10 +1149,10 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/24af16fc-c538-4ac4-b6c1-86e7f289a2c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/27a408bb-e57d-45e0-9058-98d74d00660d?api-version=2016-03-30 response: body: string: '' @@ -1300,11 +1162,11 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:23:03 GMT + - Wed, 01 Dec 2021 14:25:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/24af16fc-c538-4ac4-b6c1-86e7f289a2c5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/27a408bb-e57d-45e0-9058-98d74d00660d?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_label_msi.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_label_msi.yaml index 86d74357e0c..42b05cac1d8 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_label_msi.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_label_msi.yaml @@ -1,58 +1,19 @@ interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.11 (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-08-17T05:13:57Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '313' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 17 Aug 2021 05:13:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": - [{"count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux", "type": "VirtualMachineScaleSets", + [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", + "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCdSf3GlgnRl9XJiQavZ1p3M3+DN3eFnnpk9B1UH3JQZW/5sePzrG3ucDRcIDPTBItawvuyHqv1RK4AhAyT9TI4aG8l5amgnCzktgNhqibqJhQCdxkoIJdxcUwCgV+McodZ5IgVjKj9E4XXG68XAYCwo8cUPbyq25BkhWBK4Qmn7DT1SnB4eZdmA9tIO46FbKXvV1p8U9CixwSSKTmnTfq+DMRBX016k9UFWewREFR6+vu9bosp4MDEWgx3beSJoUty+LpOfCSzA9i5z0R5/LF3dvF0fiKWfCu+oztDmT39Zvdh0GPqfJTnPylHlkSJMXP6MItFrOKWZukhhFjCIZDz - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}}}' + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -63,59 +24,62 @@ interactions: Connection: - keep-alive Content-Length: - - '1252' + - '1730' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.7\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1a36a607.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-1a36a607.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-eacbf0f3.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-eacbf0f3.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Creating\",\n + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.7\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {},\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"enableFIPS\": false\n + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCdSf3GlgnRl9XJiQavZ1p3M3+DN3eFnnpk9B1UH3JQZW/5sePzrG3ucDRcIDPTBItawvuyHqv1RK4AhAyT9TI4aG8l5amgnCzktgNhqibqJhQCdxkoIJdxcUwCgV+McodZ5IgVjKj9E4XXG68XAYCwo8cUPbyq25BkhWBK4Qmn7DT1SnB4eZdmA9tIO46FbKXvV1p8U9CixwSSKTmnTfq+DMRBX016k9UFWewREFR6+vu9bosp4MDEWgx3beSJoUty+LpOfCSzA9i5z0R5/LF3dvF0fiKWfCu+oztDmT39Zvdh0GPqfJTnPylHlkSJMXP6MItFrOKWZukhhFjCIZDz - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n - \ },\n \"maxAgentPools\": 100\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n - \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c688756d-100b-4399-ac5f-826928bada72?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e961833a-bb4a-43be-97e8-3a7e2d4f2abd?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2599' + - '3182' content-type: - application/json date: - - Tue, 17 Aug 2021 05:14:05 GMT + - Wed, 01 Dec 2021 16:28:53 GMT expires: - '-1' pragma: @@ -127,7 +91,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -145,14 +109,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c688756d-100b-4399-ac5f-826928bada72?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e961833a-bb4a-43be-97e8-3a7e2d4f2abd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6d7588c6-0b10-9943-ac5f-826928bada72\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-08-17T05:14:04.6366666Z\"\n }" + string: "{\n \"name\": \"3a8361e9-4abb-be43-97e8-3a7e2d4f2abd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:28:54.1233333Z\"\n }" headers: cache-control: - no-cache @@ -161,7 +125,7 @@ interactions: content-type: - application/json date: - - Tue, 17 Aug 2021 05:14:34 GMT + - Wed, 01 Dec 2021 16:29:24 GMT expires: - '-1' pragma: @@ -193,14 +157,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c688756d-100b-4399-ac5f-826928bada72?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e961833a-bb4a-43be-97e8-3a7e2d4f2abd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6d7588c6-0b10-9943-ac5f-826928bada72\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-08-17T05:14:04.6366666Z\"\n }" + string: "{\n \"name\": \"3a8361e9-4abb-be43-97e8-3a7e2d4f2abd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:28:54.1233333Z\"\n }" headers: cache-control: - no-cache @@ -209,7 +173,7 @@ interactions: content-type: - application/json date: - - Tue, 17 Aug 2021 05:15:04 GMT + - Wed, 01 Dec 2021 16:29:54 GMT expires: - '-1' pragma: @@ -241,14 +205,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c688756d-100b-4399-ac5f-826928bada72?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e961833a-bb4a-43be-97e8-3a7e2d4f2abd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6d7588c6-0b10-9943-ac5f-826928bada72\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-08-17T05:14:04.6366666Z\"\n }" + string: "{\n \"name\": \"3a8361e9-4abb-be43-97e8-3a7e2d4f2abd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:28:54.1233333Z\"\n }" headers: cache-control: - no-cache @@ -257,7 +221,7 @@ interactions: content-type: - application/json date: - - Tue, 17 Aug 2021 05:15:34 GMT + - Wed, 01 Dec 2021 16:30:24 GMT expires: - '-1' pragma: @@ -289,14 +253,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c688756d-100b-4399-ac5f-826928bada72?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e961833a-bb4a-43be-97e8-3a7e2d4f2abd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6d7588c6-0b10-9943-ac5f-826928bada72\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-08-17T05:14:04.6366666Z\"\n }" + string: "{\n \"name\": \"3a8361e9-4abb-be43-97e8-3a7e2d4f2abd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:28:54.1233333Z\"\n }" headers: cache-control: - no-cache @@ -305,7 +269,7 @@ interactions: content-type: - application/json date: - - Tue, 17 Aug 2021 05:16:04 GMT + - Wed, 01 Dec 2021 16:30:54 GMT expires: - '-1' pragma: @@ -337,14 +301,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c688756d-100b-4399-ac5f-826928bada72?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e961833a-bb4a-43be-97e8-3a7e2d4f2abd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6d7588c6-0b10-9943-ac5f-826928bada72\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-08-17T05:14:04.6366666Z\"\n }" + string: "{\n \"name\": \"3a8361e9-4abb-be43-97e8-3a7e2d4f2abd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:28:54.1233333Z\"\n }" headers: cache-control: - no-cache @@ -353,7 +317,7 @@ interactions: content-type: - application/json date: - - Tue, 17 Aug 2021 05:16:34 GMT + - Wed, 01 Dec 2021 16:31:25 GMT expires: - '-1' pragma: @@ -385,15 +349,15 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c688756d-100b-4399-ac5f-826928bada72?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e961833a-bb4a-43be-97e8-3a7e2d4f2abd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6d7588c6-0b10-9943-ac5f-826928bada72\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-08-17T05:14:04.6366666Z\",\n \"endTime\": - \"2021-08-17T05:16:37.4745994Z\"\n }" + string: "{\n \"name\": \"3a8361e9-4abb-be43-97e8-3a7e2d4f2abd\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T16:28:54.1233333Z\",\n \"endTime\": + \"2021-12-01T16:31:46.2511245Z\"\n }" headers: cache-control: - no-cache @@ -402,7 +366,7 @@ interactions: content-type: - application/json date: - - Tue, 17 Aug 2021 05:17:05 GMT + - Wed, 01 Dec 2021 16:31:55 GMT expires: - '-1' pragma: @@ -434,55 +398,59 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1055-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.7\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1a36a607.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-1a36a607.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-eacbf0f3.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-eacbf0f3.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.7\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {},\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"enableFIPS\": false\n + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCdSf3GlgnRl9XJiQavZ1p3M3+DN3eFnnpk9B1UH3JQZW/5sePzrG3ucDRcIDPTBItawvuyHqv1RK4AhAyT9TI4aG8l5amgnCzktgNhqibqJhQCdxkoIJdxcUwCgV+McodZ5IgVjKj9E4XXG68XAYCwo8cUPbyq25BkhWBK4Qmn7DT1SnB4eZdmA9tIO46FbKXvV1p8U9CixwSSKTmnTfq+DMRBX016k9UFWewREFR6+vu9bosp4MDEWgx3beSJoUty+LpOfCSzA9i5z0R5/LF3dvF0fiKWfCu+oztDmT39Zvdh0GPqfJTnPylHlkSJMXP6MItFrOKWZukhhFjCIZDz - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/55ff474a-8dcc-47fc-9ba1-2caee875bbcc\"\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7464a065-5f6c-44e4-a31c-bf712962f22a\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3262' + - '3845' content-type: - application/json date: - - Tue, 17 Aug 2021 05:17:05 GMT + - Wed, 01 Dec 2021 16:31:55 GMT expires: - '-1' pragma: @@ -514,55 +482,59 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.28.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1056-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.7\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1a36a607.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-1a36a607.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-eacbf0f3.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-eacbf0f3.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.7\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n - \ \"label1\": \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"enableFIPS\": false\n + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCdSf3GlgnRl9XJiQavZ1p3M3+DN3eFnnpk9B1UH3JQZW/5sePzrG3ucDRcIDPTBItawvuyHqv1RK4AhAyT9TI4aG8l5amgnCzktgNhqibqJhQCdxkoIJdxcUwCgV+McodZ5IgVjKj9E4XXG68XAYCwo8cUPbyq25BkhWBK4Qmn7DT1SnB4eZdmA9tIO46FbKXvV1p8U9CixwSSKTmnTfq+DMRBX016k9UFWewREFR6+vu9bosp4MDEWgx3beSJoUty+LpOfCSzA9i5z0R5/LF3dvF0fiKWfCu+oztDmT39Zvdh0GPqfJTnPylHlkSJMXP6MItFrOKWZukhhFjCIZDz - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/55ff474a-8dcc-47fc-9ba1-2caee875bbcc\"\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7464a065-5f6c-44e4-a31c-bf712962f22a\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '2769' + - '3845' content-type: - application/json date: - - Tue, 07 Sep 2021 09:00:01 GMT + - Wed, 01 Dec 2021 16:31:57 GMT expires: - '-1' pragma: @@ -581,17 +553,27 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": - [{"count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux", "type": "VirtualMachineScaleSets", - "nodeLabels": {"label1": "value1", "label2": "value2"}, "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCdSf3GlgnRl9XJiQavZ1p3M3+DN3eFnnpk9B1UH3JQZW/5sePzrG3ucDRcIDPTBItawvuyHqv1RK4AhAyT9TI4aG8l5amgnCzktgNhqibqJhQCdxkoIJdxcUwCgV+McodZ5IgVjKj9E4XXG68XAYCwo8cUPbyq25BkhWBK4Qmn7DT1SnB4eZdmA9tIO46FbKXvV1p8U9CixwSSKTmnTfq+DMRBX016k9UFWewREFR6+vu9bosp4MDEWgx3beSJoUty+LpOfCSzA9i5z0R5/LF3dvF0fiKWfCu+oztDmT39Zvdh0GPqfJTnPylHlkSJMXP6MItFrOKWZukhhFjCIZDz - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}}}' + body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": + "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": + "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "nodeLabels": + {"label1": "value1", "label2": "value2"}, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7464a065-5f6c-44e4-a31c-bf712962f22a"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -602,63 +584,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1813' + - '2760' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.28.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1056-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.7\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1a36a607.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-1a36a607.portal.hcp.westus2.azmk8s.io\",\n + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-eacbf0f3.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-eacbf0f3.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.7\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n - \ \"label1\": \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n + \ \"label1\": \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": + \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCdSf3GlgnRl9XJiQavZ1p3M3+DN3eFnnpk9B1UH3JQZW/5sePzrG3ucDRcIDPTBItawvuyHqv1RK4AhAyT9TI4aG8l5amgnCzktgNhqibqJhQCdxkoIJdxcUwCgV+McodZ5IgVjKj9E4XXG68XAYCwo8cUPbyq25BkhWBK4Qmn7DT1SnB4eZdmA9tIO46FbKXvV1p8U9CixwSSKTmnTfq+DMRBX016k9UFWewREFR6+vu9bosp4MDEWgx3beSJoUty+LpOfCSzA9i5z0R5/LF3dvF0fiKWfCu+oztDmT39Zvdh0GPqfJTnPylHlkSJMXP6MItFrOKWZukhhFjCIZDz - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/55ff474a-8dcc-47fc-9ba1-2caee875bbcc\"\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7464a065-5f6c-44e4-a31c-bf712962f22a\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/727050cd-d6db-4d55-8fda-9d49f1de499d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecfaf328-6d84-4869-bdfc-cfa2f8b0dafc?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2896' + - '3923' content-type: - application/json date: - - Tue, 07 Sep 2021 09:00:07 GMT + - Wed, 01 Dec 2021 16:32:00 GMT expires: - '-1' pragma: @@ -674,7 +661,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 200 message: OK @@ -692,23 +679,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.28.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1056-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/727050cd-d6db-4d55-8fda-9d49f1de499d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecfaf328-6d84-4869-bdfc-cfa2f8b0dafc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cd507072-dbd6-554d-8fda-9d49f1de499d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-09-07T09:00:07.4966666Z\"\n }" + string: "{\n \"name\": \"28f3faec-846d-6948-bdfc-cfa2f8b0dafc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:32:00.31Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 07 Sep 2021 09:00:38 GMT + - Wed, 01 Dec 2021 16:32:30 GMT expires: - '-1' pragma: @@ -740,23 +727,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.28.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1056-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/727050cd-d6db-4d55-8fda-9d49f1de499d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecfaf328-6d84-4869-bdfc-cfa2f8b0dafc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cd507072-dbd6-554d-8fda-9d49f1de499d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-09-07T09:00:07.4966666Z\"\n }" + string: "{\n \"name\": \"28f3faec-846d-6948-bdfc-cfa2f8b0dafc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:32:00.31Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 07 Sep 2021 09:01:08 GMT + - Wed, 01 Dec 2021 16:33:01 GMT expires: - '-1' pragma: @@ -788,24 +775,24 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.28.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1056-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/727050cd-d6db-4d55-8fda-9d49f1de499d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecfaf328-6d84-4869-bdfc-cfa2f8b0dafc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cd507072-dbd6-554d-8fda-9d49f1de499d\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-09-07T09:00:07.4966666Z\",\n \"endTime\": - \"2021-09-07T09:01:31.699616Z\"\n }" + string: "{\n \"name\": \"28f3faec-846d-6948-bdfc-cfa2f8b0dafc\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T16:32:00.31Z\",\n \"endTime\": + \"2021-12-01T16:33:05.9146037Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '165' content-type: - application/json date: - - Tue, 07 Sep 2021 09:01:38 GMT + - Wed, 01 Dec 2021 16:33:32 GMT expires: - '-1' pragma: @@ -837,55 +824,60 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.28.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1056-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.7\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1a36a607.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-1a36a607.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-eacbf0f3.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-eacbf0f3.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.7\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n - \ \"label1\": \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n + \ \"label1\": \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": + \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCdSf3GlgnRl9XJiQavZ1p3M3+DN3eFnnpk9B1UH3JQZW/5sePzrG3ucDRcIDPTBItawvuyHqv1RK4AhAyT9TI4aG8l5amgnCzktgNhqibqJhQCdxkoIJdxcUwCgV+McodZ5IgVjKj9E4XXG68XAYCwo8cUPbyq25BkhWBK4Qmn7DT1SnB4eZdmA9tIO46FbKXvV1p8U9CixwSSKTmnTfq+DMRBX016k9UFWewREFR6+vu9bosp4MDEWgx3beSJoUty+LpOfCSzA9i5z0R5/LF3dvF0fiKWfCu+oztDmT39Zvdh0GPqfJTnPylHlkSJMXP6MItFrOKWZukhhFjCIZDz - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/55ff474a-8dcc-47fc-9ba1-2caee875bbcc\"\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7464a065-5f6c-44e4-a31c-bf712962f22a\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3293' + - '3925' content-type: - application/json date: - - Tue, 07 Sep 2021 09:01:38 GMT + - Wed, 01 Dec 2021 16:33:32 GMT expires: - '-1' pragma: @@ -917,55 +909,60 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.28.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1056-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.7\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1a36a607.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-1a36a607.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-eacbf0f3.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-eacbf0f3.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.7\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n - \ \"label1\": \"value11\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n + \ \"label1\": \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": + \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"enableFIPS\": false\n + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCdSf3GlgnRl9XJiQavZ1p3M3+DN3eFnnpk9B1UH3JQZW/5sePzrG3ucDRcIDPTBItawvuyHqv1RK4AhAyT9TI4aG8l5amgnCzktgNhqibqJhQCdxkoIJdxcUwCgV+McodZ5IgVjKj9E4XXG68XAYCwo8cUPbyq25BkhWBK4Qmn7DT1SnB4eZdmA9tIO46FbKXvV1p8U9CixwSSKTmnTfq+DMRBX016k9UFWewREFR6+vu9bosp4MDEWgx3beSJoUty+LpOfCSzA9i5z0R5/LF3dvF0fiKWfCu+oztDmT39Zvdh0GPqfJTnPylHlkSJMXP6MItFrOKWZukhhFjCIZDz - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/55ff474a-8dcc-47fc-9ba1-2caee875bbcc\"\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7464a065-5f6c-44e4-a31c-bf712962f22a\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '2769' + - '3925' content-type: - application/json date: - - Tue, 07 Sep 2021 09:00:01 GMT + - Wed, 01 Dec 2021 16:33:33 GMT expires: - '-1' pragma: @@ -984,17 +981,27 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": - [{"count": 1, "vmSize": "Standard_DS2_v2", "osType": "Linux", "type": "VirtualMachineScaleSets", - "nodeLabels": {"label1": "value11"}, "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCdSf3GlgnRl9XJiQavZ1p3M3+DN3eFnnpk9B1UH3JQZW/5sePzrG3ucDRcIDPTBItawvuyHqv1RK4AhAyT9TI4aG8l5amgnCzktgNhqibqJhQCdxkoIJdxcUwCgV+McodZ5IgVjKj9E4XXG68XAYCwo8cUPbyq25BkhWBK4Qmn7DT1SnB4eZdmA9tIO46FbKXvV1p8U9CixwSSKTmnTfq+DMRBX016k9UFWewREFR6+vu9bosp4MDEWgx3beSJoUty+LpOfCSzA9i5z0R5/LF3dvF0fiKWfCu+oztDmT39Zvdh0GPqfJTnPylHlkSJMXP6MItFrOKWZukhhFjCIZDz - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}}}' + body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": + "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": + "OCIContainer", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "nodeLabels": + {"label1": "value11"}, "enableEncryptionAtHost": false, "enableUltraSSD": false, + "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7464a065-5f6c-44e4-a31c-bf712962f22a"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -1005,63 +1012,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1813' + - '2741' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.28.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1056-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.7\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1a36a607.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-1a36a607.portal.hcp.westus2.azmk8s.io\",\n + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-eacbf0f3.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-eacbf0f3.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.7\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n - \ \"label1\": \"value11\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCdSf3GlgnRl9XJiQavZ1p3M3+DN3eFnnpk9B1UH3JQZW/5sePzrG3ucDRcIDPTBItawvuyHqv1RK4AhAyT9TI4aG8l5amgnCzktgNhqibqJhQCdxkoIJdxcUwCgV+McodZ5IgVjKj9E4XXG68XAYCwo8cUPbyq25BkhWBK4Qmn7DT1SnB4eZdmA9tIO46FbKXvV1p8U9CixwSSKTmnTfq+DMRBX016k9UFWewREFR6+vu9bosp4MDEWgx3beSJoUty+LpOfCSzA9i5z0R5/LF3dvF0fiKWfCu+oztDmT39Zvdh0GPqfJTnPylHlkSJMXP6MItFrOKWZukhhFjCIZDz - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n + \ \"label1\": \"value11\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/55ff474a-8dcc-47fc-9ba1-2caee875bbcc\"\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7464a065-5f6c-44e4-a31c-bf712962f22a\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/727050cd-d6db-4d55-8fda-9d49f1de499d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/89d7ff35-1814-4d99-b86c-28c3beac9045?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2896' + - '3898' content-type: - application/json date: - - Tue, 07 Sep 2021 09:00:07 GMT + - Wed, 01 Dec 2021 16:33:37 GMT expires: - '-1' pragma: @@ -1077,7 +1088,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -1095,23 +1106,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.28.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1056-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/727050cd-d6db-4d55-8fda-9d49f1de499d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/89d7ff35-1814-4d99-b86c-28c3beac9045?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cd507072-dbd6-554d-8fda-9d49f1de499d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-09-07T09:00:07.4966666Z\"\n }" + string: "{\n \"name\": \"35ffd789-1418-994d-b86c-28c3beac9045\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:33:37.47Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 07 Sep 2021 09:00:38 GMT + - Wed, 01 Dec 2021 16:34:08 GMT expires: - '-1' pragma: @@ -1143,23 +1154,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.28.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1056-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/727050cd-d6db-4d55-8fda-9d49f1de499d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/89d7ff35-1814-4d99-b86c-28c3beac9045?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cd507072-dbd6-554d-8fda-9d49f1de499d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-09-07T09:00:07.4966666Z\"\n }" + string: "{\n \"name\": \"35ffd789-1418-994d-b86c-28c3beac9045\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T16:33:37.47Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 07 Sep 2021 09:01:08 GMT + - Wed, 01 Dec 2021 16:34:38 GMT expires: - '-1' pragma: @@ -1191,24 +1202,24 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.28.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1056-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/727050cd-d6db-4d55-8fda-9d49f1de499d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/89d7ff35-1814-4d99-b86c-28c3beac9045?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cd507072-dbd6-554d-8fda-9d49f1de499d\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-09-07T09:00:07.4966666Z\",\n \"endTime\": - \"2021-09-07T09:01:31.699616Z\"\n }" + string: "{\n \"name\": \"35ffd789-1418-994d-b86c-28c3beac9045\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T16:33:37.47Z\",\n \"endTime\": + \"2021-12-01T16:34:42.2276916Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '165' content-type: - application/json date: - - Tue, 07 Sep 2021 09:01:38 GMT + - Wed, 01 Dec 2021 16:35:08 GMT expires: - '-1' pragma: @@ -1240,55 +1251,59 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.28.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1056-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.7\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1a36a607.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-1a36a607.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-eacbf0f3.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-eacbf0f3.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.7\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n - \ \"label1\": \"value11\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.07.25\",\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCdSf3GlgnRl9XJiQavZ1p3M3+DN3eFnnpk9B1UH3JQZW/5sePzrG3ucDRcIDPTBItawvuyHqv1RK4AhAyT9TI4aG8l5amgnCzktgNhqibqJhQCdxkoIJdxcUwCgV+McodZ5IgVjKj9E4XXG68XAYCwo8cUPbyq25BkhWBK4Qmn7DT1SnB4eZdmA9tIO46FbKXvV1p8U9CixwSSKTmnTfq+DMRBX016k9UFWewREFR6+vu9bosp4MDEWgx3beSJoUty+LpOfCSzA9i5z0R5/LF3dvF0fiKWfCu+oztDmT39Zvdh0GPqfJTnPylHlkSJMXP6MItFrOKWZukhhFjCIZDz - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n + \ \"label1\": \"value11\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/55ff474a-8dcc-47fc-9ba1-2caee875bbcc\"\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7464a065-5f6c-44e4-a31c-bf712962f22a\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3293' + - '3900' content-type: - application/json date: - - Tue, 07 Sep 2021 09:01:38 GMT + - Wed, 01 Dec 2021 16:35:08 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_to_msi_cluster.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_to_msi_cluster.yaml old mode 100755 new mode 100644 index 6c5538ea68b..d84972456cd --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_to_msi_cluster.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_to_msi_cluster.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:16:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:17:11Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '313' + - '316' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:16:50 GMT + - Wed, 01 Dec 2021 14:17:12 GMT expires: - '-1' pragma: @@ -42,19 +42,20 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestafw376rvo-8ecadf", + body: '{"location": "westeurope", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestw6a3jln5y-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -65,61 +66,63 @@ interactions: Connection: - keep-alive Content-Length: - - '1391' + - '1751' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"westeurope\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestafw376rvo-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestafw376rvo-8ecadf-8c55fc67.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestafw376rvo-8ecadf-8c55fc67.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestw6a3jln5y-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestw6a3jln5y-8ecadf-2ebd0635.hcp.westeurope.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestw6a3jln5y-8ecadf-2ebd0635.portal.hcp.westeurope.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_westeurope\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/46046437-2930-443e-b9c1-5f5b586c6368?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/b04d185c-6309-46f7-b987-63ad372ab1b2?api-version=2017-08-31 cache-control: - no-cache content-length: - - '2778' + - '3248' content-type: - application/json date: - - Tue, 19 Oct 2021 07:16:52 GMT + - Wed, 01 Dec 2021 14:17:20 GMT expires: - '-1' pragma: @@ -131,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1197' status: code: 201 message: Created @@ -149,14 +152,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/46046437-2930-443e-b9c1-5f5b586c6368?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/b04d185c-6309-46f7-b987-63ad372ab1b2?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"37640446-3029-3e44-b9c1-5f5b586c6368\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:16:53.67Z\"\n }" + string: "{\n \"name\": \"5c184db0-0963-f746-b987-63ad372ab1b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:19.94Z\"\n }" headers: cache-control: - no-cache @@ -165,7 +168,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:17:23 GMT + - Wed, 01 Dec 2021 14:17:50 GMT expires: - '-1' pragma: @@ -197,14 +200,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/46046437-2930-443e-b9c1-5f5b586c6368?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/b04d185c-6309-46f7-b987-63ad372ab1b2?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"37640446-3029-3e44-b9c1-5f5b586c6368\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:16:53.67Z\"\n }" + string: "{\n \"name\": \"5c184db0-0963-f746-b987-63ad372ab1b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:19.94Z\"\n }" headers: cache-control: - no-cache @@ -213,7 +216,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:17:53 GMT + - Wed, 01 Dec 2021 14:18:20 GMT expires: - '-1' pragma: @@ -245,14 +248,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/46046437-2930-443e-b9c1-5f5b586c6368?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/b04d185c-6309-46f7-b987-63ad372ab1b2?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"37640446-3029-3e44-b9c1-5f5b586c6368\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:16:53.67Z\"\n }" + string: "{\n \"name\": \"5c184db0-0963-f746-b987-63ad372ab1b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:19.94Z\"\n }" headers: cache-control: - no-cache @@ -261,7 +264,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:18:23 GMT + - Wed, 01 Dec 2021 14:18:51 GMT expires: - '-1' pragma: @@ -293,14 +296,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/46046437-2930-443e-b9c1-5f5b586c6368?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/b04d185c-6309-46f7-b987-63ad372ab1b2?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"37640446-3029-3e44-b9c1-5f5b586c6368\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:16:53.67Z\"\n }" + string: "{\n \"name\": \"5c184db0-0963-f746-b987-63ad372ab1b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:19.94Z\"\n }" headers: cache-control: - no-cache @@ -309,7 +312,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:18:53 GMT + - Wed, 01 Dec 2021 14:19:21 GMT expires: - '-1' pragma: @@ -341,14 +344,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/46046437-2930-443e-b9c1-5f5b586c6368?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/b04d185c-6309-46f7-b987-63ad372ab1b2?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"37640446-3029-3e44-b9c1-5f5b586c6368\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:16:53.67Z\"\n }" + string: "{\n \"name\": \"5c184db0-0963-f746-b987-63ad372ab1b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:19.94Z\"\n }" headers: cache-control: - no-cache @@ -357,7 +360,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:19:23 GMT + - Wed, 01 Dec 2021 14:19:51 GMT expires: - '-1' pragma: @@ -389,15 +392,63 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/46046437-2930-443e-b9c1-5f5b586c6368?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/b04d185c-6309-46f7-b987-63ad372ab1b2?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"37640446-3029-3e44-b9c1-5f5b586c6368\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:16:53.67Z\",\n \"endTime\": - \"2021-10-19T07:19:45.1977671Z\"\n }" + string: "{\n \"name\": \"5c184db0-0963-f746-b987-63ad372ab1b2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:19.94Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:20:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/b04d185c-6309-46f7-b987-63ad372ab1b2?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"5c184db0-0963-f746-b987-63ad372ab1b2\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:17:19.94Z\",\n \"endTime\": + \"2021-12-01T14:20:40.9304283Z\"\n }" headers: cache-control: - no-cache @@ -406,7 +457,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:19:53 GMT + - Wed, 01 Dec 2021 14:20:52 GMT expires: - '-1' pragma: @@ -438,57 +489,60 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"westeurope\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestafw376rvo-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestafw376rvo-8ecadf-8c55fc67.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestafw376rvo-8ecadf-8c55fc67.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestw6a3jln5y-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestw6a3jln5y-8ecadf-2ebd0635.hcp.westeurope.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestw6a3jln5y-8ecadf-2ebd0635.portal.hcp.westeurope.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_westeurope\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/48c594a4-6009-4a99-bb71-4fd8a7dbb8ab\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.Network/publicIPAddresses/caf77ffa-e423-437f-a225-30f0b2242d49\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3917' content-type: - application/json date: - - Tue, 19 Oct 2021 07:19:53 GMT + - Wed, 01 Dec 2021 14:20:52 GMT expires: - '-1' pragma: @@ -520,57 +574,60 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"westeurope\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestafw376rvo-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestafw376rvo-8ecadf-8c55fc67.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestafw376rvo-8ecadf-8c55fc67.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestw6a3jln5y-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestw6a3jln5y-8ecadf-2ebd0635.hcp.westeurope.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestw6a3jln5y-8ecadf-2ebd0635.portal.hcp.westeurope.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_westeurope\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/48c594a4-6009-4a99-bb71-4fd8a7dbb8ab\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.Network/publicIPAddresses/caf77ffa-e423-437f-a225-30f0b2242d49\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3917' content-type: - application/json date: - - Tue, 19 Oct 2021 07:19:55 GMT + - Wed, 01 Dec 2021 14:20:54 GMT expires: - '-1' pragma: @@ -589,26 +646,27 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": + body: '{"location": "westeurope", "sku": {"name": "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitestafw376rvo-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestw6a3jln5y-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westeurope", "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/48c594a4-6009-4a99-bb71-4fd8a7dbb8ab"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.Network/publicIPAddresses/caf77ffa-e423-437f-a225-30f0b2242d49"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -619,65 +677,68 @@ interactions: Connection: - keep-alive Content-Length: - - '2311' + - '2734' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"westeurope\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestafw376rvo-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestafw376rvo-8ecadf-8c55fc67.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestafw376rvo-8ecadf-8c55fc67.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestw6a3jln5y-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestw6a3jln5y-8ecadf-2ebd0635.hcp.westeurope.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestw6a3jln5y-8ecadf-2ebd0635.portal.hcp.westeurope.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_westeurope\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/48c594a4-6009-4a99-bb71-4fd8a7dbb8ab\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.Network/publicIPAddresses/caf77ffa-e423-437f-a225-30f0b2242d49\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8c8688-adf0-461d-a1a6-fc94593f653f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/2b1ffe2e-3523-4c5d-a571-703669bca2c4?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3439' + - '3915' content-type: - application/json date: - - Tue, 19 Oct 2021 07:19:57 GMT + - Wed, 01 Dec 2021 14:20:58 GMT expires: - '-1' pragma: @@ -693,7 +754,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1192' status: code: 200 message: OK @@ -711,14 +772,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8c8688-adf0-461d-a1a6-fc94593f653f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/2b1ffe2e-3523-4c5d-a571-703669bca2c4?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"88868c4f-f0ad-1d46-a1a6-fc94593f653f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:58.3133333Z\"\n }" + string: "{\n \"name\": \"2efe1f2b-2335-5d4c-a571-703669bca2c4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:57.8466666Z\"\n }" headers: cache-control: - no-cache @@ -727,7 +788,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:28 GMT + - Wed, 01 Dec 2021 14:21:28 GMT expires: - '-1' pragma: @@ -759,24 +820,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8c8688-adf0-461d-a1a6-fc94593f653f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/2b1ffe2e-3523-4c5d-a571-703669bca2c4?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"88868c4f-f0ad-1d46-a1a6-fc94593f653f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:19:58.3133333Z\",\n \"endTime\": - \"2021-10-19T07:20:57.185711Z\"\n }" + string: "{\n \"name\": \"2efe1f2b-2335-5d4c-a571-703669bca2c4\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:20:57.8466666Z\",\n \"endTime\": + \"2021-12-01T14:21:59.8436026Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:58 GMT + - Wed, 01 Dec 2021 14:21:59 GMT expires: - '-1' pragma: @@ -808,57 +869,60 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"westeurope\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestafw376rvo-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestafw376rvo-8ecadf-8c55fc67.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestafw376rvo-8ecadf-8c55fc67.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestw6a3jln5y-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestw6a3jln5y-8ecadf-2ebd0635.hcp.westeurope.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestw6a3jln5y-8ecadf-2ebd0635.portal.hcp.westeurope.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_westeurope\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/48c594a4-6009-4a99-bb71-4fd8a7dbb8ab\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.Network/publicIPAddresses/caf77ffa-e423-437f-a225-30f0b2242d49\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3441' + - '3917' content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:58 GMT + - Wed, 01 Dec 2021 14:22:00 GMT expires: - '-1' pragma: @@ -892,8 +956,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -901,17 +965,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ef37235-faf8-40ff-9bfb-59fb280e5df4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/f22eae46-46b8-4472-97f4-9c4a78648515?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 07:21:01 GMT + - Wed, 01 Dec 2021 14:22:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/2ef37235-faf8-40ff-9bfb-59fb280e5df4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operationresults/f22eae46-46b8-4472-97f4-9c4a78648515?api-version=2017-08-31 pragma: - no-cache server: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_to_msi_cluster_with_addons.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_to_msi_cluster_with_addons.yaml old mode 100755 new mode 100644 index 0db932a0bca..b46966389de --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_to_msi_cluster_with_addons.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_to_msi_cluster_with_addons.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:06:46Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:22:06Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '313' + - '316' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:06:47 GMT + - Wed, 01 Dec 2021 14:22:07 GMT expires: - '-1' pragma: @@ -55,21 +55,21 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:06:46Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:22:06Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '313' + - '316' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:06:47 GMT + - Wed, 01 Dec 2021 14:22:07 GMT expires: - '-1' pragma: @@ -97,9 +97,9 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WEU?api-version=2021-04-01 response: body: string: '' @@ -109,7 +109,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Oct 2021 07:06:48 GMT + - Wed, 01 Dec 2021 14:22:08 GMT expires: - '-1' pragma: @@ -135,26 +135,26 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2?api-version=2015-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WEU/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WEU?api-version=2015-11-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": - \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"ea401021-3198-45bf-881b-8209cc706412\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"sku\": {\r\n \"name\": \"standalone\",\r\n \"lastSkuUpdate\": - \"Mon, 02 Aug 2021 07:30:13 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \"Wed, 28 Jul 2021 04:12:15 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": - \"Tue, 19 Oct 2021 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \"Wed, 01 Dec 2021 16:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": - \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n - \ \"modifiedDate\": \"Mon, 18 Oct 2021 03:41:31 GMT\"\r\n },\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n - \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n + \"Enabled\",\r\n \"createdDate\": \"Wed, 28 Jul 2021 04:12:15 GMT\",\r\n + \ \"modifiedDate\": \"Wed, 01 Dec 2021 03:31:38 GMT\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-weu\",\r\n + \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WEU\",\r\n \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": - \"westus2\"\r\n}" + \"westeurope\"\r\n}" headers: cache-control: - no-cache @@ -163,7 +163,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:47 GMT + - Wed, 01 Dec 2021 14:22:08 GMT pragma: - no-cache server: @@ -197,26 +197,26 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2?api-version=2015-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-weu?api-version=2015-11-01-preview response: body: string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": - \"e897efd7-55de-4860-ac51-7403ccb7e3cf\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"ea401021-3198-45bf-881b-8209cc706412\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"sku\": {\r\n \"name\": \"standalone\",\r\n \"lastSkuUpdate\": - \"Mon, 02 Aug 2021 07:30:13 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \"Wed, 28 Jul 2021 04:12:15 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": - \"Tue, 19 Oct 2021 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \"Wed, 01 Dec 2021 16:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": - \"Enabled\",\r\n \"createdDate\": \"Mon, 02 Aug 2021 07:30:13 GMT\",\r\n - \ \"modifiedDate\": \"Mon, 18 Oct 2021 03:41:31 GMT\"\r\n },\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\r\n - \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\",\r\n + \"Enabled\",\r\n \"createdDate\": \"Wed, 28 Jul 2021 04:12:15 GMT\",\r\n + \ \"modifiedDate\": \"Wed, 01 Dec 2021 03:31:38 GMT\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-weu\",\r\n + \ \"name\": \"DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WEU\",\r\n \ \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": - \"westus2\"\r\n}" + \"westeurope\"\r\n}" headers: cache-control: - no-cache @@ -225,7 +225,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:48 GMT + - Wed, 01 Dec 2021 14:22:09 GMT pragma: - no-cache server: @@ -264,9 +264,9 @@ interactions: "[Concat(''ContainerInsights'', ''('', split(parameters(''workspaceResourceId''),''/'')[8], '')'')]", "product": "[Concat(''OMSGallery/'', ''ContainerInsights'')]", "promotionCode": "", "publisher": "Microsoft"}}]}, "parameters": {}}}]}, "parameters": {"workspaceResourceId": - {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"}, - "workspaceRegion": {"value": "westus2"}, "solutionDeploymentName": {"value": - "ContainerInsights-1634627209124"}}, "mode": "incremental"}}' + {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-weu"}, + "workspaceRegion": {"value": "westeurope"}, "solutionDeploymentName": {"value": + "ContainerInsights-1638368530351"}}, "mode": "incremental"}}' headers: Accept: - application/json @@ -277,21 +277,21 @@ interactions: Connection: - keep-alive Content-Length: - - '1956' + - '1957' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Resources/deployments/aks-monitoring-1634627209124","name":"aks-monitoring-1634627209124","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7932017758444010137","parameters":{"workspaceResourceId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"},"workspaceRegion":{"type":"String","value":"westus2"},"solutionDeploymentName":{"type":"String","value":"ContainerInsights-1634627209124"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-10-19T07:06:49.8396026Z","duration":"PT0.1639072S","correlationId":"a9566505-dd2c-4bc2-b533-7e96f8dc416d","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-weu/providers/Microsoft.Resources/deployments/aks-monitoring-1638368530351","name":"aks-monitoring-1638368530351","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7932017758444010137","parameters":{"workspaceResourceId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-weu"},"workspaceRegion":{"type":"String","value":"westeurope"},"solutionDeploymentName":{"type":"String","value":"ContainerInsights-1638368530351"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-12-01T14:22:13.4043898Z","duration":"PT1.5320938S","correlationId":"2bdcc867-2399-4bed-b9a3-d1f45c283683","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/Microsoft.Resources/deployments/aks-monitoring-1634627209124/operationStatuses/08585669796758019237?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/Microsoft.Resources/deployments/aks-monitoring-1638368530351/operationStatuses/08585632383536053194?api-version=2021-04-01 cache-control: - no-cache content-length: @@ -299,7 +299,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:06:48 GMT + - Wed, 01 Dec 2021 14:22:13 GMT expires: - '-1' pragma: @@ -309,21 +309,22 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest37iqvywrb-8ecadf", + body: '{"location": "westeurope", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-cliteste4bie7uix-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"omsagent": {"enabled": - true, "config": {"logAnalyticsWorkspaceResourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"omsagent": {"enabled": true, "config": + {"logAnalyticsWorkspaceResourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-weu", "useAADAuth": "False"}}}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", @@ -339,64 +340,66 @@ interactions: Connection: - keep-alive Content-Length: - - '1696' + - '2054' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"westeurope\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest37iqvywrb-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest37iqvywrb-8ecadf-39f7f1b6.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest37iqvywrb-8ecadf-39f7f1b6.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-cliteste4bie7uix-8ecadf\",\n \"fqdn\": + \"cliakstest-cliteste4bie7uix-8ecadf-17b95062.hcp.westeurope.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-cliteste4bie7uix-8ecadf-17b95062.portal.hcp.westeurope.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-weu\",\n \ \"useAADAuth\": \"False\"\n }\n }\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n + \"MC_clitest000001_cliakstest000002_westeurope\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ca9ee18-4e8e-4ee8-9c61-e49893eb425f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/eac9ec2b-fcf5-498c-bf71-ab958a82bf66?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3151' + - '3619' content-type: - application/json date: - - Tue, 19 Oct 2021 07:06:52 GMT + - Wed, 01 Dec 2021 14:22:23 GMT expires: - '-1' pragma: @@ -408,7 +411,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -426,9 +429,9 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585669796758019237?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585632383536053194?api-version=2021-04-01 response: body: string: '{"status":"Succeeded"}' @@ -440,7 +443,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:07:19 GMT + - Wed, 01 Dec 2021 14:22:44 GMT expires: - '-1' pragma: @@ -468,21 +471,21 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.Resources/deployments/aks-monitoring-1634627209124","name":"aks-monitoring-1634627209124","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7932017758444010137","parameters":{"workspaceResourceId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2"},"workspaceRegion":{"type":"String","value":"westus2"},"solutionDeploymentName":{"type":"String","value":"ContainerInsights-1634627209124"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-10-19T07:06:56.1554453Z","duration":"PT6.4797499S","correlationId":"a9566505-dd2c-4bc2-b533-7e96f8dc416d","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2)"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-weu/providers/Microsoft.Resources/deployments/aks-monitoring-1638368530351","name":"aks-monitoring-1638368530351","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7932017758444010137","parameters":{"workspaceResourceId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-weu"},"workspaceRegion":{"type":"String","value":"westeurope"},"solutionDeploymentName":{"type":"String","value":"ContainerInsights-1638368530351"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-12-01T14:22:34.4473077Z","duration":"PT22.5750117S","correlationId":"2bdcc867-2399-4bed-b9a3-d1f45c283683","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"deployments","locations":[null]}]}],"dependencies":[],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/defaultresourcegroup-weu/providers/Microsoft.OperationsManagement/solutions/ContainerInsights(defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-weu)"}]}}' headers: cache-control: - no-cache content-length: - - '1274' + - '1273' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:07:19 GMT + - Wed, 01 Dec 2021 14:22:44 GMT expires: - '-1' pragma: @@ -510,14 +513,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ca9ee18-4e8e-4ee8-9c61-e49893eb425f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/eac9ec2b-fcf5-498c-bf71-ab958a82bf66?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"18eea99c-8e4e-e84e-9c61-e49893eb425f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:52.7133333Z\"\n }" + string: "{\n \"name\": \"2becc9ea-f5fc-8c49-bf71-ab958a82bf66\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:22:23.0333333Z\"\n }" headers: cache-control: - no-cache @@ -526,7 +529,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:07:22 GMT + - Wed, 01 Dec 2021 14:22:53 GMT expires: - '-1' pragma: @@ -558,14 +561,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ca9ee18-4e8e-4ee8-9c61-e49893eb425f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/eac9ec2b-fcf5-498c-bf71-ab958a82bf66?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"18eea99c-8e4e-e84e-9c61-e49893eb425f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:52.7133333Z\"\n }" + string: "{\n \"name\": \"2becc9ea-f5fc-8c49-bf71-ab958a82bf66\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:22:23.0333333Z\"\n }" headers: cache-control: - no-cache @@ -574,7 +577,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:07:52 GMT + - Wed, 01 Dec 2021 14:23:24 GMT expires: - '-1' pragma: @@ -606,14 +609,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ca9ee18-4e8e-4ee8-9c61-e49893eb425f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/eac9ec2b-fcf5-498c-bf71-ab958a82bf66?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"18eea99c-8e4e-e84e-9c61-e49893eb425f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:52.7133333Z\"\n }" + string: "{\n \"name\": \"2becc9ea-f5fc-8c49-bf71-ab958a82bf66\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:22:23.0333333Z\"\n }" headers: cache-control: - no-cache @@ -622,7 +625,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:08:22 GMT + - Wed, 01 Dec 2021 14:23:54 GMT expires: - '-1' pragma: @@ -654,14 +657,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ca9ee18-4e8e-4ee8-9c61-e49893eb425f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/eac9ec2b-fcf5-498c-bf71-ab958a82bf66?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"18eea99c-8e4e-e84e-9c61-e49893eb425f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:52.7133333Z\"\n }" + string: "{\n \"name\": \"2becc9ea-f5fc-8c49-bf71-ab958a82bf66\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:22:23.0333333Z\"\n }" headers: cache-control: - no-cache @@ -670,7 +673,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:08:53 GMT + - Wed, 01 Dec 2021 14:24:24 GMT expires: - '-1' pragma: @@ -702,14 +705,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ca9ee18-4e8e-4ee8-9c61-e49893eb425f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/eac9ec2b-fcf5-498c-bf71-ab958a82bf66?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"18eea99c-8e4e-e84e-9c61-e49893eb425f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:52.7133333Z\"\n }" + string: "{\n \"name\": \"2becc9ea-f5fc-8c49-bf71-ab958a82bf66\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:22:23.0333333Z\"\n }" headers: cache-control: - no-cache @@ -718,7 +721,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:09:22 GMT + - Wed, 01 Dec 2021 14:24:55 GMT expires: - '-1' pragma: @@ -750,14 +753,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ca9ee18-4e8e-4ee8-9c61-e49893eb425f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/eac9ec2b-fcf5-498c-bf71-ab958a82bf66?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"18eea99c-8e4e-e84e-9c61-e49893eb425f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:06:52.7133333Z\"\n }" + string: "{\n \"name\": \"2becc9ea-f5fc-8c49-bf71-ab958a82bf66\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:22:23.0333333Z\"\n }" headers: cache-control: - no-cache @@ -766,7 +769,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:09:52 GMT + - Wed, 01 Dec 2021 14:25:25 GMT expires: - '-1' pragma: @@ -798,24 +801,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ca9ee18-4e8e-4ee8-9c61-e49893eb425f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/eac9ec2b-fcf5-498c-bf71-ab958a82bf66?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"18eea99c-8e4e-e84e-9c61-e49893eb425f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:06:52.7133333Z\",\n \"endTime\": - \"2021-10-19T07:09:56.0956207Z\"\n }" + string: "{\n \"name\": \"2becc9ea-f5fc-8c49-bf71-ab958a82bf66\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:22:23.0333333Z\",\n \"endTime\": + \"2021-12-01T14:25:45.734244Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:22 GMT + - Wed, 01 Dec 2021 14:25:54 GMT expires: - '-1' pragma: @@ -847,62 +850,65 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": + \ \"location\": \"westeurope\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest37iqvywrb-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest37iqvywrb-8ecadf-39f7f1b6.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest37iqvywrb-8ecadf-39f7f1b6.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-cliteste4bie7uix-8ecadf\",\n \"fqdn\": + \"cliakstest-cliteste4bie7uix-8ecadf-17b95062.hcp.westeurope.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-cliteste4bie7uix-8ecadf-17b95062.portal.hcp.westeurope.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-weu\",\n \ \"useAADAuth\": \"False\"\n },\n \"identity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omsagent-cliakstest000002\",\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omsagent-cliakstest000002\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westeurope\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4ca8e926-10ba-4d89-b50f-efabb38c476a\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.Network/publicIPAddresses/704e1717-7d15-409c-8946-ff1e76008bba\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4177' + - '4654' content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:23 GMT + - Wed, 01 Dec 2021 14:25:55 GMT expires: - '-1' pragma: @@ -934,8 +940,9 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 accept-language: - en-US method: GET @@ -943,7 +950,7 @@ interactions: response: body: string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables - publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2018-08-14T00:37:18.1465065Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' + publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2021-11-11T20:13:44.2828715Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' headers: cache-control: - no-cache @@ -952,7 +959,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:10:24 GMT + - Wed, 01 Dec 2021 14:25:55 GMT expires: - '-1' pragma: @@ -991,44 +998,40 @@ interactions: ParameterSetName: - --resource-group --name --enable-addons --ssh-key-value User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/71155c65-e4dd-494a-a3a0-d8ffee8eaf6a?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/8d678a97-f387-4898-9cc5-3b9392de6986?api-version=2020-04-01-preview response: body: - string: '{"error":{"code":"AuthorizationFailed","message":"The client ''119e1aeb-4592-42d6-9507-c66df857924f'' - with object id ''119e1aeb-4592-42d6-9507-c66df857924f'' does not have authorization - to perform action ''Microsoft.Authorization/roleAssignments/write'' over scope - ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/71155c65-e4dd-494a-a3a0-d8ffee8eaf6a'' - or the scope is invalid. If access was recently granted, please refresh your - credentials."}}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T14:25:56.6769677Z","updatedOn":"2021-12-01T14:25:56.9582291Z","createdBy":null,"updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/8d678a97-f387-4898-9cc5-3b9392de6986","type":"Microsoft.Authorization/roleAssignments","name":"8d678a97-f387-4898-9cc5-3b9392de6986"}' headers: cache-control: - no-cache - connection: - - close content-length: - - '595' + - '1029' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:10:24 GMT + - Wed, 01 Dec 2021 14:26:00 GMT expires: - '-1' pragma: - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-writes: + - '1194' status: - code: 403 - message: Forbidden + code: 201 + message: Created - request: body: null headers: @@ -1037,37 +1040,77 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --enable-addons --ssh-key-value + - --resource-group --name --enable-managed-identity --yes User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables - publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2018-08-14T00:37:18.1465065Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westeurope\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-cliteste4bie7uix-8ecadf\",\n \"fqdn\": + \"cliakstest-cliteste4bie7uix-8ecadf-17b95062.hcp.westeurope.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-cliteste4bie7uix-8ecadf-17b95062.portal.hcp.westeurope.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-weu\",\n + \ \"useAADAuth\": \"False\"\n },\n \"identity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omsagent-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westeurope\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.Network/publicIPAddresses/704e1717-7d15-409c-8946-ff1e76008bba\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '776' + - '4654' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 19 Oct 2021 07:10:26 GMT + - Wed, 01 Dec 2021 14:26:00 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1080,103 +1123,160 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", - "principalId":"00000000-0000-0000-0000-000000000001"}}' + body: '{"location": "westeurope", "sku": {"name": "Basic", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": + "cliakstest-cliteste4bie7uix-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": + "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", + "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "addonProfiles": {"omsagent": {"enabled": true, "config": {"logAnalyticsWorkspaceResourceID": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-weu", + "useAADAuth": "False"}}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westeurope", + "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", + "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.Network/publicIPAddresses/704e1717-7d15-409c-8946-ff1e76008bba"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive Content-Length: - - '233' + - '3058' Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production + - application/json ParameterSetName: - - --resource-group --name --enable-addons --ssh-key-value + - --resource-group --name --enable-managed-identity --yes User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/221c12f5-88b2-473c-9304-955fb9e1d194?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: '{"error":{"code":"AuthorizationFailed","message":"The client ''119e1aeb-4592-42d6-9507-c66df857924f'' - with object id ''119e1aeb-4592-42d6-9507-c66df857924f'' does not have authorization - to perform action ''Microsoft.Authorization/roleAssignments/write'' over scope - ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/221c12f5-88b2-473c-9304-955fb9e1d194'' - or the scope is invalid. If access was recently granted, please refresh your - credentials."}}' + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westeurope\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-cliteste4bie7uix-8ecadf\",\n \"fqdn\": + \"cliakstest-cliteste4bie7uix-8ecadf-17b95062.hcp.westeurope.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-cliteste4bie7uix-8ecadf-17b95062.portal.hcp.westeurope.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-weu\",\n + \ \"useAADAuth\": \"False\"\n }\n }\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000002_westeurope\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.Network/publicIPAddresses/704e1717-7d15-409c-8946-ff1e76008bba\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/95a763b1-7905-4bdf-9642-ab6ef4c96849?api-version=2017-08-31 cache-control: - no-cache - connection: - - close content-length: - - '595' + - '4286' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 19 Oct 2021 07:10:26 GMT + - Wed, 01 Dec 2021 14:26:06 GMT expires: - '-1' pragma: - no-cache + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-writes: + - '1196' status: - code: 403 - message: Forbidden + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --enable-addons --ssh-key-value + - --resource-group --name --enable-managed-identity --yes User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/95a763b1-7905-4bdf-9642-ab6ef4c96849?api-version=2017-08-31 response: body: - string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables - publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2018-08-14T00:37:18.1465065Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' + string: "{\n \"name\": \"b163a795-0579-df4b-9642-ab6ef4c96849\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:26:04.9333333Z\"\n }" headers: cache-control: - no-cache content-length: - - '776' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 19 Oct 2021 07:10:30 GMT + - Wed, 01 Dec 2021 14:26:37 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1188,104 +1288,44 @@ interactions: status: code: 200 message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-addons --ssh-key-value - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/fd2b2824-ed97-4ff0-9bd2-647bcca80fff?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"AuthorizationFailed","message":"The client ''119e1aeb-4592-42d6-9507-c66df857924f'' - with object id ''119e1aeb-4592-42d6-9507-c66df857924f'' does not have authorization - to perform action ''Microsoft.Authorization/roleAssignments/write'' over scope - ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/fd2b2824-ed97-4ff0-9bd2-647bcca80fff'' - or the scope is invalid. If access was recently granted, please refresh your - credentials."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '595' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:10:30 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 403 - message: Forbidden - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --enable-addons --ssh-key-value + - --resource-group --name --enable-managed-identity --yes User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/95a763b1-7905-4bdf-9642-ab6ef4c96849?api-version=2017-08-31 response: body: - string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables - publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2018-08-14T00:37:18.1465065Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' + string: "{\n \"name\": \"b163a795-0579-df4b-9642-ab6ef4c96849\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:26:04.9333333Z\",\n \"endTime\": + \"2021-12-01T14:27:03.2347895Z\"\n }" headers: cache-control: - no-cache content-length: - - '776' + - '170' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 19 Oct 2021 07:10:37 GMT + - Wed, 01 Dec 2021 14:27:07 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1298,64 +1338,95 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", - "principalId":"00000000-0000-0000-0000-000000000001"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production ParameterSetName: - - --resource-group --name --enable-addons --ssh-key-value + - --resource-group --name --enable-managed-identity --yes User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/0fa29914-9e33-4a77-8603-b21d36484ce1?api-version=2020-04-01-preview + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: - string: '{"error":{"code":"AuthorizationFailed","message":"The client ''119e1aeb-4592-42d6-9507-c66df857924f'' - with object id ''119e1aeb-4592-42d6-9507-c66df857924f'' does not have authorization - to perform action ''Microsoft.Authorization/roleAssignments/write'' over scope - ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/0fa29914-9e33-4a77-8603-b21d36484ce1'' - or the scope is invalid. If access was recently granted, please refresh your - credentials."}}' + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n + \ \"location\": \"westeurope\",\n \"name\": \"cliakstest000002\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-cliteste4bie7uix-8ecadf\",\n \"fqdn\": + \"cliakstest-cliteste4bie7uix-8ecadf-17b95062.hcp.westeurope.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-cliteste4bie7uix-8ecadf-17b95062.portal.hcp.westeurope.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": + {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-weu/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-weu\",\n + \ \"useAADAuth\": \"False\"\n },\n \"identity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omsagent-cliakstest000002\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westeurope\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.Network/publicIPAddresses/704e1717-7d15-409c-8946-ff1e76008bba\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache - connection: - - close content-length: - - '595' + - '4654' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 19 Oct 2021 07:10:37 GMT + - Wed, 01 Dec 2021 14:27:07 GMT expires: - '-1' pragma: - no-cache + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway status: - code: 403 - message: Forbidden + code: 200 + message: OK - request: body: null headers: @@ -1364,14 +1435,15 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --enable-addons --ssh-key-value + - --resource-group --name --enable-managed-identity --yes User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 accept-language: - en-US method: GET @@ -1379,7 +1451,7 @@ interactions: response: body: string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables - publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2018-08-14T00:37:18.1465065Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' + publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2021-11-11T20:13:44.2828715Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' headers: cache-control: - no-cache @@ -1388,7 +1460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:10:45 GMT + - Wed, 01 Dec 2021 14:27:08 GMT expires: - '-1' pragma: @@ -1415,7 +1487,7 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive Content-Length: @@ -1425,2210 +1497,43 @@ interactions: Cookie: - x-ms-gateway-slice=Production ParameterSetName: - - --resource-group --name --enable-addons --ssh-key-value + - --resource-group --name --enable-managed-identity --yes User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 + - python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python + AZURECLI/2.30.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/31c8d2c8-0e21-401e-9157-03efce417073?api-version=2020-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/4c267f8e-2853-4c2a-9bf4-dc901fac8c96?api-version=2020-04-01-preview response: body: - string: '{"error":{"code":"AuthorizationFailed","message":"The client ''119e1aeb-4592-42d6-9507-c66df857924f'' - with object id ''119e1aeb-4592-42d6-9507-c66df857924f'' does not have authorization - to perform action ''Microsoft.Authorization/roleAssignments/write'' over scope - ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/31c8d2c8-0e21-401e-9157-03efce417073'' - or the scope is invalid. If access was recently granted, please refresh your - credentials."}}' + string: '{"error":{"code":"RoleAssignmentExists","message":"The role assignment + already exists."}}' headers: cache-control: - no-cache - connection: - - close content-length: - - '595' + - '89' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:10:45 GMT + - Wed, 01 Dec 2021 14:27:09 GMT expires: - '-1' pragma: - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway - status: - code: 403 - message: Forbidden -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-addons --ssh-key-value - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables - publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2018-08-14T00:37:18.1465065Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' - headers: - cache-control: - - no-cache - content-length: - - '776' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:10:56 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-addons --ssh-key-value - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/d0fa44e9-fa35-44c0-88a5-2debafd39391?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"AuthorizationFailed","message":"The client ''119e1aeb-4592-42d6-9507-c66df857924f'' - with object id ''119e1aeb-4592-42d6-9507-c66df857924f'' does not have authorization - to perform action ''Microsoft.Authorization/roleAssignments/write'' over scope - ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/d0fa44e9-fa35-44c0-88a5-2debafd39391'' - or the scope is invalid. If access was recently granted, please refresh your - credentials."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '595' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:10:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 403 - message: Forbidden -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-addons --ssh-key-value - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables - publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2018-08-14T00:37:18.1465065Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' - headers: - cache-control: - - no-cache - content-length: - - '776' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:11:08 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-addons --ssh-key-value - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/a5073e60-2dd7-4dc5-8b94-8c0119008d76?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"AuthorizationFailed","message":"The client ''119e1aeb-4592-42d6-9507-c66df857924f'' - with object id ''119e1aeb-4592-42d6-9507-c66df857924f'' does not have authorization - to perform action ''Microsoft.Authorization/roleAssignments/write'' over scope - ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/a5073e60-2dd7-4dc5-8b94-8c0119008d76'' - or the scope is invalid. If access was recently granted, please refresh your - credentials."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '595' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:11:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 403 - message: Forbidden -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-addons --ssh-key-value - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables - publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2018-08-14T00:37:18.1465065Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' - headers: - cache-control: - - no-cache - content-length: - - '776' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:11:23 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-addons --ssh-key-value - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/c65fc6c3-449d-42a6-9840-9d0efe27fd7b?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"AuthorizationFailed","message":"The client ''119e1aeb-4592-42d6-9507-c66df857924f'' - with object id ''119e1aeb-4592-42d6-9507-c66df857924f'' does not have authorization - to perform action ''Microsoft.Authorization/roleAssignments/write'' over scope - ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/c65fc6c3-449d-42a6-9840-9d0efe27fd7b'' - or the scope is invalid. If access was recently granted, please refresh your - credentials."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '595' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:11:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 403 - message: Forbidden -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-addons --ssh-key-value - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables - publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2018-08-14T00:37:18.1465065Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' - headers: - cache-control: - - no-cache - content-length: - - '776' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:11:39 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-addons --ssh-key-value - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/2d266918-d115-4ec8-9e46-1f1bec7bc6af?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"AuthorizationFailed","message":"The client ''119e1aeb-4592-42d6-9507-c66df857924f'' - with object id ''119e1aeb-4592-42d6-9507-c66df857924f'' does not have authorization - to perform action ''Microsoft.Authorization/roleAssignments/write'' over scope - ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/2d266918-d115-4ec8-9e46-1f1bec7bc6af'' - or the scope is invalid. If access was recently granted, please refresh your - credentials."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '595' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:11:39 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 403 - message: Forbidden -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-addons --ssh-key-value - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables - publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2018-08-14T00:37:18.1465065Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' - headers: - cache-control: - - no-cache - content-length: - - '776' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:11:58 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-addons --ssh-key-value - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/1060ff13-d623-48ec-855b-68211bb57408?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"AuthorizationFailed","message":"The client ''119e1aeb-4592-42d6-9507-c66df857924f'' - with object id ''119e1aeb-4592-42d6-9507-c66df857924f'' does not have authorization - to perform action ''Microsoft.Authorization/roleAssignments/write'' over scope - ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/1060ff13-d623-48ec-855b-68211bb57408'' - or the scope is invalid. If access was recently granted, please refresh your - credentials."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '595' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:11:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 403 - message: Forbidden -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest37iqvywrb-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest37iqvywrb-8ecadf-39f7f1b6.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest37iqvywrb-8ecadf-39f7f1b6.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n - \ \"useAADAuth\": \"False\"\n },\n \"identity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omsagent-cliakstest000002\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": - {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n - \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4ca8e926-10ba-4d89-b50f-efabb38c476a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '4177' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:12:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": - "cliakstest-clitest37iqvywrb-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": - "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": - "OS", "workloadRuntime": "OCIContainer", "maxPods": 110, "osType": "Linux", - "osSKU": "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "addonProfiles": {"omsagent": {"enabled": true, "config": {"logAnalyticsWorkspaceResourceID": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2", - "useAADAuth": "False"}}}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": - "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": - "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4ca8e926-10ba-4d89-b50f-efabb38c476a"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", - "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - Content-Length: - - '2637' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest37iqvywrb-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest37iqvywrb-8ecadf-39f7f1b6.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest37iqvywrb-8ecadf-39f7f1b6.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n - \ \"useAADAuth\": \"False\"\n }\n }\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4ca8e926-10ba-4d89-b50f-efabb38c476a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/606c26f0-b1bc-4423-8067-dcea309478a3?api-version=2016-03-30 - cache-control: - - no-cache - content-length: - - '3812' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:12:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/606c26f0-b1bc-4423-8067-dcea309478a3?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"f0266c60-bcb1-2344-8067-dcea309478a3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:12:21.3666666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:12:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/606c26f0-b1bc-4423-8067-dcea309478a3?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"f0266c60-bcb1-2344-8067-dcea309478a3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:12:21.3666666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:13:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/606c26f0-b1bc-4423-8067-dcea309478a3?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"f0266c60-bcb1-2344-8067-dcea309478a3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:12:21.3666666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:13:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/606c26f0-b1bc-4423-8067-dcea309478a3?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"f0266c60-bcb1-2344-8067-dcea309478a3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:12:21.3666666Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:14:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/606c26f0-b1bc-4423-8067-dcea309478a3?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"f0266c60-bcb1-2344-8067-dcea309478a3\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:12:21.3666666Z\",\n \"endTime\": - \"2021-10-19T07:14:50.6562308Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '170' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:14:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest37iqvywrb-8ecadf\",\n \"fqdn\": - \"cliakstest-clitest37iqvywrb-8ecadf-39f7f1b6.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitest37iqvywrb-8ecadf-39f7f1b6.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/defaultresourcegroup-wus2/providers/microsoft.operationalinsights/workspaces/defaultworkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-wus2\",\n - \ \"useAADAuth\": \"False\"\n },\n \"identity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/omsagent-cliakstest000002\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": - {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n - \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4ca8e926-10ba-4d89-b50f-efabb38c476a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '4177' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:14:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables - publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2018-08-14T00:37:18.1465065Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' - headers: - cache-control: - - no-cache - content-length: - - '776' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:14:52 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/38d02a46-7d53-485c-adc7-602c6eb6c77f?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"AuthorizationFailed","message":"The client ''119e1aeb-4592-42d6-9507-c66df857924f'' - with object id ''119e1aeb-4592-42d6-9507-c66df857924f'' does not have authorization - to perform action ''Microsoft.Authorization/roleAssignments/write'' over scope - ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/38d02a46-7d53-485c-adc7-602c6eb6c77f'' - or the scope is invalid. If access was recently granted, please refresh your - credentials."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '595' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:14:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 403 - message: Forbidden -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables - publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2018-08-14T00:37:18.1465065Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' - headers: - cache-control: - - no-cache - content-length: - - '776' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:14:54 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/9170e18a-f392-4387-a2ab-758c3839ebfe?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"AuthorizationFailed","message":"The client ''119e1aeb-4592-42d6-9507-c66df857924f'' - with object id ''119e1aeb-4592-42d6-9507-c66df857924f'' does not have authorization - to perform action ''Microsoft.Authorization/roleAssignments/write'' over scope - ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/9170e18a-f392-4387-a2ab-758c3839ebfe'' - or the scope is invalid. If access was recently granted, please refresh your - credentials."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '595' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:14:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 403 - message: Forbidden -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables - publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2018-08-14T00:37:18.1465065Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' - headers: - cache-control: - - no-cache - content-length: - - '776' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:14:59 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/de92484e-fd28-47ee-87ce-0e889ef6993e?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"AuthorizationFailed","message":"The client ''119e1aeb-4592-42d6-9507-c66df857924f'' - with object id ''119e1aeb-4592-42d6-9507-c66df857924f'' does not have authorization - to perform action ''Microsoft.Authorization/roleAssignments/write'' over scope - ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/de92484e-fd28-47ee-87ce-0e889ef6993e'' - or the scope is invalid. If access was recently granted, please refresh your - credentials."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '595' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:14:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 403 - message: Forbidden -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables - publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2018-08-14T00:37:18.1465065Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' - headers: - cache-control: - - no-cache - content-length: - - '776' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:15:06 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/41c22406-eda4-4532-87b5-37605a8b81c7?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"AuthorizationFailed","message":"The client ''119e1aeb-4592-42d6-9507-c66df857924f'' - with object id ''119e1aeb-4592-42d6-9507-c66df857924f'' does not have authorization - to perform action ''Microsoft.Authorization/roleAssignments/write'' over scope - ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/41c22406-eda4-4532-87b5-37605a8b81c7'' - or the scope is invalid. If access was recently granted, please refresh your - credentials."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '595' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:15:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 403 - message: Forbidden -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables - publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2018-08-14T00:37:18.1465065Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' - headers: - cache-control: - - no-cache - content-length: - - '776' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:15:14 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/b176b806-41c3-40ee-adb0-f520f2f72e09?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"AuthorizationFailed","message":"The client ''119e1aeb-4592-42d6-9507-c66df857924f'' - with object id ''119e1aeb-4592-42d6-9507-c66df857924f'' does not have authorization - to perform action ''Microsoft.Authorization/roleAssignments/write'' over scope - ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/b176b806-41c3-40ee-adb0-f520f2f72e09'' - or the scope is invalid. If access was recently granted, please refresh your - credentials."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '595' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:15:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 403 - message: Forbidden -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables - publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2018-08-14T00:37:18.1465065Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' - headers: - cache-control: - - no-cache - content-length: - - '776' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:15:25 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/47516932-e430-4e99-9546-a7e7232aef30?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"AuthorizationFailed","message":"The client ''119e1aeb-4592-42d6-9507-c66df857924f'' - with object id ''119e1aeb-4592-42d6-9507-c66df857924f'' does not have authorization - to perform action ''Microsoft.Authorization/roleAssignments/write'' over scope - ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/47516932-e430-4e99-9546-a7e7232aef30'' - or the scope is invalid. If access was recently granted, please refresh your - credentials."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '595' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:15:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 403 - message: Forbidden -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables - publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2018-08-14T00:37:18.1465065Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' - headers: - cache-control: - - no-cache - content-length: - - '776' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:15:36 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/55d09c90-5edd-4735-afc6-b254d0608f6a?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"AuthorizationFailed","message":"The client ''119e1aeb-4592-42d6-9507-c66df857924f'' - with object id ''119e1aeb-4592-42d6-9507-c66df857924f'' does not have authorization - to perform action ''Microsoft.Authorization/roleAssignments/write'' over scope - ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/55d09c90-5edd-4735-afc6-b254d0608f6a'' - or the scope is invalid. If access was recently granted, please refresh your - credentials."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '595' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:15:36 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 403 - message: Forbidden -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables - publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2018-08-14T00:37:18.1465065Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' - headers: - cache-control: - - no-cache - content-length: - - '776' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:15:51 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/08c0b472-202c-4c4a-99a2-98920aa1e4b3?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"AuthorizationFailed","message":"The client ''119e1aeb-4592-42d6-9507-c66df857924f'' - with object id ''119e1aeb-4592-42d6-9507-c66df857924f'' does not have authorization - to perform action ''Microsoft.Authorization/roleAssignments/write'' over scope - ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/08c0b472-202c-4c4a-99a2-98920aa1e4b3'' - or the scope is invalid. If access was recently granted, please refresh your - credentials."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '595' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:15:51 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 403 - message: Forbidden -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables - publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2018-08-14T00:37:18.1465065Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' - headers: - cache-control: - - no-cache - content-length: - - '776' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:16:07 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/a451237b-48e3-4c69-8ebb-e2374547a864?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"AuthorizationFailed","message":"The client ''119e1aeb-4592-42d6-9507-c66df857924f'' - with object id ''119e1aeb-4592-42d6-9507-c66df857924f'' does not have authorization - to perform action ''Microsoft.Authorization/roleAssignments/write'' over scope - ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/a451237b-48e3-4c69-8ebb-e2374547a864'' - or the scope is invalid. If access was recently granted, please refresh your - credentials."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '595' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:16:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 403 - message: Forbidden -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Monitoring Metrics Publisher","type":"BuiltInRole","description":"Enables - publishing metrics against Azure resources","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Insights/Register/Action","Microsoft.Support/*","Microsoft.Resources/subscriptions/resourceGroups/read"],"notActions":[],"dataActions":["Microsoft.Insights/Metrics/Write"],"notDataActions":[]}],"createdOn":"2018-08-14T00:36:16.5610279Z","updatedOn":"2018-08-14T00:37:18.1465065Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","type":"Microsoft.Authorization/roleDefinitions","name":"3913510d-42f4-4e42-8a64-420c390055eb"}]}' - headers: - cache-control: - - no-cache - content-length: - - '776' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:16:26 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --enable-managed-identity --yes - User-Agent: - - python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) msrest/0.6.21 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.29.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/3ad515b0-2145-4d85-a04a-3153eeff7e2c?api-version=2020-04-01-preview - response: - body: - string: '{"error":{"code":"AuthorizationFailed","message":"The client ''119e1aeb-4592-42d6-9507-c66df857924f'' - with object id ''119e1aeb-4592-42d6-9507-c66df857924f'' does not have authorization - to perform action ''Microsoft.Authorization/roleAssignments/write'' over scope - ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/3ad515b0-2145-4d85-a04a-3153eeff7e2c'' - or the scope is invalid. If access was recently granted, please refresh your - credentials."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '595' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:16:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-writes: + - '1196' status: - code: 403 - message: Forbidden + code: 409 + message: Conflict - request: body: null headers: @@ -3643,10 +1548,10 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/outboundNetworkDependenciesEndpoints?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/outboundNetworkDependenciesEndpoints?api-version=2021-10-01 response: body: string: "{\n \"value\": [\n {\n \"category\": \"azure-resource-management\",\n @@ -3677,7 +1582,7 @@ interactions: \ ]\n },\n {\n \"domainName\": \"changelogs.ubuntu.com\",\n \ \"endpointDetails\": [\n {\n \"port\": 80,\n \"protocol\": \"Http\"\n }\n ]\n }\n ]\n },\n {\n \"category\": - \"apiserver\",\n \"endpoints\": [\n {\n \"domainName\": \"cliakstest-clitest37iqvywrb-8ecadf-39f7f1b6.hcp.westus2.azmk8s.io\",\n + \"apiserver\",\n \"endpoints\": [\n {\n \"domainName\": \"cliakstest-cliteste4bie7uix-8ecadf-17b95062.hcp.westeurope.azmk8s.io\",\n \ \"endpointDetails\": [\n {\n \"port\": 443,\n \"protocol\": \"Https\"\n }\n ]\n }\n ]\n },\n {\n \"category\": \"addon-monitoring\",\n \"endpoints\": [\n {\n \"domainName\": @@ -3694,11 +1599,11 @@ interactions: cache-control: - no-cache content-length: - - '3012' + - '3015' content-type: - application/json date: - - Tue, 19 Oct 2021 07:16:47 GMT + - Wed, 01 Dec 2021 14:27:10 GMT expires: - '-1' pragma: @@ -3732,8 +1637,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-07-01 response: @@ -3741,17 +1646,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d937786a-1925-4c0d-8c9e-4ff404e473d2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/33c38c6b-72d6-4ef3-80ab-886ca74dda1e?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 07:16:47 GMT + - Wed, 01 Dec 2021 14:27:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/d937786a-1925-4c0d-8c9e-4ff404e473d2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operationresults/33c38c6b-72d6-4ef3-80ab-886ca74dda1e?api-version=2017-08-31 pragma: - no-cache server: @@ -3761,7 +1666,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_gmsa.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_gmsa.yaml index 96e1ed24148..b53f71b0e91 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_gmsa.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_gmsa.yaml @@ -1,1426 +1,2986 @@ interactions: -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --location --dns-name-prefix --node-count - --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type - --network-plugin --ssh-key-value] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.5 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 - response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T09:27:19Z"},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['319'] - content-type: [application/json; charset=utf-8] - date: ['Tue, 19 Oct 2021 09:27:23 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} - request: body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", - "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": - false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": - -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": "replace-Password1234$"}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "azure", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - Content-Length: ['1675'] - Content-Type: [application/json] - ParameterSetName: [--resource-group --name --location --dns-name-prefix --node-count - --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type - --network-plugin --ssh-key-value] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1703' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: - body: {string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ - \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ - : {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"\ - code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1ce35c56.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliaksdns000002-1ce35c56.portal.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ - : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n\ - \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ - \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ - ,\n \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"\ - networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\"\ - : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ - : {\n \"count\": 1\n }\n },\n \"serviceCidr\": \"10.0.0.0/16\"\ - ,\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\ - ,\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n\ - \ \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": \"Enabled\"\ - \n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ - :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ - \n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n\ - \ }"} - headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c9daf69a-f100-4795-b39a-b4881773e727?api-version=2016-03-30'] - cache-control: [no-cache] - content-length: ['3133'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:27:37 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] - status: {code: 201, message: Created} + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7f1253a6.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-7f1253a6.portal.hcp.centraluseuap.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n + \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n }\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b38f3431-df4a-4e76-b9f7-0a832efee682?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '3216' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:17:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --location --dns-name-prefix --node-count - --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type - --network-plugin --ssh-key-value] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c9daf69a-f100-4795-b39a-b4881773e727?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b38f3431-df4a-4e76-b9f7-0a832efee682?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"9af6dac9-00f1-9547-b39a-b4881773e727\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:27:36.9766666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:28:08 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"31348fb3-4adf-764e-b9f7-0a832efee682\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:26.79Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:17:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --location --dns-name-prefix --node-count - --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type - --network-plugin --ssh-key-value] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c9daf69a-f100-4795-b39a-b4881773e727?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b38f3431-df4a-4e76-b9f7-0a832efee682?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"9af6dac9-00f1-9547-b39a-b4881773e727\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:27:36.9766666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:28:38 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"31348fb3-4adf-764e-b9f7-0a832efee682\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:26.79Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:18:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --location --dns-name-prefix --node-count - --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type - --network-plugin --ssh-key-value] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c9daf69a-f100-4795-b39a-b4881773e727?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b38f3431-df4a-4e76-b9f7-0a832efee682?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"9af6dac9-00f1-9547-b39a-b4881773e727\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:27:36.9766666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:29:08 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"31348fb3-4adf-764e-b9f7-0a832efee682\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:26.79Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:18:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --location --dns-name-prefix --node-count - --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type - --network-plugin --ssh-key-value] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c9daf69a-f100-4795-b39a-b4881773e727?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b38f3431-df4a-4e76-b9f7-0a832efee682?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"9af6dac9-00f1-9547-b39a-b4881773e727\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:27:36.9766666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:29:39 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"31348fb3-4adf-764e-b9f7-0a832efee682\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:17:26.79Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --location --dns-name-prefix --node-count - --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type - --network-plugin --ssh-key-value] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c9daf69a-f100-4795-b39a-b4881773e727?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b38f3431-df4a-4e76-b9f7-0a832efee682?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"9af6dac9-00f1-9547-b39a-b4881773e727\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:27:36.9766666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:30:09 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"31348fb3-4adf-764e-b9f7-0a832efee682\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:17:26.79Z\",\n \"endTime\": + \"2021-12-01T14:19:28.8969461Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '165' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --location --dns-name-prefix --node-count - --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type - --network-plugin --ssh-key-value] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c9daf69a-f100-4795-b39a-b4881773e727?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: - body: {string: "{\n \"name\": \"9af6dac9-00f1-9547-b39a-b4881773e727\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:27:36.9766666Z\"\ - \n }"} - headers: - cache-control: [no-cache] - content-length: ['126'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:30:40 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7f1253a6.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-7f1253a6.portal.hcp.centraluseuap.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n + \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/57e1f542-9b41-4a25-bb37-2992bb889db7\"\n + \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '3891' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --location --dns-name-prefix --node-count - --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type - --network-plugin --ssh-key-value] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c9daf69a-f100-4795-b39a-b4881773e727?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-10-01 + response: + body: + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n + \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false\n }\n }\n ]\n }" + headers: + cache-control: + - no-cache + content-length: + - '1006' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:19:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"count": 1, "vmSize": "Standard_D2s_v3", "workloadRuntime": + "OCIContainer", "osType": "Windows", "scaleDownMode": "Delete", "mode": "User", + "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], + "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + Content-Length: + - '394' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-10-01 response: - body: {string: "{\n \"name\": \"9af6dac9-00f1-9547-b39a-b4881773e727\",\n \"\ - status\": \"Succeeded\",\n \"startTime\": \"2021-10-19T09:27:36.9766666Z\"\ - ,\n \"endTime\": \"2021-10-19T09:30:54.5082641Z\"\n }"} - headers: - cache-control: [no-cache] - content-length: ['170'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:31:10 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n + \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2300.211110\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/090bf411-aa87-4369-b6f2-dcf449b649db?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '913' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:20:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks create] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --location --dns-name-prefix --node-count - --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type - --network-plugin --ssh-key-value] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/090bf411-aa87-4369-b6f2-dcf449b649db?api-version=2016-03-30 response: - body: {string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ - \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ - : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ - code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1ce35c56.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliaksdns000002-1ce35c56.portal.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n\ - \ {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ - : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n\ - \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ - \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ - ,\n \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"\ - networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\"\ - : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ - : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/0fe77fc8-5baf-4c0d-8202-5995347df561\"\ - \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ - : \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\"\ - : \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ - : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }"} - headers: - cache-control: [no-cache] - content-length: ['3808'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:31:10 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"11f40b09-87aa-6943-b6f2-dcf449b649db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:00.92Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:20:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/090bf411-aa87-4369-b6f2-dcf449b649db?api-version=2016-03-30 response: - body: {string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ - ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ - ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ - kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n\ - \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ - code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n\ - \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2021.10.13\",\n \"enableFIPS\": false\n\ - \ }\n }\n ]\n }"} - headers: - cache-control: [no-cache] - content-length: ['973'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:31:12 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"11f40b09-87aa-6943-b6f2-dcf449b649db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:00.92Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:21:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: - body: '{"properties": {"count": 1, "vmSize": "Standard_D2s_v3", "workloadRuntime": - "OCIContainer", "osType": "Windows", "scaleDownMode": "Delete", "mode": "User", - "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], - "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/090bf411-aa87-4369-b6f2-dcf449b649db?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"11f40b09-87aa-6943-b6f2-dcf449b649db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:00.92Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:21:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/090bf411-aa87-4369-b6f2-dcf449b649db?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"11f40b09-87aa-6943-b6f2-dcf449b649db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:00.92Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:22:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/090bf411-aa87-4369-b6f2-dcf449b649db?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"11f40b09-87aa-6943-b6f2-dcf449b649db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:00.92Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:22:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/090bf411-aa87-4369-b6f2-dcf449b649db?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"11f40b09-87aa-6943-b6f2-dcf449b649db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:00.92Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:23:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/090bf411-aa87-4369-b6f2-dcf449b649db?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"11f40b09-87aa-6943-b6f2-dcf449b649db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:00.92Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:23:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/090bf411-aa87-4369-b6f2-dcf449b649db?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"11f40b09-87aa-6943-b6f2-dcf449b649db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:00.92Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:24:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/090bf411-aa87-4369-b6f2-dcf449b649db?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"11f40b09-87aa-6943-b6f2-dcf449b649db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:00.92Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:24:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/090bf411-aa87-4369-b6f2-dcf449b649db?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"11f40b09-87aa-6943-b6f2-dcf449b649db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:00.92Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:25:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/090bf411-aa87-4369-b6f2-dcf449b649db?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"11f40b09-87aa-6943-b6f2-dcf449b649db\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:20:00.92Z\",\n \"endTime\": + \"2021-12-01T14:25:26.9907223Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '165' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:25:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n + \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2300.211110\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '914' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:25:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - Content-Length: ['394'] - Content-Type: [application/json] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7f1253a6.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-7f1253a6.portal.hcp.centraluseuap.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ },\n {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": + \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n + \ \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n + \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": + \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2300.211110\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n + \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/57e1f542-9b41-4a25-bb37-2992bb889db7\"\n + \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4589' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:25:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "centraluseuap", "sku": {"name": "Basic", "tier": "Free"}, + "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": + "1.20.9", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, + "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": + "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": + "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": + "System", "orchestratorVersion": "1.20.9", "powerState": {"code": "Running"}, + "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false, "name": "nodepool1"}, {"count": 1, "vmSize": "Standard_D2s_v3", + "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": + "OCIContainer", "maxPods": 30, "osType": "Windows", "scaleDownMode": "Delete", + "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.20.9", + "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "npwin"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": + {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "enableCSIProxy": + true, "gmsaProfile": {"enabled": true}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000001_centraluseuap", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/57e1f542-9b41-4a25-bb37-2992bb889db7"}]}, + "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": + {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false}}' + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + Content-Length: + - '3254' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: - body: {string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ - ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ - ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ - : \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n\ - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ - ,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ - : \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ - \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\"\ - : \"AKSWindows-2019-17763.2237.211014\",\n \"upgradeSettings\": {},\n \ - \ \"enableFIPS\": false\n }\n }"} - headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/81eeefe0-0037-4192-b496-82ad96b3c604?api-version=2016-03-30'] - cache-control: [no-cache] - content-length: ['913'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:31:13 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] - status: {code: 201, message: Created} + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Upgrading\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7f1253a6.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-7f1253a6.portal.hcp.centraluseuap.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Upgrading\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ },\n {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": + \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n + \ \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n + \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": + \"Delete\",\n \"provisioningState\": \"Upgrading\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2300.211110\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true,\n + \ \"gmsaProfile\": {\n \"enabled\": true,\n \"dnsServer\": \"\",\n + \ \"rootDomainName\": \"\"\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000001_centraluseuap\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/57e1f542-9b41-4a25-bb37-2992bb889db7\"\n + \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '4687' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:25:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1195' + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/81eeefe0-0037-4192-b496-82ad96b3c604?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"e0efee81-3700-9241-b496-82ad96b3c604\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:31:14.66Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:31:44 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:26:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/81eeefe0-0037-4192-b496-82ad96b3c604?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"e0efee81-3700-9241-b496-82ad96b3c604\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:31:14.66Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:32:15 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:26:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/81eeefe0-0037-4192-b496-82ad96b3c604?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"e0efee81-3700-9241-b496-82ad96b3c604\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:31:14.66Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:32:45 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:27:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/81eeefe0-0037-4192-b496-82ad96b3c604?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"e0efee81-3700-9241-b496-82ad96b3c604\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:31:14.66Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:33:16 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:27:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/81eeefe0-0037-4192-b496-82ad96b3c604?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"e0efee81-3700-9241-b496-82ad96b3c604\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:31:14.66Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:33:46 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:28:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/81eeefe0-0037-4192-b496-82ad96b3c604?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"e0efee81-3700-9241-b496-82ad96b3c604\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:31:14.66Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:34:17 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:28:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/81eeefe0-0037-4192-b496-82ad96b3c604?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"e0efee81-3700-9241-b496-82ad96b3c604\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:31:14.66Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:34:47 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:29:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/81eeefe0-0037-4192-b496-82ad96b3c604?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"e0efee81-3700-9241-b496-82ad96b3c604\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:31:14.66Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:35:17 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:29:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/81eeefe0-0037-4192-b496-82ad96b3c604?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"e0efee81-3700-9241-b496-82ad96b3c604\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:31:14.66Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:35:48 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:30:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/81eeefe0-0037-4192-b496-82ad96b3c604?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"e0efee81-3700-9241-b496-82ad96b3c604\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:31:14.66Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:36:18 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:30:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/81eeefe0-0037-4192-b496-82ad96b3c604?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"e0efee81-3700-9241-b496-82ad96b3c604\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:31:14.66Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:36:48 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:31:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/81eeefe0-0037-4192-b496-82ad96b3c604?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"e0efee81-3700-9241-b496-82ad96b3c604\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:31:14.66Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:37:19 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:31:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/81eeefe0-0037-4192-b496-82ad96b3c604?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"e0efee81-3700-9241-b496-82ad96b3c604\",\n \"\ - status\": \"Succeeded\",\n \"startTime\": \"2021-10-19T09:31:14.66Z\",\n\ - \ \"endTime\": \"2021-10-19T09:37:43.5432758Z\"\n }"} - headers: - cache-control: [no-cache] - content-length: ['165'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:37:49 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:32:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool add] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --os-type --node-count] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ - ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ - ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ - : \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n\ - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ - ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ - code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"\ - enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\"\ - : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"\ - nodeImageVersion\": \"AKSWindows-2019-17763.2237.211014\",\n \"upgradeSettings\"\ - : {},\n \"enableFIPS\": false\n }\n }"} - headers: - cache-control: [no-cache] - content-length: ['914'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:37:50 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:32:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks update] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --enable-windows-gmsa --yes] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ - \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ - : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ - code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1ce35c56.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliaksdns000002-1ce35c56.portal.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n\ - \ \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ - ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2237.211014\"\ - ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ - : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ - : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n\ - \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ - \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ - ,\n \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"\ - networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\"\ - : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ - : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/0fe77fc8-5baf-4c0d-8202-5995347df561\"\ - \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ - : \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\"\ - : \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ - : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }"} - headers: - cache-control: [no-cache] - content-length: ['4506'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:37:52 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:33:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: - body: '{"location": "centraluseuap", "sku": {"name": "Basic", "tier": "Free"}, - "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.20.9", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, - "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": - "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": - "Ubuntu", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}, {"count": - 1, "vmSize": "Standard_D2s_v3", "osDiskSizeGB": 128, "osDiskType": "Managed", - "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": - "Windows", "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", "mode": - "User", "orchestratorVersion": "1.20.9", "upgradeSettings": {}, "powerState": - {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "npwin"}], "linuxProfile": - {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "enableCSIProxy": - true, "gmsaProfile": {"enabled": true}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "nodeResourceGroup": "MC_clitest000001_cliakstest000001_centraluseuap", "enableRBAC": - true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": - "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", - "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/0fe77fc8-5baf-4c0d-8202-5995347df561"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", - "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks update] - Connection: [keep-alive] - Content-Length: ['3203'] - Content-Type: [application/json] - ParameterSetName: [--resource-group --name --enable-windows-gmsa --yes] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:33:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:34:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:34:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:35:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:35:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ - \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ - : {\n \"provisioningState\": \"Upgrading\",\n \"powerState\": {\n \"\ - code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1ce35c56.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliaksdns000002-1ce35c56.portal.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Upgrading\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n\ - \ \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ - ,\n \"provisioningState\": \"Upgrading\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2237.211014\"\ - ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ - : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ - : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true,\n\ - \ \"gmsaProfile\": {\n \"enabled\": true,\n \"dnsServer\": \"\"\ - ,\n \"rootDomainName\": \"\"\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ - ,\n \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"\ - networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\"\ - : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ - : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/0fe77fc8-5baf-4c0d-8202-5995347df561\"\ - \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ - : \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\"\ - : \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ - : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }"} - headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/032b36fa-ebcf-4663-9e09-6b63600baee2?api-version=2016-03-30'] - cache-control: [no-cache] - content-length: ['4604'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:37:58 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:36:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks update] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --enable-windows-gmsa --yes] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/032b36fa-ebcf-4663-9e09-6b63600baee2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"fa362b03-cfeb-6346-9e09-6b63600baee2\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:37:55.85Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:38:28 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:36:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks update] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --enable-windows-gmsa --yes] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/032b36fa-ebcf-4663-9e09-6b63600baee2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"fa362b03-cfeb-6346-9e09-6b63600baee2\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:37:55.85Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:38:58 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:37:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks update] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --enable-windows-gmsa --yes] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/032b36fa-ebcf-4663-9e09-6b63600baee2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"fa362b03-cfeb-6346-9e09-6b63600baee2\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:37:55.85Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:39:28 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:37:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks update] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --enable-windows-gmsa --yes] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/032b36fa-ebcf-4663-9e09-6b63600baee2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"fa362b03-cfeb-6346-9e09-6b63600baee2\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:37:55.85Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:39:59 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:38:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks update] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --enable-windows-gmsa --yes] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/032b36fa-ebcf-4663-9e09-6b63600baee2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"fa362b03-cfeb-6346-9e09-6b63600baee2\",\n \"\ - status\": \"InProgress\",\n \"startTime\": \"2021-10-19T09:37:55.85Z\"\n\ - \ }"} - headers: - cache-control: [no-cache] - content-length: ['121'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:40:30 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:38:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks update] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --enable-windows-gmsa --yes] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/032b36fa-ebcf-4663-9e09-6b63600baee2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e03f7e68-50b2-45f8-8b84-131bdcfb375d?api-version=2016-03-30 response: - body: {string: "{\n \"name\": \"fa362b03-cfeb-6346-9e09-6b63600baee2\",\n \"\ - status\": \"Succeeded\",\n \"startTime\": \"2021-10-19T09:37:55.85Z\",\n\ - \ \"endTime\": \"2021-10-19T09:40:49.6135207Z\"\n }"} - headers: - cache-control: [no-cache] - content-length: ['165'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:41:00 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"name\": \"687e3fe0-b250-f845-8b84-131bdcfb375d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:25:36.2166666Z\",\n \"endTime\": + \"2021-12-01T14:39:03.8449894Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:39:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks update] - Connection: [keep-alive] - ParameterSetName: [--resource-group --name --enable-windows-gmsa --yes] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: - body: {string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ - \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ - : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ - code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.20.9\",\n \"dnsPrefix\"\ - : \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1ce35c56.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliaksdns000002-1ce35c56.portal.hcp.centraluseuap.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"\ - Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ - \ \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n\ - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.13\"\ - ,\n \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n\ - \ \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\"\ - : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ - ,\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \ - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\"\ - ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\"\ - ,\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2237.211014\"\ - ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ - : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ - : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true,\n\ - \ \"gmsaProfile\": {\n \"enabled\": true,\n \"dnsServer\": \"\"\ - ,\n \"rootDomainName\": \"\"\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ - ,\n \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"\ - networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\"\ - : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ - : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/0fe77fc8-5baf-4c0d-8202-5995347df561\"\ - \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ - : \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\"\ - : \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ - : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ - ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ - :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ - : false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n\ - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ - ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ - : {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }"} - headers: - cache-control: [no-cache] - content-length: ['4604'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:41:00 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7f1253a6.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-7f1253a6.portal.hcp.centraluseuap.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ },\n {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": + \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n + \ \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n + \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": + \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2300.211110\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true,\n + \ \"gmsaProfile\": {\n \"enabled\": true,\n \"dnsServer\": \"\",\n + \ \"rootDomainName\": \"\"\n }\n },\n \"servicePrincipalProfile\": + {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": + \"MC_clitest000001_cliakstest000001_centraluseuap\",\n \"enableRBAC\": true,\n + \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": + \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/57e1f542-9b41-4a25-bb37-2992bb889db7\"\n + \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4687' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:39:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool delete] - Connection: [keep-alive] - ParameterSetName: [--resource-group --cluster-name --name --no-wait] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool delete + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --no-wait + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-10-01 response: - body: {string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ - ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ - ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ - kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n\ - \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ - code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n\ - \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"\ - enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"\ - osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ - : \"AKSUbuntu-1804gen2containerd-2021.10.13\",\n \"enableFIPS\": false\n\ - \ }\n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ - ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ - ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ - kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n\ - \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\"\ - ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ - : \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\"\ - ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2237.211014\"\ - ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ - \ ]\n }"} - headers: - cache-control: [no-cache] - content-length: ['1948'] - content-type: [application/json] - date: ['Tue, 19 Oct 2021 09:41:02 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + body: + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n + \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false\n }\n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n + \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2300.211110\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n }\n ]\n }" + headers: + cache-control: + - no-cache + content-length: + - '1981' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:39:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks nodepool delete] - Connection: [keep-alive] - Content-Length: ['0'] - ParameterSetName: [--resource-group --cluster-name --name --no-wait] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --resource-group --cluster-name --name --no-wait + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-10-01 response: - body: {string: ''} - headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/6381d182-92fb-43a0-b90d-0c8f971c35d4?api-version=2016-03-30'] - cache-control: [no-cache] - content-length: ['0'] - date: ['Tue, 19 Oct 2021 09:41:03 GMT'] - expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/6381d182-92fb-43a0-b90d-0c8f971c35d4?api-version=2016-03-30'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14999'] - status: {code: 202, message: Accepted} + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/a0fd4f96-bf1a-4dfe-8a1b-1f9845f8935c?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 01 Dec 2021 14:39:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/a0fd4f96-bf1a-4dfe-8a1b-1f9845f8935c?api-version=2016-03-30 + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14997' + status: + code: 202 + message: Accepted - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [aks delete] - Connection: [keep-alive] - Content-Length: ['0'] - ParameterSetName: [-g -n --yes --no-wait] - User-Agent: [AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 - Python/3.8.5 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29)] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --yes --no-wait + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-07-01 response: - body: {string: ''} - headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/5204d4be-a925-4994-88cb-c4545d221ddd?api-version=2016-03-30'] - cache-control: [no-cache] - content-length: ['0'] - date: ['Tue, 19 Oct 2021 09:41:07 GMT'] - expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/5204d4be-a925-4994-88cb-c4545d221ddd?api-version=2016-03-30'] - pragma: [no-cache] - server: [nginx] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14998'] - status: {code: 202, message: Accepted} + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/67ff4a38-665b-4d4d-826a-8efd8a1eaf48?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 01 Dec 2021 14:39:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/67ff4a38-665b-4d4d-826a-8efd8a1eaf48?api-version=2016-03-30 + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + status: + code: 202 + message: Accepted version: 1 diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_password.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_password.yaml old mode 100755 new mode 100644 index 971b182a3eb..ce2823c7eab --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_password.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_update_with_windows_password.yaml @@ -1,62 +1,18 @@ interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username - --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin - --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:09:17Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '313' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:09:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", - "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": - false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": - -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser1", "adminPassword": "p@0A000003"}, "addonProfiles": {}, "enableRBAC": - true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": - "azure", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false}}' + "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": + "p@0A000003"}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "azure", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -67,7 +23,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1335' + - '1692' Content-Type: - application/json ParameterSetName: @@ -75,31 +31,32 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-e1bcffd6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-e1bcffd6.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0268c92c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-0268c92c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n @@ -108,22 +65,23 @@ interactions: \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1a6d4c63-b2c4-4662-b1ac-ae0e56d92fd7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/989912d7-1cfa-4ba1-9e71-893e037dec1b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2780' + - '3192' content-type: - application/json date: - - Tue, 19 Oct 2021 07:09:21 GMT + - Wed, 01 Dec 2021 14:39:19 GMT expires: - '-1' pragma: @@ -135,7 +93,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 201 message: Created @@ -155,14 +113,14 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1a6d4c63-b2c4-4662-b1ac-ae0e56d92fd7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/989912d7-1cfa-4ba1-9e71-893e037dec1b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"634c6d1a-c4b2-6246-b1ac-ae0e56d92fd7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:09:21.6933333Z\"\n }" + string: "{\n \"name\": \"d7129998-fa1c-a14b-9e71-893e037dec1b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:39:19.4766666Z\"\n }" headers: cache-control: - no-cache @@ -171,7 +129,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:09:51 GMT + - Wed, 01 Dec 2021 14:39:49 GMT expires: - '-1' pragma: @@ -205,14 +163,14 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1a6d4c63-b2c4-4662-b1ac-ae0e56d92fd7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/989912d7-1cfa-4ba1-9e71-893e037dec1b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"634c6d1a-c4b2-6246-b1ac-ae0e56d92fd7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:09:21.6933333Z\"\n }" + string: "{\n \"name\": \"d7129998-fa1c-a14b-9e71-893e037dec1b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:39:19.4766666Z\"\n }" headers: cache-control: - no-cache @@ -221,7 +179,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:21 GMT + - Wed, 01 Dec 2021 14:40:19 GMT expires: - '-1' pragma: @@ -255,14 +213,14 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1a6d4c63-b2c4-4662-b1ac-ae0e56d92fd7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/989912d7-1cfa-4ba1-9e71-893e037dec1b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"634c6d1a-c4b2-6246-b1ac-ae0e56d92fd7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:09:21.6933333Z\"\n }" + string: "{\n \"name\": \"d7129998-fa1c-a14b-9e71-893e037dec1b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:39:19.4766666Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +229,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:51 GMT + - Wed, 01 Dec 2021 14:40:50 GMT expires: - '-1' pragma: @@ -305,14 +263,14 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1a6d4c63-b2c4-4662-b1ac-ae0e56d92fd7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/989912d7-1cfa-4ba1-9e71-893e037dec1b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"634c6d1a-c4b2-6246-b1ac-ae0e56d92fd7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:09:21.6933333Z\"\n }" + string: "{\n \"name\": \"d7129998-fa1c-a14b-9e71-893e037dec1b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:39:19.4766666Z\"\n }" headers: cache-control: - no-cache @@ -321,7 +279,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:11:21 GMT + - Wed, 01 Dec 2021 14:41:20 GMT expires: - '-1' pragma: @@ -355,14 +313,14 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1a6d4c63-b2c4-4662-b1ac-ae0e56d92fd7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/989912d7-1cfa-4ba1-9e71-893e037dec1b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"634c6d1a-c4b2-6246-b1ac-ae0e56d92fd7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:09:21.6933333Z\"\n }" + string: "{\n \"name\": \"d7129998-fa1c-a14b-9e71-893e037dec1b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:39:19.4766666Z\"\n }" headers: cache-control: - no-cache @@ -371,7 +329,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:11:51 GMT + - Wed, 01 Dec 2021 14:41:50 GMT expires: - '-1' pragma: @@ -405,24 +363,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1a6d4c63-b2c4-4662-b1ac-ae0e56d92fd7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/989912d7-1cfa-4ba1-9e71-893e037dec1b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"634c6d1a-c4b2-6246-b1ac-ae0e56d92fd7\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:09:21.6933333Z\",\n \"endTime\": - \"2021-10-19T07:11:55.3223985Z\"\n }" + string: "{\n \"name\": \"d7129998-fa1c-a14b-9e71-893e037dec1b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:39:19.4766666Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:12:22 GMT + - Wed, 01 Dec 2021 14:42:20 GMT expires: - '-1' pragma: @@ -456,56 +413,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/989912d7-1cfa-4ba1-9e71-893e037dec1b?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-e1bcffd6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-e1bcffd6.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n - \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": - {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n - \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/501f558d-d7de-4210-8919-cda33ce50221\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"d7129998-fa1c-a14b-9e71-893e037dec1b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:39:19.4766666Z\"\n }" headers: cache-control: - no-cache content-length: - - '3443' + - '126' content-type: - application/json date: - - Tue, 19 Oct 2021 07:12:22 GMT + - Wed, 01 Dec 2021 14:42:51 GMT expires: - '-1' pragma: @@ -523,129 +447,6 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --os-type --node-count - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-09-01 - response: - body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n \"enableFIPS\": false\n - \ }\n }\n ]\n }" - headers: - cache-control: - - no-cache - content-length: - - '973' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:12:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"count": 1, "vmSize": "Standard_D2s_v3", "workloadRuntime": - "OCIContainer", "osType": "Windows", "scaleDownMode": "Delete", "mode": "User", - "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], - "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - Content-Length: - - '394' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --cluster-name --name --os-type --node-count - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-09-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n - \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc926314-6fe5-45ef-b0a8-31c301fd0ed9?api-version=2016-03-30 - cache-control: - - no-cache - content-length: - - '913' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:12:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created - request: body: null headers: @@ -654,29 +455,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks nodepool add + - aks create Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --os-type --node-count + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc926314-6fe5-45ef-b0a8-31c301fd0ed9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/989912d7-1cfa-4ba1-9e71-893e037dec1b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"146392cc-e56f-ef45-b0a8-31c301fd0ed9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:12:28.5066666Z\"\n }" + string: "{\n \"name\": \"d7129998-fa1c-a14b-9e71-893e037dec1b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:39:19.4766666Z\",\n \"endTime\": + \"2021-12-01T14:42:56.7086379Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 07:12:58 GMT + - Wed, 01 Dec 2021 14:43:20 GMT expires: - '-1' pragma: @@ -702,29 +506,67 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks nodepool add + - aks create Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --os-type --node-count + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc926314-6fe5-45ef-b0a8-31c301fd0ed9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: - string: "{\n \"name\": \"146392cc-e56f-ef45-b0a8-31c301fd0ed9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:12:28.5066666Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0268c92c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-0268c92c.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": + \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n + \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n + \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": + {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a0e49a96-033b-47cf-aace-4d90e29ec81b\"\n + \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '3855' content-type: - application/json date: - - Tue, 19 Oct 2021 07:13:27 GMT + - Wed, 01 Dec 2021 14:43:21 GMT expires: - '-1' pragma: @@ -746,7 +588,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -756,23 +598,33 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc926314-6fe5-45ef-b0a8-31c301fd0ed9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-10-01 response: body: - string: "{\n \"name\": \"146392cc-e56f-ef45-b0a8-31c301fd0ed9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:12:28.5066666Z\"\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n + \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '126' + - '1006' content-type: - application/json date: - - Tue, 19 Oct 2021 07:13:58 GMT + - Wed, 01 Dec 2021 14:43:22 GMT expires: - '-1' pragma: @@ -791,36 +643,55 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"count": 1, "vmSize": "Standard_D2s_v3", "workloadRuntime": + "OCIContainer", "osType": "Windows", "scaleDownMode": "Delete", "mode": "User", + "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], + "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - aks nodepool add Connection: - keep-alive + Content-Length: + - '394' + Content-Type: + - application/json ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc926314-6fe5-45ef-b0a8-31c301fd0ed9?api-version=2016-03-30 + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-10-01 response: body: - string: "{\n \"name\": \"146392cc-e56f-ef45-b0a8-31c301fd0ed9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:12:28.5066666Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n + \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n + \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n + \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": + \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": \"Delete\",\n + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2300.211110\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/23666668-6e55-47c5-9478-2dcb181fbaf4?api-version=2016-03-30 cache-control: - no-cache content-length: - - '126' + - '913' content-type: - application/json date: - - Tue, 19 Oct 2021 07:14:28 GMT + - Wed, 01 Dec 2021 14:43:25 GMT expires: - '-1' pragma: @@ -829,15 +700,13 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1194' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -852,14 +721,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc926314-6fe5-45ef-b0a8-31c301fd0ed9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/23666668-6e55-47c5-9478-2dcb181fbaf4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"146392cc-e56f-ef45-b0a8-31c301fd0ed9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:12:28.5066666Z\"\n }" + string: "{\n \"name\": \"68666623-556e-c547-9478-2dcb181fbaf4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:43:26.0266666Z\"\n }" headers: cache-control: - no-cache @@ -868,7 +737,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:14:58 GMT + - Wed, 01 Dec 2021 14:43:55 GMT expires: - '-1' pragma: @@ -900,14 +769,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc926314-6fe5-45ef-b0a8-31c301fd0ed9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/23666668-6e55-47c5-9478-2dcb181fbaf4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"146392cc-e56f-ef45-b0a8-31c301fd0ed9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:12:28.5066666Z\"\n }" + string: "{\n \"name\": \"68666623-556e-c547-9478-2dcb181fbaf4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:43:26.0266666Z\"\n }" headers: cache-control: - no-cache @@ -916,7 +785,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:15:28 GMT + - Wed, 01 Dec 2021 14:44:25 GMT expires: - '-1' pragma: @@ -948,14 +817,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc926314-6fe5-45ef-b0a8-31c301fd0ed9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/23666668-6e55-47c5-9478-2dcb181fbaf4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"146392cc-e56f-ef45-b0a8-31c301fd0ed9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:12:28.5066666Z\"\n }" + string: "{\n \"name\": \"68666623-556e-c547-9478-2dcb181fbaf4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:43:26.0266666Z\"\n }" headers: cache-control: - no-cache @@ -964,7 +833,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:15:58 GMT + - Wed, 01 Dec 2021 14:44:56 GMT expires: - '-1' pragma: @@ -996,14 +865,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc926314-6fe5-45ef-b0a8-31c301fd0ed9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/23666668-6e55-47c5-9478-2dcb181fbaf4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"146392cc-e56f-ef45-b0a8-31c301fd0ed9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:12:28.5066666Z\"\n }" + string: "{\n \"name\": \"68666623-556e-c547-9478-2dcb181fbaf4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:43:26.0266666Z\"\n }" headers: cache-control: - no-cache @@ -1012,7 +881,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:16:28 GMT + - Wed, 01 Dec 2021 14:45:26 GMT expires: - '-1' pragma: @@ -1044,14 +913,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc926314-6fe5-45ef-b0a8-31c301fd0ed9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/23666668-6e55-47c5-9478-2dcb181fbaf4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"146392cc-e56f-ef45-b0a8-31c301fd0ed9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:12:28.5066666Z\"\n }" + string: "{\n \"name\": \"68666623-556e-c547-9478-2dcb181fbaf4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:43:26.0266666Z\"\n }" headers: cache-control: - no-cache @@ -1060,7 +929,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:16:58 GMT + - Wed, 01 Dec 2021 14:45:56 GMT expires: - '-1' pragma: @@ -1092,14 +961,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc926314-6fe5-45ef-b0a8-31c301fd0ed9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/23666668-6e55-47c5-9478-2dcb181fbaf4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"146392cc-e56f-ef45-b0a8-31c301fd0ed9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:12:28.5066666Z\"\n }" + string: "{\n \"name\": \"68666623-556e-c547-9478-2dcb181fbaf4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:43:26.0266666Z\"\n }" headers: cache-control: - no-cache @@ -1108,7 +977,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:17:29 GMT + - Wed, 01 Dec 2021 14:46:26 GMT expires: - '-1' pragma: @@ -1140,14 +1009,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc926314-6fe5-45ef-b0a8-31c301fd0ed9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/23666668-6e55-47c5-9478-2dcb181fbaf4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"146392cc-e56f-ef45-b0a8-31c301fd0ed9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:12:28.5066666Z\"\n }" + string: "{\n \"name\": \"68666623-556e-c547-9478-2dcb181fbaf4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:43:26.0266666Z\"\n }" headers: cache-control: - no-cache @@ -1156,7 +1025,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:17:58 GMT + - Wed, 01 Dec 2021 14:46:57 GMT expires: - '-1' pragma: @@ -1188,14 +1057,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc926314-6fe5-45ef-b0a8-31c301fd0ed9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/23666668-6e55-47c5-9478-2dcb181fbaf4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"146392cc-e56f-ef45-b0a8-31c301fd0ed9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:12:28.5066666Z\"\n }" + string: "{\n \"name\": \"68666623-556e-c547-9478-2dcb181fbaf4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:43:26.0266666Z\"\n }" headers: cache-control: - no-cache @@ -1204,7 +1073,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:18:28 GMT + - Wed, 01 Dec 2021 14:47:26 GMT expires: - '-1' pragma: @@ -1236,14 +1105,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc926314-6fe5-45ef-b0a8-31c301fd0ed9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/23666668-6e55-47c5-9478-2dcb181fbaf4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"146392cc-e56f-ef45-b0a8-31c301fd0ed9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:12:28.5066666Z\"\n }" + string: "{\n \"name\": \"68666623-556e-c547-9478-2dcb181fbaf4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:43:26.0266666Z\"\n }" headers: cache-control: - no-cache @@ -1252,7 +1121,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:18:59 GMT + - Wed, 01 Dec 2021 14:47:56 GMT expires: - '-1' pragma: @@ -1284,15 +1153,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc926314-6fe5-45ef-b0a8-31c301fd0ed9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/23666668-6e55-47c5-9478-2dcb181fbaf4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"146392cc-e56f-ef45-b0a8-31c301fd0ed9\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:12:28.5066666Z\",\n \"endTime\": - \"2021-10-19T07:19:26.0536999Z\"\n }" + string: "{\n \"name\": \"68666623-556e-c547-9478-2dcb181fbaf4\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:43:26.0266666Z\",\n \"endTime\": + \"2021-12-01T14:48:21.4337316Z\"\n }" headers: cache-control: - no-cache @@ -1301,7 +1170,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:19:29 GMT + - Wed, 01 Dec 2021 14:48:27 GMT expires: - '-1' pragma: @@ -1333,10 +1202,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1348,7 +1217,7 @@ interactions: \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2300.211110\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: @@ -1358,7 +1227,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:19:29 GMT + - Wed, 01 Dec 2021 14:48:28 GMT expires: - '-1' pragma: @@ -1390,65 +1259,68 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-e1bcffd6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-e1bcffd6.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0268c92c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-0268c92c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ },\n {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": + \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n + \ \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n + \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": + \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2300.211110\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/501f558d-d7de-4210-8919-cda33ce50221\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a0e49a96-033b-47cf-aace-4d90e29ec81b\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4141' + - '4553' content-type: - application/json date: - - Tue, 19 Oct 2021 07:19:30 GMT + - Wed, 01 Dec 2021 14:48:28 GMT expires: - '-1' pragma: @@ -1471,9 +1343,9 @@ interactions: {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.20.9", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": - "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "type": - "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.20.9", - "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.20.9", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}, {"count": 1, "vmSize": "Standard_D2s_v3", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": @@ -1481,18 +1353,19 @@ interactions: "User", "orchestratorVersion": "1.20.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "npwin"}], "linuxProfile": - {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser1", "adminPassword": "n!C3000004", "enableCSIProxy": true}, "servicePrincipalProfile": - {"clientId":"00000000-0000-0000-0000-000000000001"}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", - "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": + "n!C3000004", "enableCSIProxy": true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/501f558d-d7de-4210-8919-cda33ce50221"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a0e49a96-033b-47cf-aace-4d90e29ec81b"}]}, + "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": + {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -1503,73 +1376,76 @@ interactions: Connection: - keep-alive Content-Length: - - '2853' + - '3233' Content-Type: - application/json ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-e1bcffd6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-e1bcffd6.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0268c92c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-0268c92c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Updating\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ },\n {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": + \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n + \ \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n + \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": + \"Delete\",\n \"provisioningState\": \"Updating\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2300.211110\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/501f558d-d7de-4210-8919-cda33ce50221\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a0e49a96-033b-47cf-aace-4d90e29ec81b\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4138' + - '4550' content-type: - application/json date: - - Tue, 19 Oct 2021 07:19:32 GMT + - Wed, 01 Dec 2021 14:48:32 GMT expires: - '-1' pragma: @@ -1585,7 +1461,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --windows-admin-password + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:49:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1603,14 +1527,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -1619,7 +1543,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:02 GMT + - Wed, 01 Dec 2021 14:49:33 GMT expires: - '-1' pragma: @@ -1651,14 +1575,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -1667,7 +1591,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:32 GMT + - Wed, 01 Dec 2021 14:50:02 GMT expires: - '-1' pragma: @@ -1699,14 +1623,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -1715,7 +1639,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:21:02 GMT + - Wed, 01 Dec 2021 14:50:33 GMT expires: - '-1' pragma: @@ -1747,14 +1671,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -1763,7 +1687,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:21:32 GMT + - Wed, 01 Dec 2021 14:51:04 GMT expires: - '-1' pragma: @@ -1795,14 +1719,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -1811,7 +1735,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:22:03 GMT + - Wed, 01 Dec 2021 14:51:33 GMT expires: - '-1' pragma: @@ -1843,14 +1767,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -1859,7 +1783,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:22:33 GMT + - Wed, 01 Dec 2021 14:52:03 GMT expires: - '-1' pragma: @@ -1891,14 +1815,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -1907,7 +1831,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:23:02 GMT + - Wed, 01 Dec 2021 14:52:34 GMT expires: - '-1' pragma: @@ -1939,14 +1863,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -1955,7 +1879,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:23:32 GMT + - Wed, 01 Dec 2021 14:53:04 GMT expires: - '-1' pragma: @@ -1987,14 +1911,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -2003,7 +1927,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:24:02 GMT + - Wed, 01 Dec 2021 14:53:34 GMT expires: - '-1' pragma: @@ -2035,14 +1959,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -2051,7 +1975,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:24:33 GMT + - Wed, 01 Dec 2021 14:54:05 GMT expires: - '-1' pragma: @@ -2083,14 +2007,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -2099,7 +2023,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:25:03 GMT + - Wed, 01 Dec 2021 14:54:34 GMT expires: - '-1' pragma: @@ -2131,14 +2055,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -2147,7 +2071,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:25:32 GMT + - Wed, 01 Dec 2021 14:55:04 GMT expires: - '-1' pragma: @@ -2179,14 +2103,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -2195,7 +2119,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:26:03 GMT + - Wed, 01 Dec 2021 14:55:35 GMT expires: - '-1' pragma: @@ -2227,14 +2151,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -2243,7 +2167,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:26:33 GMT + - Wed, 01 Dec 2021 14:56:05 GMT expires: - '-1' pragma: @@ -2275,14 +2199,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -2291,7 +2215,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:27:03 GMT + - Wed, 01 Dec 2021 14:56:35 GMT expires: - '-1' pragma: @@ -2323,14 +2247,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -2339,7 +2263,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:27:33 GMT + - Wed, 01 Dec 2021 14:57:06 GMT expires: - '-1' pragma: @@ -2371,14 +2295,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -2387,7 +2311,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:28:03 GMT + - Wed, 01 Dec 2021 14:57:36 GMT expires: - '-1' pragma: @@ -2419,14 +2343,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -2435,7 +2359,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:28:33 GMT + - Wed, 01 Dec 2021 14:58:05 GMT expires: - '-1' pragma: @@ -2467,14 +2391,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -2483,7 +2407,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:29:03 GMT + - Wed, 01 Dec 2021 14:58:35 GMT expires: - '-1' pragma: @@ -2515,14 +2439,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -2531,7 +2455,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:29:33 GMT + - Wed, 01 Dec 2021 14:59:06 GMT expires: - '-1' pragma: @@ -2563,14 +2487,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -2579,7 +2503,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:30:03 GMT + - Wed, 01 Dec 2021 14:59:36 GMT expires: - '-1' pragma: @@ -2611,14 +2535,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -2627,7 +2551,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:30:34 GMT + - Wed, 01 Dec 2021 15:00:06 GMT expires: - '-1' pragma: @@ -2659,14 +2583,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -2675,7 +2599,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:31:04 GMT + - Wed, 01 Dec 2021 15:00:36 GMT expires: - '-1' pragma: @@ -2707,14 +2631,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -2723,7 +2647,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:31:33 GMT + - Wed, 01 Dec 2021 15:01:07 GMT expires: - '-1' pragma: @@ -2755,14 +2679,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -2771,7 +2695,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:32:03 GMT + - Wed, 01 Dec 2021 15:01:37 GMT expires: - '-1' pragma: @@ -2803,14 +2727,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -2819,7 +2743,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:32:34 GMT + - Wed, 01 Dec 2021 15:02:07 GMT expires: - '-1' pragma: @@ -2851,14 +2775,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\"\n }" headers: cache-control: - no-cache @@ -2867,7 +2791,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:33:04 GMT + - Wed, 01 Dec 2021 15:02:38 GMT expires: - '-1' pragma: @@ -2899,15 +2823,15 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5475a1b2-f3bc-4372-8b9d-3628c2778f03?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f4573fb4-b6bd-4081-a86d-2f3617eb381a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2a17554-bcf3-7243-8b9d-3628c2778f03\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:19:32.7933333Z\",\n \"endTime\": - \"2021-10-19T07:33:33.8268431Z\"\n }" + string: "{\n \"name\": \"b43f57f4-bdb6-8140-a86d-2f3617eb381a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:48:32.3566666Z\",\n \"endTime\": + \"2021-12-01T15:02:51.9939754Z\"\n }" headers: cache-control: - no-cache @@ -2916,7 +2840,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:33:34 GMT + - Wed, 01 Dec 2021 15:03:07 GMT expires: - '-1' pragma: @@ -2948,65 +2872,68 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-e1bcffd6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-e1bcffd6.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0268c92c.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-0268c92c.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ },\n {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": + \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n + \ \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n + \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": + \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2300.211110\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/501f558d-d7de-4210-8919-cda33ce50221\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a0e49a96-033b-47cf-aace-4d90e29ec81b\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4141' + - '4553' content-type: - application/json date: - - Tue, 19 Oct 2021 07:33:34 GMT + - Wed, 01 Dec 2021 15:03:08 GMT expires: - '-1' pragma: @@ -3038,10 +2965,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-10-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -3049,13 +2976,13 @@ interactions: \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n \"enableFIPS\": false\n - \ }\n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false\n }\n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": @@ -3065,17 +2992,17 @@ interactions: \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": - \"AKSWindows-2019-17763.2213.210922\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + \"AKSWindows-2019-17763.2300.211110\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1948' + - '1981' content-type: - application/json date: - - Tue, 19 Oct 2021 07:33:35 GMT + - Wed, 01 Dec 2021 15:03:09 GMT expires: - '-1' pragma: @@ -3109,26 +3036,26 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95545e40-9c3a-4d0f-bd38-de15bff975fb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/39d820ce-8860-4508-a269-4012325a49a7?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 07:33:35 GMT + - Wed, 01 Dec 2021 15:03:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/95545e40-9c3a-4d0f-bd38-de15bff975fb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/39d820ce-8860-4508-a269-4012325a49a7?api-version=2016-03-30 pragma: - no-cache server: @@ -3138,7 +3065,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14995' + - '14996' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_cluster.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_cluster.yaml old mode 100755 new mode 100644 index 9677e5c3eba..f6f87089ec9 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_cluster.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_cluster.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T06:39:46Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:16:43Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 06:39:46 GMT + - Wed, 01 Dec 2021 14:16:43 GMT expires: - '-1' pragma: @@ -44,18 +44,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestcypsierbb-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest3plpsrwhi-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "c000003"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "c000003"}], "linuxProfile": + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -66,39 +66,40 @@ interactions: Connection: - keep-alive Content-Length: - - '1388' + - '1745' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestcypsierbb-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestcypsierbb-8ecadf-b88b35df.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestcypsierbb-8ecadf-b88b35df.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest3plpsrwhi-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest3plpsrwhi-8ecadf-6c3a8caf.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest3plpsrwhi-8ecadf-6c3a8caf.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -106,22 +107,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cf083e2-7d4a-41ff-88ea-ce241c4861f4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3a1ada6-8769-499c-89be-1cb40db12736?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2775' + - '3233' content-type: - application/json date: - - Tue, 19 Oct 2021 06:39:50 GMT + - Wed, 01 Dec 2021 14:16:48 GMT expires: - '-1' pragma: @@ -133,7 +135,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -152,63 +154,14 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cf083e2-7d4a-41ff-88ea-ce241c4861f4?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"e283f03c-4a7d-ff41-88ea-ce241c4861f4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:50.0533333Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 06:40:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value - -o - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cf083e2-7d4a-41ff-88ea-ce241c4861f4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3a1ada6-8769-499c-89be-1cb40db12736?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e283f03c-4a7d-ff41-88ea-ce241c4861f4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:50.0533333Z\"\n }" + string: "{\n \"name\": \"a6ada1e3-6987-9c49-89be-1cb40db12736\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:16:48.9633333Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +170,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:40:49 GMT + - Wed, 01 Dec 2021 14:17:19 GMT expires: - '-1' pragma: @@ -250,14 +203,14 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cf083e2-7d4a-41ff-88ea-ce241c4861f4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3a1ada6-8769-499c-89be-1cb40db12736?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e283f03c-4a7d-ff41-88ea-ce241c4861f4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:50.0533333Z\"\n }" + string: "{\n \"name\": \"a6ada1e3-6987-9c49-89be-1cb40db12736\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:16:48.9633333Z\"\n }" headers: cache-control: - no-cache @@ -266,7 +219,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:41:19 GMT + - Wed, 01 Dec 2021 14:17:49 GMT expires: - '-1' pragma: @@ -299,14 +252,14 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cf083e2-7d4a-41ff-88ea-ce241c4861f4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3a1ada6-8769-499c-89be-1cb40db12736?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e283f03c-4a7d-ff41-88ea-ce241c4861f4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:50.0533333Z\"\n }" + string: "{\n \"name\": \"a6ada1e3-6987-9c49-89be-1cb40db12736\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:16:48.9633333Z\"\n }" headers: cache-control: - no-cache @@ -315,7 +268,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:41:49 GMT + - Wed, 01 Dec 2021 14:18:19 GMT expires: - '-1' pragma: @@ -348,14 +301,14 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cf083e2-7d4a-41ff-88ea-ce241c4861f4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3a1ada6-8769-499c-89be-1cb40db12736?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e283f03c-4a7d-ff41-88ea-ce241c4861f4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T06:39:50.0533333Z\"\n }" + string: "{\n \"name\": \"a6ada1e3-6987-9c49-89be-1cb40db12736\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:16:48.9633333Z\"\n }" headers: cache-control: - no-cache @@ -364,7 +317,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 06:42:19 GMT + - Wed, 01 Dec 2021 14:18:50 GMT expires: - '-1' pragma: @@ -397,24 +350,24 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cf083e2-7d4a-41ff-88ea-ce241c4861f4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3a1ada6-8769-499c-89be-1cb40db12736?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e283f03c-4a7d-ff41-88ea-ce241c4861f4\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T06:39:50.0533333Z\",\n \"endTime\": - \"2021-10-19T06:42:48.331309Z\"\n }" + string: "{\n \"name\": \"a6ada1e3-6987-9c49-89be-1cb40db12736\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:16:48.9633333Z\",\n \"endTime\": + \"2021-12-01T14:19:02.1891857Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Tue, 19 Oct 2021 06:42:50 GMT + - Wed, 01 Dec 2021 14:19:19 GMT expires: - '-1' pragma: @@ -447,57 +400,60 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestcypsierbb-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestcypsierbb-8ecadf-b88b35df.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestcypsierbb-8ecadf-b88b35df.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest3plpsrwhi-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest3plpsrwhi-8ecadf-6c3a8caf.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest3plpsrwhi-8ecadf-6c3a8caf.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/311b2d97-402b-4c36-8493-434562afc8ff\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2025a276-cf2b-40a9-95ac-c49f383a1e5f\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3438' + - '3896' content-type: - application/json date: - - Tue, 19 Oct 2021 06:42:50 GMT + - Wed, 01 Dec 2021 14:19:20 GMT expires: - '-1' pragma: @@ -529,57 +485,60 @@ interactions: ParameterSetName: - -g -n --node-image-only --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestcypsierbb-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestcypsierbb-8ecadf-b88b35df.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestcypsierbb-8ecadf-b88b35df.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest3plpsrwhi-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest3plpsrwhi-8ecadf-6c3a8caf.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest3plpsrwhi-8ecadf-6c3a8caf.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/311b2d97-402b-4c36-8493-434562afc8ff\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2025a276-cf2b-40a9-95ac-c49f383a1e5f\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3438' + - '3896' content-type: - application/json date: - - Tue, 19 Oct 2021 06:42:51 GMT + - Wed, 01 Dec 2021 14:19:21 GMT expires: - '-1' pragma: @@ -613,10 +572,10 @@ interactions: ParameterSetName: - -g -n --node-image-only --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/upgradeNodeImageVersion?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/upgradeNodeImageVersion?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -624,27 +583,28 @@ interactions: \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"UpgradingNodeImageVersion\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": - \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"UpgradingNodeImageVersion\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \ \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff165199-99a9-4f33-ae9b-13d02c362f1d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c726b416-e0e3-49d1-adcd-0af220ed177a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '905' + - '936' content-type: - application/json date: - - Tue, 19 Oct 2021 06:42:52 GMT + - Wed, 01 Dec 2021 14:19:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ff165199-99a9-4f33-ae9b-13d02c362f1d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/c726b416-e0e3-49d1-adcd-0af220ed177a?api-version=2016-03-30 pragma: - no-cache server: @@ -672,57 +632,60 @@ interactions: ParameterSetName: - -g -n --node-image-only --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestcypsierbb-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestcypsierbb-8ecadf-b88b35df.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestcypsierbb-8ecadf-b88b35df.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitest3plpsrwhi-8ecadf\",\n \"fqdn\": + \"cliakstest-clitest3plpsrwhi-8ecadf-6c3a8caf.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitest3plpsrwhi-8ecadf-6c3a8caf.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"UpgradingNodeImageVersion\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n - \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"UpgradingNodeImageVersion\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/311b2d97-402b-4c36-8493-434562afc8ff\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2025a276-cf2b-40a9-95ac-c49f383a1e5f\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3454' + - '3912' content-type: - application/json date: - - Tue, 19 Oct 2021 06:42:53 GMT + - Wed, 01 Dec 2021 14:19:22 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_nodepool.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_nodepool.yaml old mode 100755 new mode 100644 index 6b27910ae4a..c54be344c05 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_nodepool.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_node_image_only_nodepool.yaml @@ -14,12 +14,12 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:07:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-01T14:19:25Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 07:07:52 GMT + - Wed, 01 Dec 2021 14:19:25 GMT expires: - '-1' pragma: @@ -44,18 +44,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestdcfvjspii-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestb45bzvpum-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": - "OCIContainer", "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": - "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false, "name": "c000003"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false}}' + "OCIContainer", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "c000003"}], "linuxProfile": + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -66,39 +66,40 @@ interactions: Connection: - keep-alive Content-Length: - - '1388' + - '1745' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdcfvjspii-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestdcfvjspii-8ecadf-2c36fa5d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestdcfvjspii-8ecadf-2c36fa5d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestb45bzvpum-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestb45bzvpum-8ecadf-960b4291.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestb45bzvpum-8ecadf-960b4291.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": @@ -106,22 +107,23 @@ interactions: {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false\n },\n + \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7acadb6b-100c-4ce6-bd9b-63039394b735?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d11761d-e160-4d40-bc13-75d3b8a1a4b7?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2775' + - '3233' content-type: - application/json date: - - Tue, 19 Oct 2021 07:07:56 GMT + - Wed, 01 Dec 2021 14:19:29 GMT expires: - '-1' pragma: @@ -133,7 +135,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -152,14 +154,14 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7acadb6b-100c-4ce6-bd9b-63039394b735?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d11761d-e160-4d40-bc13-75d3b8a1a4b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6bdbca7a-0c10-e64c-bd9b-63039394b735\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:07:56.61Z\"\n }" + string: "{\n \"name\": \"1d76114d-60e1-404d-bc13-75d3b8a1a4b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:19:30.43Z\"\n }" headers: cache-control: - no-cache @@ -168,7 +170,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:08:26 GMT + - Wed, 01 Dec 2021 14:20:00 GMT expires: - '-1' pragma: @@ -201,14 +203,14 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7acadb6b-100c-4ce6-bd9b-63039394b735?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d11761d-e160-4d40-bc13-75d3b8a1a4b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6bdbca7a-0c10-e64c-bd9b-63039394b735\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:07:56.61Z\"\n }" + string: "{\n \"name\": \"1d76114d-60e1-404d-bc13-75d3b8a1a4b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:19:30.43Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +219,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:08:56 GMT + - Wed, 01 Dec 2021 14:20:30 GMT expires: - '-1' pragma: @@ -250,14 +252,14 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7acadb6b-100c-4ce6-bd9b-63039394b735?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d11761d-e160-4d40-bc13-75d3b8a1a4b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6bdbca7a-0c10-e64c-bd9b-63039394b735\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:07:56.61Z\"\n }" + string: "{\n \"name\": \"1d76114d-60e1-404d-bc13-75d3b8a1a4b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:19:30.43Z\"\n }" headers: cache-control: - no-cache @@ -266,7 +268,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:09:26 GMT + - Wed, 01 Dec 2021 14:21:00 GMT expires: - '-1' pragma: @@ -299,14 +301,14 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7acadb6b-100c-4ce6-bd9b-63039394b735?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d11761d-e160-4d40-bc13-75d3b8a1a4b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6bdbca7a-0c10-e64c-bd9b-63039394b735\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:07:56.61Z\"\n }" + string: "{\n \"name\": \"1d76114d-60e1-404d-bc13-75d3b8a1a4b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:19:30.43Z\"\n }" headers: cache-control: - no-cache @@ -315,7 +317,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:09:56 GMT + - Wed, 01 Dec 2021 14:21:31 GMT expires: - '-1' pragma: @@ -348,15 +350,15 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7acadb6b-100c-4ce6-bd9b-63039394b735?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d11761d-e160-4d40-bc13-75d3b8a1a4b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6bdbca7a-0c10-e64c-bd9b-63039394b735\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:07:56.61Z\",\n \"endTime\": - \"2021-10-19T07:10:24.3915931Z\"\n }" + string: "{\n \"name\": \"1d76114d-60e1-404d-bc13-75d3b8a1a4b7\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:19:30.43Z\",\n \"endTime\": + \"2021-12-01T14:21:46.1487928Z\"\n }" headers: cache-control: - no-cache @@ -365,7 +367,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:26 GMT + - Wed, 01 Dec 2021 14:22:01 GMT expires: - '-1' pragma: @@ -398,57 +400,60 @@ interactions: - --resource-group --name --nodepool-name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestdcfvjspii-8ecadf\",\n \"fqdn\": - \"cliakstest-clitestdcfvjspii-8ecadf-2c36fa5d.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliakstest-clitestdcfvjspii-8ecadf-2c36fa5d.portal.hcp.westus2.azmk8s.io\",\n + \"1.20.9\",\n \"dnsPrefix\": \"cliakstest-clitestb45bzvpum-8ecadf\",\n \"fqdn\": + \"cliakstest-clitestb45bzvpum-8ecadf-960b4291.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliakstest-clitestb45bzvpum-8ecadf-960b4291.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5c9a5af6-eccf-46bd-9917-1b74ac8b2ccf\"\n + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/db68f22e-4e9f-4690-bd6d-9847fc44000f\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\"\n },\n \"maxAgentPools\": + \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3438' + - '3896' content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:26 GMT + - Wed, 01 Dec 2021 14:22:02 GMT expires: - '-1' pragma: @@ -482,10 +487,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --node-image-only --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/upgradeNodeImageVersion?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003/upgradeNodeImageVersion?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -493,27 +498,28 @@ interactions: \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"UpgradingNodeImageVersion\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": - \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"UpgradingNodeImageVersion\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \ \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cea2809e-dbdb-4313-a3fe-9ce8a8330ef9?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd35f3ee-a765-472d-879a-f771b82367d2?api-version=2016-03-30 cache-control: - no-cache content-length: - - '905' + - '936' content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:27 GMT + - Wed, 01 Dec 2021 14:22:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/cea2809e-dbdb-4313-a3fe-9ce8a8330ef9?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/cd35f3ee-a765-472d-879a-f771b82367d2?api-version=2016-03-30 pragma: - no-cache server: @@ -541,10 +547,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n @@ -552,21 +558,22 @@ interactions: \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"UpgradingNodeImageVersion\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.20.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": - \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"UpgradingNodeImageVersion\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.20.9\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '905' + - '936' content-type: - application/json date: - - Tue, 19 Oct 2021 07:10:28 GMT + - Wed, 01 Dec 2021 14:22:04 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_nodepool.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_nodepool.yaml old mode 100755 new mode 100644 index 5fee7e878da..52e8d2efad1 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_nodepool.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_aks_upgrade_nodepool.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators?api-version=2019-04-01&resource-type=managedClusters response: @@ -67,7 +67,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:12:38 GMT + - Wed, 01 Dec 2021 14:20:51 GMT expires: - '-1' pragma: @@ -85,64 +85,20 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username - --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin - --kubernetes-version --ssh-key-value - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.11 (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-19T07:12:38Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '313' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 07:12:40 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.21.2", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "workloadRuntime": "OCIContainer", - "osType": "Linux", "type": "VirtualMachineScaleSets", "mode": "System", "enableNodePublicIP": - false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": - -1.0, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser1", "adminPassword": "replace-Password1234$"}, "addonProfiles": {}, - "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": - "azure", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false}}' + "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": + "replace-Password1234$"}, "addonProfiles": {}, "enableRBAC": true, "enablePodSecurityPolicy": + false, "networkProfile": {"networkPlugin": "azure", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -153,7 +109,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1346' + - '1703' Content-Type: - application/json ParameterSetName: @@ -161,31 +117,32 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --kubernetes-version --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.2\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-c0ff9c99.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-c0ff9c99.portal.hcp.westus2.azmk8s.io\",\n + \"1.21.2\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-04fd06a4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-04fd06a4.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.21.2\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.21.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n @@ -194,22 +151,23 @@ interactions: \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"publicNetworkAccess\": \"Enabled\"\n },\n \"identity\": {\n - \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae647c04-477e-413c-9fc0-7893f9caa428?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c7fb31ec-d352-4add-8228-96e9c300f55e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2780' + - '3192' content-type: - application/json date: - - Tue, 19 Oct 2021 07:12:42 GMT + - Wed, 01 Dec 2021 14:20:56 GMT expires: - '-1' pragma: @@ -221,7 +179,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1193' status: code: 201 message: Created @@ -241,23 +199,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --kubernetes-version --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae647c04-477e-413c-9fc0-7893f9caa428?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c7fb31ec-d352-4add-8228-96e9c300f55e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"047c64ae-7e47-3c41-9fc0-7893f9caa428\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:12:42.8833333Z\"\n }" + string: "{\n \"name\": \"ec31fbc7-52d3-dd4a-8228-96e9c300f55e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:56.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:13:12 GMT + - Wed, 01 Dec 2021 14:21:26 GMT expires: - '-1' pragma: @@ -291,23 +249,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --kubernetes-version --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae647c04-477e-413c-9fc0-7893f9caa428?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c7fb31ec-d352-4add-8228-96e9c300f55e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"047c64ae-7e47-3c41-9fc0-7893f9caa428\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:12:42.8833333Z\"\n }" + string: "{\n \"name\": \"ec31fbc7-52d3-dd4a-8228-96e9c300f55e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:56.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:13:43 GMT + - Wed, 01 Dec 2021 14:21:56 GMT expires: - '-1' pragma: @@ -341,23 +299,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --kubernetes-version --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae647c04-477e-413c-9fc0-7893f9caa428?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c7fb31ec-d352-4add-8228-96e9c300f55e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"047c64ae-7e47-3c41-9fc0-7893f9caa428\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:12:42.8833333Z\"\n }" + string: "{\n \"name\": \"ec31fbc7-52d3-dd4a-8228-96e9c300f55e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:56.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:14:13 GMT + - Wed, 01 Dec 2021 14:22:26 GMT expires: - '-1' pragma: @@ -391,23 +349,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --kubernetes-version --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae647c04-477e-413c-9fc0-7893f9caa428?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c7fb31ec-d352-4add-8228-96e9c300f55e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"047c64ae-7e47-3c41-9fc0-7893f9caa428\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:12:42.8833333Z\"\n }" + string: "{\n \"name\": \"ec31fbc7-52d3-dd4a-8228-96e9c300f55e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:20:56.09Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '121' content-type: - application/json date: - - Tue, 19 Oct 2021 07:14:42 GMT + - Wed, 01 Dec 2021 14:22:56 GMT expires: - '-1' pragma: @@ -441,24 +399,24 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --kubernetes-version --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae647c04-477e-413c-9fc0-7893f9caa428?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c7fb31ec-d352-4add-8228-96e9c300f55e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"047c64ae-7e47-3c41-9fc0-7893f9caa428\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:12:42.8833333Z\",\n \"endTime\": - \"2021-10-19T07:15:12.7866262Z\"\n }" + string: "{\n \"name\": \"ec31fbc7-52d3-dd4a-8228-96e9c300f55e\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:20:56.09Z\",\n \"endTime\": + \"2021-12-01T14:23:07.9838411Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '165' content-type: - application/json date: - - Tue, 19 Oct 2021 07:15:12 GMT + - Wed, 01 Dec 2021 14:23:26 GMT expires: - '-1' pragma: @@ -492,56 +450,59 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --kubernetes-version --ssh-key-value User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.2\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-c0ff9c99.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-c0ff9c99.portal.hcp.westus2.azmk8s.io\",\n + \"1.21.2\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-04fd06a4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-04fd06a4.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.21.2\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.21.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f4caed3f-5bf2-4d4a-bad8-7635418b27ee\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/fb5d5cd3-ffcb-4714-9f41-5c4557059881\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3443' + - '3855' content-type: - application/json date: - - Tue, 19 Oct 2021 07:15:12 GMT + - Wed, 01 Dec 2021 14:23:27 GMT expires: - '-1' pragma: @@ -573,10 +534,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2021-10-01 response: body: string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n @@ -584,22 +545,22 @@ interactions: \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.21.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n \"enableFIPS\": false\n - \ }\n }\n ]\n }" + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.21.2\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n + \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '973' + - '1006' content-type: - application/json date: - - Tue, 19 Oct 2021 07:15:13 GMT + - Wed, 01 Dec 2021 14:23:29 GMT expires: - '-1' pragma: @@ -639,10 +600,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -654,11 +615,11 @@ interactions: \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2300.211110\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/190ae1c9-7110-4a75-a94a-6e7ba684096b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78637be4-9b8b-4b7f-8cdf-8f1473b8b08c?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -666,7 +627,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:15:36 GMT + - Wed, 01 Dec 2021 14:23:31 GMT expires: - '-1' pragma: @@ -696,14 +657,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/190ae1c9-7110-4a75-a94a-6e7ba684096b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78637be4-9b8b-4b7f-8cdf-8f1473b8b08c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c9e10a19-1071-754a-a94a-6e7ba684096b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:15:36.35Z\"\n }" + string: "{\n \"name\": \"e47b6378-8b9b-7f4b-8cdf-8f1473b8b08c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:23:31.64Z\"\n }" headers: cache-control: - no-cache @@ -712,7 +673,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:16:06 GMT + - Wed, 01 Dec 2021 14:24:01 GMT expires: - '-1' pragma: @@ -744,14 +705,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/190ae1c9-7110-4a75-a94a-6e7ba684096b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78637be4-9b8b-4b7f-8cdf-8f1473b8b08c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c9e10a19-1071-754a-a94a-6e7ba684096b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:15:36.35Z\"\n }" + string: "{\n \"name\": \"e47b6378-8b9b-7f4b-8cdf-8f1473b8b08c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:23:31.64Z\"\n }" headers: cache-control: - no-cache @@ -760,7 +721,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:16:36 GMT + - Wed, 01 Dec 2021 14:24:31 GMT expires: - '-1' pragma: @@ -792,14 +753,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/190ae1c9-7110-4a75-a94a-6e7ba684096b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78637be4-9b8b-4b7f-8cdf-8f1473b8b08c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c9e10a19-1071-754a-a94a-6e7ba684096b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:15:36.35Z\"\n }" + string: "{\n \"name\": \"e47b6378-8b9b-7f4b-8cdf-8f1473b8b08c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:23:31.64Z\"\n }" headers: cache-control: - no-cache @@ -808,7 +769,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:17:05 GMT + - Wed, 01 Dec 2021 14:25:02 GMT expires: - '-1' pragma: @@ -840,14 +801,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/190ae1c9-7110-4a75-a94a-6e7ba684096b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78637be4-9b8b-4b7f-8cdf-8f1473b8b08c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c9e10a19-1071-754a-a94a-6e7ba684096b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:15:36.35Z\"\n }" + string: "{\n \"name\": \"e47b6378-8b9b-7f4b-8cdf-8f1473b8b08c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:23:31.64Z\"\n }" headers: cache-control: - no-cache @@ -856,7 +817,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:17:36 GMT + - Wed, 01 Dec 2021 14:25:32 GMT expires: - '-1' pragma: @@ -888,14 +849,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/190ae1c9-7110-4a75-a94a-6e7ba684096b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78637be4-9b8b-4b7f-8cdf-8f1473b8b08c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c9e10a19-1071-754a-a94a-6e7ba684096b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:15:36.35Z\"\n }" + string: "{\n \"name\": \"e47b6378-8b9b-7f4b-8cdf-8f1473b8b08c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:23:31.64Z\"\n }" headers: cache-control: - no-cache @@ -904,7 +865,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:18:06 GMT + - Wed, 01 Dec 2021 14:26:01 GMT expires: - '-1' pragma: @@ -936,14 +897,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/190ae1c9-7110-4a75-a94a-6e7ba684096b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78637be4-9b8b-4b7f-8cdf-8f1473b8b08c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c9e10a19-1071-754a-a94a-6e7ba684096b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:15:36.35Z\"\n }" + string: "{\n \"name\": \"e47b6378-8b9b-7f4b-8cdf-8f1473b8b08c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:23:31.64Z\"\n }" headers: cache-control: - no-cache @@ -952,7 +913,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:18:36 GMT + - Wed, 01 Dec 2021 14:26:31 GMT expires: - '-1' pragma: @@ -984,14 +945,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/190ae1c9-7110-4a75-a94a-6e7ba684096b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78637be4-9b8b-4b7f-8cdf-8f1473b8b08c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c9e10a19-1071-754a-a94a-6e7ba684096b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:15:36.35Z\"\n }" + string: "{\n \"name\": \"e47b6378-8b9b-7f4b-8cdf-8f1473b8b08c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:23:31.64Z\"\n }" headers: cache-control: - no-cache @@ -1000,7 +961,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:19:06 GMT + - Wed, 01 Dec 2021 14:27:02 GMT expires: - '-1' pragma: @@ -1032,14 +993,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/190ae1c9-7110-4a75-a94a-6e7ba684096b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78637be4-9b8b-4b7f-8cdf-8f1473b8b08c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c9e10a19-1071-754a-a94a-6e7ba684096b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:15:36.35Z\"\n }" + string: "{\n \"name\": \"e47b6378-8b9b-7f4b-8cdf-8f1473b8b08c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:23:31.64Z\"\n }" headers: cache-control: - no-cache @@ -1048,7 +1009,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:19:36 GMT + - Wed, 01 Dec 2021 14:27:32 GMT expires: - '-1' pragma: @@ -1080,14 +1041,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/190ae1c9-7110-4a75-a94a-6e7ba684096b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78637be4-9b8b-4b7f-8cdf-8f1473b8b08c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c9e10a19-1071-754a-a94a-6e7ba684096b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:15:36.35Z\"\n }" + string: "{\n \"name\": \"e47b6378-8b9b-7f4b-8cdf-8f1473b8b08c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:23:31.64Z\"\n }" headers: cache-control: - no-cache @@ -1096,7 +1057,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:20:06 GMT + - Wed, 01 Dec 2021 14:28:02 GMT expires: - '-1' pragma: @@ -1128,159 +1089,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/190ae1c9-7110-4a75-a94a-6e7ba684096b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78637be4-9b8b-4b7f-8cdf-8f1473b8b08c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c9e10a19-1071-754a-a94a-6e7ba684096b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:15:36.35Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:20:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --os-type --node-count - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/190ae1c9-7110-4a75-a94a-6e7ba684096b?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"c9e10a19-1071-754a-a94a-6e7ba684096b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:15:36.35Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:21:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --os-type --node-count - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/190ae1c9-7110-4a75-a94a-6e7ba684096b?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"c9e10a19-1071-754a-a94a-6e7ba684096b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:15:36.35Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json - date: - - Tue, 19 Oct 2021 07:21:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --os-type --node-count - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/190ae1c9-7110-4a75-a94a-6e7ba684096b?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"c9e10a19-1071-754a-a94a-6e7ba684096b\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:15:36.35Z\",\n \"endTime\": - \"2021-10-19T07:21:59.5334438Z\"\n }" + string: "{\n \"name\": \"e47b6378-8b9b-7f4b-8cdf-8f1473b8b08c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:23:31.64Z\",\n \"endTime\": + \"2021-12-01T14:28:25.9741659Z\"\n }" headers: cache-control: - no-cache @@ -1289,7 +1106,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:22:06 GMT + - Wed, 01 Dec 2021 14:28:33 GMT expires: - '-1' pragma: @@ -1321,10 +1138,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -1336,7 +1153,7 @@ interactions: \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2300.211110\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: @@ -1346,7 +1163,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:22:07 GMT + - Wed, 01 Dec 2021 14:28:33 GMT expires: - '-1' pragma: @@ -1378,65 +1195,68 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.21.2\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-c0ff9c99.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-c0ff9c99.portal.hcp.westus2.azmk8s.io\",\n + \"1.21.2\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-04fd06a4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-04fd06a4.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.21.2\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.21.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n + \"1.21.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ },\n {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": + \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n + \ \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n + \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": + \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.21.2\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2300.211110\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f4caed3f-5bf2-4d4a-bad8-7635418b27ee\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/fb5d5cd3-ffcb-4714-9f41-5c4557059881\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4141' + - '4553' content-type: - application/json date: - - Tue, 19 Oct 2021 07:22:08 GMT + - Wed, 01 Dec 2021 14:28:34 GMT expires: - '-1' pragma: @@ -1459,9 +1279,9 @@ interactions: {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.22.2", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": - "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "type": - "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.22.2", - "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + "OCIContainer", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.22.2", "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}, {"count": 1, "vmSize": "Standard_D2s_v3", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "workloadRuntime": "OCIContainer", "maxPods": 30, "osType": @@ -1469,17 +1289,18 @@ interactions: "User", "orchestratorVersion": "1.22.2", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "npwin"}], "linuxProfile": - {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser1", "enableCSIProxy": true}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", - "enableRBAC": true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "enableCSIProxy": + true}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": + true, "enablePodSecurityPolicy": false, "networkProfile": {"networkPlugin": "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f4caed3f-5bf2-4d4a-bad8-7635418b27ee"}]}}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/fb5d5cd3-ffcb-4714-9f41-5c4557059881"}]}, + "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": + {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "publicNetworkAccess": "Enabled"}}' + "disableLocalAccounts": false}}' headers: Accept: - application/json @@ -1490,73 +1311,76 @@ interactions: Connection: - keep-alive Content-Length: - - '2768' + - '3148' Content-Type: - application/json ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Upgrading\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.22.2\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-c0ff9c99.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-c0ff9c99.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.2\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-04fd06a4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-04fd06a4.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Upgrading\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.22.2\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Upgrading\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Upgrading\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.22.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n + \"1.22.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ },\n {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": + \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n + \ \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n + \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": + \"Delete\",\n \"provisioningState\": \"Upgrading\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.2\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2300.211110\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f4caed3f-5bf2-4d4a-bad8-7635418b27ee\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/fb5d5cd3-ffcb-4714-9f41-5c4557059881\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4141' + - '4553' content-type: - application/json date: - - Tue, 19 Oct 2021 07:22:10 GMT + - Wed, 01 Dec 2021 14:28:38 GMT expires: - '-1' pragma: @@ -1572,7 +1396,103 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1172' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks upgrade + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --kubernetes-version --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:29:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks upgrade + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --kubernetes-version --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:29:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1590,14 +1510,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -1606,7 +1526,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:22:41 GMT + - Wed, 01 Dec 2021 14:30:08 GMT expires: - '-1' pragma: @@ -1638,14 +1558,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -1654,7 +1574,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:23:11 GMT + - Wed, 01 Dec 2021 14:30:38 GMT expires: - '-1' pragma: @@ -1686,14 +1606,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -1702,7 +1622,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:23:41 GMT + - Wed, 01 Dec 2021 14:31:09 GMT expires: - '-1' pragma: @@ -1734,14 +1654,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -1750,7 +1670,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:24:11 GMT + - Wed, 01 Dec 2021 14:31:39 GMT expires: - '-1' pragma: @@ -1782,14 +1702,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -1798,7 +1718,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:24:41 GMT + - Wed, 01 Dec 2021 14:32:09 GMT expires: - '-1' pragma: @@ -1830,14 +1750,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -1846,7 +1766,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:25:11 GMT + - Wed, 01 Dec 2021 14:32:39 GMT expires: - '-1' pragma: @@ -1878,14 +1798,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -1894,7 +1814,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:25:41 GMT + - Wed, 01 Dec 2021 14:33:09 GMT expires: - '-1' pragma: @@ -1926,14 +1846,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -1942,7 +1862,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:26:12 GMT + - Wed, 01 Dec 2021 14:33:40 GMT expires: - '-1' pragma: @@ -1974,14 +1894,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -1990,7 +1910,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:26:41 GMT + - Wed, 01 Dec 2021 14:34:10 GMT expires: - '-1' pragma: @@ -2022,14 +1942,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -2038,7 +1958,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:27:12 GMT + - Wed, 01 Dec 2021 14:34:40 GMT expires: - '-1' pragma: @@ -2070,14 +1990,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -2086,7 +2006,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:27:42 GMT + - Wed, 01 Dec 2021 14:35:10 GMT expires: - '-1' pragma: @@ -2118,14 +2038,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -2134,7 +2054,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:28:12 GMT + - Wed, 01 Dec 2021 14:35:41 GMT expires: - '-1' pragma: @@ -2166,14 +2086,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -2182,7 +2102,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:28:41 GMT + - Wed, 01 Dec 2021 14:36:11 GMT expires: - '-1' pragma: @@ -2214,14 +2134,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -2230,7 +2150,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:29:12 GMT + - Wed, 01 Dec 2021 14:36:40 GMT expires: - '-1' pragma: @@ -2262,14 +2182,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -2278,7 +2198,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:29:42 GMT + - Wed, 01 Dec 2021 14:37:11 GMT expires: - '-1' pragma: @@ -2310,14 +2230,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -2326,7 +2246,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:30:12 GMT + - Wed, 01 Dec 2021 14:37:41 GMT expires: - '-1' pragma: @@ -2358,14 +2278,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -2374,7 +2294,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:30:41 GMT + - Wed, 01 Dec 2021 14:38:11 GMT expires: - '-1' pragma: @@ -2406,14 +2326,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -2422,7 +2342,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:31:12 GMT + - Wed, 01 Dec 2021 14:38:41 GMT expires: - '-1' pragma: @@ -2454,14 +2374,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -2470,7 +2390,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:31:42 GMT + - Wed, 01 Dec 2021 14:39:12 GMT expires: - '-1' pragma: @@ -2502,14 +2422,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -2518,7 +2438,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:32:12 GMT + - Wed, 01 Dec 2021 14:39:42 GMT expires: - '-1' pragma: @@ -2550,14 +2470,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -2566,7 +2486,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:32:42 GMT + - Wed, 01 Dec 2021 14:40:12 GMT expires: - '-1' pragma: @@ -2598,14 +2518,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -2614,7 +2534,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:33:13 GMT + - Wed, 01 Dec 2021 14:40:42 GMT expires: - '-1' pragma: @@ -2646,14 +2566,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -2662,7 +2582,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:33:42 GMT + - Wed, 01 Dec 2021 14:41:12 GMT expires: - '-1' pragma: @@ -2694,14 +2614,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -2710,7 +2630,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:34:12 GMT + - Wed, 01 Dec 2021 14:41:43 GMT expires: - '-1' pragma: @@ -2742,14 +2662,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -2758,7 +2678,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:34:43 GMT + - Wed, 01 Dec 2021 14:42:13 GMT expires: - '-1' pragma: @@ -2790,14 +2710,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -2806,7 +2726,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:35:13 GMT + - Wed, 01 Dec 2021 14:42:43 GMT expires: - '-1' pragma: @@ -2838,14 +2758,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -2854,7 +2774,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:35:42 GMT + - Wed, 01 Dec 2021 14:43:13 GMT expires: - '-1' pragma: @@ -2886,14 +2806,14 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\"\n }" headers: cache-control: - no-cache @@ -2902,7 +2822,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:36:12 GMT + - Wed, 01 Dec 2021 14:43:44 GMT expires: - '-1' pragma: @@ -2934,15 +2854,15 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/101dee80-1213-44b3-8087-1147282be069?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a01a980-0133-4a14-97eb-91a3c0440bba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80ee1d10-1312-b344-8087-1147282be069\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:22:11.3233333Z\",\n \"endTime\": - \"2021-10-19T07:36:24.1393505Z\"\n }" + string: "{\n \"name\": \"80a9010a-3301-144a-97eb-91a3c0440bba\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:28:37.9533333Z\",\n \"endTime\": + \"2021-12-01T14:43:44.8859698Z\"\n }" headers: cache-control: - no-cache @@ -2951,7 +2871,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:36:43 GMT + - Wed, 01 Dec 2021 14:44:14 GMT expires: - '-1' pragma: @@ -2983,65 +2903,68 @@ interactions: ParameterSetName: - --resource-group --name --kubernetes-version --yes User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.22.2\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-c0ff9c99.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-c0ff9c99.portal.hcp.westus2.azmk8s.io\",\n + \"1.22.2\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-04fd06a4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-04fd06a4.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.22.2\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2021.10.02\",\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": - \"OCIContainer\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.22.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n + \"1.22.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQChv1lqJOFqlXd/Sp6RoI5ZS500UG+SXrE+6PjpUk8btELBCBXSUOpX7zYs5+VbuTUfHV7Qa3xBoL3HIbKKkz5QHvF9AUkjbpJLvCbQR1tlqkQdlGen4lsH0YQNOL0Q6Lj0UF+C5MaCHz4a+NecIZ9h/2mpeHV+KcIUaoC9Ulifi35BUvB/6lp4MQbcxJHXTwGbNLtzP+iJIkx8DafVXseJx4uh4wTIlKBLDpUKg+RYTze8UsYCkz1+YvE/cDjVsJh4edQ9fNqZyWYnjMbnyhk46pYpRVf6DeMX5nzShlagUux3KEx2eU4vUtvuIkGFneZDprv2vAMkBCX4xgbxtxZZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-1804gen2containerd-2021.11.06\",\n \"enableFIPS\": false\n + \ },\n {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": + \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n + \ \"kubeletDiskType\": \"OS\",\n \"workloadRuntime\": \"OCIContainer\",\n + \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"scaleDownMode\": + \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": + {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.2\",\n + \ \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": + false,\n \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": + \"AKSWindows-2019-17763.2300.211110\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n + \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \ \"enableRBAC\": true,\n \"enablePodSecurityPolicy\": false,\n \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f4caed3f-5bf2-4d4a-bad8-7635418b27ee\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/fb5d5cd3-ffcb-4714-9f41-5c4557059881\"\n \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\"\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"publicNetworkAccess\": - \"Enabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ }\n },\n \"disableLocalAccounts\": false\n },\n \"identity\": {\n + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4141' + - '4553' content-type: - application/json date: - - Tue, 19 Oct 2021 07:36:43 GMT + - Wed, 01 Dec 2021 14:44:14 GMT expires: - '-1' pragma: @@ -3073,10 +2996,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -3088,7 +3011,7 @@ interactions: \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2300.211110\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: @@ -3098,7 +3021,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:36:44 GMT + - Wed, 01 Dec 2021 14:44:16 GMT expires: - '-1' pragma: @@ -3139,12 +3062,12 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) WindowsContainerRuntime: - containerd method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -3156,11 +3079,11 @@ interactions: \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2300.211110\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1478ae4-bef9-4b3d-934c-8c30e8d69313?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5914d756-9b57-40b4-893c-ce82e13658cb?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -3168,7 +3091,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:36:46 GMT + - Wed, 01 Dec 2021 14:44:18 GMT expires: - '-1' pragma: @@ -3184,7 +3107,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 200 message: OK @@ -3202,17 +3125,17 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) WindowsContainerRuntime: - containerd method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1478ae4-bef9-4b3d-934c-8c30e8d69313?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5914d756-9b57-40b4-893c-ce82e13658cb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e48a47f1-f9be-3d4b-934c-8c30e8d69313\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-10-19T07:36:47.4333333Z\",\n \"endTime\": - \"2021-10-19T07:36:54.1981819Z\"\n }" + string: "{\n \"name\": \"56d71459-579b-b440-893c-ce82e13658cb\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-12-01T14:44:18.7766666Z\",\n \"endTime\": + \"2021-12-01T14:44:24.3125655Z\"\n }" headers: cache-control: - no-cache @@ -3221,7 +3144,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:37:17 GMT + - Wed, 01 Dec 2021 14:44:48 GMT expires: - '-1' pragma: @@ -3253,12 +3176,12 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) WindowsContainerRuntime: - containerd method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2021-10-01 response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n @@ -3270,7 +3193,7 @@ interactions: \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.22.2\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2213.210922\",\n + false,\n \"osType\": \"Windows\",\n \"nodeImageVersion\": \"AKSWindows-2019-17763.2300.211110\",\n \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: @@ -3280,7 +3203,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:37:17 GMT + - Wed, 01 Dec 2021 14:44:49 GMT expires: - '-1' pragma: @@ -3314,8 +3237,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2021-07-01 response: @@ -3323,17 +3246,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5aa8daf-e4c8-4d74-a87a-142f1a90b99a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/87f95f2a-1771-4b38-84aa-0d6a2d7b1b2f?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 07:37:18 GMT + - Wed, 01 Dec 2021 14:44:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b5aa8daf-e4c8-4d74-a87a-142f1a90b99a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/87f95f2a-1771-4b38-84aa-0d6a2d7b1b2f?api-version=2016-03-30 pragma: - no-cache server: @@ -3343,7 +3266,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14994' + - '14997' status: code: 202 message: Accepted diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_get_os_options.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_get_os_options.yaml new file mode 100644 index 00000000000..ed400ea299e --- /dev/null +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_get_os_options.yaml @@ -0,0 +1,57 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks get-os-options + Connection: + - keep-alive + ParameterSetName: + - -l + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.4.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/osOptions/default?api-version=2021-10-01&resource-type=managedClusters + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/osOptions/default\",\n + \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/osOptions\",\n + \ \"properties\": {\n \"osOptionPropertyList\": [\n {\n \"os-type\": + \"Linux\",\n \"os-sku\": \"Ubuntu\",\n \"enable-fips-image\": false\n + \ },\n {\n \"os-type\": \"Windows\",\n \"os-sku\": \"\",\n \"enable-fips-image\": + false\n },\n {\n \"os-type\": \"Linux\",\n \"os-sku\": \"Ubuntu\",\n + \ \"enable-fips-image\": true\n },\n {\n \"os-type\": \"Linux\",\n + \ \"os-sku\": \"CBLMariner\",\n \"enable-fips-image\": false\n }\n + \ ]\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '655' + content-type: + - application/json + date: + - Wed, 01 Dec 2021 14:44:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +version: 1 diff --git a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_get_version.yaml b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_get_version.yaml old mode 100755 new mode 100644 index e34153122cc..b88870ea9d1 --- a/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_get_version.yaml +++ b/src/aks-preview/azext_aks_preview/tests/latest/recordings/test_get_version.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerservice/16.3.0 Python/3.8.11 - (Linux-5.4.0-1059-azure-x86_64-with-glibc2.27) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerservice/16.1.0 Python/3.8.10 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators?api-version=2019-04-01&resource-type=managedClusters response: @@ -67,7 +67,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Oct 2021 07:00:34 GMT + - Wed, 01 Dec 2021 14:24:00 GMT expires: - '-1' pragma: diff --git a/src/aks-preview/azext_aks_preview/tests/latest/test_aks_commands.py b/src/aks-preview/azext_aks_preview/tests/latest/test_aks_commands.py index db792ed13ff..3f7a493cfcd 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/test_aks_commands.py +++ b/src/aks-preview/azext_aks_preview/tests/latest/test_aks_commands.py @@ -10,7 +10,7 @@ from azure.cli.testsdk import ( ResourceGroupPreparer, RoleBasedServicePrincipalPreparer, ScenarioTest, live_only) from azure.cli.command_modules.acs._format import version_to_tuple -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from knack.util import CLIError from .recording_processors import KeyReplacer @@ -1272,7 +1272,7 @@ def test_aks_create_with_ossku(self, resource_group, resource_group_location): # delete self.cmd( 'aks delete -g {resource_group} -n {name} --yes --no-wait', checks=[self.is_empty()]) - + @AllowLargeResponse() @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='eastus') def test_aks_nodepool_add_with_workload_runtime(self, resource_group, resource_group_location): @@ -1344,7 +1344,7 @@ def test_aks_nodepool_add_with_ossku(self, resource_group, resource_group_locati # delete self.cmd( 'aks delete -g {resource_group} -n {name} --yes --no-wait', checks=[self.is_empty()]) - + @AllowLargeResponse() @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='centraluseuap') def test_aks_nodepool_stop_and_start(self, resource_group, resource_group_location): @@ -1356,7 +1356,7 @@ def test_aks_nodepool_stop_and_start(self, resource_group, resource_group_locati 'nodepool_name' : nodepool_name, 'ssh_key_value': self.generate_ssh_keys() }) - + # create aks cluster create_cmd = 'aks create --resource-group={resource_group} --name={name} --ssh-key-value={ssh_key_value}' self.cmd(create_cmd, checks=[ @@ -1367,7 +1367,7 @@ def test_aks_nodepool_stop_and_start(self, resource_group, resource_group_locati self.check('provisioningState', 'Succeeded') ]) # stop nodepool - self.cmd('aks nodepool stop --resource-group={resource_group} --cluster-name={name} --nodepool-name={nodepool_name} --aks-custom-headers AKSHTTPCustomFeatures=Microsoft.ContainerService/PreviewStartStopAgentPool', checks=[ + self.cmd('aks nodepool stop --resource-group={resource_group} --cluster-name={name} --nodepool-name={nodepool_name} --aks-custom-headers AKSHTTPCustomFeatures=Microsoft.ContainerService/PreviewStartStopAgentPool', checks=[ self.check('powerState.code', 'Stopped') ]) #start nodepool @@ -1461,7 +1461,7 @@ def test_aks_snapshot(self, resource_group, resource_group_location): aks_name2 = self.create_random_name('cliakstest', 16) nodepool_name = self.create_random_name('c', 6) nodepool_name2 = self.create_random_name('c', 6) - snapshot_name = self.create_random_name('s', 6) + snapshot_name = self.create_random_name('s', 16) self.kwargs.update({ 'resource_group': resource_group, @@ -1562,7 +1562,7 @@ def test_aks_snapshot(self, resource_group, resource_group_location): '--node-image-only --no-wait ' \ '--snapshot-id {snapshot_resource_id} -o json' self.cmd(upgrade_node_image_only_nodepool_cmd) - + get_nodepool_cmd = 'aks nodepool show ' \ '--resource-group={resource_group} ' \ '--cluster-name={aks_name2} ' \ @@ -1571,7 +1571,7 @@ def test_aks_snapshot(self, resource_group, resource_group_location): self.check('provisioningState', 'UpgradingNodeImageVersion'), self.check('creationData.sourceResourceId', snapshot_resource_id) ]) - + # delete the 2nd AKS cluster self.cmd('aks delete -g {resource_group} -n {aks_name2} --yes --no-wait', checks=[self.is_empty()]) @@ -1684,7 +1684,7 @@ def test_aks_upgrade_nodepool(self, resource_group, resource_group_location): self.check('windowsProfile.adminUsername', 'azureuser1') ]) - # add Windows nodepool + # add Windows nodepool self.cmd('aks nodepool add --resource-group={resource_group} --cluster-name={name} --name={nodepool2_name} --os-type Windows --node-count=1', checks=[ self.check('provisioningState', 'Succeeded') ]) @@ -1757,7 +1757,7 @@ def test_aks_create_with_windows(self, resource_group, resource_group_location): 'aks delete -g {resource_group} -n {name} --yes --no-wait', checks=[self.is_empty()]) @AllowLargeResponse() - @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='eastus2euap') + @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='eastus') def test_aks_create_with_fips(self, resource_group, resource_group_location): # reset the count so in replay mode the random names will start with 0 self.test_resources_count = 0 @@ -2018,7 +2018,7 @@ def create_new_cluster_with_monitoring_aad_auth(self, resource_group, resource_g workspace_resource_group = workspace_resource_id.split("/")[4] # check that the DCR was created - dataCollectionRuleName = f"DCR-{workspace_name}" + dataCollectionRuleName = f"MSCI-{workspace_name}" dcr_resource_id = f"/subscriptions/{subscription}/resourceGroups/{workspace_resource_group}/providers/Microsoft.Insights/dataCollectionRules/{dataCollectionRuleName}" get_cmd = f'rest --method get --url https://management.azure.com{dcr_resource_id}?api-version=2019-11-01-preview' self.cmd(get_cmd, checks=[ @@ -2092,7 +2092,7 @@ def enable_monitoring_existing_cluster_aad_atuh(self, resource_group, resource_g workspace_resource_group = workspace_resource_id.split("/")[4] # check that the DCR was created - dataCollectionRuleName = f"DCR-{workspace_name}" + dataCollectionRuleName = f"MSCI-{workspace_name}" dcr_resource_id = f"/subscriptions/{subscription}/resourceGroups/{workspace_resource_group}/providers/Microsoft.Insights/dataCollectionRules/{dataCollectionRuleName}" get_cmd = f'rest --method get --url https://management.azure.com{dcr_resource_id}?api-version=2019-11-01-preview' self.cmd(get_cmd, checks=[ @@ -2146,7 +2146,7 @@ def test_aks_create_with_monitoring_legacy_auth(self, resource_group, resource_g try: # check that the DCR was created - dataCollectionRuleName = f"DCR-{workspace_name}" + dataCollectionRuleName = f"MSCI-{workspace_name}" dcr_resource_id = f"/subscriptions/{subscription}/resourceGroups/{workspace_resource_group}/providers/Microsoft.Insights/dataCollectionRules/{dataCollectionRuleName}" get_cmd = f'rest --method get --url https://management.azure.com{dcr_resource_id}?api-version=2019-11-01-preview' self.cmd(get_cmd, checks=[ @@ -2868,7 +2868,8 @@ def test_aks_create_with_windows_gmsa(self, resource_group, resource_group_locat '--dns-name-prefix={dns_name_prefix} --node-count=1 ' \ '--windows-admin-username={windows_admin_username} --windows-admin-password={windows_admin_password} ' \ '--load-balancer-sku=standard --vm-set-type=virtualmachinescalesets --network-plugin=azure ' \ - '--ssh-key-value={ssh_key_value} --enable-windows-gmsa --yes' + '--ssh-key-value={ssh_key_value} --enable-windows-gmsa --yes ' \ + '--aks-custom-headers AKSHTTPCustomFeatures=Microsoft.ContainerService/AKSWindowsGmsaPreview' self.cmd(create_cmd, checks=[ self.exists('fqdn'), self.exists('nodeResourceGroup'), @@ -2890,6 +2891,183 @@ def test_aks_create_with_windows_gmsa(self, resource_group, resource_group_locat self.cmd( 'aks delete -g {resource_group} -n {name} --yes --no-wait', checks=[self.is_empty()]) + @AllowLargeResponse() + @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='centraluseuap', preserve_default_location=True) + def test_aks_create_dualstack_with_default_network(self, resource_group, resource_group_location): + # reset the count so in replay mode the random names will start with 0 + self.test_resources_count = 0 + # kwargs for string formatting + aks_name = self.create_random_name('cliakstest', 16) + self.kwargs.update({ + 'resource_group': resource_group, + 'name': aks_name, + 'location': resource_group_location, + 'resource_type': 'Microsoft.ContainerService/ManagedClusters', + 'ssh_key_value': self.generate_ssh_keys(), + }) + + # create + create_cmd = 'aks create --resource-group={resource_group} --name={name} --location={location} ' \ + '--ip-families IPv4,IPv6 --ssh-key-value={ssh_key_value} --kubernetes-version 1.21.2 ' \ + '--aks-custom-headers AKSHTTPCustomFeatures=Microsoft.ContainerService/AKS-EnableDualStack' + + self.cmd(create_cmd, checks=[ + self.check('provisioningState', 'Succeeded'), + self.check('networkProfile.podCidrs[] | length(@)', 2), + self.check('networkProfile.serviceCidrs[] | length(@)', 2), + self.check('networkProfile.ipFamilies', ['IPv4', 'IPv6']) + ]) + + # delete + self.cmd( + 'aks delete -g {resource_group} -n {name} --yes --no-wait', checks=[self.is_empty()]) + + @AllowLargeResponse() + @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='westus2') + def test_aks_create_with_default_network(self, resource_group, resource_group_location): + # reset the count so in replay mode the random names will start with 0 + self.test_resources_count = 0 + # kwargs for string formatting + aks_name = self.create_random_name('cliakstest', 16) + self.kwargs.update({ + 'resource_group': resource_group, + 'name': aks_name, + 'location': resource_group_location, + 'resource_type': 'Microsoft.ContainerService/ManagedClusters', + 'ssh_key_value': self.generate_ssh_keys(), + }) + + # create + create_cmd = 'aks create --resource-group={resource_group} --name={name} --location={location} ' \ + '--pod-cidr 172.126.0.0/16 --service-cidr 172.56.0.0/16 --dns-service-ip 172.56.0.10 ' \ + '--pod-cidrs 172.126.0.0/16 --service-cidrs 172.56.0.0/16 --ip-families IPv4 ' \ + '--network-plugin kubenet --ssh-key-value={ssh_key_value}' + self.cmd(create_cmd, checks=[ + self.check('provisioningState', 'Succeeded'), + self.check('networkProfile.podCidr', '172.126.0.0/16'), + self.check('networkProfile.podCidrs', ['172.126.0.0/16']), + self.check('networkProfile.serviceCidr', '172.56.0.0/16'), + self.check('networkProfile.serviceCidrs', ['172.56.0.0/16']), + self.check('networkProfile.ipFamilies', ['IPv4']) + ]) + + # delete + self.cmd( + 'aks delete -g {resource_group} -n {name} --yes --no-wait', checks=[self.is_empty()]) + + @AllowLargeResponse() + @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='westus2', preserve_default_location=True) + def test_aks_create_and_update_outbound_ips(self, resource_group, resource_group_location): + # kwargs for string formatting + aks_name = self.create_random_name('cliakstest', 16) + init_pip_name = self.create_random_name('cliakstest', 16) + update_pip_name = self.create_random_name('cliakstest', 16) + self.kwargs.update({ + 'resource_group': resource_group, + 'name': aks_name, + 'location': resource_group_location, + 'resource_type': 'Microsoft.ContainerService/ManagedClusters', + 'init_pip_name': init_pip_name, + 'update_pip_name': update_pip_name, + 'ssh_key_value': self.generate_ssh_keys(), + }) + + create_init_pip = 'network public-ip create -g {resource_group} -n {init_pip_name} --sku Standard' + init_pip = self.cmd(create_init_pip, checks=[ + self.check('publicIp.provisioningState', 'Succeeded') + ]).get_output_in_json() + + create_update_pip = 'network public-ip create -g {resource_group} -n {update_pip_name} --sku Standard' + update_pip = self.cmd(create_update_pip, checks=[ + self.check('publicIp.provisioningState', 'Succeeded') + ]).get_output_in_json() + + init_pip_id = init_pip['publicIp']['id'] + update_pip_id = update_pip['publicIp']['id'] + + assert init_pip_id is not None + assert update_pip_id is not None + self.kwargs.update({ + 'init_pip_id': init_pip_id, + 'update_pip_id': update_pip_id, + }) + + # create cluster + create_cmd = 'aks create --resource-group={resource_group} --name={name} --location={location} ' \ + '--ssh-key-value={ssh_key_value} --load-balancer-outbound-ips {init_pip_id}' + + self.cmd(create_cmd, checks=[ + self.check('provisioningState', 'Succeeded'), + self.check('networkProfile.loadBalancerProfile.effectiveOutboundIPs[] | length(@)', 1), + self.check('networkProfile.loadBalancerProfile.effectiveOutboundIPs[0].id', init_pip_id) + ]) + + # update cluster + update_cmd = 'aks update -g {resource_group} -n {name} --load-balancer-outbound-ips {update_pip_id}' + + self.cmd(update_cmd, checks=[ + self.check('provisioningState', 'Succeeded'), + self.check('networkProfile.loadBalancerProfile.effectiveOutboundIPs[] | length(@)', 1), + self.check('networkProfile.loadBalancerProfile.effectiveOutboundIPs[0].id', update_pip_id) + ]) + + # delete + self.cmd( + 'aks delete -g {resource_group} -n {name} --yes --no-wait', checks=[self.is_empty()]) + + @AllowLargeResponse() + @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='centraluseuap', preserve_default_location=True) + def test_aks_create_and_update_ipv6_count(self, resource_group, resource_group_location): + # reset the count so in replay mode the random names will start with 0 + self.test_resources_count = 0 + # kwargs for string formatting + aks_name = self.create_random_name('cliakstest', 16) + self.kwargs.update({ + 'resource_group': resource_group, + 'name': aks_name, + 'location': resource_group_location, + 'resource_type': 'Microsoft.ContainerService/ManagedClusters', + 'ssh_key_value': self.generate_ssh_keys(), + }) + + # create + create_cmd = 'aks create --resource-group={resource_group} --name={name} --location={location} ' \ + '--pod-cidr 172.126.0.0/16 --service-cidr 172.56.0.0/16 --dns-service-ip 172.56.0.10 ' \ + '--pod-cidrs 172.126.0.0/16,2001:abcd:1234::/64 --service-cidrs 172.56.0.0/16,2001:ffff::/108 ' \ + '--ip-families IPv4,IPv6 --load-balancer-managed-outbound-ipv6-count 2 ' \ + '--network-plugin kubenet --ssh-key-value={ssh_key_value} --kubernetes-version 1.21.2 ' \ + '--aks-custom-headers AKSHTTPCustomFeatures=Microsoft.ContainerService/AKS-EnableDualStack' + self.cmd(create_cmd, checks=[ + self.check('provisioningState', 'Succeeded'), + self.check('networkProfile.podCidr', '172.126.0.0/16'), + self.check('networkProfile.podCidrs', ['172.126.0.0/16', '2001:abcd:1234::/64']), + self.check('networkProfile.serviceCidr', '172.56.0.0/16'), + self.check('networkProfile.serviceCidrs', ['172.56.0.0/16', '2001:ffff::/108']), + self.check('networkProfile.ipFamilies', ['IPv4', 'IPv6']), + self.check('networkProfile.loadBalancerProfile.managedOutboundIPs.countIpv6', 2), + self.check('networkProfile.loadBalancerProfile.managedOutboundIPs.count', 1), + self.check('networkProfile.loadBalancerProfile.effectiveOutboundIPs[] | length(@)', 3) + ]) + + # update + update_cmd = 'aks update -g {resource_group} -n {name} --load-balancer-managed-outbound-ipv6-count 4' + + self.cmd(update_cmd, checks=[ + self.check('provisioningState', 'Succeeded'), + self.check('networkProfile.podCidr', '172.126.0.0/16'), + self.check('networkProfile.podCidrs', ['172.126.0.0/16', '2001:abcd:1234::/64']), + self.check('networkProfile.serviceCidr', '172.56.0.0/16'), + self.check('networkProfile.serviceCidrs', ['172.56.0.0/16', '2001:ffff::/108']), + self.check('networkProfile.ipFamilies', ['IPv4', 'IPv6']), + self.check('networkProfile.loadBalancerProfile.managedOutboundIPs.countIpv6', 4), + self.check('networkProfile.loadBalancerProfile.managedOutboundIPs.count', 1), + self.check('networkProfile.loadBalancerProfile.effectiveOutboundIPs[] | length(@)', 5) + ]) + + # delete + self.cmd( + 'aks delete -g {resource_group} -n {name} --yes --no-wait', checks=[self.is_empty()]) + @AllowLargeResponse() @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='centraluseuap') def test_aks_update_with_windows_gmsa(self, resource_group, resource_group_location): @@ -2929,7 +3107,9 @@ def test_aks_update_with_windows_gmsa(self, resource_group, resource_group_locat ]) # update Windows gmsa - self.cmd('aks update --resource-group={resource_group} --name={name} --enable-windows-gmsa --yes', checks=[ + update_cmd = "aks update --resource-group={resource_group} --name={name} --enable-windows-gmsa --yes " \ + "--aks-custom-headers AKSHTTPCustomFeatures=Microsoft.ContainerService/AKSWindowsGmsaPreview" + self.cmd(update_cmd, checks=[ self.check('provisioningState', 'Succeeded'), self.check('windowsProfile.gmsaProfile.enabled', 'True') ]) @@ -3027,7 +3207,7 @@ def test_aks_nodepool_update_label_msi(self, resource_group, resource_group_loca @AllowLargeResponse() - @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='eastus2') + @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='westus2') def test_aks_update_label_msi(self, resource_group, resource_group_location): # reset the count so in replay mode the random names will start with 0 self.test_resources_count = 0 @@ -3075,4 +3255,4 @@ def test_aks_update_label_msi(self, resource_group, resource_group_location): self.check('provisioningState', 'Succeeded'), self.check('agentPoolProfiles[0].nodeLabels.label1', 'value11'), self.check('agentPoolProfiles[0].nodeLabels.label2', None), - ]) \ No newline at end of file + ]) diff --git a/src/aks-preview/azext_aks_preview/tests/latest/test_decorator.py b/src/aks-preview/azext_aks_preview/tests/latest/test_decorator.py index dcdb350024f..3ff1cd9016d 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/test_decorator.py +++ b/src/aks-preview/azext_aks_preview/tests/latest/test_decorator.py @@ -54,6 +54,7 @@ InvalidArgumentValueError, MutuallyExclusiveArgumentError, RequiredArgumentMissingError, + UnknownError, ) from msrestazure.azure_exceptions import CloudError @@ -213,6 +214,141 @@ def test_get_pod_subnet_id(self): ctx_1.attach_mc(mc) self.assertEqual(ctx_1.get_pod_subnet_id(), "test_mc_pod_subnet_id") + def test_get_pod_cidrs(self): + # default + ctx_1 = AKSPreviewContext( + self.cmd, + {"pod_cidrs": "10.244.0.0/16,2001:abcd::/64"}, + self.models, + decorator_mode=DecoratorMode.CREATE, + ) + self.assertEqual( + ctx_1.get_pod_cidrs(), ["10.244.0.0/16", "2001:abcd::/64"] + ) + + ctx_2 = AKSPreviewContext( + self.cmd, + {"pod_cidrs": ""}, + self.models, + decorator_mode=DecoratorMode.CREATE, + ) + self.assertEqual(ctx_2.get_pod_cidrs(), []) + + ctx_3 = AKSPreviewContext( + self.cmd, + {"pod_cidrs": None}, + self.models, + decorator_mode=DecoratorMode.CREATE, + ) + self.assertEqual(ctx_3.get_pod_cidrs(), None) + + def test_get_service_cidrs(self): + # default + ctx_1 = AKSPreviewContext( + self.cmd, + {"service_cidrs": "10.244.0.0/16,2001:abcd::/64"}, + self.models, + decorator_mode=DecoratorMode.CREATE, + ) + self.assertEqual( + ctx_1.get_service_cidrs(), ["10.244.0.0/16", "2001:abcd::/64"] + ) + + ctx_2 = AKSPreviewContext( + self.cmd, + {"service_cidrs": ""}, + self.models, + decorator_mode=DecoratorMode.CREATE, + ) + self.assertEqual(ctx_2.get_service_cidrs(), []) + + ctx_3 = AKSPreviewContext( + self.cmd, + {"service_cidrs": None}, + self.models, + decorator_mode=DecoratorMode.CREATE, + ) + self.assertEqual(ctx_3.get_service_cidrs(), None) + + def test_get_ip_families(self): + # default + ctx_1 = AKSPreviewContext( + self.cmd, + {"ip_families": "IPv4,IPv6"}, + self.models, + decorator_mode=DecoratorMode.CREATE, + ) + self.assertEqual(ctx_1.get_ip_families(), ["IPv4", "IPv6"]) + + ctx_2 = AKSPreviewContext( + self.cmd, + {"ip_families": ""}, + self.models, + decorator_mode=DecoratorMode.CREATE, + ) + self.assertEqual(ctx_2.get_ip_families(), []) + + ctx_3 = AKSPreviewContext( + self.cmd, + {"ip_families": None}, + self.models, + decorator_mode=DecoratorMode.CREATE, + ) + self.assertEqual(ctx_3.get_ip_families(), None) + + def test_get_load_balancer_managed_outbound_ipv6_count(self): + # default + ctx_1 = AKSPreviewContext( + self.cmd, + { + "load_balancer_managed_outbound_ipv6_count": None, + }, + self.models, + decorator_mode=DecoratorMode.CREATE, + ) + self.assertEqual( + ctx_1.get_load_balancer_managed_outbound_ipv6_count(), None + ) + load_balancer_profile = self.models.lb_models.get( + "ManagedClusterLoadBalancerProfile" + )( + managed_outbound_i_ps=self.models.lb_models.get( + "ManagedClusterLoadBalancerProfileManagedOutboundIPs" + )(count_ipv6=10) + ) + network_profile = self.models.ContainerServiceNetworkProfile( + load_balancer_profile=load_balancer_profile + ) + mc = self.models.ManagedCluster( + location="test_location", network_profile=network_profile + ) + ctx_1.attach_mc(mc) + self.assertEqual( + ctx_1.get_load_balancer_managed_outbound_ipv6_count(), 10 + ) + + # custom value + ctx_2 = AKSPreviewContext( + self.cmd, + {"load_balancer_managed_outbound_ipv6_count": 4}, + self.models, + decorator_mode=DecoratorMode.CREATE, + ) + self.assertEqual( + ctx_2.get_load_balancer_managed_outbound_ipv6_count(), 4 + ) + + # custom value + ctx_3 = AKSPreviewContext( + self.cmd, + {"load_balancer_managed_outbound_ipv6_count": 0}, + self.models, + decorator_mode=DecoratorMode.CREATE, + ) + self.assertEqual( + ctx_3.get_load_balancer_managed_outbound_ipv6_count(), 0 + ) + def test_get_enable_fips_image(self): # default ctx_1 = AKSPreviewContext( @@ -493,6 +629,50 @@ def test_get_enable_pod_security_policy(self): ctx_1.attach_mc(mc) self.assertEqual(ctx_1.get_enable_pod_security_policy(), True) + # custom value + ctx_2 = AKSPreviewContext( + self.cmd, + { + "enable_pod_security_policy": True, + "disable_pod_security_policy": True, + }, + self.models, + decorator_mode=DecoratorMode.UPDATE, + ) + # fail on mutually exclusive enable_pod_security_policy and disable_pod_security_policy + with self.assertRaises(MutuallyExclusiveArgumentError): + ctx_2.get_enable_pod_security_policy() + + def test_get_disable_pod_security_policy(self): + # default + ctx_1 = AKSPreviewContext( + self.cmd, + {"disable_pod_security_policy": False}, + self.models, + decorator_mode=DecoratorMode.UPDATE, + ) + self.assertEqual(ctx_1.get_disable_pod_security_policy(), False) + mc = self.models.ManagedCluster( + location="test_location", + enable_pod_security_policy=False, + ) + ctx_1.attach_mc(mc) + self.assertEqual(ctx_1.get_disable_pod_security_policy(), False) + + # custom value + ctx_2 = AKSPreviewContext( + self.cmd, + { + "enable_pod_security_policy": True, + "disable_pod_security_policy": True, + }, + self.models, + decorator_mode=DecoratorMode.UPDATE, + ) + # fail on mutually exclusive enable_pod_security_policy and disable_pod_security_policy + with self.assertRaises(MutuallyExclusiveArgumentError): + ctx_2.get_disable_pod_security_policy() + def test_get_enable_managed_identity(self): # custom value ctx_1 = AKSPreviewContext( @@ -1130,6 +1310,7 @@ def test_test_get_outbound_type(self): load_balancer_profile=load_balancer_profile, ) + class AKSPreviewCreateDecoratorTestCase(unittest.TestCase): def setUp(self): # manually register CUSTOM_MGMT_AKS_PREVIEW @@ -1481,6 +1662,64 @@ def test_set_up_network_profile(self): ) self.assertEqual(dec_mc_2, ground_truth_mc_2) + # dual-stack + dec_3 = AKSPreviewCreateDecorator( + self.cmd, + self.client, + { + "load_balancer_sku": None, + "load_balancer_managed_outbound_ip_count": None, + "load_balancer_managed_outbound_ipv6_count": 3, + "load_balancer_outbound_ips": None, + "load_balancer_outbound_ip_prefixes": None, + "load_balancer_outbound_ports": None, + "load_balancer_idle_timeout": None, + "outbound_type": None, + "network_plugin": "kubenet", + "pod_cidr": None, + "service_cidr": None, + "pod_cidrs": "10.246.0.0/16,2001:abcd::/64", + "service_cidrs": "10.0.0.0/16,2001:ffff::/108", + "ip_families": "IPv4,IPv6", + "dns_service_ip": None, + "docker_bridge_cidr": None, + "network_policy": None, + }, + CUSTOM_MGMT_AKS_PREVIEW, + ) + mc_3 = self.models.ManagedCluster(location="test_location") + dec_mc_3 = dec_3.set_up_network_profile(mc_3) + + network_profile_3 = self.models.ContainerServiceNetworkProfile( + network_plugin="kubenet", + pod_cidr=None, # overwritten to None + service_cidr=None, # overwritten to None + dns_service_ip=None, # overwritten to None + docker_bridge_cidr=None, # overwritten to None + load_balancer_sku="standard", + outbound_type="loadBalancer", + ip_families=["IPv4", "IPv6"], + pod_cidrs=["10.246.0.0/16", "2001:abcd::/64"], + service_cidrs=["10.0.0.0/16", "2001:ffff::/108"], + ) + load_balancer_profile = self.models.lb_models.get( + "ManagedClusterLoadBalancerProfile" + )( + managed_outbound_i_ps=self.models.lb_models.get( + "ManagedClusterLoadBalancerProfileManagedOutboundIPs" + )( + count=1, + count_ipv6=3, + ) + ) + + network_profile_3.load_balancer_profile = load_balancer_profile + + ground_truth_mc_3 = self.models.ManagedCluster( + location="test_location", network_profile=network_profile_3 + ) + self.assertEqual(dec_mc_3, ground_truth_mc_3) + def test_set_up_pod_security_policy(self): # default value in `aks_create` dec_1 = AKSPreviewCreateDecorator( @@ -1923,7 +2162,7 @@ def test_set_up_windows_profile(self): ) self.assertEqual(dec_mc_2, ground_truth_mc_2) - def test_construct_preview_mc_profile(self): + def test_construct_mc_preview_profile(self): import inspect import paramiko @@ -1969,13 +2208,13 @@ def test_construct_preview_mc_profile(self): get_subscription_id=Mock(return_value="1234-5678-9012") ) with patch( - "azure.cli.command_modules.acs.decorator._get_rg_location", + "azure.cli.command_modules.acs.decorator.get_rg_location", return_value="test_location", ), patch( "azure.cli.command_modules.acs.decorator.Profile", return_value=mock_profile, ): - dec_mc_1 = dec_1.construct_preview_mc_profile() + dec_mc_1 = dec_1.construct_mc_preview_profile() agent_pool_profile_1 = self.models.ManagedClusterAgentPoolProfile( # Must be 12 chars or less before ACS RP adds to it @@ -2021,7 +2260,7 @@ def test_construct_preview_mc_profile(self): self.assertEqual(dec_mc_1, ground_truth_mc_1) raw_param_dict.print_usage_statistics() - def test_create_mc(self): + def test_create_mc_preview(self): mc_1 = self.models.ManagedCluster( location="test_location", addon_profiles={ @@ -2063,7 +2302,7 @@ def test_create_mc(self): "azext_aks_preview.decorator.ensure_container_insights_for_monitoring", side_effect=err, ) as ensure_monitoring: - dec_1.create_mc(mc_1) + dec_1.create_mc_preview(mc_1) ensure_monitoring.assert_called_with( self.cmd, mc_1.addon_profiles[CONST_MONITORING_ADDON_NAME], @@ -2086,3 +2325,570 @@ def setUp(self): self.cmd = MockCmd(self.cli_ctx) self.models = AKSPreviewModels(self.cmd, CUSTOM_MGMT_AKS_PREVIEW) self.client = MockClient() + + def test_update_load_balancer_profile(self): + # default value in `aks_update` + dec_1 = AKSPreviewUpdateDecorator( + self.cmd, + self.client, + { + "load_balancer_sku": None, + "load_balancer_managed_outbound_ip_count": None, + "load_balancer_outbound_ips": None, + "load_balancer_outbound_ip_prefixes": None, + "load_balancer_outbound_ports": None, + "load_balancer_idle_timeout": None, + "load_balancer_managed_outbound_ipv6_count": None, + }, + CUSTOM_MGMT_AKS_PREVIEW, + ) + # fail on passing the wrong mc object + with self.assertRaises(CLIInternalError): + dec_1.update_load_balancer_profile(None) + + network_profile_1 = self.models.ContainerServiceNetworkProfile() + mc_1 = self.models.ManagedCluster( + location="test_location", + network_profile=network_profile_1, + ) + dec_1.context.attach_mc(mc_1) + dec_mc_1 = dec_1.update_load_balancer_profile(mc_1) + + ground_truth_network_profile_1 = ( + self.models.ContainerServiceNetworkProfile() + ) + ground_truth_mc_1 = self.models.ManagedCluster( + location="test_location", + network_profile=ground_truth_network_profile_1, + ) + self.assertEqual(dec_mc_1, ground_truth_mc_1) + + # custom value + dec_2 = AKSPreviewUpdateDecorator( + self.cmd, + self.client, + { + "load_balancer_managed_outbound_ipv6_count": 4, + }, + CUSTOM_MGMT_AKS_PREVIEW, + ) + mc_2 = self.models.ManagedCluster( + location="test_location", + network_profile=self.models.ContainerServiceNetworkProfile( + load_balancer_profile=self.models.lb_models.get( + "ManagedClusterLoadBalancerProfile" + )( + managed_outbound_i_ps=self.models.lb_models.get( + "ManagedClusterLoadBalancerProfileManagedOutboundIPs" + )( + count=3, + count_ipv6=7, + ) + ) + ), + ) + dec_2.context.attach_mc(mc_2) + dec_mc_2 = dec_2.update_load_balancer_profile(mc_2) + self.assertEqual( + dec_mc_2.network_profile.load_balancer_profile.managed_outbound_i_ps.count, + 3, + ) + self.assertEqual( + dec_mc_2.network_profile.load_balancer_profile.managed_outbound_i_ps.count_ipv6, + 4, + ) + + def test_update_outbound_ip_prefixes(self): + mc_1 = self.models.ManagedCluster( + location="test_location", + network_profile=self.models.ContainerServiceNetworkProfile( + load_balancer_profile=self.models.lb_models.get( + 'ManagedClusterLoadBalancerProfile' + )( + outbound_ip_prefixes=self.models.lb_models.get( + "ManagedClusterLoadBalancerProfileOutboundIPPrefixes" + )( + public_ip_prefixes=["id1", "id2"], + ) + ) + ) + ) + self.client.get = Mock(return_value=mc_1) + dec_1 = AKSPreviewUpdateDecorator( + self.cmd, + self.client, + { + "name": "test_cluster", + "resource_group_name": "test_rg_name", + "load_balancer_outbound_ip_prefixes": "id3,id4", + }, + CUSTOM_MGMT_AKS_PREVIEW, + ) + + mc = dec_1.fetch_mc() + mc = dec_1.update_load_balancer_profile(mc) + self.assertListEqual( + [pip.id for pip in mc.network_profile.load_balancer_profile.outbound_ip_prefixes.public_ip_prefixes], ["id3", "id4"]) + self.assertIsNone( + mc.network_profile.load_balancer_profile.managed_outbound_i_ps) + self.assertIsNone( + mc.network_profile.load_balancer_profile.outbound_i_ps) + + def test_update_outbound_ips(self): + mc_1 = self.models.ManagedCluster( + location="test_location", + network_profile=self.models.ContainerServiceNetworkProfile( + load_balancer_profile=self.models.lb_models.get( + 'ManagedClusterLoadBalancerProfile' + )( + outbound_i_ps=self.models.lb_models.get( + "ManagedClusterLoadBalancerProfileOutboundIPs" + )( + public_i_ps=["id1", "id2"], + ) + ) + ) + ) + self.client.get = Mock(return_value=mc_1) + dec_1 = AKSPreviewUpdateDecorator( + self.cmd, + self.client, + { + "name": "test_cluster", + "resource_group_name": "test_rg_name", + "load_balancer_outbound_ips": "id3,id4", + }, + CUSTOM_MGMT_AKS_PREVIEW, + ) + + mc = dec_1.fetch_mc() + mc = dec_1.update_load_balancer_profile(mc) + self.assertListEqual( + [pip.id for pip in mc.network_profile.load_balancer_profile.outbound_i_ps.public_i_ps], ["id3", "id4"]) + self.assertIsNone( + mc.network_profile.load_balancer_profile.managed_outbound_i_ps) + self.assertIsNone( + mc.network_profile.load_balancer_profile.outbound_ip_prefixes) + + def test_update_ipv6_count(self): + mc_1 = self.models.ManagedCluster( + location="test_location", + network_profile=self.models.ContainerServiceNetworkProfile( + load_balancer_profile=self.models.lb_models.get( + 'ManagedClusterLoadBalancerProfile' + )( + managed_outbound_i_ps=self.models.lb_models.get( + "ManagedClusterLoadBalancerProfileManagedOutboundIPs" + )( + count=3, + ) + ) + ) + ) + self.client.get = Mock(return_value=mc_1) + dec_1 = AKSPreviewUpdateDecorator( + self.cmd, + self.client, + { + "name": "test_cluster", + "resource_group_name": "test_rg_name", + "load_balancer_managed_outbound_ip_count": 7, + }, + CUSTOM_MGMT_AKS_PREVIEW, + ) + + mc = dec_1.fetch_mc() + mc = dec_1.update_load_balancer_profile(mc) + self.assertEquals( + mc.network_profile.load_balancer_profile.managed_outbound_i_ps.count, 7) + self.assertEquals( + mc.network_profile.load_balancer_profile.managed_outbound_i_ps.count_ipv6, 0) + self.assertIsNone( + mc.network_profile.load_balancer_profile.outbound_i_ps) + self.assertIsNone( + mc.network_profile.load_balancer_profile.outbound_ip_prefixes) + + # test 2 + mc_2 = self.models.ManagedCluster( + location="test_location", + network_profile=self.models.ContainerServiceNetworkProfile( + load_balancer_profile=self.models.lb_models.get( + 'ManagedClusterLoadBalancerProfile' + )( + managed_outbound_i_ps=self.models.lb_models.get( + "ManagedClusterLoadBalancerProfileManagedOutboundIPs" + )( + count=3, + ) + ) + ) + ) + self.client.get = Mock(return_value=mc_2) + dec_2 = AKSPreviewUpdateDecorator( + self.cmd, + self.client, + { + "name": "test_cluster", + "resource_group_name": "test_rg_name", + "load_balancer_managed_outbound_ip_count": 2, + "load_balancer_managed_outbound_ipv6_count": 4, + }, + CUSTOM_MGMT_AKS_PREVIEW, + ) + + mc = dec_2.fetch_mc() + mc = dec_2.update_load_balancer_profile(mc) + self.assertEquals( + mc.network_profile.load_balancer_profile.managed_outbound_i_ps.count, 2) + self.assertEquals( + mc.network_profile.load_balancer_profile.managed_outbound_i_ps.count_ipv6, 4) + self.assertIsNone(mc.network_profile.load_balancer_profile.outbound_i_ps) + self.assertIsNone(mc.network_profile.load_balancer_profile.outbound_ip_prefixes) + + # test 3 update only count_ipv6, count should remain the same + mc_3 = self.models.ManagedCluster( + location="test_location", + network_profile=self.models.ContainerServiceNetworkProfile( + load_balancer_profile=self.models.lb_models.get( + 'ManagedClusterLoadBalancerProfile' + )( + managed_outbound_i_ps=self.models.lb_models.get( + "ManagedClusterLoadBalancerProfileManagedOutboundIPs" + )( + count=5, + ) + ) + ) + ) + self.client.get = Mock(return_value=mc_3) + dec_3 = AKSPreviewUpdateDecorator( + self.cmd, + self.client, + { + "name": "test_cluster", + "resource_group_name": "test_rg_name", + "load_balancer_managed_outbound_ipv6_count": 12, + }, + CUSTOM_MGMT_AKS_PREVIEW, + ) + + mc = dec_3.fetch_mc() + mc = dec_3.update_load_balancer_profile(mc) + self.assertEquals( + mc.network_profile.load_balancer_profile.managed_outbound_i_ps.count, 5) + self.assertEquals( + mc.network_profile.load_balancer_profile.managed_outbound_i_ps.count_ipv6, 12) + self.assertIsNone(mc.network_profile.load_balancer_profile.outbound_i_ps) + self.assertIsNone(mc.network_profile.load_balancer_profile.outbound_ip_prefixes) + + # test 4 - existing dual-stack, update count only + mc_4 = self.models.ManagedCluster( + location="test_location", + network_profile=self.models.ContainerServiceNetworkProfile( + load_balancer_profile=self.models.lb_models.get( + 'ManagedClusterLoadBalancerProfile' + )( + managed_outbound_i_ps=self.models.lb_models.get( + "ManagedClusterLoadBalancerProfileManagedOutboundIPs" + )( + count=3, + count_ipv6=2 + ) + ) + ) + ) + self.client.get = Mock(return_value=mc_4) + + dec_4 = AKSPreviewUpdateDecorator( + self.cmd, + self.client, + { + "name": "test_cluster", + "resource_group_name": "test_rg_name", + "load_balancer_managed_outbound_ip_count": 8, + }, + CUSTOM_MGMT_AKS_PREVIEW, + ) + + mc = dec_4.fetch_mc() + mc = dec_4.update_load_balancer_profile(mc) + self.assertEquals( + mc.network_profile.load_balancer_profile.managed_outbound_i_ps.count, 8) + self.assertEquals( + mc.network_profile.load_balancer_profile.managed_outbound_i_ps.count_ipv6, 2) + self.assertIsNone(mc.network_profile.load_balancer_profile.outbound_i_ps) + self.assertIsNone(mc.network_profile.load_balancer_profile.outbound_ip_prefixes) + + # test 5 - dual-stack mc update count_ipv6 only + mc_5 = self.models.ManagedCluster( + location="test_location", + network_profile=self.models.ContainerServiceNetworkProfile( + load_balancer_profile=self.models.lb_models.get( + 'ManagedClusterLoadBalancerProfile' + )( + managed_outbound_i_ps=self.models.lb_models.get( + "ManagedClusterLoadBalancerProfileManagedOutboundIPs" + )( + count=3, + count_ipv6=2 + ) + ) + ) + ) + self.client.get = Mock(return_value=mc_5) + + dec_5 = AKSPreviewUpdateDecorator( + self.cmd, + self.client, + { + "name": "test_cluster", + "resource_group_name": "test_rg_name", + "load_balancer_managed_outbound_ipv6_count": 5, + }, + CUSTOM_MGMT_AKS_PREVIEW, + ) + + mc = dec_5.fetch_mc() + mc = dec_5.update_load_balancer_profile(mc) + self.assertEquals( + mc.network_profile.load_balancer_profile.managed_outbound_i_ps.count, 3) + self.assertEquals( + mc.network_profile.load_balancer_profile.managed_outbound_i_ps.count_ipv6, 5) + self.assertIsNone(mc.network_profile.load_balancer_profile.outbound_i_ps) + self.assertIsNone(mc.network_profile.load_balancer_profile.outbound_ip_prefixes) + + # test 6 - dual-stack mc update count and count_ipv6 + mc_6 = self.models.ManagedCluster( + location="test_location", + network_profile=self.models.ContainerServiceNetworkProfile( + load_balancer_profile=self.models.lb_models.get( + 'ManagedClusterLoadBalancerProfile' + )( + managed_outbound_i_ps=self.models.lb_models.get( + "ManagedClusterLoadBalancerProfileManagedOutboundIPs" + )( + count=3, + count_ipv6=2 + ) + ) + ) + ) + self.client.get = Mock(return_value=mc_6) + + dec_6 = AKSPreviewUpdateDecorator( + self.cmd, + self.client, + { + "name": "test_cluster", + "resource_group_name": "test_rg_name", + "load_balancer_managed_outbound_ipv6_count": 5, + "load_balancer_managed_outbound_ip_count": 7, + }, + CUSTOM_MGMT_AKS_PREVIEW, + ) + + mc = dec_6.fetch_mc() + mc = dec_6.update_load_balancer_profile(mc) + self.assertEquals( + mc.network_profile.load_balancer_profile.managed_outbound_i_ps.count, 7) + self.assertEquals( + mc.network_profile.load_balancer_profile.managed_outbound_i_ps.count_ipv6, 5) + self.assertIsNone(mc.network_profile.load_balancer_profile.outbound_i_ps) + self.assertIsNone(mc.network_profile.load_balancer_profile.outbound_ip_prefixes) + + # test 7 - dual-stack mc update to outbound_ips from managed + mc_7 = self.models.ManagedCluster( + location="test_location", + network_profile=self.models.ContainerServiceNetworkProfile( + load_balancer_profile=self.models.lb_models.get( + 'ManagedClusterLoadBalancerProfile' + )( + managed_outbound_i_ps=self.models.lb_models.get( + "ManagedClusterLoadBalancerProfileManagedOutboundIPs" + )( + count=3, + count_ipv6=2 + ) + ) + ) + ) + self.client.get = Mock(return_value=mc_7) + + dec_7 = AKSPreviewUpdateDecorator( + self.cmd, + self.client, + { + "name": "test_cluster", + "resource_group_name": "test_rg_name", + "load_balancer_outbound_ips": "id1,id2", + }, + CUSTOM_MGMT_AKS_PREVIEW, + ) + + mc = dec_7.fetch_mc() + mc = dec_7.update_load_balancer_profile(mc) + self.assertIsNone(mc.network_profile.load_balancer_profile.managed_outbound_i_ps) + self.assertIsNotNone(mc.network_profile.load_balancer_profile.outbound_i_ps) + self.assertIsNone(mc.network_profile.load_balancer_profile.outbound_ip_prefixes) + + def test_update_pod_security_policy(self): + # default value in `aks_update` + dec_1 = AKSPreviewUpdateDecorator( + self.cmd, + self.client, + { + "enable_pod_security_policy": False, + "disable_pod_security_policy": False, + }, + CUSTOM_MGMT_AKS_PREVIEW, + ) + # fail on passing the wrong mc object + with self.assertRaises(CLIInternalError): + dec_1.update_pod_security_policy(None) + + mc_1 = self.models.ManagedCluster( + location="test_location", + enable_pod_security_policy=True, + ) + dec_1.context.attach_mc(mc_1) + dec_mc_1 = dec_1.update_pod_security_policy(mc_1) + ground_truth_mc_1 = self.models.ManagedCluster( + location="test_location", + enable_pod_security_policy=True, + ) + self.assertEqual(dec_mc_1, ground_truth_mc_1) + + # custom value + dec_2 = AKSPreviewUpdateDecorator( + self.cmd, + self.client, + { + "enable_pod_security_policy": True, + "disable_pod_security_policy": False, + }, + CUSTOM_MGMT_AKS_PREVIEW, + ) + mc_2 = self.models.ManagedCluster( + location="test_location", + enable_pod_security_policy=False, + ) + dec_2.context.attach_mc(mc_2) + dec_mc_2 = dec_2.update_pod_security_policy(mc_2) + ground_truth_mc_2 = self.models.ManagedCluster( + location="test_location", + enable_pod_security_policy=True, + ) + self.assertEqual(dec_mc_2, ground_truth_mc_2) + + # custom value + dec_3 = AKSPreviewUpdateDecorator( + self.cmd, + self.client, + { + "enable_pod_security_policy": False, + "disable_pod_security_policy": True, + }, + CUSTOM_MGMT_AKS_PREVIEW, + ) + + mc_3 = self.models.ManagedCluster( + location="test_location", + enable_pod_security_policy=True, + ) + dec_3.context.attach_mc(mc_3) + dec_mc_3 = dec_3.update_pod_security_policy(mc_3) + ground_truth_mc_3 = self.models.ManagedCluster( + location="test_location", + enable_pod_security_policy=False, + ) + self.assertEqual(dec_mc_3, ground_truth_mc_3) + + def test_update_windows_profile(self): + # default value in `aks_update` + dec_1 = AKSPreviewUpdateDecorator( + self.cmd, + self.client, + { + "enable_ahub": False, + "disable_ahub": False, + "windows_admin_password": None, + "enable_windows_gmsa": False, + "gmsa_dns_server": None, + "gmsa_root_domain_name": None, + }, + CUSTOM_MGMT_AKS_PREVIEW, + ) + # fail on passing the wrong mc object + with self.assertRaises(CLIInternalError): + dec_1.update_windows_profile(None) + + mc_1 = self.models.ManagedCluster( + location="test_location", + ) + dec_1.context.attach_mc(mc_1) + dec_mc_1 = dec_1.update_windows_profile(mc_1) + ground_truth_mc_1 = self.models.ManagedCluster( + location="test_location", + ) + self.assertEqual(dec_mc_1, ground_truth_mc_1) + + # custom value + dec_2 = AKSPreviewUpdateDecorator( + self.cmd, + self.client, + { + "enable_windows_gmsa": True, + "gmsa_dns_server": "test_gmsa_dns_server", + "gmsa_root_domain_name": "test_gmsa_root_domain_name", + }, + CUSTOM_MGMT_AKS_PREVIEW, + ) + windows_profile_2 = self.models.ManagedClusterWindowsProfile( + # [SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="fake secrets in unit test")] + admin_username="test_win_admin_name", + admin_password="test_win_admin_password", + license_type="Windows_Server", + ) + mc_2 = self.models.ManagedCluster( + location="test_location", + windows_profile=windows_profile_2, + ) + dec_2.context.attach_mc(mc_2) + dec_mc_2 = dec_2.update_windows_profile(mc_2) + + ground_truth_gmsa_profile_2 = self.models.WindowsGmsaProfile( + enabled=True, + dns_server="test_gmsa_dns_server", + root_domain_name="test_gmsa_root_domain_name", + ) + ground_truth_windows_profile_2 = self.models.ManagedClusterWindowsProfile( + # [SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="fake secrets in unit test")] + admin_username="test_win_admin_name", + admin_password="test_win_admin_password", + license_type="Windows_Server", + gmsa_profile=ground_truth_gmsa_profile_2, + ) + ground_truth_mc_2 = self.models.ManagedCluster( + location="test_location", + windows_profile=ground_truth_windows_profile_2, + ) + self.assertEqual(dec_mc_2, ground_truth_mc_2) + + # custom value + dec_3 = AKSPreviewUpdateDecorator( + self.cmd, + self.client, + { + "enable_windows_gmsa": True, + "gmsa_dns_server": "test_gmsa_dns_server", + "gmsa_root_domain_name": "test_gmsa_root_domain_name", + }, + CUSTOM_MGMT_AKS_PREVIEW, + ) + mc_3 = self.models.ManagedCluster( + location="test_location", + ) + dec_3.context.attach_mc(mc_3) + # fail on incomplete mc object (no windows profile) + with self.assertRaises(UnknownError): + dec_3.update_windows_profile(mc_3) diff --git a/src/aks-preview/azext_aks_preview/tests/latest/test_loadbalancer.py b/src/aks-preview/azext_aks_preview/tests/latest/test_loadbalancer.py index 9850a3923e0..1948ea07a6c 100644 --- a/src/aks-preview/azext_aks_preview/tests/latest/test_loadbalancer.py +++ b/src/aks-preview/azext_aks_preview/tests/latest/test_loadbalancer.py @@ -15,6 +15,7 @@ class TestLoadBalancer(unittest.TestCase): def test_configure_load_balancer_profile(self): managed_outbound_ip_count = 5 + managed_outbound_ipv6_count = 3 outbound_ips = None outbound_ip_prefixes = None outbound_ports = 80 @@ -33,7 +34,7 @@ def test_configure_load_balancer_profile(self): public_ip_prefixes="public_ip_prefixes" ) - p = loadbalancer.configure_load_balancer_profile(managed_outbound_ip_count, outbound_ips, outbound_ip_prefixes, outbound_ports, idle_timeout, profile) + p = loadbalancer.configure_load_balancer_profile(managed_outbound_ip_count, managed_outbound_ipv6_count, outbound_ips, outbound_ip_prefixes, outbound_ports, idle_timeout, profile) # ips -> i_ps due to track 2 naming issue self.assertIsNotNone(p.managed_outbound_i_ps) diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_container_service_client.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_container_service_client.py index 6d65ad325f8..6404cfd0d10 100755 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_container_service_client.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_container_service_client.py @@ -56,7 +56,7 @@ class ContainerServiceClient(MultiApiClientMixin, _SDKClient): :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. """ - DEFAULT_API_VERSION = '2021-09-01' + DEFAULT_API_VERSION = '2021-10-01' _PROFILE_TAG = "azure.mgmt.containerservice.ContainerServiceClient" LATEST_PROFILE = ProfileDefinition({ _PROFILE_TAG: { @@ -121,6 +121,7 @@ def models(cls, api_version=DEFAULT_API_VERSION): * 2021-07-01: :mod:`v2021_07_01.models` * 2021-08-01: :mod:`v2021_08_01.models` * 2021-09-01: :mod:`v2021_09_01.models` + * 2021-10-01: :mod:`v2021_10_01.models` """ if api_version == '2017-07-01': from .v2017_07_01 import models @@ -206,6 +207,9 @@ def models(cls, api_version=DEFAULT_API_VERSION): elif api_version == '2021-09-01': from .v2021_09_01 import models return models + elif api_version == '2021-10-01': + from .v2021_10_01 import models + return models raise ValueError("API version {} is not available".format(api_version)) @property @@ -233,6 +237,7 @@ def agent_pools(self): * 2021-07-01: :class:`AgentPoolsOperations` * 2021-08-01: :class:`AgentPoolsOperations` * 2021-09-01: :class:`AgentPoolsOperations` + * 2021-10-01: :class:`AgentPoolsOperations` """ api_version = self._get_api_version('agent_pools') if api_version == '2019-02-01': @@ -277,6 +282,8 @@ def agent_pools(self): from .v2021_08_01.operations import AgentPoolsOperations as OperationClass elif api_version == '2021-09-01': from .v2021_09_01.operations import AgentPoolsOperations as OperationClass + elif api_version == '2021-10-01': + from .v2021_10_01.operations import AgentPoolsOperations as OperationClass else: raise ValueError("API version {} does not have operation group 'agent_pools'".format(api_version)) return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -305,6 +312,7 @@ def maintenance_configurations(self): * 2021-07-01: :class:`MaintenanceConfigurationsOperations` * 2021-08-01: :class:`MaintenanceConfigurationsOperations` * 2021-09-01: :class:`MaintenanceConfigurationsOperations` + * 2021-10-01: :class:`MaintenanceConfigurationsOperations` """ api_version = self._get_api_version('maintenance_configurations') if api_version == '2020-12-01': @@ -321,6 +329,8 @@ def maintenance_configurations(self): from .v2021_08_01.operations import MaintenanceConfigurationsOperations as OperationClass elif api_version == '2021-09-01': from .v2021_09_01.operations import MaintenanceConfigurationsOperations as OperationClass + elif api_version == '2021-10-01': + from .v2021_10_01.operations import MaintenanceConfigurationsOperations as OperationClass else: raise ValueError("API version {} does not have operation group 'maintenance_configurations'".format(api_version)) return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -352,6 +362,7 @@ def managed_clusters(self): * 2021-07-01: :class:`ManagedClustersOperations` * 2021-08-01: :class:`ManagedClustersOperations` * 2021-09-01: :class:`ManagedClustersOperations` + * 2021-10-01: :class:`ManagedClustersOperations` """ api_version = self._get_api_version('managed_clusters') if api_version == '2018-03-31': @@ -400,6 +411,8 @@ def managed_clusters(self): from .v2021_08_01.operations import ManagedClustersOperations as OperationClass elif api_version == '2021-09-01': from .v2021_09_01.operations import ManagedClustersOperations as OperationClass + elif api_version == '2021-10-01': + from .v2021_10_01.operations import ManagedClustersOperations as OperationClass else: raise ValueError("API version {} does not have operation group 'managed_clusters'".format(api_version)) return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -453,6 +466,7 @@ def operations(self): * 2021-07-01: :class:`Operations` * 2021-08-01: :class:`Operations` * 2021-09-01: :class:`Operations` + * 2021-10-01: :class:`Operations` """ api_version = self._get_api_version('operations') if api_version == '2018-03-31': @@ -501,6 +515,8 @@ def operations(self): from .v2021_08_01.operations import Operations as OperationClass elif api_version == '2021-09-01': from .v2021_09_01.operations import Operations as OperationClass + elif api_version == '2021-10-01': + from .v2021_10_01.operations import Operations as OperationClass else: raise ValueError("API version {} does not have operation group 'operations'".format(api_version)) return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -520,6 +536,7 @@ def private_endpoint_connections(self): * 2021-07-01: :class:`PrivateEndpointConnectionsOperations` * 2021-08-01: :class:`PrivateEndpointConnectionsOperations` * 2021-09-01: :class:`PrivateEndpointConnectionsOperations` + * 2021-10-01: :class:`PrivateEndpointConnectionsOperations` """ api_version = self._get_api_version('private_endpoint_connections') if api_version == '2020-06-01': @@ -544,6 +561,8 @@ def private_endpoint_connections(self): from .v2021_08_01.operations import PrivateEndpointConnectionsOperations as OperationClass elif api_version == '2021-09-01': from .v2021_09_01.operations import PrivateEndpointConnectionsOperations as OperationClass + elif api_version == '2021-10-01': + from .v2021_10_01.operations import PrivateEndpointConnectionsOperations as OperationClass else: raise ValueError("API version {} does not have operation group 'private_endpoint_connections'".format(api_version)) return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -561,6 +580,7 @@ def private_link_resources(self): * 2021-07-01: :class:`PrivateLinkResourcesOperations` * 2021-08-01: :class:`PrivateLinkResourcesOperations` * 2021-09-01: :class:`PrivateLinkResourcesOperations` + * 2021-10-01: :class:`PrivateLinkResourcesOperations` """ api_version = self._get_api_version('private_link_resources') if api_version == '2020-09-01': @@ -581,6 +601,8 @@ def private_link_resources(self): from .v2021_08_01.operations import PrivateLinkResourcesOperations as OperationClass elif api_version == '2021-09-01': from .v2021_09_01.operations import PrivateLinkResourcesOperations as OperationClass + elif api_version == '2021-10-01': + from .v2021_10_01.operations import PrivateLinkResourcesOperations as OperationClass else: raise ValueError("API version {} does not have operation group 'private_link_resources'".format(api_version)) return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -598,6 +620,7 @@ def resolve_private_link_service_id(self): * 2021-07-01: :class:`ResolvePrivateLinkServiceIdOperations` * 2021-08-01: :class:`ResolvePrivateLinkServiceIdOperations` * 2021-09-01: :class:`ResolvePrivateLinkServiceIdOperations` + * 2021-10-01: :class:`ResolvePrivateLinkServiceIdOperations` """ api_version = self._get_api_version('resolve_private_link_service_id') if api_version == '2020-09-01': @@ -618,6 +641,8 @@ def resolve_private_link_service_id(self): from .v2021_08_01.operations import ResolvePrivateLinkServiceIdOperations as OperationClass elif api_version == '2021-09-01': from .v2021_09_01.operations import ResolvePrivateLinkServiceIdOperations as OperationClass + elif api_version == '2021-10-01': + from .v2021_10_01.operations import ResolvePrivateLinkServiceIdOperations as OperationClass else: raise ValueError("API version {} does not have operation group 'resolve_private_link_service_id'".format(api_version)) return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -628,12 +653,15 @@ def snapshots(self): * 2021-08-01: :class:`SnapshotsOperations` * 2021-09-01: :class:`SnapshotsOperations` + * 2021-10-01: :class:`SnapshotsOperations` """ api_version = self._get_api_version('snapshots') if api_version == '2021-08-01': from .v2021_08_01.operations import SnapshotsOperations as OperationClass elif api_version == '2021-09-01': from .v2021_09_01.operations import SnapshotsOperations as OperationClass + elif api_version == '2021-10-01': + from .v2021_10_01.operations import SnapshotsOperations as OperationClass else: raise ValueError("API version {} does not have operation group 'snapshots'".format(api_version)) return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_version.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_version.py index 9ed13cd5fe5..df1448f426a 100755 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_version.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_version.py @@ -9,4 +9,4 @@ # regenerated. # -------------------------------------------------------------------------- -VERSION = "16.3.0" +VERSION = "16.4.0" diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/models.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/models.py index 23a4377ee6c..ebf15f1cdd1 100755 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/models.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/models.py @@ -5,4 +5,4 @@ # license information. # -------------------------------------------------------------------------- from .v2017_07_01.models import * -from .v2021_09_01.models import * +from .v2021_10_01.models import * diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/__init__.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/__init__.py old mode 100755 new mode 100644 similarity index 100% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/__init__.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/__init__.py diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/_configuration.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/_configuration.py old mode 100755 new mode 100644 similarity index 98% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/_configuration.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/_configuration.py index 94fa86d82cb..861ab0b47e7 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/_configuration.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/_configuration.py @@ -47,7 +47,7 @@ def __init__( self.credential = credential self.subscription_id = subscription_id - self.api_version = "2021-09-01" + self.api_version = "2021-10-01" self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) kwargs.setdefault('sdk_moniker', 'mgmt-containerservice/{}'.format(VERSION)) self._configure(**kwargs) diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/_container_service_client.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/_container_service_client.py old mode 100755 new mode 100644 similarity index 92% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/_container_service_client.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/_container_service_client.py index 96f3c54e0be..2a1d922c771 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/_container_service_client.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/_container_service_client.py @@ -34,21 +34,21 @@ class ContainerServiceClient(object): """The Container Service Client. :ivar operations: Operations operations - :vartype operations: azure.mgmt.containerservice.v2021_09_01.operations.Operations + :vartype operations: azure.mgmt.containerservice.v2021_10_01.operations.Operations :ivar managed_clusters: ManagedClustersOperations operations - :vartype managed_clusters: azure.mgmt.containerservice.v2021_09_01.operations.ManagedClustersOperations + :vartype managed_clusters: azure.mgmt.containerservice.v2021_10_01.operations.ManagedClustersOperations :ivar maintenance_configurations: MaintenanceConfigurationsOperations operations - :vartype maintenance_configurations: azure.mgmt.containerservice.v2021_09_01.operations.MaintenanceConfigurationsOperations + :vartype maintenance_configurations: azure.mgmt.containerservice.v2021_10_01.operations.MaintenanceConfigurationsOperations :ivar agent_pools: AgentPoolsOperations operations - :vartype agent_pools: azure.mgmt.containerservice.v2021_09_01.operations.AgentPoolsOperations + :vartype agent_pools: azure.mgmt.containerservice.v2021_10_01.operations.AgentPoolsOperations :ivar private_endpoint_connections: PrivateEndpointConnectionsOperations operations - :vartype private_endpoint_connections: azure.mgmt.containerservice.v2021_09_01.operations.PrivateEndpointConnectionsOperations + :vartype private_endpoint_connections: azure.mgmt.containerservice.v2021_10_01.operations.PrivateEndpointConnectionsOperations :ivar private_link_resources: PrivateLinkResourcesOperations operations - :vartype private_link_resources: azure.mgmt.containerservice.v2021_09_01.operations.PrivateLinkResourcesOperations + :vartype private_link_resources: azure.mgmt.containerservice.v2021_10_01.operations.PrivateLinkResourcesOperations :ivar resolve_private_link_service_id: ResolvePrivateLinkServiceIdOperations operations - :vartype resolve_private_link_service_id: azure.mgmt.containerservice.v2021_09_01.operations.ResolvePrivateLinkServiceIdOperations + :vartype resolve_private_link_service_id: azure.mgmt.containerservice.v2021_10_01.operations.ResolvePrivateLinkServiceIdOperations :ivar snapshots: SnapshotsOperations operations - :vartype snapshots: azure.mgmt.containerservice.v2021_09_01.operations.SnapshotsOperations + :vartype snapshots: azure.mgmt.containerservice.v2021_10_01.operations.SnapshotsOperations :param credential: Credential needed for the client to connect to Azure. :type credential: ~azure.core.credentials.TokenCredential :param subscription_id: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/_metadata.json b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/_metadata.json new file mode 100644 index 00000000000..81a793b03af --- /dev/null +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/_metadata.json @@ -0,0 +1,110 @@ +{ + "chosen_version": "2021-10-01", + "total_api_version_list": ["2021-10-01"], + "client": { + "name": "ContainerServiceClient", + "filename": "_container_service_client", + "description": "The Container Service Client.", + "base_url": "\u0027https://management.azure.com\u0027", + "custom_base_url": null, + "azure_arm": true, + "has_lro_operations": true, + "client_side_validation": false, + "sync_imports": "{\"typing\": {\"azurecore\": {\"azure.core.credentials\": [\"TokenCredential\"]}}, \"regular\": {\"azurecore\": {\"azure.profiles\": [\"KnownProfiles\", \"ProfileDefinition\"], \"azure.profiles.multiapiclient\": [\"MultiApiClientMixin\"], \"msrest\": [\"Deserializer\", \"Serializer\"], \"azure.mgmt.core\": [\"ARMPipelineClient\"]}, \"local\": {\"._configuration\": [\"ContainerServiceClientConfiguration\"]}}, \"conditional\": {\"stdlib\": {\"typing\": [\"Any\", \"Optional\"]}, \"azurecore\": {\"azure.core.pipeline.transport\": [\"HttpRequest\", \"HttpResponse\"]}}}", + "async_imports": "{\"typing\": {\"azurecore\": {\"azure.core.credentials_async\": [\"AsyncTokenCredential\"]}}, \"regular\": {\"azurecore\": {\"azure.profiles\": [\"KnownProfiles\", \"ProfileDefinition\"], \"azure.profiles.multiapiclient\": [\"MultiApiClientMixin\"], \"msrest\": [\"Deserializer\", \"Serializer\"], \"azure.mgmt.core\": [\"AsyncARMPipelineClient\"]}, \"local\": {\"._configuration\": [\"ContainerServiceClientConfiguration\"]}}, \"conditional\": {\"stdlib\": {\"typing\": [\"Any\", \"Optional\"]}, \"azurecore\": {\"azure.core.pipeline.transport\": [\"AsyncHttpResponse\", \"HttpRequest\"]}}}" + }, + "global_parameters": { + "sync": { + "credential": { + "signature": "credential, # type: \"TokenCredential\"", + "description": "Credential needed for the client to connect to Azure.", + "docstring_type": "~azure.core.credentials.TokenCredential", + "required": true + }, + "subscription_id": { + "signature": "subscription_id, # type: str", + "description": "Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.", + "docstring_type": "str", + "required": true + } + }, + "async": { + "credential": { + "signature": "credential: \"AsyncTokenCredential\",", + "description": "Credential needed for the client to connect to Azure.", + "docstring_type": "~azure.core.credentials_async.AsyncTokenCredential", + "required": true + }, + "subscription_id": { + "signature": "subscription_id: str,", + "description": "Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.", + "docstring_type": "str", + "required": true + } + }, + "constant": { + }, + "call": "credential, subscription_id", + "service_client_specific": { + "sync": { + "api_version": { + "signature": "api_version=None, # type: Optional[str]", + "description": "API version to use if no profile is provided, or if missing in profile.", + "docstring_type": "str", + "required": false + }, + "base_url": { + "signature": "base_url=None, # type: Optional[str]", + "description": "Service URL", + "docstring_type": "str", + "required": false + }, + "profile": { + "signature": "profile=KnownProfiles.default, # type: KnownProfiles", + "description": "A profile definition, from KnownProfiles to dict.", + "docstring_type": "azure.profiles.KnownProfiles", + "required": false + } + }, + "async": { + "api_version": { + "signature": "api_version: Optional[str] = None,", + "description": "API version to use if no profile is provided, or if missing in profile.", + "docstring_type": "str", + "required": false + }, + "base_url": { + "signature": "base_url: Optional[str] = None,", + "description": "Service URL", + "docstring_type": "str", + "required": false + }, + "profile": { + "signature": "profile: KnownProfiles = KnownProfiles.default,", + "description": "A profile definition, from KnownProfiles to dict.", + "docstring_type": "azure.profiles.KnownProfiles", + "required": false + } + } + } + }, + "config": { + "credential": true, + "credential_scopes": ["https://management.azure.com/.default"], + "credential_default_policy_type": "BearerTokenCredentialPolicy", + "credential_default_policy_type_has_async_version": true, + "credential_key_header_name": null, + "sync_imports": "{\"regular\": {\"azurecore\": {\"azure.core.configuration\": [\"Configuration\"], \"azure.core.pipeline\": [\"policies\"], \"azure.mgmt.core.policies\": [\"ARMHttpLoggingPolicy\"]}, \"local\": {\"._version\": [\"VERSION\"]}}, \"conditional\": {\"stdlib\": {\"typing\": [\"Any\"]}}, \"typing\": {\"azurecore\": {\"azure.core.credentials\": [\"TokenCredential\"]}}}", + "async_imports": "{\"regular\": {\"azurecore\": {\"azure.core.configuration\": [\"Configuration\"], \"azure.core.pipeline\": [\"policies\"], \"azure.mgmt.core.policies\": [\"ARMHttpLoggingPolicy\"]}, \"local\": {\".._version\": [\"VERSION\"]}}, \"conditional\": {\"stdlib\": {\"typing\": [\"Any\"]}}, \"typing\": {\"azurecore\": {\"azure.core.credentials_async\": [\"AsyncTokenCredential\"]}}}" + }, + "operation_groups": { + "operations": "Operations", + "managed_clusters": "ManagedClustersOperations", + "maintenance_configurations": "MaintenanceConfigurationsOperations", + "agent_pools": "AgentPoolsOperations", + "private_endpoint_connections": "PrivateEndpointConnectionsOperations", + "private_link_resources": "PrivateLinkResourcesOperations", + "resolve_private_link_service_id": "ResolvePrivateLinkServiceIdOperations", + "snapshots": "SnapshotsOperations" + } +} \ No newline at end of file diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/__init__.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/__init__.py old mode 100755 new mode 100644 similarity index 100% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/__init__.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/__init__.py diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/_configuration.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/_configuration.py old mode 100755 new mode 100644 similarity index 98% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/_configuration.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/_configuration.py index 40270e51dd8..0a521b492d8 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/_configuration.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/_configuration.py @@ -44,7 +44,7 @@ def __init__( self.credential = credential self.subscription_id = subscription_id - self.api_version = "2021-09-01" + self.api_version = "2021-10-01" self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) kwargs.setdefault('sdk_moniker', 'mgmt-containerservice/{}'.format(VERSION)) self._configure(**kwargs) diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/_container_service_client.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/_container_service_client.py old mode 100755 new mode 100644 similarity index 92% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/_container_service_client.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/_container_service_client.py index 43a61934ffb..d2c510d4e1f --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/_container_service_client.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/_container_service_client.py @@ -32,21 +32,21 @@ class ContainerServiceClient(object): """The Container Service Client. :ivar operations: Operations operations - :vartype operations: azure.mgmt.containerservice.v2021_09_01.aio.operations.Operations + :vartype operations: azure.mgmt.containerservice.v2021_10_01.aio.operations.Operations :ivar managed_clusters: ManagedClustersOperations operations - :vartype managed_clusters: azure.mgmt.containerservice.v2021_09_01.aio.operations.ManagedClustersOperations + :vartype managed_clusters: azure.mgmt.containerservice.v2021_10_01.aio.operations.ManagedClustersOperations :ivar maintenance_configurations: MaintenanceConfigurationsOperations operations - :vartype maintenance_configurations: azure.mgmt.containerservice.v2021_09_01.aio.operations.MaintenanceConfigurationsOperations + :vartype maintenance_configurations: azure.mgmt.containerservice.v2021_10_01.aio.operations.MaintenanceConfigurationsOperations :ivar agent_pools: AgentPoolsOperations operations - :vartype agent_pools: azure.mgmt.containerservice.v2021_09_01.aio.operations.AgentPoolsOperations + :vartype agent_pools: azure.mgmt.containerservice.v2021_10_01.aio.operations.AgentPoolsOperations :ivar private_endpoint_connections: PrivateEndpointConnectionsOperations operations - :vartype private_endpoint_connections: azure.mgmt.containerservice.v2021_09_01.aio.operations.PrivateEndpointConnectionsOperations + :vartype private_endpoint_connections: azure.mgmt.containerservice.v2021_10_01.aio.operations.PrivateEndpointConnectionsOperations :ivar private_link_resources: PrivateLinkResourcesOperations operations - :vartype private_link_resources: azure.mgmt.containerservice.v2021_09_01.aio.operations.PrivateLinkResourcesOperations + :vartype private_link_resources: azure.mgmt.containerservice.v2021_10_01.aio.operations.PrivateLinkResourcesOperations :ivar resolve_private_link_service_id: ResolvePrivateLinkServiceIdOperations operations - :vartype resolve_private_link_service_id: azure.mgmt.containerservice.v2021_09_01.aio.operations.ResolvePrivateLinkServiceIdOperations + :vartype resolve_private_link_service_id: azure.mgmt.containerservice.v2021_10_01.aio.operations.ResolvePrivateLinkServiceIdOperations :ivar snapshots: SnapshotsOperations operations - :vartype snapshots: azure.mgmt.containerservice.v2021_09_01.aio.operations.SnapshotsOperations + :vartype snapshots: azure.mgmt.containerservice.v2021_10_01.aio.operations.SnapshotsOperations :param credential: Credential needed for the client to connect to Azure. :type credential: ~azure.core.credentials_async.AsyncTokenCredential :param subscription_id: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/__init__.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/__init__.py old mode 100755 new mode 100644 similarity index 100% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/__init__.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/__init__.py diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_agent_pools_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_agent_pools_operations.py old mode 100755 new mode 100644 similarity index 96% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_agent_pools_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_agent_pools_operations.py index e28d9038a7c..11eb2ac2096 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_agent_pools_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_agent_pools_operations.py @@ -28,7 +28,7 @@ class AgentPoolsOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2021_09_01.models + :type models: ~azure.mgmt.containerservice.v2021_10_01.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -59,7 +59,7 @@ def list( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either AgentPoolListResult or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolListResult] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolListResult] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.AgentPoolListResult"] @@ -67,7 +67,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" def prepare_request(next_link=None): @@ -138,7 +138,7 @@ async def get( :type agent_pool_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: AgentPool, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.AgentPool + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.AgentPool :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.AgentPool"] @@ -146,7 +146,7 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -196,7 +196,7 @@ async def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -261,7 +261,7 @@ async def begin_create_or_update( :param agent_pool_name: The name of the agent pool. :type agent_pool_name: str :param parameters: The agent pool to create or update. - :type parameters: ~azure.mgmt.containerservice.v2021_09_01.models.AgentPool + :type parameters: ~azure.mgmt.containerservice.v2021_10_01.models.AgentPool :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. @@ -269,7 +269,7 @@ async def begin_create_or_update( :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of AsyncLROPoller that returns either AgentPool or the result of cls(response) - :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.v2021_09_01.models.AgentPool] + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.v2021_10_01.models.AgentPool] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] @@ -332,7 +332,7 @@ async def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -456,7 +456,7 @@ async def get_upgrade_profile( :type agent_pool_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: AgentPoolUpgradeProfile, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolUpgradeProfile + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolUpgradeProfile :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.AgentPoolUpgradeProfile"] @@ -464,7 +464,7 @@ async def get_upgrade_profile( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -519,7 +519,7 @@ async def get_available_agent_pool_versions( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: AgentPoolAvailableVersions, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolAvailableVersions + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolAvailableVersions :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.AgentPoolAvailableVersions"] @@ -527,7 +527,7 @@ async def get_available_agent_pool_versions( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -575,7 +575,7 @@ async def _upgrade_node_image_version_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -604,12 +604,14 @@ async def _upgrade_node_image_version_initial( map_error(status_code=response.status_code, response=response, error_map=error_map) raise HttpResponseError(response=response, error_format=ARMErrorFormat) + response_headers = {} deserialized = None if response.status_code == 202: + response_headers['Azure-AsyncOperation']=self._deserialize('str', response.headers.get('Azure-AsyncOperation')) deserialized = self._deserialize('AgentPool', pipeline_response) if cls: - return cls(pipeline_response, deserialized, {}) + return cls(pipeline_response, deserialized, response_headers) return deserialized _upgrade_node_image_version_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeNodeImageVersion'} # type: ignore @@ -663,10 +665,13 @@ async def begin_upgrade_node_image_version( kwargs.pop('content_type', None) def get_long_running_output(pipeline_response): + response_headers = {} + response = pipeline_response.http_response + response_headers['Azure-AsyncOperation']=self._deserialize('str', response.headers.get('Azure-AsyncOperation')) deserialized = self._deserialize('AgentPool', pipeline_response) if cls: - return cls(pipeline_response, deserialized, {}) + return cls(pipeline_response, deserialized, response_headers) return deserialized path_format_arguments = { diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_maintenance_configurations_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_maintenance_configurations_operations.py old mode 100755 new mode 100644 similarity index 97% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_maintenance_configurations_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_maintenance_configurations_operations.py index ff6253b9be3..ac26f9175e7 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_maintenance_configurations_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_maintenance_configurations_operations.py @@ -26,7 +26,7 @@ class MaintenanceConfigurationsOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2021_09_01.models + :type models: ~azure.mgmt.containerservice.v2021_10_01.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -57,7 +57,7 @@ def list_by_managed_cluster( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either MaintenanceConfigurationListResult or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2021_09_01.models.MaintenanceConfigurationListResult] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2021_10_01.models.MaintenanceConfigurationListResult] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.MaintenanceConfigurationListResult"] @@ -65,7 +65,7 @@ def list_by_managed_cluster( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" def prepare_request(next_link=None): @@ -136,7 +136,7 @@ async def get( :type config_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: MaintenanceConfiguration, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.MaintenanceConfiguration + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.MaintenanceConfiguration :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.MaintenanceConfiguration"] @@ -144,7 +144,7 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -200,10 +200,10 @@ async def create_or_update( :param config_name: The name of the maintenance configuration. :type config_name: str :param parameters: The maintenance configuration to create or update. - :type parameters: ~azure.mgmt.containerservice.v2021_09_01.models.MaintenanceConfiguration + :type parameters: ~azure.mgmt.containerservice.v2021_10_01.models.MaintenanceConfiguration :keyword callable cls: A custom type or function that will be passed the direct response :return: MaintenanceConfiguration, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.MaintenanceConfiguration + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.MaintenanceConfiguration :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.MaintenanceConfiguration"] @@ -211,7 +211,7 @@ async def create_or_update( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -280,7 +280,7 @@ async def delete( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_managed_clusters_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_managed_clusters_operations.py old mode 100755 new mode 100644 similarity index 98% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_managed_clusters_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_managed_clusters_operations.py index 2fb988a55e3..200c39b4d31 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_managed_clusters_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_managed_clusters_operations.py @@ -28,7 +28,7 @@ class ManagedClustersOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2021_09_01.models + :type models: ~azure.mgmt.containerservice.v2021_10_01.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -59,7 +59,7 @@ async def get_os_options( :type resource_type: str :keyword callable cls: A custom type or function that will be passed the direct response :return: OSOptionProfile, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.OSOptionProfile + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.OSOptionProfile :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.OSOptionProfile"] @@ -67,7 +67,7 @@ async def get_os_options( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -114,7 +114,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either ManagedClusterListResult or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterListResult] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterListResult] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterListResult"] @@ -122,7 +122,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" def prepare_request(next_link=None): @@ -185,7 +185,7 @@ def list_by_resource_group( :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either ManagedClusterListResult or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterListResult] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterListResult] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterListResult"] @@ -193,7 +193,7 @@ def list_by_resource_group( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" def prepare_request(next_link=None): @@ -260,7 +260,7 @@ async def get_upgrade_profile( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: ManagedClusterUpgradeProfile, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterUpgradeProfile + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterUpgradeProfile :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterUpgradeProfile"] @@ -268,7 +268,7 @@ async def get_upgrade_profile( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -326,7 +326,7 @@ async def get_access_profile( :type role_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: ManagedClusterAccessProfile, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterAccessProfile + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterAccessProfile :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterAccessProfile"] @@ -334,7 +334,7 @@ async def get_access_profile( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -390,7 +390,7 @@ async def list_cluster_admin_credentials( :type server_fqdn: str :keyword callable cls: A custom type or function that will be passed the direct response :return: CredentialResults, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.CredentialResults + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.CredentialResults :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.CredentialResults"] @@ -398,7 +398,7 @@ async def list_cluster_admin_credentials( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -455,7 +455,7 @@ async def list_cluster_user_credentials( :type server_fqdn: str :keyword callable cls: A custom type or function that will be passed the direct response :return: CredentialResults, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.CredentialResults + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.CredentialResults :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.CredentialResults"] @@ -463,7 +463,7 @@ async def list_cluster_user_credentials( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -520,7 +520,7 @@ async def list_cluster_monitoring_user_credentials( :type server_fqdn: str :keyword callable cls: A custom type or function that will be passed the direct response :return: CredentialResults, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.CredentialResults + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.CredentialResults :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.CredentialResults"] @@ -528,7 +528,7 @@ async def list_cluster_monitoring_user_credentials( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -582,7 +582,7 @@ async def get( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: ManagedCluster, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.ManagedCluster + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.ManagedCluster :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedCluster"] @@ -590,7 +590,7 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -638,7 +638,7 @@ async def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -699,7 +699,7 @@ async def begin_create_or_update( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: The managed cluster to create or update. - :type parameters: ~azure.mgmt.containerservice.v2021_09_01.models.ManagedCluster + :type parameters: ~azure.mgmt.containerservice.v2021_10_01.models.ManagedCluster :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. @@ -707,7 +707,7 @@ async def begin_create_or_update( :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of AsyncLROPoller that returns either ManagedCluster or the result of cls(response) - :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.v2021_09_01.models.ManagedCluster] + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.v2021_10_01.models.ManagedCluster] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] @@ -768,7 +768,7 @@ async def _update_tags_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -825,7 +825,7 @@ async def begin_update_tags( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: Parameters supplied to the Update Managed Cluster Tags operation. - :type parameters: ~azure.mgmt.containerservice.v2021_09_01.models.TagsObject + :type parameters: ~azure.mgmt.containerservice.v2021_10_01.models.TagsObject :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. @@ -833,7 +833,7 @@ async def begin_update_tags( :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of AsyncLROPoller that returns either ManagedCluster or the result of cls(response) - :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.v2021_09_01.models.ManagedCluster] + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.v2021_10_01.models.ManagedCluster] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] @@ -893,7 +893,7 @@ async def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -1004,7 +1004,7 @@ async def _reset_service_principal_profile_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1058,7 +1058,7 @@ async def begin_reset_service_principal_profile( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: The service principal profile to set on the managed cluster. - :type parameters: ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterServicePrincipalProfile + :type parameters: ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterServicePrincipalProfile :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. @@ -1124,7 +1124,7 @@ async def _reset_aad_profile_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1178,7 +1178,7 @@ async def begin_reset_aad_profile( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: The AAD profile to set on the Managed Cluster. - :type parameters: ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterAADProfile + :type parameters: ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterAADProfile :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. @@ -1243,7 +1243,7 @@ async def _rotate_cluster_certificates_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -1354,7 +1354,7 @@ async def _stop_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -1468,7 +1468,7 @@ async def _start_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -1580,7 +1580,7 @@ async def _run_command_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1641,7 +1641,7 @@ async def begin_run_command( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param request_payload: The run command request. - :type request_payload: ~azure.mgmt.containerservice.v2021_09_01.models.RunCommandRequest + :type request_payload: ~azure.mgmt.containerservice.v2021_10_01.models.RunCommandRequest :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. @@ -1649,7 +1649,7 @@ async def begin_run_command( :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of AsyncLROPoller that returns either RunCommandResult or the result of cls(response) - :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.v2021_09_01.models.RunCommandResult] + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.containerservice.v2021_10_01.models.RunCommandResult] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] @@ -1717,7 +1717,7 @@ async def get_command_result( :type command_id: str :keyword callable cls: A custom type or function that will be passed the direct response :return: RunCommandResult, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.RunCommandResult or None + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.RunCommandResult or None :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.RunCommandResult"]] @@ -1725,7 +1725,7 @@ async def get_command_result( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -1781,7 +1781,7 @@ def list_outbound_network_dependencies_endpoints( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either OutboundEnvironmentEndpointCollection or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2021_09_01.models.OutboundEnvironmentEndpointCollection] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2021_10_01.models.OutboundEnvironmentEndpointCollection] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.OutboundEnvironmentEndpointCollection"] @@ -1789,7 +1789,7 @@ def list_outbound_network_dependencies_endpoints( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_operations.py old mode 100755 new mode 100644 similarity index 96% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_operations.py index 3b4ec0d14b2..b972813722f --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_operations.py @@ -26,7 +26,7 @@ class Operations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2021_09_01.models + :type models: ~azure.mgmt.containerservice.v2021_10_01.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -51,7 +51,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either OperationListResult or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2021_09_01.models.OperationListResult] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2021_10_01.models.OperationListResult] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.OperationListResult"] @@ -59,7 +59,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_private_endpoint_connections_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_private_endpoint_connections_operations.py old mode 100755 new mode 100644 similarity index 97% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_private_endpoint_connections_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_private_endpoint_connections_operations.py index 8e3a7384394..166cc6ccda8 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_private_endpoint_connections_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_private_endpoint_connections_operations.py @@ -27,7 +27,7 @@ class PrivateEndpointConnectionsOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2021_09_01.models + :type models: ~azure.mgmt.containerservice.v2021_10_01.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -59,7 +59,7 @@ async def list( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: PrivateEndpointConnectionListResult, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.PrivateEndpointConnectionListResult + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.PrivateEndpointConnectionListResult :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointConnectionListResult"] @@ -67,7 +67,7 @@ async def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -123,7 +123,7 @@ async def get( :type private_endpoint_connection_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: PrivateEndpointConnection, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.PrivateEndpointConnection + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.PrivateEndpointConnection :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointConnection"] @@ -131,7 +131,7 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -187,10 +187,10 @@ async def update( :param private_endpoint_connection_name: The name of the private endpoint connection. :type private_endpoint_connection_name: str :param parameters: The updated private endpoint connection. - :type parameters: ~azure.mgmt.containerservice.v2021_09_01.models.PrivateEndpointConnection + :type parameters: ~azure.mgmt.containerservice.v2021_10_01.models.PrivateEndpointConnection :keyword callable cls: A custom type or function that will be passed the direct response :return: PrivateEndpointConnection, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.PrivateEndpointConnection + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.PrivateEndpointConnection :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointConnection"] @@ -198,7 +198,7 @@ async def update( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -252,7 +252,7 @@ async def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_private_link_resources_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_private_link_resources_operations.py old mode 100755 new mode 100644 similarity index 96% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_private_link_resources_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_private_link_resources_operations.py index a247203e0af..1026ee63322 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_private_link_resources_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_private_link_resources_operations.py @@ -25,7 +25,7 @@ class PrivateLinkResourcesOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2021_09_01.models + :type models: ~azure.mgmt.containerservice.v2021_10_01.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -57,7 +57,7 @@ async def list( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: PrivateLinkResourcesListResult, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.PrivateLinkResourcesListResult + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.PrivateLinkResourcesListResult :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkResourcesListResult"] @@ -65,7 +65,7 @@ async def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_resolve_private_link_service_id_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_resolve_private_link_service_id_operations.py old mode 100755 new mode 100644 similarity index 95% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_resolve_private_link_service_id_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_resolve_private_link_service_id_operations.py index e0f019dcc15..1f68df5c772 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_resolve_private_link_service_id_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_resolve_private_link_service_id_operations.py @@ -25,7 +25,7 @@ class ResolvePrivateLinkServiceIdOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2021_09_01.models + :type models: ~azure.mgmt.containerservice.v2021_10_01.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -56,10 +56,10 @@ async def post( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: Parameters required in order to resolve a private link service ID. - :type parameters: ~azure.mgmt.containerservice.v2021_09_01.models.PrivateLinkResource + :type parameters: ~azure.mgmt.containerservice.v2021_10_01.models.PrivateLinkResource :keyword callable cls: A custom type or function that will be passed the direct response :return: PrivateLinkResource, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.PrivateLinkResource + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.PrivateLinkResource :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkResource"] @@ -67,7 +67,7 @@ async def post( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_snapshots_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_snapshots_operations.py old mode 100755 new mode 100644 similarity index 96% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_snapshots_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_snapshots_operations.py index 506c178f49a..080eb8d5883 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/aio/operations/_snapshots_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/aio/operations/_snapshots_operations.py @@ -26,7 +26,7 @@ class SnapshotsOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2021_09_01.models + :type models: ~azure.mgmt.containerservice.v2021_10_01.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -51,7 +51,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either SnapshotListResult or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2021_09_01.models.SnapshotListResult] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2021_10_01.models.SnapshotListResult] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotListResult"] @@ -59,7 +59,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" def prepare_request(next_link=None): @@ -122,7 +122,7 @@ def list_by_resource_group( :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either SnapshotListResult or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2021_09_01.models.SnapshotListResult] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.containerservice.v2021_10_01.models.SnapshotListResult] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotListResult"] @@ -130,7 +130,7 @@ def list_by_resource_group( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" def prepare_request(next_link=None): @@ -197,7 +197,7 @@ async def get( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: Snapshot, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.Snapshot + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.Snapshot :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Snapshot"] @@ -205,7 +205,7 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -257,10 +257,10 @@ async def create_or_update( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: The snapshot to create or update. - :type parameters: ~azure.mgmt.containerservice.v2021_09_01.models.Snapshot + :type parameters: ~azure.mgmt.containerservice.v2021_10_01.models.Snapshot :keyword callable cls: A custom type or function that will be passed the direct response :return: Snapshot, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.Snapshot + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.Snapshot :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Snapshot"] @@ -268,7 +268,7 @@ async def create_or_update( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -329,10 +329,10 @@ async def update_tags( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: Parameters supplied to the Update snapshot Tags operation. - :type parameters: ~azure.mgmt.containerservice.v2021_09_01.models.TagsObject + :type parameters: ~azure.mgmt.containerservice.v2021_10_01.models.TagsObject :keyword callable cls: A custom type or function that will be passed the direct response :return: Snapshot, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.Snapshot + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.Snapshot :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Snapshot"] @@ -340,7 +340,7 @@ async def update_tags( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -405,7 +405,7 @@ async def delete( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/models/__init__.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/models/__init__.py old mode 100755 new mode 100644 similarity index 99% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/models/__init__.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/models/__init__.py index 127eebcc744..732cfd25748 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/models/__init__.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/models/__init__.py @@ -193,6 +193,7 @@ Expander, ExtendedLocationTypes, GPUInstanceProfile, + IpFamily, KubeletDiskType, LicenseType, LoadBalancerSku, @@ -316,6 +317,7 @@ 'Expander', 'ExtendedLocationTypes', 'GPUInstanceProfile', + 'IpFamily', 'KubeletDiskType', 'LicenseType', 'LoadBalancerSku', diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/models/_container_service_client_enums.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/models/_container_service_client_enums.py old mode 100755 new mode 100644 similarity index 99% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/models/_container_service_client_enums.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/models/_container_service_client_enums.py index 9eeb9d5f067..28fe051084f --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/models/_container_service_client_enums.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/models/_container_service_client_enums.py @@ -310,6 +310,13 @@ class GPUInstanceProfile(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): MIG4_G = "MIG4g" MIG7_G = "MIG7g" +class IpFamily(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """The IP version to use for cluster networking and IP assignment. + """ + + I_PV4 = "IPv4" + I_PV6 = "IPv6" + class KubeletDiskType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """Determines the placement of emptyDir volumes, container runtime data root, and Kubelet ephemeral storage. @@ -468,8 +475,7 @@ class PrivateEndpointConnectionProvisioningState(with_metaclass(_CaseInsensitive FAILED = "Failed" class PublicNetworkAccess(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): - """Default value is 'Enabled' (case insensitive). Could be set to 'Disabled' to enable private - cluster + """Allow or deny public network access for AKS """ ENABLED = "Enabled" diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/models/_models.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/models/_models.py old mode 100755 new mode 100644 similarity index 94% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/models/_models.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/models/_models.py index cfbd39a4162..ef3507dbfdb --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/models/_models.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/models/_models.py @@ -74,13 +74,13 @@ class AgentPool(SubResource): after creation. For more information see `Ephemeral OS `_. Possible values include: "Managed", "Ephemeral". - :type os_disk_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSDiskType + :type os_disk_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSDiskType :param kubelet_disk_type: Determines the placement of emptyDir volumes, container runtime data root, and Kubelet ephemeral storage. Possible values include: "OS", "Temporary". - :type kubelet_disk_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.KubeletDiskType + :type kubelet_disk_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.KubeletDiskType :param workload_runtime: Determines the type of workload a node can run. Possible values include: "OCIContainer", "WasmWasi". - :type workload_runtime: str or ~azure.mgmt.containerservice.v2021_09_01.models.WorkloadRuntime + :type workload_runtime: str or ~azure.mgmt.containerservice.v2021_10_01.models.WorkloadRuntime :param vnet_subnet_id: If this is not specified, a VNET and subnet will be generated and used. If no podSubnetID is specified, this applies to nodes and pods, otherwise it applies to just nodes. This is of the form: @@ -94,10 +94,10 @@ class AgentPool(SubResource): :type max_pods: int :param os_type: The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :type os_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSType + :type os_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSType :param os_sku: Specifies an OS SKU. This value must not be specified if OSType is Windows. Possible values include: "Ubuntu", "CBLMariner". - :type os_sku: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSSKU + :type os_sku: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSSKU :param max_count: The maximum number of nodes for auto-scaling. :type max_count: int :param min_count: The minimum number of nodes for auto-scaling. @@ -106,16 +106,16 @@ class AgentPool(SubResource): :type enable_auto_scaling: bool :param scale_down_mode: This also effects the cluster autoscaler behavior. If not specified, it defaults to Delete. Possible values include: "Delete", "Deallocate". - :type scale_down_mode: str or ~azure.mgmt.containerservice.v2021_09_01.models.ScaleDownMode + :type scale_down_mode: str or ~azure.mgmt.containerservice.v2021_10_01.models.ScaleDownMode :param type_properties_type: The type of Agent Pool. Possible values include: "VirtualMachineScaleSets", "AvailabilitySet". :type type_properties_type: str or - ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolType + ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolType :param mode: A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools. Possible values include: "System", "User". - :type mode: str or ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolMode + :type mode: str or ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolMode :param orchestrator_version: As a best practice, you should upgrade all node pools in an AKS cluster to the same Kubernetes version. The node pool version must have the same major version as the control plane. The node pool minor version must be within two minor versions of the @@ -127,14 +127,14 @@ class AgentPool(SubResource): :vartype node_image_version: str :param upgrade_settings: Settings for upgrading the agentpool. :type upgrade_settings: - ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolUpgradeSettings + ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolUpgradeSettings :ivar provisioning_state: The current deployment or provisioning state. :vartype provisioning_state: str :param power_state: When an Agent Pool is first created it is initially Running. The Agent Pool can be stopped by setting this field to Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An Agent Pool can only be stopped if it is Running and provisioning state is Succeeded. - :type power_state: ~azure.mgmt.containerservice.v2021_09_01.models.PowerState + :type power_state: ~azure.mgmt.containerservice.v2021_10_01.models.PowerState :param availability_zones: The list of Availability zones to use for nodes. This can only be specified if the AgentPoolType property is 'VirtualMachineScaleSets'. :type availability_zones: list[str] @@ -151,12 +151,12 @@ class AgentPool(SubResource): :param scale_set_priority: The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'. Possible values include: "Spot", "Regular". Default value: "Regular". :type scale_set_priority: str or - ~azure.mgmt.containerservice.v2021_09_01.models.ScaleSetPriority + ~azure.mgmt.containerservice.v2021_10_01.models.ScaleSetPriority :param scale_set_eviction_policy: This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'. Possible values include: "Delete", "Deallocate". Default value: "Delete". :type scale_set_eviction_policy: str or - ~azure.mgmt.containerservice.v2021_09_01.models.ScaleSetEvictionPolicy + ~azure.mgmt.containerservice.v2021_10_01.models.ScaleSetEvictionPolicy :param spot_max_price: Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any on-demand price. For more details on spot pricing, see `spot VMs pricing `_. @@ -172,9 +172,9 @@ class AgentPool(SubResource): :param proximity_placement_group_id: The ID for Proximity Placement Group. :type proximity_placement_group_id: str :param kubelet_config: The Kubelet configuration on the agent pool nodes. - :type kubelet_config: ~azure.mgmt.containerservice.v2021_09_01.models.KubeletConfig + :type kubelet_config: ~azure.mgmt.containerservice.v2021_10_01.models.KubeletConfig :param linux_os_config: The OS configuration of Linux agent nodes. - :type linux_os_config: ~azure.mgmt.containerservice.v2021_09_01.models.LinuxOSConfig + :type linux_os_config: ~azure.mgmt.containerservice.v2021_10_01.models.LinuxOSConfig :param enable_encryption_at_host: This is only supported on certain VM sizes and in certain Azure regions. For more information, see: https://docs.microsoft.com/azure/aks/enable-host-encryption. @@ -188,10 +188,10 @@ class AgentPool(SubResource): :param gpu_instance_profile: GPUInstanceProfile to be used to specify GPU MIG instance profile for supported GPU VM SKU. Possible values include: "MIG1g", "MIG2g", "MIG3g", "MIG4g", "MIG7g". :type gpu_instance_profile: str or - ~azure.mgmt.containerservice.v2021_09_01.models.GPUInstanceProfile + ~azure.mgmt.containerservice.v2021_10_01.models.GPUInstanceProfile :param creation_data: CreationData to be used to specify the source Snapshot ID if the node pool will be created/upgraded using a snapshot. - :type creation_data: ~azure.mgmt.containerservice.v2021_09_01.models.CreationData + :type creation_data: ~azure.mgmt.containerservice.v2021_10_01.models.CreationData """ _validation = { @@ -307,7 +307,7 @@ class AgentPoolAvailableVersions(msrest.serialization.Model): :vartype type: str :param agent_pool_versions: List of versions available for agent pool. :type agent_pool_versions: - list[~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem] + list[~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem] """ _validation = { @@ -367,7 +367,7 @@ class AgentPoolListResult(msrest.serialization.Model): Variables are only populated by the server, and will be ignored when sending a request. :param value: The list of agent pools. - :type value: list[~azure.mgmt.containerservice.v2021_09_01.models.AgentPool] + :type value: list[~azure.mgmt.containerservice.v2021_10_01.models.AgentPool] :ivar next_link: The URL to get the next set of agent pool results. :vartype next_link: str """ @@ -407,10 +407,10 @@ class AgentPoolUpgradeProfile(msrest.serialization.Model): :type kubernetes_version: str :param os_type: Required. The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :type os_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSType + :type os_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSType :param upgrades: List of orchestrator types and versions available for upgrade. :type upgrades: - list[~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolUpgradeProfilePropertiesUpgradesItem] + list[~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolUpgradeProfilePropertiesUpgradesItem] :param latest_node_image_version: The latest AKS supported node image version. :type latest_node_image_version: str """ @@ -506,7 +506,7 @@ class CloudErrorBody(msrest.serialization.Model): error. :type target: str :param details: A list of additional details about the error. - :type details: list[~azure.mgmt.containerservice.v2021_09_01.models.CloudErrorBody] + :type details: list[~azure.mgmt.containerservice.v2021_10_01.models.CloudErrorBody] """ _attribute_map = { @@ -534,7 +534,7 @@ class ContainerServiceDiagnosticsProfile(msrest.serialization.Model): :param vm_diagnostics: Required. Profile for diagnostics on the container service VMs. :type vm_diagnostics: - ~azure.mgmt.containerservice.v2021_09_01.models.ContainerServiceVMDiagnostics + ~azure.mgmt.containerservice.v2021_10_01.models.ContainerServiceVMDiagnostics """ _validation = { @@ -561,7 +561,7 @@ class ContainerServiceLinuxProfile(msrest.serialization.Model): :param admin_username: Required. The administrator username to use for Linux VMs. :type admin_username: str :param ssh: Required. The SSH configuration for Linux-based VMs running on Azure. - :type ssh: ~azure.mgmt.containerservice.v2021_09_01.models.ContainerServiceSshConfiguration + :type ssh: ~azure.mgmt.containerservice.v2021_10_01.models.ContainerServiceSshConfiguration """ _validation = { @@ -592,7 +592,7 @@ class ContainerServiceMasterProfile(msrest.serialization.Model): :param count: Number of masters (VMs) in the container service cluster. Allowed values are 1, 3, and 5. The default value is 1. Possible values include: 1, 3, 5. Default value: "1". - :type count: str or ~azure.mgmt.containerservice.v2021_09_01.models.Count + :type count: str or ~azure.mgmt.containerservice.v2021_10_01.models.Count :param dns_prefix: Required. DNS prefix to be used to create the FQDN for the master pool. :type dns_prefix: str :param vm_size: Required. Size of agent VMs. Possible values include: "Standard_A1", @@ -634,7 +634,7 @@ class ContainerServiceMasterProfile(msrest.serialization.Model): "Standard_NC6", "Standard_NC6s_v2", "Standard_NC6s_v3", "Standard_ND12s", "Standard_ND24rs", "Standard_ND24s", "Standard_ND6s", "Standard_NV12", "Standard_NV24", "Standard_NV6". :type vm_size: str or - ~azure.mgmt.containerservice.v2021_09_01.models.ContainerServiceVMSizeTypes + ~azure.mgmt.containerservice.v2021_10_01.models.ContainerServiceVMSizeTypes :param os_disk_size_gb: OS Disk Size in GB to be used to specify the disk size for every machine in this master/agent pool. If you specify 0, it will apply the default osDisk size according to the vmSize specified. @@ -648,7 +648,7 @@ class ContainerServiceMasterProfile(msrest.serialization.Model): StorageAccount and ManagedDisks. Leave it empty, we will choose for you based on the orchestrator choice. Possible values include: "StorageAccount", "ManagedDisks". :type storage_profile: str or - ~azure.mgmt.containerservice.v2021_09_01.models.ContainerServiceStorageProfileTypes + ~azure.mgmt.containerservice.v2021_10_01.models.ContainerServiceStorageProfileTypes :ivar fqdn: FQDN for the master pool. :vartype fqdn: str """ @@ -691,13 +691,13 @@ class ContainerServiceNetworkProfile(msrest.serialization.Model): :param network_plugin: Network plugin used for building the Kubernetes network. Possible values include: "azure", "kubenet". Default value: "kubenet". - :type network_plugin: str or ~azure.mgmt.containerservice.v2021_09_01.models.NetworkPlugin + :type network_plugin: str or ~azure.mgmt.containerservice.v2021_10_01.models.NetworkPlugin :param network_policy: Network policy used for building the Kubernetes network. Possible values include: "calico", "azure". - :type network_policy: str or ~azure.mgmt.containerservice.v2021_09_01.models.NetworkPolicy + :type network_policy: str or ~azure.mgmt.containerservice.v2021_10_01.models.NetworkPolicy :param network_mode: This cannot be specified if networkPlugin is anything other than 'azure'. Possible values include: "transparent", "bridge". - :type network_mode: str or ~azure.mgmt.containerservice.v2021_09_01.models.NetworkMode + :type network_mode: str or ~azure.mgmt.containerservice.v2021_10_01.models.NetworkMode :param pod_cidr: A CIDR notation IP range from which to assign pod IPs when kubenet is used. :type pod_cidr: str :param service_cidr: A CIDR notation IP range from which to assign service cluster IPs. It must @@ -714,17 +714,28 @@ class ContainerServiceNetworkProfile(msrest.serialization.Model): `_. Possible values include: "loadBalancer", "userDefinedRouting", "managedNATGateway", "userAssignedNATGateway". Default value: "loadBalancer". - :type outbound_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.OutboundType + :type outbound_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.OutboundType :param load_balancer_sku: The default is 'standard'. See `Azure Load Balancer SKUs `_ for more information about the differences between load balancer SKUs. Possible values include: "standard", "basic". - :type load_balancer_sku: str or ~azure.mgmt.containerservice.v2021_09_01.models.LoadBalancerSku + :type load_balancer_sku: str or ~azure.mgmt.containerservice.v2021_10_01.models.LoadBalancerSku :param load_balancer_profile: Profile of the cluster load balancer. :type load_balancer_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterLoadBalancerProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterLoadBalancerProfile :param nat_gateway_profile: Profile of the cluster NAT gateway. :type nat_gateway_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterNATGatewayProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterNATGatewayProfile + :param pod_cidrs: One IPv4 CIDR is expected for single-stack networking. Two CIDRs, one for + each IP family (IPv4/IPv6), is expected for dual-stack networking. + :type pod_cidrs: list[str] + :param service_cidrs: One IPv4 CIDR is expected for single-stack networking. Two CIDRs, one for + each IP family (IPv4/IPv6), is expected for dual-stack networking. They must not overlap with + any Subnet IP ranges. + :type service_cidrs: list[str] + :param ip_families: IP families are used to determine single-stack or dual-stack clusters. For + single-stack, the expected value is IPv4. For dual-stack, the expected values are IPv4 and + IPv6. + :type ip_families: list[str or ~azure.mgmt.containerservice.v2021_10_01.models.IpFamily] """ _validation = { @@ -746,6 +757,9 @@ class ContainerServiceNetworkProfile(msrest.serialization.Model): 'load_balancer_sku': {'key': 'loadBalancerSku', 'type': 'str'}, 'load_balancer_profile': {'key': 'loadBalancerProfile', 'type': 'ManagedClusterLoadBalancerProfile'}, 'nat_gateway_profile': {'key': 'natGatewayProfile', 'type': 'ManagedClusterNATGatewayProfile'}, + 'pod_cidrs': {'key': 'podCidrs', 'type': '[str]'}, + 'service_cidrs': {'key': 'serviceCidrs', 'type': '[str]'}, + 'ip_families': {'key': 'ipFamilies', 'type': '[str]'}, } def __init__( @@ -764,6 +778,9 @@ def __init__( self.load_balancer_sku = kwargs.get('load_balancer_sku', None) self.load_balancer_profile = kwargs.get('load_balancer_profile', None) self.nat_gateway_profile = kwargs.get('nat_gateway_profile', None) + self.pod_cidrs = kwargs.get('pod_cidrs', None) + self.service_cidrs = kwargs.get('service_cidrs', None) + self.ip_families = kwargs.get('ip_families', None) class ContainerServiceSshConfiguration(msrest.serialization.Model): @@ -774,7 +791,7 @@ class ContainerServiceSshConfiguration(msrest.serialization.Model): :param public_keys: Required. The list of SSH public keys used to authenticate with Linux-based VMs. A maximum of 1 key may be specified. :type public_keys: - list[~azure.mgmt.containerservice.v2021_09_01.models.ContainerServiceSshPublicKey] + list[~azure.mgmt.containerservice.v2021_10_01.models.ContainerServiceSshPublicKey] """ _validation = { @@ -907,7 +924,7 @@ class CredentialResults(msrest.serialization.Model): Variables are only populated by the server, and will be ignored when sending a request. :ivar kubeconfigs: Base64-encoded Kubernetes configuration file. - :vartype kubeconfigs: list[~azure.mgmt.containerservice.v2021_09_01.models.CredentialResult] + :vartype kubeconfigs: list[~azure.mgmt.containerservice.v2021_10_01.models.CredentialResult] """ _validation = { @@ -932,7 +949,7 @@ class EndpointDependency(msrest.serialization.Model): :param domain_name: The domain name of the dependency. :type domain_name: str :param endpoint_details: The Ports and Protocols used when connecting to domainName. - :type endpoint_details: list[~azure.mgmt.containerservice.v2021_09_01.models.EndpointDetail] + :type endpoint_details: list[~azure.mgmt.containerservice.v2021_10_01.models.EndpointDetail] """ _attribute_map = { @@ -986,7 +1003,7 @@ class ExtendedLocation(msrest.serialization.Model): :param name: The name of the extended location. :type name: str :param type: The type of the extended location. Possible values include: "EdgeZone". - :type type: str or ~azure.mgmt.containerservice.v2021_09_01.models.ExtendedLocationTypes + :type type: str or ~azure.mgmt.containerservice.v2021_10_01.models.ExtendedLocationTypes """ _attribute_map = { @@ -1082,7 +1099,7 @@ class LinuxOSConfig(msrest.serialization.Model): """See `AKS custom node configuration `_ for more details. :param sysctls: Sysctl settings for Linux agent nodes. - :type sysctls: ~azure.mgmt.containerservice.v2021_09_01.models.SysctlConfig + :type sysctls: ~azure.mgmt.containerservice.v2021_10_01.models.SysctlConfig :param transparent_huge_page_enabled: Valid values are 'always', 'madvise', and 'never'. The default is 'always'. For more information see `Transparent Hugepages `_. @@ -1127,12 +1144,12 @@ class MaintenanceConfiguration(SubResource): :ivar type: Resource type. :vartype type: str :ivar system_data: The system metadata relating to this resource. - :vartype system_data: ~azure.mgmt.containerservice.v2021_09_01.models.SystemData + :vartype system_data: ~azure.mgmt.containerservice.v2021_10_01.models.SystemData :param time_in_week: If two array entries specify the same day of the week, the applied configuration is the union of times in both entries. - :type time_in_week: list[~azure.mgmt.containerservice.v2021_09_01.models.TimeInWeek] + :type time_in_week: list[~azure.mgmt.containerservice.v2021_10_01.models.TimeInWeek] :param not_allowed_time: Time slots on which upgrade is not allowed. - :type not_allowed_time: list[~azure.mgmt.containerservice.v2021_09_01.models.TimeSpan] + :type not_allowed_time: list[~azure.mgmt.containerservice.v2021_10_01.models.TimeSpan] """ _validation = { @@ -1167,7 +1184,7 @@ class MaintenanceConfigurationListResult(msrest.serialization.Model): Variables are only populated by the server, and will be ignored when sending a request. :param value: The list of maintenance configurations. - :type value: list[~azure.mgmt.containerservice.v2021_09_01.models.MaintenanceConfiguration] + :type value: list[~azure.mgmt.containerservice.v2021_10_01.models.MaintenanceConfiguration] :ivar next_link: The URL to get the next set of maintenance configuration results. :vartype next_link: str """ @@ -1254,15 +1271,15 @@ class ManagedCluster(Resource): :param tags: A set of tags. Resource tags. :type tags: dict[str, str] :param sku: The managed cluster SKU. - :type sku: ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterSKU + :type sku: ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterSKU :param extended_location: The extended location of the Virtual Machine. - :type extended_location: ~azure.mgmt.containerservice.v2021_09_01.models.ExtendedLocation + :type extended_location: ~azure.mgmt.containerservice.v2021_10_01.models.ExtendedLocation :param identity: The identity of the managed cluster, if configured. - :type identity: ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterIdentity + :type identity: ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterIdentity :ivar provisioning_state: The current provisioning state. :vartype provisioning_state: str :ivar power_state: The Power State of the cluster. - :vartype power_state: ~azure.mgmt.containerservice.v2021_09_01.models.PowerState + :vartype power_state: ~azure.mgmt.containerservice.v2021_10_01.models.PowerState :ivar max_agent_pools: The max number of agent pools for the managed cluster. :vartype max_agent_pools: int :param kubernetes_version: When you upgrade a supported AKS cluster, Kubernetes minor versions @@ -1285,25 +1302,25 @@ class ManagedCluster(Resource): :vartype azure_portal_fqdn: str :param agent_pool_profiles: The agent pool properties. :type agent_pool_profiles: - list[~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterAgentPoolProfile] + list[~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterAgentPoolProfile] :param linux_profile: The profile for Linux VMs in the Managed Cluster. :type linux_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ContainerServiceLinuxProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ContainerServiceLinuxProfile :param windows_profile: The profile for Windows VMs in the Managed Cluster. :type windows_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterWindowsProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterWindowsProfile :param service_principal_profile: Information about a service principal identity for the cluster to use for manipulating Azure APIs. :type service_principal_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterServicePrincipalProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterServicePrincipalProfile :param addon_profiles: The profile of managed cluster add-on. :type addon_profiles: dict[str, - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterAddonProfile] + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterAddonProfile] :param pod_identity_profile: See `use AAD pod identity `_ for more details on AAD pod identity integration. :type pod_identity_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPodIdentityProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPodIdentityProfile :param node_resource_group: The name of the resource group containing agent pool nodes. :type node_resource_group: str :param enable_rbac: Whether to enable Kubernetes Role-Based Access Control. @@ -1314,27 +1331,27 @@ class ManagedCluster(Resource): :type enable_pod_security_policy: bool :param network_profile: The network configuration profile. :type network_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ContainerServiceNetworkProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ContainerServiceNetworkProfile :param aad_profile: The Azure Active Directory configuration. - :type aad_profile: ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterAADProfile + :type aad_profile: ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterAADProfile :param auto_upgrade_profile: The auto upgrade configuration. :type auto_upgrade_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterAutoUpgradeProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterAutoUpgradeProfile :param auto_scaler_profile: Parameters to be applied to the cluster-autoscaler when enabled. :type auto_scaler_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPropertiesAutoScalerProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPropertiesAutoScalerProfile :param api_server_access_profile: The access profile for managed cluster API server. :type api_server_access_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterAPIServerAccessProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterAPIServerAccessProfile :param disk_encryption_set_id: This is of the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskEncryptionSets/{encryptionSetName}'. :type disk_encryption_set_id: str :param identity_profile: Identities associated with the cluster. :type identity_profile: dict[str, - ~azure.mgmt.containerservice.v2021_09_01.models.UserAssignedIdentity] + ~azure.mgmt.containerservice.v2021_10_01.models.UserAssignedIdentity] :param private_link_resources: Private link resources associated with the cluster. :type private_link_resources: - list[~azure.mgmt.containerservice.v2021_09_01.models.PrivateLinkResource] + list[~azure.mgmt.containerservice.v2021_10_01.models.PrivateLinkResource] :param disable_local_accounts: If set to true, getting static credentials will be disabled for this cluster. This must only be used on Managed Clusters that are AAD enabled. For more details see `disable local accounts @@ -1342,14 +1359,14 @@ class ManagedCluster(Resource): :type disable_local_accounts: bool :param http_proxy_config: Configurations for provisioning the cluster with HTTP proxy servers. :type http_proxy_config: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterHTTPProxyConfig + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterHTTPProxyConfig :param security_profile: Security profile for the managed cluster. :type security_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterSecurityProfile - :param public_network_access: Default value is 'Enabled' (case insensitive). Could be set to - 'Disabled' to enable private cluster. Possible values include: "Enabled", "Disabled". + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterSecurityProfile + :param public_network_access: Allow or deny public network access for AKS. Possible values + include: "Enabled", "Disabled". :type public_network_access: str or - ~azure.mgmt.containerservice.v2021_09_01.models.PublicNetworkAccess + ~azure.mgmt.containerservice.v2021_10_01.models.PublicNetworkAccess """ _validation = { @@ -1549,7 +1566,7 @@ class ManagedClusterAddonProfile(msrest.serialization.Model): :type config: dict[str, str] :ivar identity: Information of user assigned identity used by this add-on. :vartype identity: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterAddonProfileIdentity + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterAddonProfileIdentity """ _validation = { @@ -1646,13 +1663,13 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): after creation. For more information see `Ephemeral OS `_. Possible values include: "Managed", "Ephemeral". - :type os_disk_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSDiskType + :type os_disk_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSDiskType :param kubelet_disk_type: Determines the placement of emptyDir volumes, container runtime data root, and Kubelet ephemeral storage. Possible values include: "OS", "Temporary". - :type kubelet_disk_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.KubeletDiskType + :type kubelet_disk_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.KubeletDiskType :param workload_runtime: Determines the type of workload a node can run. Possible values include: "OCIContainer", "WasmWasi". - :type workload_runtime: str or ~azure.mgmt.containerservice.v2021_09_01.models.WorkloadRuntime + :type workload_runtime: str or ~azure.mgmt.containerservice.v2021_10_01.models.WorkloadRuntime :param vnet_subnet_id: If this is not specified, a VNET and subnet will be generated and used. If no podSubnetID is specified, this applies to nodes and pods, otherwise it applies to just nodes. This is of the form: @@ -1666,10 +1683,10 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): :type max_pods: int :param os_type: The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :type os_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSType + :type os_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSType :param os_sku: Specifies an OS SKU. This value must not be specified if OSType is Windows. Possible values include: "Ubuntu", "CBLMariner". - :type os_sku: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSSKU + :type os_sku: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSSKU :param max_count: The maximum number of nodes for auto-scaling. :type max_count: int :param min_count: The minimum number of nodes for auto-scaling. @@ -1678,15 +1695,15 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): :type enable_auto_scaling: bool :param scale_down_mode: This also effects the cluster autoscaler behavior. If not specified, it defaults to Delete. Possible values include: "Delete", "Deallocate". - :type scale_down_mode: str or ~azure.mgmt.containerservice.v2021_09_01.models.ScaleDownMode + :type scale_down_mode: str or ~azure.mgmt.containerservice.v2021_10_01.models.ScaleDownMode :param type: The type of Agent Pool. Possible values include: "VirtualMachineScaleSets", "AvailabilitySet". - :type type: str or ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolType + :type type: str or ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolType :param mode: A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools. Possible values include: "System", "User". - :type mode: str or ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolMode + :type mode: str or ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolMode :param orchestrator_version: As a best practice, you should upgrade all node pools in an AKS cluster to the same Kubernetes version. The node pool version must have the same major version as the control plane. The node pool minor version must be within two minor versions of the @@ -1698,14 +1715,14 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): :vartype node_image_version: str :param upgrade_settings: Settings for upgrading the agentpool. :type upgrade_settings: - ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolUpgradeSettings + ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolUpgradeSettings :ivar provisioning_state: The current deployment or provisioning state. :vartype provisioning_state: str :param power_state: When an Agent Pool is first created it is initially Running. The Agent Pool can be stopped by setting this field to Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An Agent Pool can only be stopped if it is Running and provisioning state is Succeeded. - :type power_state: ~azure.mgmt.containerservice.v2021_09_01.models.PowerState + :type power_state: ~azure.mgmt.containerservice.v2021_10_01.models.PowerState :param availability_zones: The list of Availability zones to use for nodes. This can only be specified if the AgentPoolType property is 'VirtualMachineScaleSets'. :type availability_zones: list[str] @@ -1722,12 +1739,12 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): :param scale_set_priority: The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'. Possible values include: "Spot", "Regular". Default value: "Regular". :type scale_set_priority: str or - ~azure.mgmt.containerservice.v2021_09_01.models.ScaleSetPriority + ~azure.mgmt.containerservice.v2021_10_01.models.ScaleSetPriority :param scale_set_eviction_policy: This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'. Possible values include: "Delete", "Deallocate". Default value: "Delete". :type scale_set_eviction_policy: str or - ~azure.mgmt.containerservice.v2021_09_01.models.ScaleSetEvictionPolicy + ~azure.mgmt.containerservice.v2021_10_01.models.ScaleSetEvictionPolicy :param spot_max_price: Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any on-demand price. For more details on spot pricing, see `spot VMs pricing `_. @@ -1743,9 +1760,9 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): :param proximity_placement_group_id: The ID for Proximity Placement Group. :type proximity_placement_group_id: str :param kubelet_config: The Kubelet configuration on the agent pool nodes. - :type kubelet_config: ~azure.mgmt.containerservice.v2021_09_01.models.KubeletConfig + :type kubelet_config: ~azure.mgmt.containerservice.v2021_10_01.models.KubeletConfig :param linux_os_config: The OS configuration of Linux agent nodes. - :type linux_os_config: ~azure.mgmt.containerservice.v2021_09_01.models.LinuxOSConfig + :type linux_os_config: ~azure.mgmt.containerservice.v2021_10_01.models.LinuxOSConfig :param enable_encryption_at_host: This is only supported on certain VM sizes and in certain Azure regions. For more information, see: https://docs.microsoft.com/azure/aks/enable-host-encryption. @@ -1759,10 +1776,10 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): :param gpu_instance_profile: GPUInstanceProfile to be used to specify GPU MIG instance profile for supported GPU VM SKU. Possible values include: "MIG1g", "MIG2g", "MIG3g", "MIG4g", "MIG7g". :type gpu_instance_profile: str or - ~azure.mgmt.containerservice.v2021_09_01.models.GPUInstanceProfile + ~azure.mgmt.containerservice.v2021_10_01.models.GPUInstanceProfile :param creation_data: CreationData to be used to specify the source Snapshot ID if the node pool will be created/upgraded using a snapshot. - :type creation_data: ~azure.mgmt.containerservice.v2021_09_01.models.CreationData + :type creation_data: ~azure.mgmt.containerservice.v2021_10_01.models.CreationData """ _validation = { @@ -1883,13 +1900,13 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): after creation. For more information see `Ephemeral OS `_. Possible values include: "Managed", "Ephemeral". - :type os_disk_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSDiskType + :type os_disk_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSDiskType :param kubelet_disk_type: Determines the placement of emptyDir volumes, container runtime data root, and Kubelet ephemeral storage. Possible values include: "OS", "Temporary". - :type kubelet_disk_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.KubeletDiskType + :type kubelet_disk_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.KubeletDiskType :param workload_runtime: Determines the type of workload a node can run. Possible values include: "OCIContainer", "WasmWasi". - :type workload_runtime: str or ~azure.mgmt.containerservice.v2021_09_01.models.WorkloadRuntime + :type workload_runtime: str or ~azure.mgmt.containerservice.v2021_10_01.models.WorkloadRuntime :param vnet_subnet_id: If this is not specified, a VNET and subnet will be generated and used. If no podSubnetID is specified, this applies to nodes and pods, otherwise it applies to just nodes. This is of the form: @@ -1903,10 +1920,10 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): :type max_pods: int :param os_type: The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :type os_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSType + :type os_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSType :param os_sku: Specifies an OS SKU. This value must not be specified if OSType is Windows. Possible values include: "Ubuntu", "CBLMariner". - :type os_sku: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSSKU + :type os_sku: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSSKU :param max_count: The maximum number of nodes for auto-scaling. :type max_count: int :param min_count: The minimum number of nodes for auto-scaling. @@ -1915,15 +1932,15 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): :type enable_auto_scaling: bool :param scale_down_mode: This also effects the cluster autoscaler behavior. If not specified, it defaults to Delete. Possible values include: "Delete", "Deallocate". - :type scale_down_mode: str or ~azure.mgmt.containerservice.v2021_09_01.models.ScaleDownMode + :type scale_down_mode: str or ~azure.mgmt.containerservice.v2021_10_01.models.ScaleDownMode :param type: The type of Agent Pool. Possible values include: "VirtualMachineScaleSets", "AvailabilitySet". - :type type: str or ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolType + :type type: str or ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolType :param mode: A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools. Possible values include: "System", "User". - :type mode: str or ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolMode + :type mode: str or ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolMode :param orchestrator_version: As a best practice, you should upgrade all node pools in an AKS cluster to the same Kubernetes version. The node pool version must have the same major version as the control plane. The node pool minor version must be within two minor versions of the @@ -1935,14 +1952,14 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): :vartype node_image_version: str :param upgrade_settings: Settings for upgrading the agentpool. :type upgrade_settings: - ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolUpgradeSettings + ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolUpgradeSettings :ivar provisioning_state: The current deployment or provisioning state. :vartype provisioning_state: str :param power_state: When an Agent Pool is first created it is initially Running. The Agent Pool can be stopped by setting this field to Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An Agent Pool can only be stopped if it is Running and provisioning state is Succeeded. - :type power_state: ~azure.mgmt.containerservice.v2021_09_01.models.PowerState + :type power_state: ~azure.mgmt.containerservice.v2021_10_01.models.PowerState :param availability_zones: The list of Availability zones to use for nodes. This can only be specified if the AgentPoolType property is 'VirtualMachineScaleSets'. :type availability_zones: list[str] @@ -1959,12 +1976,12 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): :param scale_set_priority: The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'. Possible values include: "Spot", "Regular". Default value: "Regular". :type scale_set_priority: str or - ~azure.mgmt.containerservice.v2021_09_01.models.ScaleSetPriority + ~azure.mgmt.containerservice.v2021_10_01.models.ScaleSetPriority :param scale_set_eviction_policy: This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'. Possible values include: "Delete", "Deallocate". Default value: "Delete". :type scale_set_eviction_policy: str or - ~azure.mgmt.containerservice.v2021_09_01.models.ScaleSetEvictionPolicy + ~azure.mgmt.containerservice.v2021_10_01.models.ScaleSetEvictionPolicy :param spot_max_price: Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any on-demand price. For more details on spot pricing, see `spot VMs pricing `_. @@ -1980,9 +1997,9 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): :param proximity_placement_group_id: The ID for Proximity Placement Group. :type proximity_placement_group_id: str :param kubelet_config: The Kubelet configuration on the agent pool nodes. - :type kubelet_config: ~azure.mgmt.containerservice.v2021_09_01.models.KubeletConfig + :type kubelet_config: ~azure.mgmt.containerservice.v2021_10_01.models.KubeletConfig :param linux_os_config: The OS configuration of Linux agent nodes. - :type linux_os_config: ~azure.mgmt.containerservice.v2021_09_01.models.LinuxOSConfig + :type linux_os_config: ~azure.mgmt.containerservice.v2021_10_01.models.LinuxOSConfig :param enable_encryption_at_host: This is only supported on certain VM sizes and in certain Azure regions. For more information, see: https://docs.microsoft.com/azure/aks/enable-host-encryption. @@ -1996,10 +2013,10 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): :param gpu_instance_profile: GPUInstanceProfile to be used to specify GPU MIG instance profile for supported GPU VM SKU. Possible values include: "MIG1g", "MIG2g", "MIG3g", "MIG4g", "MIG7g". :type gpu_instance_profile: str or - ~azure.mgmt.containerservice.v2021_09_01.models.GPUInstanceProfile + ~azure.mgmt.containerservice.v2021_10_01.models.GPUInstanceProfile :param creation_data: CreationData to be used to specify the source Snapshot ID if the node pool will be created/upgraded using a snapshot. - :type creation_data: ~azure.mgmt.containerservice.v2021_09_01.models.CreationData + :type creation_data: ~azure.mgmt.containerservice.v2021_10_01.models.CreationData :param name: Required. Windows agent pool names must be 6 characters or less. :type name: str """ @@ -2110,7 +2127,7 @@ class ManagedClusterAutoUpgradeProfile(msrest.serialization.Model): :param upgrade_channel: For more information see `setting the AKS cluster auto-upgrade channel `_. Possible values include: "rapid", "stable", "patch", "node-image", "none". - :type upgrade_channel: str or ~azure.mgmt.containerservice.v2021_09_01.models.UpgradeChannel + :type upgrade_channel: str or ~azure.mgmt.containerservice.v2021_10_01.models.UpgradeChannel """ _attribute_map = { @@ -2170,11 +2187,11 @@ class ManagedClusterIdentity(msrest.serialization.Model): :param type: For more information see `use managed identities in AKS `_. Possible values include: "SystemAssigned", "UserAssigned", "None". - :type type: str or ~azure.mgmt.containerservice.v2021_09_01.models.ResourceIdentityType + :type type: str or ~azure.mgmt.containerservice.v2021_10_01.models.ResourceIdentityType :param user_assigned_identities: The keys must be ARM resource IDs in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. :type user_assigned_identities: dict[str, - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedServiceIdentityUserAssignedIdentitiesValue] + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedServiceIdentityUserAssignedIdentitiesValue] """ _validation = { @@ -2206,7 +2223,7 @@ class ManagedClusterListResult(msrest.serialization.Model): Variables are only populated by the server, and will be ignored when sending a request. :param value: The list of managed clusters. - :type value: list[~azure.mgmt.containerservice.v2021_09_01.models.ManagedCluster] + :type value: list[~azure.mgmt.containerservice.v2021_10_01.models.ManagedCluster] :ivar next_link: The URL to get the next set of managed cluster results. :vartype next_link: str """ @@ -2234,18 +2251,18 @@ class ManagedClusterLoadBalancerProfile(msrest.serialization.Model): :param managed_outbound_i_ps: Desired managed outbound IPs for the cluster load balancer. :type managed_outbound_i_ps: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterLoadBalancerProfileManagedOutboundIPs + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterLoadBalancerProfileManagedOutboundIPs :param outbound_ip_prefixes: Desired outbound IP Prefix resources for the cluster load balancer. :type outbound_ip_prefixes: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterLoadBalancerProfileOutboundIPPrefixes + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterLoadBalancerProfileOutboundIPPrefixes :param outbound_i_ps: Desired outbound IP resources for the cluster load balancer. :type outbound_i_ps: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterLoadBalancerProfileOutboundIPs + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterLoadBalancerProfileOutboundIPs :param effective_outbound_i_ps: The effective outbound IP resources of the cluster load balancer. :type effective_outbound_i_ps: - list[~azure.mgmt.containerservice.v2021_09_01.models.ResourceReference] + list[~azure.mgmt.containerservice.v2021_10_01.models.ResourceReference] :param allocated_outbound_ports: The desired number of allocated SNAT ports per VM. Allowed values are in the range of 0 to 64000 (inclusive). The default value is 0 which results in Azure dynamically allocating ports. @@ -2290,17 +2307,24 @@ def __init__( class ManagedClusterLoadBalancerProfileManagedOutboundIPs(msrest.serialization.Model): """Desired managed outbound IPs for the cluster load balancer. - :param count: The desired number of outbound IPs created/managed by Azure for the cluster load - balancer. Allowed values must be in the range of 1 to 100 (inclusive). The default value is 1. + :param count: The desired number of IPv4 outbound IPs created/managed by Azure for the cluster + load balancer. Allowed values must be in the range of 1 to 100 (inclusive). The default value + is 1. :type count: int + :param count_ipv6: The desired number of IPv6 outbound IPs created/managed by Azure for the + cluster load balancer. Allowed values must be in the range of 1 to 100 (inclusive). The default + value is 0 for single-stack and 1 for dual-stack. + :type count_ipv6: int """ _validation = { 'count': {'maximum': 100, 'minimum': 1}, + 'count_ipv6': {'maximum': 100, 'minimum': 0}, } _attribute_map = { 'count': {'key': 'count', 'type': 'int'}, + 'count_ipv6': {'key': 'countIPv6', 'type': 'int'}, } def __init__( @@ -2309,6 +2333,7 @@ def __init__( ): super(ManagedClusterLoadBalancerProfileManagedOutboundIPs, self).__init__(**kwargs) self.count = kwargs.get('count', 1) + self.count_ipv6 = kwargs.get('count_ipv6', 0) class ManagedClusterLoadBalancerProfileOutboundIPPrefixes(msrest.serialization.Model): @@ -2316,7 +2341,7 @@ class ManagedClusterLoadBalancerProfileOutboundIPPrefixes(msrest.serialization.M :param public_ip_prefixes: A list of public IP prefix resources. :type public_ip_prefixes: - list[~azure.mgmt.containerservice.v2021_09_01.models.ResourceReference] + list[~azure.mgmt.containerservice.v2021_10_01.models.ResourceReference] """ _attribute_map = { @@ -2335,7 +2360,7 @@ class ManagedClusterLoadBalancerProfileOutboundIPs(msrest.serialization.Model): """Desired outbound IP resources for the cluster load balancer. :param public_i_ps: A list of public IP resources. - :type public_i_ps: list[~azure.mgmt.containerservice.v2021_09_01.models.ResourceReference] + :type public_i_ps: list[~azure.mgmt.containerservice.v2021_10_01.models.ResourceReference] """ _attribute_map = { @@ -2380,10 +2405,10 @@ class ManagedClusterNATGatewayProfile(msrest.serialization.Model): :param managed_outbound_ip_profile: Profile of the managed outbound IP resources of the cluster NAT gateway. :type managed_outbound_ip_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterManagedOutboundIPProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterManagedOutboundIPProfile :param effective_outbound_i_ps: The effective outbound IP resources of the cluster NAT gateway. :type effective_outbound_i_ps: - list[~azure.mgmt.containerservice.v2021_09_01.models.ResourceReference] + list[~azure.mgmt.containerservice.v2021_10_01.models.ResourceReference] :param idle_timeout_in_minutes: Desired outbound flow idle timeout in minutes. Allowed values are in the range of 4 to 120 (inclusive). The default value is 4 minutes. :type idle_timeout_in_minutes: int @@ -2423,14 +2448,14 @@ class ManagedClusterPodIdentity(msrest.serialization.Model): :param binding_selector: The binding selector to use for the AzureIdentityBinding resource. :type binding_selector: str :param identity: Required. The user assigned identity details. - :type identity: ~azure.mgmt.containerservice.v2021_09_01.models.UserAssignedIdentity + :type identity: ~azure.mgmt.containerservice.v2021_10_01.models.UserAssignedIdentity :ivar provisioning_state: The current provisioning state of the pod identity. Possible values include: "Assigned", "Updating", "Deleting", "Failed". :vartype provisioning_state: str or - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPodIdentityProvisioningState + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPodIdentityProvisioningState :ivar provisioning_info: :vartype provisioning_info: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPodIdentityProvisioningInfo + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPodIdentityProvisioningInfo """ _validation = { @@ -2511,10 +2536,10 @@ class ManagedClusterPodIdentityProfile(msrest.serialization.Model): :type allow_network_plugin_kubenet: bool :param user_assigned_identities: The pod identities to use in the cluster. :type user_assigned_identities: - list[~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPodIdentity] + list[~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPodIdentity] :param user_assigned_identity_exceptions: The pod identity exceptions to allow. :type user_assigned_identity_exceptions: - list[~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPodIdentityException] + list[~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPodIdentityException] """ _attribute_map = { @@ -2540,7 +2565,7 @@ class ManagedClusterPodIdentityProvisioningError(msrest.serialization.Model): :param error: Details about the error. :type error: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPodIdentityProvisioningErrorBody + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPodIdentityProvisioningErrorBody """ _attribute_map = { @@ -2569,7 +2594,7 @@ class ManagedClusterPodIdentityProvisioningErrorBody(msrest.serialization.Model) :type target: str :param details: A list of additional details about the error. :type details: - list[~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPodIdentityProvisioningErrorBody] + list[~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPodIdentityProvisioningErrorBody] """ _attribute_map = { @@ -2595,7 +2620,7 @@ class ManagedClusterPodIdentityProvisioningInfo(msrest.serialization.Model): :param error: Pod identity assignment error (if any). :type error: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPodIdentityProvisioningError + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPodIdentityProvisioningError """ _attribute_map = { @@ -2621,10 +2646,10 @@ class ManagedClusterPoolUpgradeProfile(msrest.serialization.Model): :type name: str :param os_type: Required. The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :type os_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSType + :type os_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSType :param upgrades: List of orchestrator types and versions available for upgrade. :type upgrades: - list[~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPoolUpgradeProfileUpgradesItem] + list[~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPoolUpgradeProfileUpgradesItem] """ _validation = { @@ -2682,7 +2707,7 @@ class ManagedClusterPropertiesAutoScalerProfile(msrest.serialization.Model): `_ for more information. Possible values include: "least-waste", "most-pods", "priority", "random". - :type expander: str or ~azure.mgmt.containerservice.v2021_09_01.models.Expander + :type expander: str or ~azure.mgmt.containerservice.v2021_10_01.models.Expander :param max_empty_bulk_delete: The default is 10. :type max_empty_bulk_delete: str :param max_graceful_termination_sec: The default is 600. @@ -2774,7 +2799,7 @@ class ManagedClusterSecurityProfile(msrest.serialization.Model): :param azure_defender: Azure Defender settings for the security profile. :type azure_defender: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterSecurityProfileAzureDefender + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterSecurityProfileAzureDefender """ _attribute_map = { @@ -2847,11 +2872,11 @@ class ManagedClusterSKU(msrest.serialization.Model): """The SKU of a Managed Cluster. :param name: The name of a managed cluster SKU. Possible values include: "Basic". - :type name: str or ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterSKUName + :type name: str or ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterSKUName :param tier: If not specified, the default is 'Free'. See `uptime SLA `_ for more details. Possible values include: "Paid", "Free". - :type tier: str or ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterSKUTier + :type tier: str or ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterSKUTier """ _attribute_map = { @@ -2884,10 +2909,10 @@ class ManagedClusterUpgradeProfile(msrest.serialization.Model): :param control_plane_profile: Required. The list of available upgrade versions for the control plane. :type control_plane_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPoolUpgradeProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPoolUpgradeProfile :param agent_pool_profiles: Required. The list of available upgrade versions for agent pools. :type agent_pool_profiles: - list[~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPoolUpgradeProfile] + list[~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPoolUpgradeProfile] """ _validation = { @@ -2942,12 +2967,12 @@ class ManagedClusterWindowsProfile(msrest.serialization.Model): :param license_type: The license type to use for Windows VMs. See `Azure Hybrid User Benefits `_ for more details. Possible values include: "None", "Windows_Server". - :type license_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.LicenseType + :type license_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.LicenseType :param enable_csi_proxy: For more details on CSI proxy, see the `CSI proxy GitHub repo `_. :type enable_csi_proxy: bool :param gmsa_profile: The Windows gMSA Profile in the Managed Cluster. - :type gmsa_profile: ~azure.mgmt.containerservice.v2021_09_01.models.WindowsGmsaProfile + :type gmsa_profile: ~azure.mgmt.containerservice.v2021_10_01.models.WindowsGmsaProfile """ _validation = { @@ -3010,7 +3035,7 @@ class OperationListResult(msrest.serialization.Model): Variables are only populated by the server, and will be ignored when sending a request. :ivar value: The list of operations. - :vartype value: list[~azure.mgmt.containerservice.v2021_09_01.models.OperationValue] + :vartype value: list[~azure.mgmt.containerservice.v2021_10_01.models.OperationValue] """ _validation = { @@ -3094,7 +3119,7 @@ class OSOptionProfile(msrest.serialization.Model): :vartype type: str :param os_option_property_list: Required. The list of OS options. :type os_option_property_list: - list[~azure.mgmt.containerservice.v2021_09_01.models.OSOptionProperty] + list[~azure.mgmt.containerservice.v2021_10_01.models.OSOptionProperty] """ _validation = { @@ -3159,7 +3184,7 @@ class OutboundEnvironmentEndpoint(msrest.serialization.Model): azure-resource-management, apiserver, etc. :type category: str :param endpoints: The endpoints that AKS agent nodes connect to. - :type endpoints: list[~azure.mgmt.containerservice.v2021_09_01.models.EndpointDependency] + :type endpoints: list[~azure.mgmt.containerservice.v2021_10_01.models.EndpointDependency] """ _attribute_map = { @@ -3184,7 +3209,7 @@ class OutboundEnvironmentEndpointCollection(msrest.serialization.Model): All required parameters must be populated in order to send to Azure. :param value: Required. Collection of resources. - :type value: list[~azure.mgmt.containerservice.v2021_09_01.models.OutboundEnvironmentEndpoint] + :type value: list[~azure.mgmt.containerservice.v2021_10_01.models.OutboundEnvironmentEndpoint] :ivar next_link: Link to next page of resources. :vartype next_link: str """ @@ -3213,7 +3238,7 @@ class PowerState(msrest.serialization.Model): :param code: Tells whether the cluster is Running or Stopped. Possible values include: "Running", "Stopped". - :type code: str or ~azure.mgmt.containerservice.v2021_09_01.models.Code + :type code: str or ~azure.mgmt.containerservice.v2021_10_01.models.Code """ _attribute_map = { @@ -3261,13 +3286,13 @@ class PrivateEndpointConnection(msrest.serialization.Model): :ivar provisioning_state: The current provisioning state. Possible values include: "Succeeded", "Creating", "Deleting", "Failed". :vartype provisioning_state: str or - ~azure.mgmt.containerservice.v2021_09_01.models.PrivateEndpointConnectionProvisioningState + ~azure.mgmt.containerservice.v2021_10_01.models.PrivateEndpointConnectionProvisioningState :param private_endpoint: The resource of private endpoint. - :type private_endpoint: ~azure.mgmt.containerservice.v2021_09_01.models.PrivateEndpoint + :type private_endpoint: ~azure.mgmt.containerservice.v2021_10_01.models.PrivateEndpoint :param private_link_service_connection_state: A collection of information about the state of the connection between service consumer and provider. :type private_link_service_connection_state: - ~azure.mgmt.containerservice.v2021_09_01.models.PrivateLinkServiceConnectionState + ~azure.mgmt.containerservice.v2021_10_01.models.PrivateLinkServiceConnectionState """ _validation = { @@ -3303,7 +3328,7 @@ class PrivateEndpointConnectionListResult(msrest.serialization.Model): """A list of private endpoint connections. :param value: The collection value. - :type value: list[~azure.mgmt.containerservice.v2021_09_01.models.PrivateEndpointConnection] + :type value: list[~azure.mgmt.containerservice.v2021_10_01.models.PrivateEndpointConnection] """ _attribute_map = { @@ -3368,7 +3393,7 @@ class PrivateLinkResourcesListResult(msrest.serialization.Model): """A list of private link resources. :param value: The collection value. - :type value: list[~azure.mgmt.containerservice.v2021_09_01.models.PrivateLinkResource] + :type value: list[~azure.mgmt.containerservice.v2021_10_01.models.PrivateLinkResource] """ _attribute_map = { @@ -3388,7 +3413,7 @@ class PrivateLinkServiceConnectionState(msrest.serialization.Model): :param status: The private link service connection status. Possible values include: "Pending", "Approved", "Rejected", "Disconnected". - :type status: str or ~azure.mgmt.containerservice.v2021_09_01.models.ConnectionStatus + :type status: str or ~azure.mgmt.containerservice.v2021_10_01.models.ConnectionStatus :param description: The private link service connection description. :type description: str """ @@ -3532,23 +3557,23 @@ class Snapshot(Resource): :param tags: A set of tags. Resource tags. :type tags: dict[str, str] :ivar system_data: The system metadata relating to this snapshot. - :vartype system_data: ~azure.mgmt.containerservice.v2021_09_01.models.SystemData + :vartype system_data: ~azure.mgmt.containerservice.v2021_10_01.models.SystemData :param creation_data: CreationData to be used to specify the source agent pool resource ID to create this snapshot. - :type creation_data: ~azure.mgmt.containerservice.v2021_09_01.models.CreationData + :type creation_data: ~azure.mgmt.containerservice.v2021_10_01.models.CreationData :param snapshot_type: The type of a snapshot. The default is NodePool. Possible values include: "NodePool". Default value: "NodePool". - :type snapshot_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.SnapshotType + :type snapshot_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.SnapshotType :ivar kubernetes_version: The version of Kubernetes. :vartype kubernetes_version: str :ivar node_image_version: The version of node image. :vartype node_image_version: str :ivar os_type: The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :vartype os_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSType + :vartype os_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSType :ivar os_sku: Specifies an OS SKU. This value must not be specified if OSType is Windows. Possible values include: "Ubuntu", "CBLMariner". - :vartype os_sku: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSSKU + :vartype os_sku: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSSKU :ivar vm_size: The size of the VM. :vartype vm_size: str :ivar enable_fips: Whether to use a FIPS-enabled OS. @@ -3608,7 +3633,7 @@ class SnapshotListResult(msrest.serialization.Model): Variables are only populated by the server, and will be ignored when sending a request. :param value: The list of snapshots. - :type value: list[~azure.mgmt.containerservice.v2021_09_01.models.Snapshot] + :type value: list[~azure.mgmt.containerservice.v2021_10_01.models.Snapshot] :ivar next_link: The URL to get the next set of snapshot results. :vartype next_link: str """ @@ -3765,7 +3790,7 @@ class SystemData(msrest.serialization.Model): :type created_by: str :param created_by_type: The type of identity that created the resource. Possible values include: "User", "Application", "ManagedIdentity", "Key". - :type created_by_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.CreatedByType + :type created_by_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.CreatedByType :param created_at: The UTC timestamp of resource creation. :type created_at: ~datetime.datetime :param last_modified_by: The identity that last modified the resource. @@ -3773,7 +3798,7 @@ class SystemData(msrest.serialization.Model): :param last_modified_by_type: The type of identity that last modified the resource. Possible values include: "User", "Application", "ManagedIdentity", "Key". :type last_modified_by_type: str or - ~azure.mgmt.containerservice.v2021_09_01.models.CreatedByType + ~azure.mgmt.containerservice.v2021_10_01.models.CreatedByType :param last_modified_at: The type of identity that last modified the resource. :type last_modified_at: ~datetime.datetime """ @@ -3824,7 +3849,7 @@ class TimeInWeek(msrest.serialization.Model): :param day: The day of the week. Possible values include: "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday". - :type day: str or ~azure.mgmt.containerservice.v2021_09_01.models.WeekDay + :type day: str or ~azure.mgmt.containerservice.v2021_10_01.models.WeekDay :param hour_slots: Each integer hour represents a time range beginning at 0m after the hour ending at the next hour (non-inclusive). 0 corresponds to 00:00 UTC, 23 corresponds to 23:00 UTC. Specifying [0, 1] means the 00:00 - 02:00 UTC time range. diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/models/_models_py3.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/models/_models_py3.py old mode 100755 new mode 100644 similarity index 94% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/models/_models_py3.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/models/_models_py3.py index c8b6b978c97..66a8fb93022 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/models/_models_py3.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/models/_models_py3.py @@ -79,13 +79,13 @@ class AgentPool(SubResource): after creation. For more information see `Ephemeral OS `_. Possible values include: "Managed", "Ephemeral". - :type os_disk_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSDiskType + :type os_disk_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSDiskType :param kubelet_disk_type: Determines the placement of emptyDir volumes, container runtime data root, and Kubelet ephemeral storage. Possible values include: "OS", "Temporary". - :type kubelet_disk_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.KubeletDiskType + :type kubelet_disk_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.KubeletDiskType :param workload_runtime: Determines the type of workload a node can run. Possible values include: "OCIContainer", "WasmWasi". - :type workload_runtime: str or ~azure.mgmt.containerservice.v2021_09_01.models.WorkloadRuntime + :type workload_runtime: str or ~azure.mgmt.containerservice.v2021_10_01.models.WorkloadRuntime :param vnet_subnet_id: If this is not specified, a VNET and subnet will be generated and used. If no podSubnetID is specified, this applies to nodes and pods, otherwise it applies to just nodes. This is of the form: @@ -99,10 +99,10 @@ class AgentPool(SubResource): :type max_pods: int :param os_type: The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :type os_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSType + :type os_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSType :param os_sku: Specifies an OS SKU. This value must not be specified if OSType is Windows. Possible values include: "Ubuntu", "CBLMariner". - :type os_sku: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSSKU + :type os_sku: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSSKU :param max_count: The maximum number of nodes for auto-scaling. :type max_count: int :param min_count: The minimum number of nodes for auto-scaling. @@ -111,16 +111,16 @@ class AgentPool(SubResource): :type enable_auto_scaling: bool :param scale_down_mode: This also effects the cluster autoscaler behavior. If not specified, it defaults to Delete. Possible values include: "Delete", "Deallocate". - :type scale_down_mode: str or ~azure.mgmt.containerservice.v2021_09_01.models.ScaleDownMode + :type scale_down_mode: str or ~azure.mgmt.containerservice.v2021_10_01.models.ScaleDownMode :param type_properties_type: The type of Agent Pool. Possible values include: "VirtualMachineScaleSets", "AvailabilitySet". :type type_properties_type: str or - ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolType + ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolType :param mode: A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools. Possible values include: "System", "User". - :type mode: str or ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolMode + :type mode: str or ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolMode :param orchestrator_version: As a best practice, you should upgrade all node pools in an AKS cluster to the same Kubernetes version. The node pool version must have the same major version as the control plane. The node pool minor version must be within two minor versions of the @@ -132,14 +132,14 @@ class AgentPool(SubResource): :vartype node_image_version: str :param upgrade_settings: Settings for upgrading the agentpool. :type upgrade_settings: - ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolUpgradeSettings + ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolUpgradeSettings :ivar provisioning_state: The current deployment or provisioning state. :vartype provisioning_state: str :param power_state: When an Agent Pool is first created it is initially Running. The Agent Pool can be stopped by setting this field to Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An Agent Pool can only be stopped if it is Running and provisioning state is Succeeded. - :type power_state: ~azure.mgmt.containerservice.v2021_09_01.models.PowerState + :type power_state: ~azure.mgmt.containerservice.v2021_10_01.models.PowerState :param availability_zones: The list of Availability zones to use for nodes. This can only be specified if the AgentPoolType property is 'VirtualMachineScaleSets'. :type availability_zones: list[str] @@ -156,12 +156,12 @@ class AgentPool(SubResource): :param scale_set_priority: The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'. Possible values include: "Spot", "Regular". Default value: "Regular". :type scale_set_priority: str or - ~azure.mgmt.containerservice.v2021_09_01.models.ScaleSetPriority + ~azure.mgmt.containerservice.v2021_10_01.models.ScaleSetPriority :param scale_set_eviction_policy: This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'. Possible values include: "Delete", "Deallocate". Default value: "Delete". :type scale_set_eviction_policy: str or - ~azure.mgmt.containerservice.v2021_09_01.models.ScaleSetEvictionPolicy + ~azure.mgmt.containerservice.v2021_10_01.models.ScaleSetEvictionPolicy :param spot_max_price: Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any on-demand price. For more details on spot pricing, see `spot VMs pricing `_. @@ -177,9 +177,9 @@ class AgentPool(SubResource): :param proximity_placement_group_id: The ID for Proximity Placement Group. :type proximity_placement_group_id: str :param kubelet_config: The Kubelet configuration on the agent pool nodes. - :type kubelet_config: ~azure.mgmt.containerservice.v2021_09_01.models.KubeletConfig + :type kubelet_config: ~azure.mgmt.containerservice.v2021_10_01.models.KubeletConfig :param linux_os_config: The OS configuration of Linux agent nodes. - :type linux_os_config: ~azure.mgmt.containerservice.v2021_09_01.models.LinuxOSConfig + :type linux_os_config: ~azure.mgmt.containerservice.v2021_10_01.models.LinuxOSConfig :param enable_encryption_at_host: This is only supported on certain VM sizes and in certain Azure regions. For more information, see: https://docs.microsoft.com/azure/aks/enable-host-encryption. @@ -193,10 +193,10 @@ class AgentPool(SubResource): :param gpu_instance_profile: GPUInstanceProfile to be used to specify GPU MIG instance profile for supported GPU VM SKU. Possible values include: "MIG1g", "MIG2g", "MIG3g", "MIG4g", "MIG7g". :type gpu_instance_profile: str or - ~azure.mgmt.containerservice.v2021_09_01.models.GPUInstanceProfile + ~azure.mgmt.containerservice.v2021_10_01.models.GPUInstanceProfile :param creation_data: CreationData to be used to specify the source Snapshot ID if the node pool will be created/upgraded using a snapshot. - :type creation_data: ~azure.mgmt.containerservice.v2021_09_01.models.CreationData + :type creation_data: ~azure.mgmt.containerservice.v2021_10_01.models.CreationData """ _validation = { @@ -350,7 +350,7 @@ class AgentPoolAvailableVersions(msrest.serialization.Model): :vartype type: str :param agent_pool_versions: List of versions available for agent pool. :type agent_pool_versions: - list[~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem] + list[~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem] """ _validation = { @@ -416,7 +416,7 @@ class AgentPoolListResult(msrest.serialization.Model): Variables are only populated by the server, and will be ignored when sending a request. :param value: The list of agent pools. - :type value: list[~azure.mgmt.containerservice.v2021_09_01.models.AgentPool] + :type value: list[~azure.mgmt.containerservice.v2021_10_01.models.AgentPool] :ivar next_link: The URL to get the next set of agent pool results. :vartype next_link: str """ @@ -458,10 +458,10 @@ class AgentPoolUpgradeProfile(msrest.serialization.Model): :type kubernetes_version: str :param os_type: Required. The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :type os_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSType + :type os_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSType :param upgrades: List of orchestrator types and versions available for upgrade. :type upgrades: - list[~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolUpgradeProfilePropertiesUpgradesItem] + list[~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolUpgradeProfilePropertiesUpgradesItem] :param latest_node_image_version: The latest AKS supported node image version. :type latest_node_image_version: str """ @@ -567,7 +567,7 @@ class CloudErrorBody(msrest.serialization.Model): error. :type target: str :param details: A list of additional details about the error. - :type details: list[~azure.mgmt.containerservice.v2021_09_01.models.CloudErrorBody] + :type details: list[~azure.mgmt.containerservice.v2021_10_01.models.CloudErrorBody] """ _attribute_map = { @@ -600,7 +600,7 @@ class ContainerServiceDiagnosticsProfile(msrest.serialization.Model): :param vm_diagnostics: Required. Profile for diagnostics on the container service VMs. :type vm_diagnostics: - ~azure.mgmt.containerservice.v2021_09_01.models.ContainerServiceVMDiagnostics + ~azure.mgmt.containerservice.v2021_10_01.models.ContainerServiceVMDiagnostics """ _validation = { @@ -629,7 +629,7 @@ class ContainerServiceLinuxProfile(msrest.serialization.Model): :param admin_username: Required. The administrator username to use for Linux VMs. :type admin_username: str :param ssh: Required. The SSH configuration for Linux-based VMs running on Azure. - :type ssh: ~azure.mgmt.containerservice.v2021_09_01.models.ContainerServiceSshConfiguration + :type ssh: ~azure.mgmt.containerservice.v2021_10_01.models.ContainerServiceSshConfiguration """ _validation = { @@ -663,7 +663,7 @@ class ContainerServiceMasterProfile(msrest.serialization.Model): :param count: Number of masters (VMs) in the container service cluster. Allowed values are 1, 3, and 5. The default value is 1. Possible values include: 1, 3, 5. Default value: "1". - :type count: str or ~azure.mgmt.containerservice.v2021_09_01.models.Count + :type count: str or ~azure.mgmt.containerservice.v2021_10_01.models.Count :param dns_prefix: Required. DNS prefix to be used to create the FQDN for the master pool. :type dns_prefix: str :param vm_size: Required. Size of agent VMs. Possible values include: "Standard_A1", @@ -705,7 +705,7 @@ class ContainerServiceMasterProfile(msrest.serialization.Model): "Standard_NC6", "Standard_NC6s_v2", "Standard_NC6s_v3", "Standard_ND12s", "Standard_ND24rs", "Standard_ND24s", "Standard_ND6s", "Standard_NV12", "Standard_NV24", "Standard_NV6". :type vm_size: str or - ~azure.mgmt.containerservice.v2021_09_01.models.ContainerServiceVMSizeTypes + ~azure.mgmt.containerservice.v2021_10_01.models.ContainerServiceVMSizeTypes :param os_disk_size_gb: OS Disk Size in GB to be used to specify the disk size for every machine in this master/agent pool. If you specify 0, it will apply the default osDisk size according to the vmSize specified. @@ -719,7 +719,7 @@ class ContainerServiceMasterProfile(msrest.serialization.Model): StorageAccount and ManagedDisks. Leave it empty, we will choose for you based on the orchestrator choice. Possible values include: "StorageAccount", "ManagedDisks". :type storage_profile: str or - ~azure.mgmt.containerservice.v2021_09_01.models.ContainerServiceStorageProfileTypes + ~azure.mgmt.containerservice.v2021_10_01.models.ContainerServiceStorageProfileTypes :ivar fqdn: FQDN for the master pool. :vartype fqdn: str """ @@ -770,13 +770,13 @@ class ContainerServiceNetworkProfile(msrest.serialization.Model): :param network_plugin: Network plugin used for building the Kubernetes network. Possible values include: "azure", "kubenet". Default value: "kubenet". - :type network_plugin: str or ~azure.mgmt.containerservice.v2021_09_01.models.NetworkPlugin + :type network_plugin: str or ~azure.mgmt.containerservice.v2021_10_01.models.NetworkPlugin :param network_policy: Network policy used for building the Kubernetes network. Possible values include: "calico", "azure". - :type network_policy: str or ~azure.mgmt.containerservice.v2021_09_01.models.NetworkPolicy + :type network_policy: str or ~azure.mgmt.containerservice.v2021_10_01.models.NetworkPolicy :param network_mode: This cannot be specified if networkPlugin is anything other than 'azure'. Possible values include: "transparent", "bridge". - :type network_mode: str or ~azure.mgmt.containerservice.v2021_09_01.models.NetworkMode + :type network_mode: str or ~azure.mgmt.containerservice.v2021_10_01.models.NetworkMode :param pod_cidr: A CIDR notation IP range from which to assign pod IPs when kubenet is used. :type pod_cidr: str :param service_cidr: A CIDR notation IP range from which to assign service cluster IPs. It must @@ -793,17 +793,28 @@ class ContainerServiceNetworkProfile(msrest.serialization.Model): `_. Possible values include: "loadBalancer", "userDefinedRouting", "managedNATGateway", "userAssignedNATGateway". Default value: "loadBalancer". - :type outbound_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.OutboundType + :type outbound_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.OutboundType :param load_balancer_sku: The default is 'standard'. See `Azure Load Balancer SKUs `_ for more information about the differences between load balancer SKUs. Possible values include: "standard", "basic". - :type load_balancer_sku: str or ~azure.mgmt.containerservice.v2021_09_01.models.LoadBalancerSku + :type load_balancer_sku: str or ~azure.mgmt.containerservice.v2021_10_01.models.LoadBalancerSku :param load_balancer_profile: Profile of the cluster load balancer. :type load_balancer_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterLoadBalancerProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterLoadBalancerProfile :param nat_gateway_profile: Profile of the cluster NAT gateway. :type nat_gateway_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterNATGatewayProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterNATGatewayProfile + :param pod_cidrs: One IPv4 CIDR is expected for single-stack networking. Two CIDRs, one for + each IP family (IPv4/IPv6), is expected for dual-stack networking. + :type pod_cidrs: list[str] + :param service_cidrs: One IPv4 CIDR is expected for single-stack networking. Two CIDRs, one for + each IP family (IPv4/IPv6), is expected for dual-stack networking. They must not overlap with + any Subnet IP ranges. + :type service_cidrs: list[str] + :param ip_families: IP families are used to determine single-stack or dual-stack clusters. For + single-stack, the expected value is IPv4. For dual-stack, the expected values are IPv4 and + IPv6. + :type ip_families: list[str or ~azure.mgmt.containerservice.v2021_10_01.models.IpFamily] """ _validation = { @@ -825,6 +836,9 @@ class ContainerServiceNetworkProfile(msrest.serialization.Model): 'load_balancer_sku': {'key': 'loadBalancerSku', 'type': 'str'}, 'load_balancer_profile': {'key': 'loadBalancerProfile', 'type': 'ManagedClusterLoadBalancerProfile'}, 'nat_gateway_profile': {'key': 'natGatewayProfile', 'type': 'ManagedClusterNATGatewayProfile'}, + 'pod_cidrs': {'key': 'podCidrs', 'type': '[str]'}, + 'service_cidrs': {'key': 'serviceCidrs', 'type': '[str]'}, + 'ip_families': {'key': 'ipFamilies', 'type': '[str]'}, } def __init__( @@ -841,6 +855,9 @@ def __init__( load_balancer_sku: Optional[Union[str, "LoadBalancerSku"]] = None, load_balancer_profile: Optional["ManagedClusterLoadBalancerProfile"] = None, nat_gateway_profile: Optional["ManagedClusterNATGatewayProfile"] = None, + pod_cidrs: Optional[List[str]] = None, + service_cidrs: Optional[List[str]] = None, + ip_families: Optional[List[Union[str, "IpFamily"]]] = None, **kwargs ): super(ContainerServiceNetworkProfile, self).__init__(**kwargs) @@ -855,6 +872,9 @@ def __init__( self.load_balancer_sku = load_balancer_sku self.load_balancer_profile = load_balancer_profile self.nat_gateway_profile = nat_gateway_profile + self.pod_cidrs = pod_cidrs + self.service_cidrs = service_cidrs + self.ip_families = ip_families class ContainerServiceSshConfiguration(msrest.serialization.Model): @@ -865,7 +885,7 @@ class ContainerServiceSshConfiguration(msrest.serialization.Model): :param public_keys: Required. The list of SSH public keys used to authenticate with Linux-based VMs. A maximum of 1 key may be specified. :type public_keys: - list[~azure.mgmt.containerservice.v2021_09_01.models.ContainerServiceSshPublicKey] + list[~azure.mgmt.containerservice.v2021_10_01.models.ContainerServiceSshPublicKey] """ _validation = { @@ -1006,7 +1026,7 @@ class CredentialResults(msrest.serialization.Model): Variables are only populated by the server, and will be ignored when sending a request. :ivar kubeconfigs: Base64-encoded Kubernetes configuration file. - :vartype kubeconfigs: list[~azure.mgmt.containerservice.v2021_09_01.models.CredentialResult] + :vartype kubeconfigs: list[~azure.mgmt.containerservice.v2021_10_01.models.CredentialResult] """ _validation = { @@ -1031,7 +1051,7 @@ class EndpointDependency(msrest.serialization.Model): :param domain_name: The domain name of the dependency. :type domain_name: str :param endpoint_details: The Ports and Protocols used when connecting to domainName. - :type endpoint_details: list[~azure.mgmt.containerservice.v2021_09_01.models.EndpointDetail] + :type endpoint_details: list[~azure.mgmt.containerservice.v2021_10_01.models.EndpointDetail] """ _attribute_map = { @@ -1093,7 +1113,7 @@ class ExtendedLocation(msrest.serialization.Model): :param name: The name of the extended location. :type name: str :param type: The type of the extended location. Possible values include: "EdgeZone". - :type type: str or ~azure.mgmt.containerservice.v2021_09_01.models.ExtendedLocationTypes + :type type: str or ~azure.mgmt.containerservice.v2021_10_01.models.ExtendedLocationTypes """ _attribute_map = { @@ -1204,7 +1224,7 @@ class LinuxOSConfig(msrest.serialization.Model): """See `AKS custom node configuration `_ for more details. :param sysctls: Sysctl settings for Linux agent nodes. - :type sysctls: ~azure.mgmt.containerservice.v2021_09_01.models.SysctlConfig + :type sysctls: ~azure.mgmt.containerservice.v2021_10_01.models.SysctlConfig :param transparent_huge_page_enabled: Valid values are 'always', 'madvise', and 'never'. The default is 'always'. For more information see `Transparent Hugepages `_. @@ -1254,12 +1274,12 @@ class MaintenanceConfiguration(SubResource): :ivar type: Resource type. :vartype type: str :ivar system_data: The system metadata relating to this resource. - :vartype system_data: ~azure.mgmt.containerservice.v2021_09_01.models.SystemData + :vartype system_data: ~azure.mgmt.containerservice.v2021_10_01.models.SystemData :param time_in_week: If two array entries specify the same day of the week, the applied configuration is the union of times in both entries. - :type time_in_week: list[~azure.mgmt.containerservice.v2021_09_01.models.TimeInWeek] + :type time_in_week: list[~azure.mgmt.containerservice.v2021_10_01.models.TimeInWeek] :param not_allowed_time: Time slots on which upgrade is not allowed. - :type not_allowed_time: list[~azure.mgmt.containerservice.v2021_09_01.models.TimeSpan] + :type not_allowed_time: list[~azure.mgmt.containerservice.v2021_10_01.models.TimeSpan] """ _validation = { @@ -1297,7 +1317,7 @@ class MaintenanceConfigurationListResult(msrest.serialization.Model): Variables are only populated by the server, and will be ignored when sending a request. :param value: The list of maintenance configurations. - :type value: list[~azure.mgmt.containerservice.v2021_09_01.models.MaintenanceConfiguration] + :type value: list[~azure.mgmt.containerservice.v2021_10_01.models.MaintenanceConfiguration] :ivar next_link: The URL to get the next set of maintenance configuration results. :vartype next_link: str """ @@ -1389,15 +1409,15 @@ class ManagedCluster(Resource): :param tags: A set of tags. Resource tags. :type tags: dict[str, str] :param sku: The managed cluster SKU. - :type sku: ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterSKU + :type sku: ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterSKU :param extended_location: The extended location of the Virtual Machine. - :type extended_location: ~azure.mgmt.containerservice.v2021_09_01.models.ExtendedLocation + :type extended_location: ~azure.mgmt.containerservice.v2021_10_01.models.ExtendedLocation :param identity: The identity of the managed cluster, if configured. - :type identity: ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterIdentity + :type identity: ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterIdentity :ivar provisioning_state: The current provisioning state. :vartype provisioning_state: str :ivar power_state: The Power State of the cluster. - :vartype power_state: ~azure.mgmt.containerservice.v2021_09_01.models.PowerState + :vartype power_state: ~azure.mgmt.containerservice.v2021_10_01.models.PowerState :ivar max_agent_pools: The max number of agent pools for the managed cluster. :vartype max_agent_pools: int :param kubernetes_version: When you upgrade a supported AKS cluster, Kubernetes minor versions @@ -1420,25 +1440,25 @@ class ManagedCluster(Resource): :vartype azure_portal_fqdn: str :param agent_pool_profiles: The agent pool properties. :type agent_pool_profiles: - list[~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterAgentPoolProfile] + list[~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterAgentPoolProfile] :param linux_profile: The profile for Linux VMs in the Managed Cluster. :type linux_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ContainerServiceLinuxProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ContainerServiceLinuxProfile :param windows_profile: The profile for Windows VMs in the Managed Cluster. :type windows_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterWindowsProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterWindowsProfile :param service_principal_profile: Information about a service principal identity for the cluster to use for manipulating Azure APIs. :type service_principal_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterServicePrincipalProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterServicePrincipalProfile :param addon_profiles: The profile of managed cluster add-on. :type addon_profiles: dict[str, - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterAddonProfile] + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterAddonProfile] :param pod_identity_profile: See `use AAD pod identity `_ for more details on AAD pod identity integration. :type pod_identity_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPodIdentityProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPodIdentityProfile :param node_resource_group: The name of the resource group containing agent pool nodes. :type node_resource_group: str :param enable_rbac: Whether to enable Kubernetes Role-Based Access Control. @@ -1449,27 +1469,27 @@ class ManagedCluster(Resource): :type enable_pod_security_policy: bool :param network_profile: The network configuration profile. :type network_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ContainerServiceNetworkProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ContainerServiceNetworkProfile :param aad_profile: The Azure Active Directory configuration. - :type aad_profile: ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterAADProfile + :type aad_profile: ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterAADProfile :param auto_upgrade_profile: The auto upgrade configuration. :type auto_upgrade_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterAutoUpgradeProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterAutoUpgradeProfile :param auto_scaler_profile: Parameters to be applied to the cluster-autoscaler when enabled. :type auto_scaler_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPropertiesAutoScalerProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPropertiesAutoScalerProfile :param api_server_access_profile: The access profile for managed cluster API server. :type api_server_access_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterAPIServerAccessProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterAPIServerAccessProfile :param disk_encryption_set_id: This is of the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/diskEncryptionSets/{encryptionSetName}'. :type disk_encryption_set_id: str :param identity_profile: Identities associated with the cluster. :type identity_profile: dict[str, - ~azure.mgmt.containerservice.v2021_09_01.models.UserAssignedIdentity] + ~azure.mgmt.containerservice.v2021_10_01.models.UserAssignedIdentity] :param private_link_resources: Private link resources associated with the cluster. :type private_link_resources: - list[~azure.mgmt.containerservice.v2021_09_01.models.PrivateLinkResource] + list[~azure.mgmt.containerservice.v2021_10_01.models.PrivateLinkResource] :param disable_local_accounts: If set to true, getting static credentials will be disabled for this cluster. This must only be used on Managed Clusters that are AAD enabled. For more details see `disable local accounts @@ -1477,14 +1497,14 @@ class ManagedCluster(Resource): :type disable_local_accounts: bool :param http_proxy_config: Configurations for provisioning the cluster with HTTP proxy servers. :type http_proxy_config: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterHTTPProxyConfig + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterHTTPProxyConfig :param security_profile: Security profile for the managed cluster. :type security_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterSecurityProfile - :param public_network_access: Default value is 'Enabled' (case insensitive). Could be set to - 'Disabled' to enable private cluster. Possible values include: "Enabled", "Disabled". + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterSecurityProfile + :param public_network_access: Allow or deny public network access for AKS. Possible values + include: "Enabled", "Disabled". :type public_network_access: str or - ~azure.mgmt.containerservice.v2021_09_01.models.PublicNetworkAccess + ~azure.mgmt.containerservice.v2021_10_01.models.PublicNetworkAccess """ _validation = { @@ -1726,7 +1746,7 @@ class ManagedClusterAddonProfile(msrest.serialization.Model): :type config: dict[str, str] :ivar identity: Information of user assigned identity used by this add-on. :vartype identity: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterAddonProfileIdentity + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterAddonProfileIdentity """ _validation = { @@ -1834,13 +1854,13 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): after creation. For more information see `Ephemeral OS `_. Possible values include: "Managed", "Ephemeral". - :type os_disk_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSDiskType + :type os_disk_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSDiskType :param kubelet_disk_type: Determines the placement of emptyDir volumes, container runtime data root, and Kubelet ephemeral storage. Possible values include: "OS", "Temporary". - :type kubelet_disk_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.KubeletDiskType + :type kubelet_disk_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.KubeletDiskType :param workload_runtime: Determines the type of workload a node can run. Possible values include: "OCIContainer", "WasmWasi". - :type workload_runtime: str or ~azure.mgmt.containerservice.v2021_09_01.models.WorkloadRuntime + :type workload_runtime: str or ~azure.mgmt.containerservice.v2021_10_01.models.WorkloadRuntime :param vnet_subnet_id: If this is not specified, a VNET and subnet will be generated and used. If no podSubnetID is specified, this applies to nodes and pods, otherwise it applies to just nodes. This is of the form: @@ -1854,10 +1874,10 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): :type max_pods: int :param os_type: The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :type os_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSType + :type os_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSType :param os_sku: Specifies an OS SKU. This value must not be specified if OSType is Windows. Possible values include: "Ubuntu", "CBLMariner". - :type os_sku: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSSKU + :type os_sku: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSSKU :param max_count: The maximum number of nodes for auto-scaling. :type max_count: int :param min_count: The minimum number of nodes for auto-scaling. @@ -1866,15 +1886,15 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): :type enable_auto_scaling: bool :param scale_down_mode: This also effects the cluster autoscaler behavior. If not specified, it defaults to Delete. Possible values include: "Delete", "Deallocate". - :type scale_down_mode: str or ~azure.mgmt.containerservice.v2021_09_01.models.ScaleDownMode + :type scale_down_mode: str or ~azure.mgmt.containerservice.v2021_10_01.models.ScaleDownMode :param type: The type of Agent Pool. Possible values include: "VirtualMachineScaleSets", "AvailabilitySet". - :type type: str or ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolType + :type type: str or ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolType :param mode: A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools. Possible values include: "System", "User". - :type mode: str or ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolMode + :type mode: str or ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolMode :param orchestrator_version: As a best practice, you should upgrade all node pools in an AKS cluster to the same Kubernetes version. The node pool version must have the same major version as the control plane. The node pool minor version must be within two minor versions of the @@ -1886,14 +1906,14 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): :vartype node_image_version: str :param upgrade_settings: Settings for upgrading the agentpool. :type upgrade_settings: - ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolUpgradeSettings + ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolUpgradeSettings :ivar provisioning_state: The current deployment or provisioning state. :vartype provisioning_state: str :param power_state: When an Agent Pool is first created it is initially Running. The Agent Pool can be stopped by setting this field to Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An Agent Pool can only be stopped if it is Running and provisioning state is Succeeded. - :type power_state: ~azure.mgmt.containerservice.v2021_09_01.models.PowerState + :type power_state: ~azure.mgmt.containerservice.v2021_10_01.models.PowerState :param availability_zones: The list of Availability zones to use for nodes. This can only be specified if the AgentPoolType property is 'VirtualMachineScaleSets'. :type availability_zones: list[str] @@ -1910,12 +1930,12 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): :param scale_set_priority: The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'. Possible values include: "Spot", "Regular". Default value: "Regular". :type scale_set_priority: str or - ~azure.mgmt.containerservice.v2021_09_01.models.ScaleSetPriority + ~azure.mgmt.containerservice.v2021_10_01.models.ScaleSetPriority :param scale_set_eviction_policy: This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'. Possible values include: "Delete", "Deallocate". Default value: "Delete". :type scale_set_eviction_policy: str or - ~azure.mgmt.containerservice.v2021_09_01.models.ScaleSetEvictionPolicy + ~azure.mgmt.containerservice.v2021_10_01.models.ScaleSetEvictionPolicy :param spot_max_price: Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any on-demand price. For more details on spot pricing, see `spot VMs pricing `_. @@ -1931,9 +1951,9 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): :param proximity_placement_group_id: The ID for Proximity Placement Group. :type proximity_placement_group_id: str :param kubelet_config: The Kubelet configuration on the agent pool nodes. - :type kubelet_config: ~azure.mgmt.containerservice.v2021_09_01.models.KubeletConfig + :type kubelet_config: ~azure.mgmt.containerservice.v2021_10_01.models.KubeletConfig :param linux_os_config: The OS configuration of Linux agent nodes. - :type linux_os_config: ~azure.mgmt.containerservice.v2021_09_01.models.LinuxOSConfig + :type linux_os_config: ~azure.mgmt.containerservice.v2021_10_01.models.LinuxOSConfig :param enable_encryption_at_host: This is only supported on certain VM sizes and in certain Azure regions. For more information, see: https://docs.microsoft.com/azure/aks/enable-host-encryption. @@ -1947,10 +1967,10 @@ class ManagedClusterAgentPoolProfileProperties(msrest.serialization.Model): :param gpu_instance_profile: GPUInstanceProfile to be used to specify GPU MIG instance profile for supported GPU VM SKU. Possible values include: "MIG1g", "MIG2g", "MIG3g", "MIG4g", "MIG7g". :type gpu_instance_profile: str or - ~azure.mgmt.containerservice.v2021_09_01.models.GPUInstanceProfile + ~azure.mgmt.containerservice.v2021_10_01.models.GPUInstanceProfile :param creation_data: CreationData to be used to specify the source Snapshot ID if the node pool will be created/upgraded using a snapshot. - :type creation_data: ~azure.mgmt.containerservice.v2021_09_01.models.CreationData + :type creation_data: ~azure.mgmt.containerservice.v2021_10_01.models.CreationData """ _validation = { @@ -2109,13 +2129,13 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): after creation. For more information see `Ephemeral OS `_. Possible values include: "Managed", "Ephemeral". - :type os_disk_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSDiskType + :type os_disk_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSDiskType :param kubelet_disk_type: Determines the placement of emptyDir volumes, container runtime data root, and Kubelet ephemeral storage. Possible values include: "OS", "Temporary". - :type kubelet_disk_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.KubeletDiskType + :type kubelet_disk_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.KubeletDiskType :param workload_runtime: Determines the type of workload a node can run. Possible values include: "OCIContainer", "WasmWasi". - :type workload_runtime: str or ~azure.mgmt.containerservice.v2021_09_01.models.WorkloadRuntime + :type workload_runtime: str or ~azure.mgmt.containerservice.v2021_10_01.models.WorkloadRuntime :param vnet_subnet_id: If this is not specified, a VNET and subnet will be generated and used. If no podSubnetID is specified, this applies to nodes and pods, otherwise it applies to just nodes. This is of the form: @@ -2129,10 +2149,10 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): :type max_pods: int :param os_type: The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :type os_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSType + :type os_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSType :param os_sku: Specifies an OS SKU. This value must not be specified if OSType is Windows. Possible values include: "Ubuntu", "CBLMariner". - :type os_sku: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSSKU + :type os_sku: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSSKU :param max_count: The maximum number of nodes for auto-scaling. :type max_count: int :param min_count: The minimum number of nodes for auto-scaling. @@ -2141,15 +2161,15 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): :type enable_auto_scaling: bool :param scale_down_mode: This also effects the cluster autoscaler behavior. If not specified, it defaults to Delete. Possible values include: "Delete", "Deallocate". - :type scale_down_mode: str or ~azure.mgmt.containerservice.v2021_09_01.models.ScaleDownMode + :type scale_down_mode: str or ~azure.mgmt.containerservice.v2021_10_01.models.ScaleDownMode :param type: The type of Agent Pool. Possible values include: "VirtualMachineScaleSets", "AvailabilitySet". - :type type: str or ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolType + :type type: str or ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolType :param mode: A cluster must have at least one 'System' Agent Pool at all times. For additional information on agent pool restrictions and best practices, see: https://docs.microsoft.com/azure/aks/use-system-pools. Possible values include: "System", "User". - :type mode: str or ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolMode + :type mode: str or ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolMode :param orchestrator_version: As a best practice, you should upgrade all node pools in an AKS cluster to the same Kubernetes version. The node pool version must have the same major version as the control plane. The node pool minor version must be within two minor versions of the @@ -2161,14 +2181,14 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): :vartype node_image_version: str :param upgrade_settings: Settings for upgrading the agentpool. :type upgrade_settings: - ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolUpgradeSettings + ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolUpgradeSettings :ivar provisioning_state: The current deployment or provisioning state. :vartype provisioning_state: str :param power_state: When an Agent Pool is first created it is initially Running. The Agent Pool can be stopped by setting this field to Stopped. A stopped Agent Pool stops all of its VMs and does not accrue billing charges. An Agent Pool can only be stopped if it is Running and provisioning state is Succeeded. - :type power_state: ~azure.mgmt.containerservice.v2021_09_01.models.PowerState + :type power_state: ~azure.mgmt.containerservice.v2021_10_01.models.PowerState :param availability_zones: The list of Availability zones to use for nodes. This can only be specified if the AgentPoolType property is 'VirtualMachineScaleSets'. :type availability_zones: list[str] @@ -2185,12 +2205,12 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): :param scale_set_priority: The Virtual Machine Scale Set priority. If not specified, the default is 'Regular'. Possible values include: "Spot", "Regular". Default value: "Regular". :type scale_set_priority: str or - ~azure.mgmt.containerservice.v2021_09_01.models.ScaleSetPriority + ~azure.mgmt.containerservice.v2021_10_01.models.ScaleSetPriority :param scale_set_eviction_policy: This cannot be specified unless the scaleSetPriority is 'Spot'. If not specified, the default is 'Delete'. Possible values include: "Delete", "Deallocate". Default value: "Delete". :type scale_set_eviction_policy: str or - ~azure.mgmt.containerservice.v2021_09_01.models.ScaleSetEvictionPolicy + ~azure.mgmt.containerservice.v2021_10_01.models.ScaleSetEvictionPolicy :param spot_max_price: Possible values are any decimal value greater than zero or -1 which indicates the willingness to pay any on-demand price. For more details on spot pricing, see `spot VMs pricing `_. @@ -2206,9 +2226,9 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): :param proximity_placement_group_id: The ID for Proximity Placement Group. :type proximity_placement_group_id: str :param kubelet_config: The Kubelet configuration on the agent pool nodes. - :type kubelet_config: ~azure.mgmt.containerservice.v2021_09_01.models.KubeletConfig + :type kubelet_config: ~azure.mgmt.containerservice.v2021_10_01.models.KubeletConfig :param linux_os_config: The OS configuration of Linux agent nodes. - :type linux_os_config: ~azure.mgmt.containerservice.v2021_09_01.models.LinuxOSConfig + :type linux_os_config: ~azure.mgmt.containerservice.v2021_10_01.models.LinuxOSConfig :param enable_encryption_at_host: This is only supported on certain VM sizes and in certain Azure regions. For more information, see: https://docs.microsoft.com/azure/aks/enable-host-encryption. @@ -2222,10 +2242,10 @@ class ManagedClusterAgentPoolProfile(ManagedClusterAgentPoolProfileProperties): :param gpu_instance_profile: GPUInstanceProfile to be used to specify GPU MIG instance profile for supported GPU VM SKU. Possible values include: "MIG1g", "MIG2g", "MIG3g", "MIG4g", "MIG7g". :type gpu_instance_profile: str or - ~azure.mgmt.containerservice.v2021_09_01.models.GPUInstanceProfile + ~azure.mgmt.containerservice.v2021_10_01.models.GPUInstanceProfile :param creation_data: CreationData to be used to specify the source Snapshot ID if the node pool will be created/upgraded using a snapshot. - :type creation_data: ~azure.mgmt.containerservice.v2021_09_01.models.CreationData + :type creation_data: ~azure.mgmt.containerservice.v2021_10_01.models.CreationData :param name: Required. Windows agent pool names must be 6 characters or less. :type name: str """ @@ -2381,7 +2401,7 @@ class ManagedClusterAutoUpgradeProfile(msrest.serialization.Model): :param upgrade_channel: For more information see `setting the AKS cluster auto-upgrade channel `_. Possible values include: "rapid", "stable", "patch", "node-image", "none". - :type upgrade_channel: str or ~azure.mgmt.containerservice.v2021_09_01.models.UpgradeChannel + :type upgrade_channel: str or ~azure.mgmt.containerservice.v2021_10_01.models.UpgradeChannel """ _attribute_map = { @@ -2448,11 +2468,11 @@ class ManagedClusterIdentity(msrest.serialization.Model): :param type: For more information see `use managed identities in AKS `_. Possible values include: "SystemAssigned", "UserAssigned", "None". - :type type: str or ~azure.mgmt.containerservice.v2021_09_01.models.ResourceIdentityType + :type type: str or ~azure.mgmt.containerservice.v2021_10_01.models.ResourceIdentityType :param user_assigned_identities: The keys must be ARM resource IDs in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. :type user_assigned_identities: dict[str, - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedServiceIdentityUserAssignedIdentitiesValue] + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedServiceIdentityUserAssignedIdentitiesValue] """ _validation = { @@ -2487,7 +2507,7 @@ class ManagedClusterListResult(msrest.serialization.Model): Variables are only populated by the server, and will be ignored when sending a request. :param value: The list of managed clusters. - :type value: list[~azure.mgmt.containerservice.v2021_09_01.models.ManagedCluster] + :type value: list[~azure.mgmt.containerservice.v2021_10_01.models.ManagedCluster] :ivar next_link: The URL to get the next set of managed cluster results. :vartype next_link: str """ @@ -2517,18 +2537,18 @@ class ManagedClusterLoadBalancerProfile(msrest.serialization.Model): :param managed_outbound_i_ps: Desired managed outbound IPs for the cluster load balancer. :type managed_outbound_i_ps: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterLoadBalancerProfileManagedOutboundIPs + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterLoadBalancerProfileManagedOutboundIPs :param outbound_ip_prefixes: Desired outbound IP Prefix resources for the cluster load balancer. :type outbound_ip_prefixes: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterLoadBalancerProfileOutboundIPPrefixes + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterLoadBalancerProfileOutboundIPPrefixes :param outbound_i_ps: Desired outbound IP resources for the cluster load balancer. :type outbound_i_ps: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterLoadBalancerProfileOutboundIPs + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterLoadBalancerProfileOutboundIPs :param effective_outbound_i_ps: The effective outbound IP resources of the cluster load balancer. :type effective_outbound_i_ps: - list[~azure.mgmt.containerservice.v2021_09_01.models.ResourceReference] + list[~azure.mgmt.containerservice.v2021_10_01.models.ResourceReference] :param allocated_outbound_ports: The desired number of allocated SNAT ports per VM. Allowed values are in the range of 0 to 64000 (inclusive). The default value is 0 which results in Azure dynamically allocating ports. @@ -2581,27 +2601,36 @@ def __init__( class ManagedClusterLoadBalancerProfileManagedOutboundIPs(msrest.serialization.Model): """Desired managed outbound IPs for the cluster load balancer. - :param count: The desired number of outbound IPs created/managed by Azure for the cluster load - balancer. Allowed values must be in the range of 1 to 100 (inclusive). The default value is 1. + :param count: The desired number of IPv4 outbound IPs created/managed by Azure for the cluster + load balancer. Allowed values must be in the range of 1 to 100 (inclusive). The default value + is 1. :type count: int + :param count_ipv6: The desired number of IPv6 outbound IPs created/managed by Azure for the + cluster load balancer. Allowed values must be in the range of 1 to 100 (inclusive). The default + value is 0 for single-stack and 1 for dual-stack. + :type count_ipv6: int """ _validation = { 'count': {'maximum': 100, 'minimum': 1}, + 'count_ipv6': {'maximum': 100, 'minimum': 0}, } _attribute_map = { 'count': {'key': 'count', 'type': 'int'}, + 'count_ipv6': {'key': 'countIPv6', 'type': 'int'}, } def __init__( self, *, count: Optional[int] = 1, + count_ipv6: Optional[int] = 0, **kwargs ): super(ManagedClusterLoadBalancerProfileManagedOutboundIPs, self).__init__(**kwargs) self.count = count + self.count_ipv6 = count_ipv6 class ManagedClusterLoadBalancerProfileOutboundIPPrefixes(msrest.serialization.Model): @@ -2609,7 +2638,7 @@ class ManagedClusterLoadBalancerProfileOutboundIPPrefixes(msrest.serialization.M :param public_ip_prefixes: A list of public IP prefix resources. :type public_ip_prefixes: - list[~azure.mgmt.containerservice.v2021_09_01.models.ResourceReference] + list[~azure.mgmt.containerservice.v2021_10_01.models.ResourceReference] """ _attribute_map = { @@ -2630,7 +2659,7 @@ class ManagedClusterLoadBalancerProfileOutboundIPs(msrest.serialization.Model): """Desired outbound IP resources for the cluster load balancer. :param public_i_ps: A list of public IP resources. - :type public_i_ps: list[~azure.mgmt.containerservice.v2021_09_01.models.ResourceReference] + :type public_i_ps: list[~azure.mgmt.containerservice.v2021_10_01.models.ResourceReference] """ _attribute_map = { @@ -2679,10 +2708,10 @@ class ManagedClusterNATGatewayProfile(msrest.serialization.Model): :param managed_outbound_ip_profile: Profile of the managed outbound IP resources of the cluster NAT gateway. :type managed_outbound_ip_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterManagedOutboundIPProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterManagedOutboundIPProfile :param effective_outbound_i_ps: The effective outbound IP resources of the cluster NAT gateway. :type effective_outbound_i_ps: - list[~azure.mgmt.containerservice.v2021_09_01.models.ResourceReference] + list[~azure.mgmt.containerservice.v2021_10_01.models.ResourceReference] :param idle_timeout_in_minutes: Desired outbound flow idle timeout in minutes. Allowed values are in the range of 4 to 120 (inclusive). The default value is 4 minutes. :type idle_timeout_in_minutes: int @@ -2726,14 +2755,14 @@ class ManagedClusterPodIdentity(msrest.serialization.Model): :param binding_selector: The binding selector to use for the AzureIdentityBinding resource. :type binding_selector: str :param identity: Required. The user assigned identity details. - :type identity: ~azure.mgmt.containerservice.v2021_09_01.models.UserAssignedIdentity + :type identity: ~azure.mgmt.containerservice.v2021_10_01.models.UserAssignedIdentity :ivar provisioning_state: The current provisioning state of the pod identity. Possible values include: "Assigned", "Updating", "Deleting", "Failed". :vartype provisioning_state: str or - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPodIdentityProvisioningState + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPodIdentityProvisioningState :ivar provisioning_info: :vartype provisioning_info: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPodIdentityProvisioningInfo + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPodIdentityProvisioningInfo """ _validation = { @@ -2823,10 +2852,10 @@ class ManagedClusterPodIdentityProfile(msrest.serialization.Model): :type allow_network_plugin_kubenet: bool :param user_assigned_identities: The pod identities to use in the cluster. :type user_assigned_identities: - list[~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPodIdentity] + list[~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPodIdentity] :param user_assigned_identity_exceptions: The pod identity exceptions to allow. :type user_assigned_identity_exceptions: - list[~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPodIdentityException] + list[~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPodIdentityException] """ _attribute_map = { @@ -2857,7 +2886,7 @@ class ManagedClusterPodIdentityProvisioningError(msrest.serialization.Model): :param error: Details about the error. :type error: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPodIdentityProvisioningErrorBody + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPodIdentityProvisioningErrorBody """ _attribute_map = { @@ -2888,7 +2917,7 @@ class ManagedClusterPodIdentityProvisioningErrorBody(msrest.serialization.Model) :type target: str :param details: A list of additional details about the error. :type details: - list[~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPodIdentityProvisioningErrorBody] + list[~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPodIdentityProvisioningErrorBody] """ _attribute_map = { @@ -2919,7 +2948,7 @@ class ManagedClusterPodIdentityProvisioningInfo(msrest.serialization.Model): :param error: Pod identity assignment error (if any). :type error: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPodIdentityProvisioningError + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPodIdentityProvisioningError """ _attribute_map = { @@ -2947,10 +2976,10 @@ class ManagedClusterPoolUpgradeProfile(msrest.serialization.Model): :type name: str :param os_type: Required. The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :type os_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSType + :type os_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSType :param upgrades: List of orchestrator types and versions available for upgrade. :type upgrades: - list[~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPoolUpgradeProfileUpgradesItem] + list[~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPoolUpgradeProfileUpgradesItem] """ _validation = { @@ -3016,7 +3045,7 @@ class ManagedClusterPropertiesAutoScalerProfile(msrest.serialization.Model): `_ for more information. Possible values include: "least-waste", "most-pods", "priority", "random". - :type expander: str or ~azure.mgmt.containerservice.v2021_09_01.models.Expander + :type expander: str or ~azure.mgmt.containerservice.v2021_10_01.models.Expander :param max_empty_bulk_delete: The default is 10. :type max_empty_bulk_delete: str :param max_graceful_termination_sec: The default is 600. @@ -3126,7 +3155,7 @@ class ManagedClusterSecurityProfile(msrest.serialization.Model): :param azure_defender: Azure Defender settings for the security profile. :type azure_defender: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterSecurityProfileAzureDefender + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterSecurityProfileAzureDefender """ _attribute_map = { @@ -3207,11 +3236,11 @@ class ManagedClusterSKU(msrest.serialization.Model): """The SKU of a Managed Cluster. :param name: The name of a managed cluster SKU. Possible values include: "Basic". - :type name: str or ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterSKUName + :type name: str or ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterSKUName :param tier: If not specified, the default is 'Free'. See `uptime SLA `_ for more details. Possible values include: "Paid", "Free". - :type tier: str or ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterSKUTier + :type tier: str or ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterSKUTier """ _attribute_map = { @@ -3247,10 +3276,10 @@ class ManagedClusterUpgradeProfile(msrest.serialization.Model): :param control_plane_profile: Required. The list of available upgrade versions for the control plane. :type control_plane_profile: - ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPoolUpgradeProfile + ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPoolUpgradeProfile :param agent_pool_profiles: Required. The list of available upgrade versions for agent pools. :type agent_pool_profiles: - list[~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterPoolUpgradeProfile] + list[~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterPoolUpgradeProfile] """ _validation = { @@ -3308,12 +3337,12 @@ class ManagedClusterWindowsProfile(msrest.serialization.Model): :param license_type: The license type to use for Windows VMs. See `Azure Hybrid User Benefits `_ for more details. Possible values include: "None", "Windows_Server". - :type license_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.LicenseType + :type license_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.LicenseType :param enable_csi_proxy: For more details on CSI proxy, see the `CSI proxy GitHub repo `_. :type enable_csi_proxy: bool :param gmsa_profile: The Windows gMSA Profile in the Managed Cluster. - :type gmsa_profile: ~azure.mgmt.containerservice.v2021_09_01.models.WindowsGmsaProfile + :type gmsa_profile: ~azure.mgmt.containerservice.v2021_10_01.models.WindowsGmsaProfile """ _validation = { @@ -3382,7 +3411,7 @@ class OperationListResult(msrest.serialization.Model): Variables are only populated by the server, and will be ignored when sending a request. :ivar value: The list of operations. - :vartype value: list[~azure.mgmt.containerservice.v2021_09_01.models.OperationValue] + :vartype value: list[~azure.mgmt.containerservice.v2021_10_01.models.OperationValue] """ _validation = { @@ -3466,7 +3495,7 @@ class OSOptionProfile(msrest.serialization.Model): :vartype type: str :param os_option_property_list: Required. The list of OS options. :type os_option_property_list: - list[~azure.mgmt.containerservice.v2021_09_01.models.OSOptionProperty] + list[~azure.mgmt.containerservice.v2021_10_01.models.OSOptionProperty] """ _validation = { @@ -3536,7 +3565,7 @@ class OutboundEnvironmentEndpoint(msrest.serialization.Model): azure-resource-management, apiserver, etc. :type category: str :param endpoints: The endpoints that AKS agent nodes connect to. - :type endpoints: list[~azure.mgmt.containerservice.v2021_09_01.models.EndpointDependency] + :type endpoints: list[~azure.mgmt.containerservice.v2021_10_01.models.EndpointDependency] """ _attribute_map = { @@ -3564,7 +3593,7 @@ class OutboundEnvironmentEndpointCollection(msrest.serialization.Model): All required parameters must be populated in order to send to Azure. :param value: Required. Collection of resources. - :type value: list[~azure.mgmt.containerservice.v2021_09_01.models.OutboundEnvironmentEndpoint] + :type value: list[~azure.mgmt.containerservice.v2021_10_01.models.OutboundEnvironmentEndpoint] :ivar next_link: Link to next page of resources. :vartype next_link: str """ @@ -3595,7 +3624,7 @@ class PowerState(msrest.serialization.Model): :param code: Tells whether the cluster is Running or Stopped. Possible values include: "Running", "Stopped". - :type code: str or ~azure.mgmt.containerservice.v2021_09_01.models.Code + :type code: str or ~azure.mgmt.containerservice.v2021_10_01.models.Code """ _attribute_map = { @@ -3647,13 +3676,13 @@ class PrivateEndpointConnection(msrest.serialization.Model): :ivar provisioning_state: The current provisioning state. Possible values include: "Succeeded", "Creating", "Deleting", "Failed". :vartype provisioning_state: str or - ~azure.mgmt.containerservice.v2021_09_01.models.PrivateEndpointConnectionProvisioningState + ~azure.mgmt.containerservice.v2021_10_01.models.PrivateEndpointConnectionProvisioningState :param private_endpoint: The resource of private endpoint. - :type private_endpoint: ~azure.mgmt.containerservice.v2021_09_01.models.PrivateEndpoint + :type private_endpoint: ~azure.mgmt.containerservice.v2021_10_01.models.PrivateEndpoint :param private_link_service_connection_state: A collection of information about the state of the connection between service consumer and provider. :type private_link_service_connection_state: - ~azure.mgmt.containerservice.v2021_09_01.models.PrivateLinkServiceConnectionState + ~azure.mgmt.containerservice.v2021_10_01.models.PrivateLinkServiceConnectionState """ _validation = { @@ -3692,7 +3721,7 @@ class PrivateEndpointConnectionListResult(msrest.serialization.Model): """A list of private endpoint connections. :param value: The collection value. - :type value: list[~azure.mgmt.containerservice.v2021_09_01.models.PrivateEndpointConnection] + :type value: list[~azure.mgmt.containerservice.v2021_10_01.models.PrivateEndpointConnection] """ _attribute_map = { @@ -3765,7 +3794,7 @@ class PrivateLinkResourcesListResult(msrest.serialization.Model): """A list of private link resources. :param value: The collection value. - :type value: list[~azure.mgmt.containerservice.v2021_09_01.models.PrivateLinkResource] + :type value: list[~azure.mgmt.containerservice.v2021_10_01.models.PrivateLinkResource] """ _attribute_map = { @@ -3787,7 +3816,7 @@ class PrivateLinkServiceConnectionState(msrest.serialization.Model): :param status: The private link service connection status. Possible values include: "Pending", "Approved", "Rejected", "Disconnected". - :type status: str or ~azure.mgmt.containerservice.v2021_09_01.models.ConnectionStatus + :type status: str or ~azure.mgmt.containerservice.v2021_10_01.models.ConnectionStatus :param description: The private link service connection description. :type description: str """ @@ -3940,23 +3969,23 @@ class Snapshot(Resource): :param tags: A set of tags. Resource tags. :type tags: dict[str, str] :ivar system_data: The system metadata relating to this snapshot. - :vartype system_data: ~azure.mgmt.containerservice.v2021_09_01.models.SystemData + :vartype system_data: ~azure.mgmt.containerservice.v2021_10_01.models.SystemData :param creation_data: CreationData to be used to specify the source agent pool resource ID to create this snapshot. - :type creation_data: ~azure.mgmt.containerservice.v2021_09_01.models.CreationData + :type creation_data: ~azure.mgmt.containerservice.v2021_10_01.models.CreationData :param snapshot_type: The type of a snapshot. The default is NodePool. Possible values include: "NodePool". Default value: "NodePool". - :type snapshot_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.SnapshotType + :type snapshot_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.SnapshotType :ivar kubernetes_version: The version of Kubernetes. :vartype kubernetes_version: str :ivar node_image_version: The version of node image. :vartype node_image_version: str :ivar os_type: The operating system type. The default is Linux. Possible values include: "Linux", "Windows". Default value: "Linux". - :vartype os_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSType + :vartype os_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSType :ivar os_sku: Specifies an OS SKU. This value must not be specified if OSType is Windows. Possible values include: "Ubuntu", "CBLMariner". - :vartype os_sku: str or ~azure.mgmt.containerservice.v2021_09_01.models.OSSKU + :vartype os_sku: str or ~azure.mgmt.containerservice.v2021_10_01.models.OSSKU :ivar vm_size: The size of the VM. :vartype vm_size: str :ivar enable_fips: Whether to use a FIPS-enabled OS. @@ -4021,7 +4050,7 @@ class SnapshotListResult(msrest.serialization.Model): Variables are only populated by the server, and will be ignored when sending a request. :param value: The list of snapshots. - :type value: list[~azure.mgmt.containerservice.v2021_09_01.models.Snapshot] + :type value: list[~azure.mgmt.containerservice.v2021_10_01.models.Snapshot] :ivar next_link: The URL to get the next set of snapshot results. :vartype next_link: str """ @@ -4209,7 +4238,7 @@ class SystemData(msrest.serialization.Model): :type created_by: str :param created_by_type: The type of identity that created the resource. Possible values include: "User", "Application", "ManagedIdentity", "Key". - :type created_by_type: str or ~azure.mgmt.containerservice.v2021_09_01.models.CreatedByType + :type created_by_type: str or ~azure.mgmt.containerservice.v2021_10_01.models.CreatedByType :param created_at: The UTC timestamp of resource creation. :type created_at: ~datetime.datetime :param last_modified_by: The identity that last modified the resource. @@ -4217,7 +4246,7 @@ class SystemData(msrest.serialization.Model): :param last_modified_by_type: The type of identity that last modified the resource. Possible values include: "User", "Application", "ManagedIdentity", "Key". :type last_modified_by_type: str or - ~azure.mgmt.containerservice.v2021_09_01.models.CreatedByType + ~azure.mgmt.containerservice.v2021_10_01.models.CreatedByType :param last_modified_at: The type of identity that last modified the resource. :type last_modified_at: ~datetime.datetime """ @@ -4277,7 +4306,7 @@ class TimeInWeek(msrest.serialization.Model): :param day: The day of the week. Possible values include: "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday". - :type day: str or ~azure.mgmt.containerservice.v2021_09_01.models.WeekDay + :type day: str or ~azure.mgmt.containerservice.v2021_10_01.models.WeekDay :param hour_slots: Each integer hour represents a time range beginning at 0m after the hour ending at the next hour (non-inclusive). 0 corresponds to 00:00 UTC, 23 corresponds to 23:00 UTC. Specifying [0, 1] means the 00:00 - 02:00 UTC time range. diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/__init__.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/__init__.py old mode 100755 new mode 100644 similarity index 100% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/__init__.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/__init__.py diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_agent_pools_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_agent_pools_operations.py old mode 100755 new mode 100644 similarity index 96% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_agent_pools_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_agent_pools_operations.py index 8cc145aede3..f5371a98589 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_agent_pools_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_agent_pools_operations.py @@ -32,7 +32,7 @@ class AgentPoolsOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2021_09_01.models + :type models: ~azure.mgmt.containerservice.v2021_10_01.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -64,7 +64,7 @@ def list( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either AgentPoolListResult or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolListResult] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolListResult] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.AgentPoolListResult"] @@ -72,7 +72,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" def prepare_request(next_link=None): @@ -144,7 +144,7 @@ def get( :type agent_pool_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: AgentPool, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.AgentPool + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.AgentPool :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.AgentPool"] @@ -152,7 +152,7 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -203,7 +203,7 @@ def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -269,7 +269,7 @@ def begin_create_or_update( :param agent_pool_name: The name of the agent pool. :type agent_pool_name: str :param parameters: The agent pool to create or update. - :type parameters: ~azure.mgmt.containerservice.v2021_09_01.models.AgentPool + :type parameters: ~azure.mgmt.containerservice.v2021_10_01.models.AgentPool :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. @@ -277,7 +277,7 @@ def begin_create_or_update( :paramtype polling: bool or ~azure.core.polling.PollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of LROPoller that returns either AgentPool or the result of cls(response) - :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.v2021_09_01.models.AgentPool] + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.v2021_10_01.models.AgentPool] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] @@ -341,7 +341,7 @@ def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -467,7 +467,7 @@ def get_upgrade_profile( :type agent_pool_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: AgentPoolUpgradeProfile, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolUpgradeProfile + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolUpgradeProfile :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.AgentPoolUpgradeProfile"] @@ -475,7 +475,7 @@ def get_upgrade_profile( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -531,7 +531,7 @@ def get_available_agent_pool_versions( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: AgentPoolAvailableVersions, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.AgentPoolAvailableVersions + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.AgentPoolAvailableVersions :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.AgentPoolAvailableVersions"] @@ -539,7 +539,7 @@ def get_available_agent_pool_versions( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -588,7 +588,7 @@ def _upgrade_node_image_version_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -617,12 +617,14 @@ def _upgrade_node_image_version_initial( map_error(status_code=response.status_code, response=response, error_map=error_map) raise HttpResponseError(response=response, error_format=ARMErrorFormat) + response_headers = {} deserialized = None if response.status_code == 202: + response_headers['Azure-AsyncOperation']=self._deserialize('str', response.headers.get('Azure-AsyncOperation')) deserialized = self._deserialize('AgentPool', pipeline_response) if cls: - return cls(pipeline_response, deserialized, {}) + return cls(pipeline_response, deserialized, response_headers) return deserialized _upgrade_node_image_version_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeNodeImageVersion'} # type: ignore @@ -677,10 +679,13 @@ def begin_upgrade_node_image_version( kwargs.pop('content_type', None) def get_long_running_output(pipeline_response): + response_headers = {} + response = pipeline_response.http_response + response_headers['Azure-AsyncOperation']=self._deserialize('str', response.headers.get('Azure-AsyncOperation')) deserialized = self._deserialize('AgentPool', pipeline_response) if cls: - return cls(pipeline_response, deserialized, {}) + return cls(pipeline_response, deserialized, response_headers) return deserialized path_format_arguments = { diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_maintenance_configurations_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_maintenance_configurations_operations.py old mode 100755 new mode 100644 similarity index 97% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_maintenance_configurations_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_maintenance_configurations_operations.py index f62449aaffe..9dee631e8b0 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_maintenance_configurations_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_maintenance_configurations_operations.py @@ -30,7 +30,7 @@ class MaintenanceConfigurationsOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2021_09_01.models + :type models: ~azure.mgmt.containerservice.v2021_10_01.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -62,7 +62,7 @@ def list_by_managed_cluster( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either MaintenanceConfigurationListResult or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2021_09_01.models.MaintenanceConfigurationListResult] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2021_10_01.models.MaintenanceConfigurationListResult] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.MaintenanceConfigurationListResult"] @@ -70,7 +70,7 @@ def list_by_managed_cluster( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" def prepare_request(next_link=None): @@ -142,7 +142,7 @@ def get( :type config_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: MaintenanceConfiguration, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.MaintenanceConfiguration + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.MaintenanceConfiguration :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.MaintenanceConfiguration"] @@ -150,7 +150,7 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -207,10 +207,10 @@ def create_or_update( :param config_name: The name of the maintenance configuration. :type config_name: str :param parameters: The maintenance configuration to create or update. - :type parameters: ~azure.mgmt.containerservice.v2021_09_01.models.MaintenanceConfiguration + :type parameters: ~azure.mgmt.containerservice.v2021_10_01.models.MaintenanceConfiguration :keyword callable cls: A custom type or function that will be passed the direct response :return: MaintenanceConfiguration, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.MaintenanceConfiguration + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.MaintenanceConfiguration :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.MaintenanceConfiguration"] @@ -218,7 +218,7 @@ def create_or_update( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -288,7 +288,7 @@ def delete( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_managed_clusters_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_managed_clusters_operations.py old mode 100755 new mode 100644 similarity index 98% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_managed_clusters_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_managed_clusters_operations.py index 34574646e0e..d5128859a56 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_managed_clusters_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_managed_clusters_operations.py @@ -32,7 +32,7 @@ class ManagedClustersOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2021_09_01.models + :type models: ~azure.mgmt.containerservice.v2021_10_01.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -64,7 +64,7 @@ def get_os_options( :type resource_type: str :keyword callable cls: A custom type or function that will be passed the direct response :return: OSOptionProfile, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.OSOptionProfile + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.OSOptionProfile :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.OSOptionProfile"] @@ -72,7 +72,7 @@ def get_os_options( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -120,7 +120,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either ManagedClusterListResult or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterListResult] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterListResult] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterListResult"] @@ -128,7 +128,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" def prepare_request(next_link=None): @@ -192,7 +192,7 @@ def list_by_resource_group( :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either ManagedClusterListResult or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterListResult] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterListResult] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterListResult"] @@ -200,7 +200,7 @@ def list_by_resource_group( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" def prepare_request(next_link=None): @@ -268,7 +268,7 @@ def get_upgrade_profile( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: ManagedClusterUpgradeProfile, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterUpgradeProfile + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterUpgradeProfile :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterUpgradeProfile"] @@ -276,7 +276,7 @@ def get_upgrade_profile( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -335,7 +335,7 @@ def get_access_profile( :type role_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: ManagedClusterAccessProfile, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterAccessProfile + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterAccessProfile :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedClusterAccessProfile"] @@ -343,7 +343,7 @@ def get_access_profile( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -400,7 +400,7 @@ def list_cluster_admin_credentials( :type server_fqdn: str :keyword callable cls: A custom type or function that will be passed the direct response :return: CredentialResults, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.CredentialResults + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.CredentialResults :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.CredentialResults"] @@ -408,7 +408,7 @@ def list_cluster_admin_credentials( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -466,7 +466,7 @@ def list_cluster_user_credentials( :type server_fqdn: str :keyword callable cls: A custom type or function that will be passed the direct response :return: CredentialResults, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.CredentialResults + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.CredentialResults :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.CredentialResults"] @@ -474,7 +474,7 @@ def list_cluster_user_credentials( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -532,7 +532,7 @@ def list_cluster_monitoring_user_credentials( :type server_fqdn: str :keyword callable cls: A custom type or function that will be passed the direct response :return: CredentialResults, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.CredentialResults + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.CredentialResults :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.CredentialResults"] @@ -540,7 +540,7 @@ def list_cluster_monitoring_user_credentials( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -595,7 +595,7 @@ def get( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: ManagedCluster, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.ManagedCluster + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.ManagedCluster :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ManagedCluster"] @@ -603,7 +603,7 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -652,7 +652,7 @@ def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -714,7 +714,7 @@ def begin_create_or_update( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: The managed cluster to create or update. - :type parameters: ~azure.mgmt.containerservice.v2021_09_01.models.ManagedCluster + :type parameters: ~azure.mgmt.containerservice.v2021_10_01.models.ManagedCluster :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. @@ -722,7 +722,7 @@ def begin_create_or_update( :paramtype polling: bool or ~azure.core.polling.PollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of LROPoller that returns either ManagedCluster or the result of cls(response) - :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.v2021_09_01.models.ManagedCluster] + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.v2021_10_01.models.ManagedCluster] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] @@ -784,7 +784,7 @@ def _update_tags_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -842,7 +842,7 @@ def begin_update_tags( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: Parameters supplied to the Update Managed Cluster Tags operation. - :type parameters: ~azure.mgmt.containerservice.v2021_09_01.models.TagsObject + :type parameters: ~azure.mgmt.containerservice.v2021_10_01.models.TagsObject :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. @@ -850,7 +850,7 @@ def begin_update_tags( :paramtype polling: bool or ~azure.core.polling.PollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of LROPoller that returns either ManagedCluster or the result of cls(response) - :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.v2021_09_01.models.ManagedCluster] + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.v2021_10_01.models.ManagedCluster] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] @@ -911,7 +911,7 @@ def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -1024,7 +1024,7 @@ def _reset_service_principal_profile_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1079,7 +1079,7 @@ def begin_reset_service_principal_profile( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: The service principal profile to set on the managed cluster. - :type parameters: ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterServicePrincipalProfile + :type parameters: ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterServicePrincipalProfile :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. @@ -1146,7 +1146,7 @@ def _reset_aad_profile_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1201,7 +1201,7 @@ def begin_reset_aad_profile( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: The AAD profile to set on the Managed Cluster. - :type parameters: ~azure.mgmt.containerservice.v2021_09_01.models.ManagedClusterAADProfile + :type parameters: ~azure.mgmt.containerservice.v2021_10_01.models.ManagedClusterAADProfile :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. @@ -1267,7 +1267,7 @@ def _rotate_cluster_certificates_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -1380,7 +1380,7 @@ def _stop_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -1496,7 +1496,7 @@ def _start_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -1610,7 +1610,7 @@ def _run_command_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1672,7 +1672,7 @@ def begin_run_command( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param request_payload: The run command request. - :type request_payload: ~azure.mgmt.containerservice.v2021_09_01.models.RunCommandRequest + :type request_payload: ~azure.mgmt.containerservice.v2021_10_01.models.RunCommandRequest :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. @@ -1680,7 +1680,7 @@ def begin_run_command( :paramtype polling: bool or ~azure.core.polling.PollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of LROPoller that returns either RunCommandResult or the result of cls(response) - :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.v2021_09_01.models.RunCommandResult] + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.containerservice.v2021_10_01.models.RunCommandResult] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] @@ -1749,7 +1749,7 @@ def get_command_result( :type command_id: str :keyword callable cls: A custom type or function that will be passed the direct response :return: RunCommandResult, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.RunCommandResult or None + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.RunCommandResult or None :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.RunCommandResult"]] @@ -1757,7 +1757,7 @@ def get_command_result( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -1814,7 +1814,7 @@ def list_outbound_network_dependencies_endpoints( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either OutboundEnvironmentEndpointCollection or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2021_09_01.models.OutboundEnvironmentEndpointCollection] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2021_10_01.models.OutboundEnvironmentEndpointCollection] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.OutboundEnvironmentEndpointCollection"] @@ -1822,7 +1822,7 @@ def list_outbound_network_dependencies_endpoints( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_operations.py old mode 100755 new mode 100644 similarity index 96% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_operations.py index f481df36ed7..bd021662ea5 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_operations.py @@ -30,7 +30,7 @@ class Operations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2021_09_01.models + :type models: ~azure.mgmt.containerservice.v2021_10_01.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -56,7 +56,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either OperationListResult or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2021_09_01.models.OperationListResult] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2021_10_01.models.OperationListResult] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.OperationListResult"] @@ -64,7 +64,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_private_endpoint_connections_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_private_endpoint_connections_operations.py old mode 100755 new mode 100644 similarity index 97% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_private_endpoint_connections_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_private_endpoint_connections_operations.py index 95e3d4391c3..f3c94368dcf --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_private_endpoint_connections_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_private_endpoint_connections_operations.py @@ -31,7 +31,7 @@ class PrivateEndpointConnectionsOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2021_09_01.models + :type models: ~azure.mgmt.containerservice.v2021_10_01.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -64,7 +64,7 @@ def list( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: PrivateEndpointConnectionListResult, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.PrivateEndpointConnectionListResult + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.PrivateEndpointConnectionListResult :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointConnectionListResult"] @@ -72,7 +72,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -129,7 +129,7 @@ def get( :type private_endpoint_connection_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: PrivateEndpointConnection, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.PrivateEndpointConnection + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.PrivateEndpointConnection :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointConnection"] @@ -137,7 +137,7 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -194,10 +194,10 @@ def update( :param private_endpoint_connection_name: The name of the private endpoint connection. :type private_endpoint_connection_name: str :param parameters: The updated private endpoint connection. - :type parameters: ~azure.mgmt.containerservice.v2021_09_01.models.PrivateEndpointConnection + :type parameters: ~azure.mgmt.containerservice.v2021_10_01.models.PrivateEndpointConnection :keyword callable cls: A custom type or function that will be passed the direct response :return: PrivateEndpointConnection, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.PrivateEndpointConnection + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.PrivateEndpointConnection :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateEndpointConnection"] @@ -205,7 +205,7 @@ def update( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -260,7 +260,7 @@ def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_private_link_resources_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_private_link_resources_operations.py old mode 100755 new mode 100644 similarity index 96% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_private_link_resources_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_private_link_resources_operations.py index ec68817b403..02db72636e5 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_private_link_resources_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_private_link_resources_operations.py @@ -29,7 +29,7 @@ class PrivateLinkResourcesOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2021_09_01.models + :type models: ~azure.mgmt.containerservice.v2021_10_01.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -62,7 +62,7 @@ def list( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: PrivateLinkResourcesListResult, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.PrivateLinkResourcesListResult + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.PrivateLinkResourcesListResult :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkResourcesListResult"] @@ -70,7 +70,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_resolve_private_link_service_id_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_resolve_private_link_service_id_operations.py old mode 100755 new mode 100644 similarity index 95% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_resolve_private_link_service_id_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_resolve_private_link_service_id_operations.py index fb9cb7ac655..5ba0e0d37f0 --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_resolve_private_link_service_id_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_resolve_private_link_service_id_operations.py @@ -29,7 +29,7 @@ class ResolvePrivateLinkServiceIdOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2021_09_01.models + :type models: ~azure.mgmt.containerservice.v2021_10_01.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -61,10 +61,10 @@ def post( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: Parameters required in order to resolve a private link service ID. - :type parameters: ~azure.mgmt.containerservice.v2021_09_01.models.PrivateLinkResource + :type parameters: ~azure.mgmt.containerservice.v2021_10_01.models.PrivateLinkResource :keyword callable cls: A custom type or function that will be passed the direct response :return: PrivateLinkResource, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.PrivateLinkResource + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.PrivateLinkResource :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkResource"] @@ -72,7 +72,7 @@ def post( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_snapshots_operations.py b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_snapshots_operations.py old mode 100755 new mode 100644 similarity index 96% rename from src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_snapshots_operations.py rename to src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_snapshots_operations.py index a3a75a2347d..eb3acfbedaa --- a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_09_01/operations/_snapshots_operations.py +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/operations/_snapshots_operations.py @@ -30,7 +30,7 @@ class SnapshotsOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure.mgmt.containerservice.v2021_09_01.models + :type models: ~azure.mgmt.containerservice.v2021_10_01.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -56,7 +56,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either SnapshotListResult or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2021_09_01.models.SnapshotListResult] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2021_10_01.models.SnapshotListResult] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotListResult"] @@ -64,7 +64,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" def prepare_request(next_link=None): @@ -128,7 +128,7 @@ def list_by_resource_group( :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either SnapshotListResult or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2021_09_01.models.SnapshotListResult] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.containerservice.v2021_10_01.models.SnapshotListResult] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.SnapshotListResult"] @@ -136,7 +136,7 @@ def list_by_resource_group( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" def prepare_request(next_link=None): @@ -204,7 +204,7 @@ def get( :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: Snapshot, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.Snapshot + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.Snapshot :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Snapshot"] @@ -212,7 +212,7 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL @@ -265,10 +265,10 @@ def create_or_update( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: The snapshot to create or update. - :type parameters: ~azure.mgmt.containerservice.v2021_09_01.models.Snapshot + :type parameters: ~azure.mgmt.containerservice.v2021_10_01.models.Snapshot :keyword callable cls: A custom type or function that will be passed the direct response :return: Snapshot, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.Snapshot + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.Snapshot :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Snapshot"] @@ -276,7 +276,7 @@ def create_or_update( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -338,10 +338,10 @@ def update_tags( :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: Parameters supplied to the Update snapshot Tags operation. - :type parameters: ~azure.mgmt.containerservice.v2021_09_01.models.TagsObject + :type parameters: ~azure.mgmt.containerservice.v2021_10_01.models.TagsObject :keyword callable cls: A custom type or function that will be passed the direct response :return: Snapshot, or the result of cls(response) - :rtype: ~azure.mgmt.containerservice.v2021_09_01.models.Snapshot + :rtype: ~azure.mgmt.containerservice.v2021_10_01.models.Snapshot :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Snapshot"] @@ -349,7 +349,7 @@ def update_tags( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -415,7 +415,7 @@ def delete( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-09-01" + api_version = "2021-10-01" accept = "application/json" # Construct URL diff --git a/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/py.typed b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/py.typed new file mode 100644 index 00000000000..e5aff4f83af --- /dev/null +++ b/src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/v2021_10_01/py.typed @@ -0,0 +1 @@ +# Marker file for PEP 561. \ No newline at end of file diff --git a/src/aks-preview/setup.py b/src/aks-preview/setup.py index ee71306b815..3e3aed7143a 100644 --- a/src/aks-preview/setup.py +++ b/src/aks-preview/setup.py @@ -8,7 +8,7 @@ from codecs import open as open1 from setuptools import setup, find_packages -VERSION = "0.5.42" +VERSION = "0.5.48" CLASSIFIERS = [ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', diff --git a/src/alertsmanagement/azext_alertsmanagement/tests/latest/test_alertsmanagement_scenario.py b/src/alertsmanagement/azext_alertsmanagement/tests/latest/test_alertsmanagement_scenario.py index a26788c5d9d..da6189b6508 100644 --- a/src/alertsmanagement/azext_alertsmanagement/tests/latest/test_alertsmanagement_scenario.py +++ b/src/alertsmanagement/azext_alertsmanagement/tests/latest/test_alertsmanagement_scenario.py @@ -6,7 +6,7 @@ import os import unittest -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) diff --git a/src/application-insights/azext_applicationinsights/tests/latest/recording_processors.py b/src/application-insights/azext_applicationinsights/tests/latest/recording_processors.py index 0af62fa9a92..e5e5f3bc0d6 100644 --- a/src/application-insights/azext_applicationinsights/tests/latest/recording_processors.py +++ b/src/application-insights/azext_applicationinsights/tests/latest/recording_processors.py @@ -3,7 +3,7 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -from azure_devtools.scenario_tests import RecordingProcessor +from azure.cli.testsdk.scenario_tests import RecordingProcessor def _py3_byte_to_str(byte_or_str): diff --git a/src/application-insights/azext_applicationinsights/tests/latest/test_applicationinsights_mgmt.py b/src/application-insights/azext_applicationinsights/tests/latest/test_applicationinsights_mgmt.py index 271b120a80e..30b65300199 100644 --- a/src/application-insights/azext_applicationinsights/tests/latest/test_applicationinsights_mgmt.py +++ b/src/application-insights/azext_applicationinsights/tests/latest/test_applicationinsights_mgmt.py @@ -6,7 +6,7 @@ # pylint: disable=line-too-long from azure.cli.testsdk import ResourceGroupPreparer, ScenarioTest, StorageAccountPreparer from .recording_processors import StorageAccountSASReplacer -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse class ApplicationInsightsManagementClientTests(ScenarioTest): diff --git a/src/appservice-kube/HISTORY.rst b/src/appservice-kube/HISTORY.rst index 3b56fc6da4d..dcbf51ce5e2 100644 --- a/src/appservice-kube/HISTORY.rst +++ b/src/appservice-kube/HISTORY.rst @@ -3,6 +3,15 @@ Release History =============== +0.1.2 +++++++ +* Allow passing custom locations by name if in the same resource group as the app/plan +* Add App Service Environment V3 SKUs to 'az appservice plan create' help text +* Fix bug causing App Service Kube Environment "resourceGroup" value to be null in command responses + +0.1.1 +++++++ +* Fix ssl binding for web apps in kubernetes environments 0.1.0 ++++++ diff --git a/src/appservice-kube/azext_appservice_kube/_help.py b/src/appservice-kube/azext_appservice_kube/_help.py index 3fa301c209d..19adf4a407a 100644 --- a/src/appservice-kube/azext_appservice_kube/_help.py +++ b/src/appservice-kube/azext_appservice_kube/_help.py @@ -34,7 +34,12 @@ - name: Create an app service plan for a kubernetes environment. text: > az appservice plan create -g MyResourceGroup -n MyPlan \\ - --custom-location /subscriptions//resourceGroups//providers/Microsoft.ExtendedLocation/customLocations/ \\ + --custom-location /subscriptions/sub_id/resourcegroups/group_name/providers/microsoft.extendedlocation/customlocations/custom_location_name \\ + --per-site-scaling --is-linux --sku K1 + - name: Create a kubernetes environment app service plan in the same resource group as the custom location + text: > + az appservice plan create -g MyResourceGroup -n MyPlan \\ + --custom-location custom_location_name \\ --per-site-scaling --is-linux --sku K1 """ @@ -60,9 +65,12 @@ type: command short-summary: Create a Kubernetes Environment. examples: + - name: Create Kubernetes Environment with a custom location in the same resource group + text: | + az appservice kube create -n MyKubeEnvironment -g MyResourceGroup --static-ip 0.0.0.0 --custom-location custom_location_name - name: Create Kubernetes Environment text: | - az appservice kube create -n MyKubeEnvironment -g MyResourceGroup --static-ip 0.0.0.0 --custom-location custom_location_id + az appservice kube create -n MyKubeEnvironment -g MyResourceGroup --static-ip 0.0.0.0 --custom-location /subscriptions/sub_id/resourcegroups/group_name/providers/microsoft.extendedlocation/customlocations/custom_location_name """ helps['appservice kube update'] = """ @@ -112,3 +120,77 @@ az appservice kube wait -g MyResourceGroup -n MyKubeEnvironment \\ --created --interval 60 """ + +helps['webapp config ssl bind'] = """ +type: command +short-summary: Bind an SSL certificate to a web app. +examples: + - name: Bind an SSL certificate to a web app. (autogenerated) + text: az webapp config ssl bind --certificate-thumbprint {certificate-thumbprint} --name MyWebapp --resource-group MyResourceGroup --ssl-type SNI + crafted: true +""" + +helps['webapp config ssl unbind'] = """ +type: command +short-summary: Unbind an SSL certificate from a web app. +""" + +helps['functionapp create'] = """ +type: command +short-summary: Create a function app. +long-summary: The function app's name must be able to produce a unique FQDN as AppName.azurewebsites.net. +examples: + - name: Create a basic function app. + text: > + az functionapp create -g MyResourceGroup -p MyPlan -n MyUniqueAppName -s MyStorageAccount + - name: Create a function app. (autogenerated) + text: az functionapp create --consumption-plan-location westus --name MyUniqueAppName --os-type Windows --resource-group MyResourceGroup --runtime dotnet --storage-account MyStorageAccount + crafted: true + - name: Create a function app using a private ACR image. + text: > + az functionapp create -g MyResourceGroup -p MyPlan -n MyUniqueAppName --runtime node --storage-account MyStorageAccount --deployment-container-image-name myacr.azurecr.io/myimage:tag --docker-registry-server-password passw0rd --docker-registry-server-user MyUser + - name: Create a function app in an app service kubernetes environment + text: > + az functionapp create -g MyResourceGroup -p MyPlan -n MyUniqueAppName -s MyStorageAccount --custom-location /subscriptions/sub_id/resourcegroups/group_name/providers/microsoft.extendedlocation/customlocations/custom_location_name + - name: Create a function app in an app service kubernetes environment and in the same resource group as the custom location + text: > + az functionapp create -g MyResourceGroup -p MyPlan -n MyUniqueAppName -s MyStorageAccount --custom-location custom_location_name +""" + +helps['webapp create'] = """ +type: command +short-summary: Create a web app. +long-summary: The web app's name must be able to produce a unique FQDN as AppName.azurewebsites.net. +examples: + - name: Create a web app with the default configuration. + text: > + az webapp create -g MyResourceGroup -p MyPlan -n MyUniqueAppName + - name: Create a web app with a Java 11 runtime using '|' delimiter. + text: > + az webapp create -g MyResourceGroup -p MyPlan -n MyUniqueAppName --runtime "java|11|Java SE|11" + - name: Create a web app with a Java 11 runtime using ':' delimiter. + text: > + az webapp create -g MyResourceGroup -p MyPlan -n MyUniqueAppName --runtime "java:11:Java SE:11" + - name: Create a web app with a NodeJS 10.14 runtime and deployed from a local git repository. + text: > + az webapp create -g MyResourceGroup -p MyPlan -n MyUniqueAppName --runtime "node|10.14" --deployment-local-git + - name: Create a web app with an image from DockerHub. + text: > + az webapp create -g MyResourceGroup -p MyPlan -n MyUniqueAppName -i nginx + - name: Create a web app with an image from a private DockerHub registry. + text: > + az webapp create -g MyResourceGroup -p MyPlan -n MyUniqueAppName -i MyImageName -s username -w password + - name: Create a web app with an image from a private Azure Container Registry. + text: > + az webapp create -g MyResourceGroup -p MyPlan -n MyUniqueAppName -i myregistry.azurecr.io/docker-image:tag + - name: create a WebApp using shared App Service Plan that is in a different resource group. + text: > + AppServicePlanID=$(az appservice plan show -n SharedAppServicePlan -g MyASPRG --query "id" --out tsv) + az webapp create -g MyResourceGroup -p "$AppServicePlanID" -n MyUniqueAppName + - name: create a WebApp in an appservice kubernetes environment + text: > + az webapp create -g MyResourceGroup -p MyPlan -n MyUniqueAppName --custom-location /subscriptions/sub_id/resourcegroups/group_name/providers/microsoft.extendedlocation/customlocations/custom_location_name + - name: create a WebApp in an appservice kubernetes environment and in the same resource group as the custom location + text: > + az webapp create -g MyResourceGroup -p MyPlan -n MyUniqueAppName --custom-location custom_location_name +""" diff --git a/src/appservice-kube/azext_appservice_kube/_params.py b/src/appservice-kube/azext_appservice_kube/_params.py index 072c46d9dea..9b8184d33df 100644 --- a/src/appservice-kube/azext_appservice_kube/_params.py +++ b/src/appservice-kube/azext_appservice_kube/_params.py @@ -53,7 +53,7 @@ def load_arguments(self, _): with self.argument_context('webapp create') as c: c.argument('name', options_list=['--name', '-n'], help='name of the new web app', validator=validate_site_create) - c.argument('custom_location', help="Name or ID of the custom location") + c.argument('custom_location', help="Name or ID of the custom location. Use an ID for a custom location in a different resource group from the app") c.argument('startup_file', help="Linux only. The web's startup file") c.argument('docker_registry_server_user', options_list=['--docker-registry-server-user', '-s'], help='the container registry server username') c.argument('docker_registry_server_password', options_list=['--docker-registry-server-password', '-w'], help='The container registry server password. Required for private registries.') @@ -93,7 +93,7 @@ def load_arguments(self, _): completer=get_resource_name_completion_list('Microsoft.Web/serverFarms'), help="name or resource id of the function app service plan. Use 'appservice plan create' to get one") c.argument('new_app_name', options_list=['--name', '-n'], help='name of the new function app') - c.argument('custom_location', help="Name or ID of the custom location") + c.argument('custom_location', help="Name or ID of the custom location. Use an ID for a custom location in a different resource group from the app") c.argument('storage_account', options_list=['--storage-account', '-s'], help='Provide a string value of a Storage Account in the provided Resource Group. Or Resource ID of a Storage Account in a different Resource Group') c.argument('consumption_plan_location', options_list=['--consumption-plan-location', '-c'], @@ -134,6 +134,13 @@ def load_arguments(self, _): validator=validate_timeout_value) c.argument('is_kube', help='the app is a kubernetes app') + with self.argument_context(scope + ' config ssl bind') as c: + c.argument('ssl_type', help='The ssl cert type', arg_type=get_enum_type(['SNI', 'IP'])) + c.argument('certificate_thumbprint', help='The ssl cert thumbprint') + + with self.argument_context(scope + ' config ssl unbind') as c: + c.argument('certificate_thumbprint', help='The ssl cert thumbprint') + with self.argument_context('appservice') as c: c.argument('resource_group_name', arg_type=resource_group_name_type) c.argument('location', arg_type=get_location_type(self.cli_ctx)) @@ -151,9 +158,9 @@ def load_arguments(self, _): validator=validate_asp_create) c.argument('app_service_environment', options_list=['--app-service-environment', '-e'], help="Name or ID of the app service environment") - c.argument('custom_location', options_list=['--custom-location', '-c'], help="Name or ID of the custom location") + c.argument('custom_location', options_list=['--custom-location', '-c'], help="Name or ID of the custom location. Use an ID for a custom location in a different resource group from the plan") c.argument('sku', - help='The pricing tiers, e.g., F1(Free), D1(Shared), B1(Basic Small), B2(Basic Medium), B3(Basic Large), S1(Standard Small), P1V2(Premium V2 Small), PC2 (Premium Container Small), PC3 (Premium Container Medium), PC4 (Premium Container Large), I1 (Isolated Small), I2 (Isolated Medium), I3 (Isolated Large), K1 (Kubernetes)') + help='The pricing tiers, e.g., F1(Free), D1(Shared), B1(Basic Small), B2(Basic Medium), B3(Basic Large), S1(Standard Small), P1V2(Premium V2 Small), PC2 (Premium Container Small), PC3 (Premium Container Medium), PC4 (Premium Container Large), I1 (Isolated Small), I2 (Isolated Medium), I3 (Isolated Large), I1v2 (Isolated V2 Small), I2v2 (Isolated V2 Medium), I3v2(Isolated V2 Large) K1 (Kubernetes)') c.argument('is_linux', action='store_true', required=False, help='host web app on Linux worker') c.argument('hyper_v', action='store_true', required=False, help='Host web app on Windows container', is_preview=True) c.argument('per_site_scaling', action='store_true', required=False, help='Enable per-app scaling at the ' diff --git a/src/appservice-kube/azext_appservice_kube/commands.py b/src/appservice-kube/azext_appservice_kube/commands.py index cc5b065a754..cc549823efd 100644 --- a/src/appservice-kube/azext_appservice_kube/commands.py +++ b/src/appservice-kube/azext_appservice_kube/commands.py @@ -71,6 +71,10 @@ def load_command_table(self, _): g.custom_command('scale', 'scale_webapp') g.custom_command('restart', 'restart_webapp') + with self.command_group('webapp config ssl') as g: + g.custom_command('bind', 'bind_ssl_cert') + g.custom_command('unbind', 'unbind_ssl_cert') + with self.command_group('webapp deployment source') as g: g.custom_command('config-zip', 'enable_zip_deploy_webapp') diff --git a/src/appservice-kube/azext_appservice_kube/custom.py b/src/appservice-kube/azext_appservice_kube/custom.py index 41d9d165441..c76b802abca 100644 --- a/src/appservice-kube/azext_appservice_kube/custom.py +++ b/src/appservice-kube/azext_appservice_kube/custom.py @@ -42,7 +42,8 @@ _configure_default_logging, assign_identity, delete_app_settings, - update_app_settings) + update_app_settings, + list_hostnames) from azure.cli.command_modules.appservice.utils import retryable_method from azure.cli.core.commands.client_factory import get_mgmt_service_client from azure.cli.core.commands import LongRunningOperation @@ -294,24 +295,14 @@ def restart(cls, cmd, resource_group_name, name, slot=None): send_raw_request(cmd.cli_ctx, "POST", request_url) -# rectify the format of the kube env json returned from API to comply with older version of `az appservice kube show` -def format_kube_environment_json(kube_info_raw): - kube_info = kube_info_raw["properties"] - if kube_info.get("aksResourceID"): - kube_info["aksResourceId"] = kube_info["aksResourceID"] - del kube_info["aksResourceID"] - - other_properties = ['id', 'kind', 'kubeEnvironmentType', 'location', 'name', - 'resourceGroup', 'tags', 'type', 'extendedLocation'] - for k in other_properties: - kube_info[k] = kube_info_raw.get(k) - - return kube_info +def _get_kube_client(cmd): + client = web_client_factory(cmd.cli_ctx, api_version="2021-01-01") + return client.kube_environments def show_kube_environments(cmd, name, resource_group_name): - return format_kube_environment_json(KubeEnvironmentClient.show(cmd=cmd, - name=name, resource_group_name=resource_group_name)) + client = _get_kube_client(cmd) + return client.get(name=name, resource_group_name=resource_group_name) def delete_kube_environment(cmd, name, resource_group_name): @@ -331,7 +322,7 @@ def create_kube_environment(cmd, name, resource_group_name, custom_location, sta if is_valid_resource_id(custom_location): parsed_custom_location = parse_resource_id(custom_location) if parsed_custom_location['resource_type'].lower() != 'customlocations': - raise CLIError('Invalid custom location') + raise ValidationError('Invalid custom location') custom_location_object = custom_location_client.custom_locations.get( parsed_custom_location['resource_group'], parsed_custom_location['name']) @@ -376,11 +367,10 @@ def create_kube_environment(cmd, name, resource_group_name, custom_location, sta def list_kube_environments(cmd, resource_group_name=None): + client = _get_kube_client(cmd) if resource_group_name is None: - return KubeEnvironmentClient.list_by_subscription(cmd, formatter=format_kube_environment_json) - return KubeEnvironmentClient.list_by_resource_group(cmd, - resource_group_name, - formatter=format_kube_environment_json) + return client.list_by_subscription() + return client.list_by_resource_group(resource_group_name) # TODO should be able to update staticIp and tags -- remove exception once API fixed @@ -435,6 +425,8 @@ def create_app_service_plan(cmd, resource_group_name, name, is_linux, hyper_v, p custom_location=None, app_service_environment=None, sku=None, number_of_workers=None, location=None, tags=None, no_wait=False): + custom_location = _get_custom_location_id(cmd, custom_location, resource_group_name) + if not sku: sku = 'B1' if not custom_location else KUBE_DEFAULT_SKU @@ -470,20 +462,17 @@ def _get_kube_env_from_custom_location(cmd, custom_location, resource_group): custom_location_name = parsed_custom_location.get("name") resource_group = parsed_custom_location.get("resource_group") - kube_envs = KubeEnvironmentClient.list_by_subscription(cmd=cmd) + client = _get_kube_client(cmd) + kube_envs = client.list_by_subscription() for kube in kube_envs: parsed_custom_location_2 = None - if kube.get("properties") and kube["properties"].get('extendedLocation'): - parsed_custom_location_2 = parse_resource_id(kube["properties"]['extendedLocation']['customLocation']) - elif kube.get("extendedLocation") and kube.get("extendedLocation").get("type") == "CustomLocation": - parsed_custom_location_2 = parse_resource_id(kube["extendedLocation"]["name"]) + if kube.extended_location and kube.extended_location.type == "CustomLocation": + parsed_custom_location_2 = parse_resource_id(kube.extended_location.name) - if parsed_custom_location_2 and ( - parsed_custom_location_2.get("name").lower() == custom_location_name.lower()) and ( - parsed_custom_location_2.get("resource_group").lower() == resource_group.lower()): - kube_environment_id = kube.get("id") + if parsed_custom_location_2["name"].lower() == custom_location_name.lower() and parsed_custom_location_2.get("resource_group").lower() == resource_group.lower(): + kube_environment_id = kube.id break if not kube_environment_id: @@ -519,7 +508,7 @@ def _get_custom_location_id_from_kube_env(kube): return kube["properties"]['extendedLocation'].get('customLocation') if kube.get("extendedLocation") and kube["extendedLocation"].get("type") == "CustomLocation": return kube["extendedLocation"]["name"] - raise CLIError("Could not get custom location from kube environment") + raise ResourceNotFoundError("Could not get custom location from kube environment") def _ensure_kube_settings_in_json(appservice_plan_json, extended_location=None, kube_env=None): @@ -564,7 +553,7 @@ def create_app_service_plan_inner(cmd, resource_group_name, name, is_linux, hype ase_found = True break if not ase_found: - raise CLIError("App service environment '{}' not found in subscription.".format(ase_id)) + raise ResourceNotFoundError("App service environment '{}' not found in subscription.".format(ase_id)) else: # Non-ASE ase_def = None @@ -585,7 +574,7 @@ def create_app_service_plan_inner(cmd, resource_group_name, name, is_linux, hype if kube_env is not None: location = kube_env["location"] else: - raise CLIError("Kube Environment '{}' not found in subscription.".format(kube_id)) + raise ResourceNotFoundError("Kube Environment '{}' not found in subscription.".format(kube_id)) else: kube_def = None @@ -670,6 +659,22 @@ def _is_webapp_kube(custom_location, plan_info, SkuDescription): isinstance(plan_info.sku, SkuDescription) and plan_info.sku.name.upper() == KUBE_DEFAULT_SKU) +def _get_custom_location_id(cmd, custom_location, resource_group_name): + from msrestazure.tools import resource_id + + if custom_location is None: + return None + if is_valid_resource_id(custom_location): + return custom_location + + return resource_id( + subscription=get_subscription_id(cmd.cli_ctx), + resource_group=resource_group_name, + namespace='microsoft.extendedlocation', + type='customlocations', + name=custom_location) + + def create_webapp(cmd, resource_group_name, name, plan=None, runtime=None, custom_location=None, startup_file=None, # pylint: disable=too-many-statements,too-many-branches deployment_container_image_name=None, deployment_source_url=None, deployment_source_branch='master', deployment_local_git=None, docker_registry_server_password=None, docker_registry_server_user=None, @@ -681,6 +686,8 @@ def create_webapp(cmd, resource_group_name, name, plan=None, runtime=None, custo if deployment_source_url and deployment_local_git: raise CLIError('usage error: --deployment-source-url | --deployment-local-git') + custom_location = _get_custom_location_id(cmd, custom_location, resource_group_name) + if not plan and not custom_location: raise RequiredArgumentMissingError("Either Plan or Custom Location must be specified") @@ -945,6 +952,7 @@ def create_function(cmd, resource_group_name, name, storage_account, plan=None, SiteConfig, Site, NameValuePair = cmd.get_models('SiteConfig', 'Site', 'NameValuePair') docker_registry_server_url = parse_docker_image_name(deployment_container_image_name) + custom_location = _get_custom_location_id(cmd, custom_location, resource_group_name) site_config = SiteConfig(app_settings=[]) functionapp_def = Site(location=None, site_config=site_config, tags=tags) client = web_client_factory(cmd.cli_ctx) @@ -1675,3 +1683,102 @@ def _fill_ftp_publishing_url(cmd, webapp, resource_group_name, name, slot=None): pass return webapp + + +def _update_host_name_ssl_state(cmd, resource_group_name, webapp_name, webapp, + host_name, ssl_state, thumbprint, slot=None): + from azure.mgmt.web.models import HostNameSslState + + webapp.host_name_ssl_states = [HostNameSslState(name=host_name, + ssl_state=ssl_state, + thumbprint=thumbprint, + to_update=True)] + + webapp_dict = webapp.serialize() + + if webapp.extended_location is not None: + webapp_dict["extendedLocation"]["type"] = "customLocation" + + management_hostname = cmd.cli_ctx.cloud.endpoints.resource_manager + api_version = "2020-12-01" + sub_id = get_subscription_id(cmd.cli_ctx) + if slot is None: + url_fmt = "{}/subscriptions/{}/resourceGroups/{}/providers/Microsoft.Web/sites/{}?api-version={}" + request_url = url_fmt.format( + management_hostname.strip('/'), + sub_id, + resource_group_name, + webapp_name, + api_version) + else: + url_fmt = "{}/subscriptions/{}/resourceGroups/{}/providers/Microsoft.Web/sites/{}/slots/{}?api-version={}" + request_url = url_fmt.format( + management_hostname.strip('/'), + sub_id, + resource_group_name, + webapp_name, + slot, + api_version) + + return send_raw_request(cmd.cli_ctx, "PUT", request_url, body=json.dumps(webapp_dict)) + + +def _match_host_names_from_cert(hostnames_from_cert, hostnames_in_webapp): + # the goal is to match '*.foo.com' with host name like 'admin.foo.com', 'logs.foo.com', etc + matched = set() + for hostname in hostnames_from_cert: + if hostname.startswith('*'): + for h in hostnames_in_webapp: + if hostname[hostname.find('.'):] == h[h.find('.'):]: + matched.add(h) + elif hostname in hostnames_in_webapp: + matched.add(hostname) + return matched + + +def _update_ssl_binding(cmd, resource_group_name, name, certificate_thumbprint, ssl_type, slot=None): + client = web_client_factory(cmd.cli_ctx, api_version="2021-01-01") + webapp = client.web_apps.get(resource_group_name, name) + if not webapp: + raise ResourceNotFoundError("'{}' app doesn't exist".format(name)) + + cert_resource_group_name = parse_resource_id(webapp.server_farm_id)['resource_group'] + webapp_certs = client.certificates.list_by_resource_group(cert_resource_group_name) + + found_cert = None + for webapp_cert in webapp_certs: + if webapp_cert.thumbprint == certificate_thumbprint: + found_cert = webapp_cert + if not found_cert: + webapp_certs = client.certificates.list_by_resource_group(resource_group_name) + for webapp_cert in webapp_certs: + if webapp_cert.thumbprint == certificate_thumbprint: + found_cert = webapp_cert + if found_cert: + if len(found_cert.host_names) == 1 and not found_cert.host_names[0].startswith('*'): + return _update_host_name_ssl_state(cmd, resource_group_name, name, webapp, + found_cert.host_names[0], ssl_type, + certificate_thumbprint, slot) + + query_result = list_hostnames(cmd, resource_group_name, name, slot) + hostnames_in_webapp = [x.name.split('/')[-1] for x in query_result] + to_update = _match_host_names_from_cert(found_cert.host_names, hostnames_in_webapp) + for h in to_update: + _update_host_name_ssl_state(cmd, resource_group_name, name, webapp, + h, ssl_type, certificate_thumbprint, slot) + + return show_webapp(cmd, resource_group_name, name, slot) + + raise ResourceNotFoundError("Certificate for thumbprint '{}' not found.".format(certificate_thumbprint)) + + +def bind_ssl_cert(cmd, resource_group_name, name, certificate_thumbprint, ssl_type, slot=None): + SslState = cmd.get_models('SslState') + return _update_ssl_binding(cmd, resource_group_name, name, certificate_thumbprint, + SslState.sni_enabled if ssl_type == 'SNI' else SslState.ip_based_enabled, slot) + + +def unbind_ssl_cert(cmd, resource_group_name, name, certificate_thumbprint, slot=None): + SslState = cmd.get_models('SslState') + return _update_ssl_binding(cmd, resource_group_name, name, + certificate_thumbprint, SslState.disabled, slot) diff --git a/src/appservice-kube/azext_appservice_kube/tests/latest/test_appservice_kube_scenario.py b/src/appservice-kube/azext_appservice_kube/tests/latest/test_appservice_kube_scenario.py index 98fd540dfd0..7ce75143095 100644 --- a/src/appservice-kube/azext_appservice_kube/tests/latest/test_appservice_kube_scenario.py +++ b/src/appservice-kube/azext_appservice_kube/tests/latest/test_appservice_kube_scenario.py @@ -7,7 +7,7 @@ import unittest import base64 -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, RoleBasedServicePrincipalPreparer, live_only) TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) diff --git a/src/appservice-kube/setup.py b/src/appservice-kube/setup.py index b857d57665d..e314890d21a 100644 --- a/src/appservice-kube/setup.py +++ b/src/appservice-kube/setup.py @@ -16,7 +16,7 @@ # TODO: Confirm this is the right version number you want and it matches your # HISTORY.rst entry. -VERSION = '0.1.0' +VERSION = '0.1.2' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers diff --git a/src/attestation/azext_attestation/tests/latest/preparers.py b/src/attestation/azext_attestation/tests/latest/preparers.py index 49a511fc5f5..dceeb57c3cb 100644 --- a/src/attestation/azext_attestation/tests/latest/preparers.py +++ b/src/attestation/azext_attestation/tests/latest/preparers.py @@ -10,7 +10,7 @@ import os from datetime import datetime -from azure_devtools.scenario_tests import SingleValueReplacer +from azure.cli.testsdk.scenario_tests import SingleValueReplacer from azure.cli.testsdk.preparers import NoTrafficRecordingPreparer from azure.cli.testsdk.exceptions import CliTestError from azure.cli.testsdk.reverse_dependency import get_dummy_cli diff --git a/src/authV2/azext_authV2/tests/latest/test_authV2_scenario.py b/src/authV2/azext_authV2/tests/latest/test_authV2_scenario.py index 0f3432b2195..b0f43525d50 100644 --- a/src/authV2/azext_authV2/tests/latest/test_authV2_scenario.py +++ b/src/authV2/azext_authV2/tests/latest/test_authV2_scenario.py @@ -6,7 +6,7 @@ import os import unittest -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, JMESPathCheck) TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) diff --git a/src/azure-firewall/HISTORY.rst b/src/azure-firewall/HISTORY.rst index bdd9ae832bb..2d55f10b198 100644 --- a/src/azure-firewall/HISTORY.rst +++ b/src/azure-firewall/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +0.13.0 +++++++ +* `az network firewall policy`: fix a bug that will raise an error due to updating premium only property on standard policy + 0.12.0 ++++++ * `az network firewall policy rule-collection-group collection add-filter-collection`: Add parameter `--destination-fqdns` diff --git a/src/azure-firewall/azext_firewall/custom.py b/src/azure-firewall/azext_firewall/custom.py index 122744215ab..6980147d03d 100644 --- a/src/azure-firewall/azext_firewall/custom.py +++ b/src/azure-firewall/azext_firewall/custom.py @@ -626,7 +626,7 @@ def update_azure_firewall_policies(cmd, def set_azure_firewall_policies(cmd, resource_group_name, firewall_policy_name, parameters): - if parameters.identity is None: + if parameters.identity is None and parameters.sku.tier == 'Premium': ManagedServiceIdentity = cmd.get_models('ManagedServiceIdentity') identity = ManagedServiceIdentity(type="None", user_assigned_identities=None) 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 6f9e3491773..585cfffab74 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,12 +13,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_ip_config000001?api-version=2021-04-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","date":"2021-10-28T07:29:19Z"},"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","date":"2021-11-23T03:06:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:31:14 GMT + - Tue, 23 Nov 2021 03:06:45 GMT expires: - '-1' pragma: @@ -59,13 +59,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-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/\\\"2e06f344-26a7-4955-a56b-5ab4141e6b74\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"cbbe47ee-f22c-4c7d-8719-ed819cf6a138\\\"\",\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\": @@ -76,7 +76,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a16dd3ce-8cfb-4fe1-8d85-a6126c3d0779?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3d92994e-1fdd-4244-ab14-40a5f4bbbf10?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -84,7 +84,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:31:23 GMT + - Tue, 23 Nov 2021 03:06:53 GMT expires: - '-1' pragma: @@ -97,7 +97,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2abaef6e-8299-439d-914a-8f2ccb62c3aa + - f6d838cc-2f74-4fe4-9d4a-48212f22f5f9 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -117,9 +117,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a16dd3ce-8cfb-4fe1-8d85-a6126c3d0779?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3d92994e-1fdd-4244-ab14-40a5f4bbbf10?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -131,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:31:33 GMT + - Tue, 23 Nov 2021 03:07:03 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9ead4589-daef-4aa4-afc0-282b87f852d0 + - cc1dcb6b-b441-4045-be56-a8e7a28e4c06 status: code: 200 message: OK @@ -166,13 +166,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-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/\\\"dd0eb3e7-2d88-43cf-b3e8-2b54e5de732e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"56feb8b4-b929-4434-a7d3-8f138d449e0a\\\"\",\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\": @@ -187,9 +187,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:31:34 GMT + - Tue, 23 Nov 2021 03:07:04 GMT etag: - - W/"dd0eb3e7-2d88-43cf-b3e8-2b54e5de732e" + - W/"56feb8b4-b929-4434-a7d3-8f138d449e0a" expires: - '-1' pragma: @@ -206,7 +206,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1e19287e-add7-4040-aa47-41a8c33e40cb + - 9c9b2c1e-c999-45e1-aa33-aadd334479c9 status: code: 200 message: OK @@ -224,12 +224,12 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_ip_config000001?api-version=2021-04-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","date":"2021-10-28T07:29:19Z"},"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","date":"2021-11-23T03:06:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -238,7 +238,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:31:36 GMT + - Tue, 23 Nov 2021 03:07:04 GMT expires: - '-1' pragma: @@ -271,15 +271,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-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=2021-03-01 + 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=2021-05-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/\\\"ea7bd3a6-cb55-403c-a915-9b2e68a5605f\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"e8712ce9-00cb-4306-8178-b48b7e99bacc\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"b245561b-c986-48af-954c-224a27f5d279\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"1bd05af1-7de8-44ce-ae91-e3d23f5d5712\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n @@ -288,7 +288,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b6c79023-1ef3-456b-9093-71d3ec23a8a8?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b4928e79-f7b8-497b-84f1-f7ca404721b3?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -296,7 +296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:31:42 GMT + - Tue, 23 Nov 2021 03:07:12 GMT expires: - '-1' pragma: @@ -309,9 +309,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8881f1ea-b713-4338-b694-191aec45e85b + - 8d61f126-4d4c-4b9d-a86a-38b3607e120a x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -329,9 +329,9 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b6c79023-1ef3-456b-9093-71d3ec23a8a8?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b4928e79-f7b8-497b-84f1-f7ca404721b3?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -343,7 +343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:31:43 GMT + - Tue, 23 Nov 2021 03:07:13 GMT expires: - '-1' pragma: @@ -360,7 +360,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 747a8426-3e34-4fb1-a5d6-4e2eed0ae25e + - 637d15a0-4170-4521-824b-7a6b3508f2cc status: code: 200 message: OK @@ -378,16 +378,16 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-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=2021-03-01 + 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=2021-05-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/\\\"b87582ce-0828-457a-ae91-f77a5e19207f\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"e2492100-234d-4354-a461-00a223114e0b\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"b245561b-c986-48af-954c-224a27f5d279\",\r\n \"ipAddress\": - \"40.83.130.195\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"1bd05af1-7de8-44ce-ae91-e3d23f5d5712\",\r\n \"ipAddress\": + \"52.180.66.194\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" @@ -399,9 +399,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:31:43 GMT + - Tue, 23 Nov 2021 03:07:13 GMT etag: - - W/"b87582ce-0828-457a-ae91-f77a5e19207f" + - W/"e2492100-234d-4354-a461-00a223114e0b" expires: - '-1' pragma: @@ -418,7 +418,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f7cfab1d-d645-4142-bf57-2a37c2605082 + - 96fe93a1-6be7-47b1-b66e-82e05a035366 status: code: 200 message: OK @@ -436,12 +436,12 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_ip_config000001?api-version=2021-04-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","date":"2021-10-28T07:29:19Z"},"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","date":"2021-11-23T03:06:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -450,7 +450,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:31:45 GMT + - Tue, 23 Nov 2021 03:07:14 GMT expires: - '-1' pragma: @@ -483,15 +483,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-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=2021-03-01 + 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=2021-05-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/\\\"66f49998-b5a5-46d8-8ec0-4b4f49e246f8\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"6ad9f6e2-5d05-4d25-94ff-d43ecc8d4c42\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"b22f7348-07c7-4c46-bbba-1f8b954106cd\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"a23613be-cd73-4879-988a-82fecc5eadb6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n @@ -500,7 +500,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7249ea7a-a95b-4441-87fd-e7fb60812855?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/55e35642-7157-4583-9595-bef28dfedba5?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -508,7 +508,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:31:51 GMT + - Tue, 23 Nov 2021 03:07:22 GMT expires: - '-1' pragma: @@ -521,7 +521,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f0b213bf-c620-4bfb-a4ac-8e42871a853a + - a6cf94cb-75ac-455a-b9a5-7deedb6be859 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -541,9 +541,9 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7249ea7a-a95b-4441-87fd-e7fb60812855?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/55e35642-7157-4583-9595-bef28dfedba5?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -555,7 +555,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:31:52 GMT + - Tue, 23 Nov 2021 03:07:23 GMT expires: - '-1' pragma: @@ -572,7 +572,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a0719f01-0c4c-4d87-9e12-bedff4c367bc + - a9ecfeb5-8d9e-4495-b4e4-3d13052b0273 status: code: 200 message: OK @@ -590,16 +590,16 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-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=2021-03-01 + 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=2021-05-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/\\\"47c9be79-5ede-411c-9d01-23efcf8a3197\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"c8ce0eb4-f504-4929-a414-313bdd29bb61\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"b22f7348-07c7-4c46-bbba-1f8b954106cd\",\r\n \"ipAddress\": - \"40.118.148.6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"a23613be-cd73-4879-988a-82fecc5eadb6\",\r\n \"ipAddress\": + \"52.180.66.11\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" @@ -611,9 +611,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:31:53 GMT + - Tue, 23 Nov 2021 03:07:23 GMT etag: - - W/"47c9be79-5ede-411c-9d01-23efcf8a3197" + - W/"c8ce0eb4-f504-4929-a414-313bdd29bb61" expires: - '-1' pragma: @@ -630,7 +630,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 392fbbbd-3600-4f3a-a3f9-23d13fba11a6 + - 87bc060d-6543-4eb4-95ac-eeb698e5bc86 status: code: 200 message: OK @@ -648,12 +648,12 @@ interactions: ParameterSetName: - -g -n --subnet-name --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_ip_config000001?api-version=2021-04-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","date":"2021-10-28T07:29:19Z"},"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","date":"2021-11-23T03:06:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -662,7 +662,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:31:54 GMT + - Tue, 23 Nov 2021 03:07:24 GMT expires: - '-1' pragma: @@ -697,21 +697,21 @@ interactions: ParameterSetName: - -g -n --subnet-name --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-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=2021-03-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=2021-05-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/\\\"610f45f7-e8d3-4800-91f3-31aad35dc6fe\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c0bce2f4-2091-4c21-ab07-da26161b89e6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"9b72cfca-68a7-4e95-9d0b-3249b85d1721\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"c8ba0fcc-f425-4103-9e7a-a7a4b8ec06da\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/\\\"610f45f7-e8d3-4800-91f3-31aad35dc6fe\\\"\",\r\n + \ \"etag\": \"W/\\\"c0bce2f4-2091-4c21-ab07-da26161b89e6\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -722,7 +722,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/12012dcb-0e46-42f0-befb-e8b85b605e0b?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/094d8be4-2ce1-4291-b9b4-8c7c063794d2?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -730,7 +730,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:32:03 GMT + - Tue, 23 Nov 2021 03:07:31 GMT expires: - '-1' pragma: @@ -743,9 +743,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0b8752b5-24d8-4c1e-a6c5-213a6a4d82cf + - 80a6bfd4-4ae5-4359-9386-f39e39a62e7a x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -763,9 +763,9 @@ interactions: ParameterSetName: - -g -n --subnet-name --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/12012dcb-0e46-42f0-befb-e8b85b605e0b?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/094d8be4-2ce1-4291-b9b4-8c7c063794d2?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -777,7 +777,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:32:06 GMT + - Tue, 23 Nov 2021 03:07:34 GMT expires: - '-1' pragma: @@ -794,7 +794,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c460b0ab-9438-4c84-85cf-ac182d6314fe + - 68672705-bf60-4fd7-a48b-213654a0b162 status: code: 200 message: OK @@ -812,21 +812,21 @@ interactions: ParameterSetName: - -g -n --subnet-name --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-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=2021-03-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=2021-05-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/\\\"941df437-24d9-4397-90b0-540630523133\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"30c6b290-fd68-4084-9df4-986137309baa\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"9b72cfca-68a7-4e95-9d0b-3249b85d1721\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"c8ba0fcc-f425-4103-9e7a-a7a4b8ec06da\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/\\\"941df437-24d9-4397-90b0-540630523133\\\"\",\r\n + \ \"etag\": \"W/\\\"30c6b290-fd68-4084-9df4-986137309baa\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -841,9 +841,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:32:06 GMT + - Tue, 23 Nov 2021 03:07:34 GMT etag: - - W/"941df437-24d9-4397-90b0-540630523133" + - W/"30c6b290-fd68-4084-9df4-986137309baa" expires: - '-1' pragma: @@ -860,7 +860,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2fb4aa4c-8cb2-48c3-aa52-e5a209da4f9d + - cfb04934-32df-4d78-8344-99429e3d8e6a status: code: 200 message: OK @@ -878,13 +878,13 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-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/\\\"dd0eb3e7-2d88-43cf-b3e8-2b54e5de732e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"56feb8b4-b929-4434-a7d3-8f138d449e0a\\\"\",\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\": @@ -899,9 +899,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:32:09 GMT + - Tue, 23 Nov 2021 03:07:36 GMT etag: - - W/"dd0eb3e7-2d88-43cf-b3e8-2b54e5de732e" + - W/"56feb8b4-b929-4434-a7d3-8f138d449e0a" expires: - '-1' pragma: @@ -918,7 +918,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1ddb9ad4-3723-4311-bd1c-f14cd63070c5 + - db5d03e7-975e-4ea0-b195-db898662d24c status: code: 200 message: OK @@ -946,19 +946,19 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-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/\\\"80774e89-babf-4105-861f-07e750952026\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"57433aec-c6a2-4dd4-9264-0502b0300fc7\\\"\",\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 {\r\n \"name\": \"myipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"80774e89-babf-4105-861f-07e750952026\\\"\",\r\n + \ \"etag\": \"W/\\\"57433aec-c6a2-4dd4-9264-0502b0300fc7\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -971,7 +971,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a9d6c146-94cf-4fe2-9774-94d7980da747?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/90abd110-c352-4b66-a024-8f666c6ae26f?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -979,7 +979,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:32:09 GMT + - Tue, 23 Nov 2021 03:07:37 GMT expires: - '-1' pragma: @@ -996,58 +996,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 270c9aa7-2e67-461e-b937-fc40d17e2891 + - 3da521ca-802c-47a4-b147-49d9f067e731 x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config create - Connection: - - keep-alive - ParameterSetName: - - -g -n -f --public-ip-address --vnet-name - User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a9d6c146-94cf-4fe2-9774-94d7980da747?api-version=2020-07-01 - 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, 28 Oct 2021 07:32:20 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-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 110d0297-4e1f-44af-9f42-dde2db8dbd57 + - '1198' status: code: 200 message: OK @@ -1065,9 +1016,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a9d6c146-94cf-4fe2-9774-94d7980da747?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/90abd110-c352-4b66-a024-8f666c6ae26f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1079,7 +1030,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:32:30 GMT + - Tue, 23 Nov 2021 03:07:48 GMT expires: - '-1' pragma: @@ -1096,7 +1047,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e6fadaed-7f4e-43d3-b309-7eeb9fa45b19 + - e3519570-6794-4b47-89eb-bb9e51bd5908 status: code: 200 message: OK @@ -1114,9 +1065,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a9d6c146-94cf-4fe2-9774-94d7980da747?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/90abd110-c352-4b66-a024-8f666c6ae26f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1128,7 +1079,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:32:50 GMT + - Tue, 23 Nov 2021 03:07:58 GMT expires: - '-1' pragma: @@ -1145,7 +1096,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 362a0040-4418-4604-8e5f-8c28d83a28ac + - edca02b8-ffcd-4e25-bb95-dc0a194ad556 status: code: 200 message: OK @@ -1163,9 +1114,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a9d6c146-94cf-4fe2-9774-94d7980da747?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/90abd110-c352-4b66-a024-8f666c6ae26f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1177,7 +1128,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:33:10 GMT + - Tue, 23 Nov 2021 03:08:18 GMT expires: - '-1' pragma: @@ -1194,7 +1145,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 92ad484f-f2dd-40ec-8705-d328b43fc0ce + - 8019d873-792e-4470-a3dd-93c192a853fd status: code: 200 message: OK @@ -1212,9 +1163,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a9d6c146-94cf-4fe2-9774-94d7980da747?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/90abd110-c352-4b66-a024-8f666c6ae26f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1226,7 +1177,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:33:51 GMT + - Tue, 23 Nov 2021 03:08:39 GMT expires: - '-1' pragma: @@ -1243,7 +1194,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d2cc2567-807d-4207-94f9-7d3a8533ffae + - f804123a-65fd-49d1-b253-85a5e80cb255 status: code: 200 message: OK @@ -1261,9 +1212,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a9d6c146-94cf-4fe2-9774-94d7980da747?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/90abd110-c352-4b66-a024-8f666c6ae26f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1275,7 +1226,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:34:31 GMT + - Tue, 23 Nov 2021 03:09:19 GMT expires: - '-1' pragma: @@ -1292,7 +1243,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 181aa072-b51e-4f69-ba12-0a6655e7c903 + - a6505cf7-7ec8-4790-bd3a-7d928f1175f4 status: code: 200 message: OK @@ -1310,9 +1261,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a9d6c146-94cf-4fe2-9774-94d7980da747?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/90abd110-c352-4b66-a024-8f666c6ae26f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1324,7 +1275,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:35:52 GMT + - Tue, 23 Nov 2021 03:09:59 GMT expires: - '-1' pragma: @@ -1341,7 +1292,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3c1404a5-62ed-474c-9c31-8698752d6f8d + - 2dde6fe9-8194-416b-b09e-ab19bfc2deb7 status: code: 200 message: OK @@ -1359,9 +1310,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a9d6c146-94cf-4fe2-9774-94d7980da747?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/90abd110-c352-4b66-a024-8f666c6ae26f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1373,7 +1324,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:38:33 GMT + - Tue, 23 Nov 2021 03:11:20 GMT expires: - '-1' pragma: @@ -1390,7 +1341,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 79945ac2-ed23-4ffc-a7f5-abfc0db30dcf + - b58549a7-15d1-42c5-b313-8577de0479f4 status: code: 200 message: OK @@ -1408,19 +1359,19 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-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/\\\"7911bd1a-c051-49a9-aff1-34849448aa29\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f985df2b-4bf1-4fa9-b303-0fa47319ace5\\\"\",\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 {\r\n \"name\": \"myipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"7911bd1a-c051-49a9-aff1-34849448aa29\\\"\",\r\n + \ \"etag\": \"W/\\\"f985df2b-4bf1-4fa9-b303-0fa47319ace5\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1437,9 +1388,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:38:34 GMT + - Tue, 23 Nov 2021 03:11:20 GMT etag: - - W/"7911bd1a-c051-49a9-aff1-34849448aa29" + - W/"f985df2b-4bf1-4fa9-b303-0fa47319ace5" expires: - '-1' pragma: @@ -1456,7 +1407,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7d971e92-566c-4f33-9f33-c9868de240e7 + - 6f475ba0-5789-4a39-83a7-07985d914ed9 status: code: 200 message: OK @@ -1474,19 +1425,19 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-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/\\\"7911bd1a-c051-49a9-aff1-34849448aa29\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f985df2b-4bf1-4fa9-b303-0fa47319ace5\\\"\",\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 {\r\n \"name\": \"myipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"7911bd1a-c051-49a9-aff1-34849448aa29\\\"\",\r\n + \ \"etag\": \"W/\\\"f985df2b-4bf1-4fa9-b303-0fa47319ace5\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1503,9 +1454,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:38:36 GMT + - Tue, 23 Nov 2021 03:11:21 GMT etag: - - W/"7911bd1a-c051-49a9-aff1-34849448aa29" + - W/"f985df2b-4bf1-4fa9-b303-0fa47319ace5" expires: - '-1' pragma: @@ -1522,7 +1473,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e0ea9f07-68fd-4b3c-bf66-0c8ffba2b4ea + - a717d923-834f-487a-a4ce-0e48f48f8570 status: code: 200 message: OK @@ -1551,19 +1502,19 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-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/\\\"2286f774-a2cd-4802-96cb-f962255a3356\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6c9950e8-f2f7-4010-a2bb-17bdb22b3940\\\"\",\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 {\r\n \"name\": \"myipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"2286f774-a2cd-4802-96cb-f962255a3356\\\"\",\r\n + \ \"etag\": \"W/\\\"6c9950e8-f2f7-4010-a2bb-17bdb22b3940\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1571,7 +1522,7 @@ interactions: \ },\r\n \"subnet\": {\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 \ }\r\n }\r\n },\r\n {\r\n \"name\": \"myipconfig2\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig2\",\r\n - \ \"etag\": \"W/\\\"2286f774-a2cd-4802-96cb-f962255a3356\\\"\",\r\n + \ \"etag\": \"W/\\\"6c9950e8-f2f7-4010-a2bb-17bdb22b3940\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -1583,7 +1534,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00bad64e-08e9-4685-9990-192ee986ce01?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9fb5bee9-8fe6-4fbb-90e4-917c1458c782?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -1591,7 +1542,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:38:36 GMT + - Tue, 23 Nov 2021 03:11:22 GMT expires: - '-1' pragma: @@ -1608,58 +1559,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7f3fb7ce-a8c8-462a-8949-f967df850d59 + - cd60db9e-ce90-4873-8767-e4f99ffa2daa x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config create - Connection: - - keep-alive - ParameterSetName: - - -g -n -f --public-ip-address - User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00bad64e-08e9-4685-9990-192ee986ce01?api-version=2020-07-01 - 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, 28 Oct 2021 07:38:47 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-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 1d1bcdc6-c9c0-496a-8180-be3a4a3278a1 + - '1198' status: code: 200 message: OK @@ -1677,9 +1579,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00bad64e-08e9-4685-9990-192ee986ce01?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9fb5bee9-8fe6-4fbb-90e4-917c1458c782?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1691,7 +1593,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:38:57 GMT + - Tue, 23 Nov 2021 03:11:32 GMT expires: - '-1' pragma: @@ -1708,7 +1610,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 095e9689-8cd2-42f4-bc07-8e41c44218c8 + - c2bc42e7-5c3e-4da6-b78d-da5740dd2839 status: code: 200 message: OK @@ -1726,9 +1628,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00bad64e-08e9-4685-9990-192ee986ce01?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9fb5bee9-8fe6-4fbb-90e4-917c1458c782?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1740,7 +1642,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:39:17 GMT + - Tue, 23 Nov 2021 03:11:42 GMT expires: - '-1' pragma: @@ -1757,7 +1659,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 551bf71a-d391-4b47-a4f0-5248ca4cd73b + - 6e12ca1b-e22d-4aed-8829-5e5d214e5741 status: code: 200 message: OK @@ -1775,9 +1677,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00bad64e-08e9-4685-9990-192ee986ce01?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9fb5bee9-8fe6-4fbb-90e4-917c1458c782?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1789,7 +1691,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:39:37 GMT + - Tue, 23 Nov 2021 03:12:03 GMT expires: - '-1' pragma: @@ -1806,7 +1708,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6be75b2c-b00c-42fe-91f0-3376135bea10 + - 3a226292-e771-4c6c-b726-c6a51354c976 status: code: 200 message: OK @@ -1824,9 +1726,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00bad64e-08e9-4685-9990-192ee986ce01?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9fb5bee9-8fe6-4fbb-90e4-917c1458c782?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1838,7 +1740,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:40:19 GMT + - Tue, 23 Nov 2021 03:12:23 GMT expires: - '-1' pragma: @@ -1855,7 +1757,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 048196af-1e99-4a4b-9ab0-ddc5ce7905eb + - 3cfd3d9a-5f64-466d-83fd-7f7954a4711d status: code: 200 message: OK @@ -1873,9 +1775,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/00bad64e-08e9-4685-9990-192ee986ce01?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9fb5bee9-8fe6-4fbb-90e4-917c1458c782?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1887,7 +1789,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:40:59 GMT + - Tue, 23 Nov 2021 03:13:04 GMT expires: - '-1' pragma: @@ -1904,7 +1806,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7d40b097-80a8-4007-ad39-26ff116b067f + - 0d7c4cc7-ab88-4511-986d-c37bfe893f8f status: code: 200 message: OK @@ -1922,19 +1824,19 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-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/\\\"89ace27b-b957-4ace-95df-94503ab8ded2\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d57700d3-cf59-4c65-8a08-5b0b9acfe33a\\\"\",\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 {\r\n \"name\": \"myipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"89ace27b-b957-4ace-95df-94503ab8ded2\\\"\",\r\n + \ \"etag\": \"W/\\\"d57700d3-cf59-4c65-8a08-5b0b9acfe33a\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1942,7 +1844,7 @@ interactions: \ },\r\n \"subnet\": {\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 \ }\r\n }\r\n },\r\n {\r\n \"name\": \"myipconfig2\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig2\",\r\n - \ \"etag\": \"W/\\\"89ace27b-b957-4ace-95df-94503ab8ded2\\\"\",\r\n + \ \"etag\": \"W/\\\"d57700d3-cf59-4c65-8a08-5b0b9acfe33a\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -1958,9 +1860,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:40:59 GMT + - Tue, 23 Nov 2021 03:13:05 GMT etag: - - W/"89ace27b-b957-4ace-95df-94503ab8ded2" + - W/"d57700d3-cf59-4c65-8a08-5b0b9acfe33a" expires: - '-1' pragma: @@ -1977,7 +1879,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4f058c86-da03-4a61-b278-93efaef92532 + - 8067120e-b4fb-425e-ad58-07b2a3425caf status: code: 200 message: OK @@ -1995,19 +1897,19 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-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/\\\"89ace27b-b957-4ace-95df-94503ab8ded2\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d57700d3-cf59-4c65-8a08-5b0b9acfe33a\\\"\",\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 {\r\n \"name\": \"myipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"89ace27b-b957-4ace-95df-94503ab8ded2\\\"\",\r\n + \ \"etag\": \"W/\\\"d57700d3-cf59-4c65-8a08-5b0b9acfe33a\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -2015,7 +1917,7 @@ interactions: \ },\r\n \"subnet\": {\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 \ }\r\n }\r\n },\r\n {\r\n \"name\": \"myipconfig2\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig2\",\r\n - \ \"etag\": \"W/\\\"89ace27b-b957-4ace-95df-94503ab8ded2\\\"\",\r\n + \ \"etag\": \"W/\\\"d57700d3-cf59-4c65-8a08-5b0b9acfe33a\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -2031,9 +1933,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:41:00 GMT + - Tue, 23 Nov 2021 03:13:05 GMT etag: - - W/"89ace27b-b957-4ace-95df-94503ab8ded2" + - W/"d57700d3-cf59-4c65-8a08-5b0b9acfe33a" expires: - '-1' pragma: @@ -2050,7 +1952,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 13d6cddd-89a3-4b5c-b785-7dacd12dc7f8 + - 9c23d29e-0cee-4098-97fb-6544178f9958 status: code: 200 message: OK @@ -2078,19 +1980,19 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-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/\\\"ce1cc813-e625-41a2-b86b-90cca16bf959\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9c962062-1d59-43ec-b18a-42788dad2d0b\\\"\",\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 {\r\n \"name\": \"myipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"ce1cc813-e625-41a2-b86b-90cca16bf959\\\"\",\r\n + \ \"etag\": \"W/\\\"9c962062-1d59-43ec-b18a-42788dad2d0b\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -2103,7 +2005,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e86fade7-df6a-4147-a20b-e6dd661ce799?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f687a1e4-60cb-46ab-b78f-32a3e08e03d4?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -2111,7 +2013,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:41:01 GMT + - Tue, 23 Nov 2021 03:13:06 GMT expires: - '-1' pragma: @@ -2128,9 +2030,58 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2601bc82-9f2d-42e1-a257-9e64cfa9efb5 + - b170f638-0afc-4463-b87f-6b700412a4d6 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config delete + Connection: + - keep-alive + ParameterSetName: + - -g -n -f + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f687a1e4-60cb-46ab-b78f-32a3e08e03d4?api-version=2020-07-01 + 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: + - Tue, 23 Nov 2021 03:13:16 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a08e1d0d-175d-4fd0-a4c3-4fe95a15fdb0 status: code: 200 message: OK @@ -2148,9 +2099,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e86fade7-df6a-4147-a20b-e6dd661ce799?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f687a1e4-60cb-46ab-b78f-32a3e08e03d4?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2162,7 +2113,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:41:12 GMT + - Tue, 23 Nov 2021 03:13:26 GMT expires: - '-1' pragma: @@ -2179,7 +2130,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f8b2c7a4-be1c-412e-85d9-6ef6a1ffbb4c + - fdad26df-d141-435f-aaf8-bb7e91f8aa48 status: code: 200 message: OK @@ -2197,9 +2148,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e86fade7-df6a-4147-a20b-e6dd661ce799?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f687a1e4-60cb-46ab-b78f-32a3e08e03d4?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2211,7 +2162,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:41:22 GMT + - Tue, 23 Nov 2021 03:13:48 GMT expires: - '-1' pragma: @@ -2228,7 +2179,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2a74c86f-a4d6-4085-b692-c7a723284f95 + - ee67099a-891b-4b81-8d06-3978ea562cc2 status: code: 200 message: OK @@ -2246,9 +2197,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e86fade7-df6a-4147-a20b-e6dd661ce799?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f687a1e4-60cb-46ab-b78f-32a3e08e03d4?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2260,7 +2211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:41:42 GMT + - Tue, 23 Nov 2021 03:14:08 GMT expires: - '-1' pragma: @@ -2277,7 +2228,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 57cc639e-bfe6-40c7-b41b-81cd5a81a5dc + - e7280cc8-807a-4c0f-99af-0e2c0134dc51 status: code: 200 message: OK @@ -2295,9 +2246,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e86fade7-df6a-4147-a20b-e6dd661ce799?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f687a1e4-60cb-46ab-b78f-32a3e08e03d4?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2309,7 +2260,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:42:03 GMT + - Tue, 23 Nov 2021 03:14:48 GMT expires: - '-1' pragma: @@ -2326,7 +2277,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - de43251e-9ed0-419e-ad57-8ee806ef0f30 + - 20f0b5e4-8c66-40b9-a90e-08cfa21888d1 status: code: 200 message: OK @@ -2344,9 +2295,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e86fade7-df6a-4147-a20b-e6dd661ce799?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f687a1e4-60cb-46ab-b78f-32a3e08e03d4?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2358,7 +2309,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:42:43 GMT + - Tue, 23 Nov 2021 03:15:28 GMT expires: - '-1' pragma: @@ -2375,7 +2326,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 57c07b96-3be2-4b7c-a051-f0f77bd047c5 + - 930b36fe-cf4a-40b5-bdd8-1016f3148250 status: code: 200 message: OK @@ -2393,19 +2344,19 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-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/\\\"4dcbebca-da75-4479-ba2b-ab431b7b5591\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"59df8743-09d0-4c46-b1d8-74ebb461fa48\\\"\",\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 {\r\n \"name\": \"myipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"4dcbebca-da75-4479-ba2b-ab431b7b5591\\\"\",\r\n + \ \"etag\": \"W/\\\"59df8743-09d0-4c46-b1d8-74ebb461fa48\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -2422,9 +2373,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:42:43 GMT + - Tue, 23 Nov 2021 03:15:28 GMT etag: - - W/"4dcbebca-da75-4479-ba2b-ab431b7b5591" + - W/"59df8743-09d0-4c46-b1d8-74ebb461fa48" expires: - '-1' pragma: @@ -2441,7 +2392,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f3d778e9-2b38-4b5c-917a-a323ed19faf0 + - c837ce73-4940-446b-a470-9d719c960868 status: code: 200 message: OK @@ -2459,19 +2410,19 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-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/\\\"4dcbebca-da75-4479-ba2b-ab431b7b5591\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"59df8743-09d0-4c46-b1d8-74ebb461fa48\\\"\",\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 {\r\n \"name\": \"myipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"4dcbebca-da75-4479-ba2b-ab431b7b5591\\\"\",\r\n + \ \"etag\": \"W/\\\"59df8743-09d0-4c46-b1d8-74ebb461fa48\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -2488,9 +2439,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:42:46 GMT + - Tue, 23 Nov 2021 03:15:29 GMT etag: - - W/"4dcbebca-da75-4479-ba2b-ab431b7b5591" + - W/"59df8743-09d0-4c46-b1d8-74ebb461fa48" expires: - '-1' pragma: @@ -2507,7 +2458,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 08462f52-9232-4668-83ee-3570b283c2a2 + - 1b9cd9bd-d9f5-476e-a475-d0f8abb90269 status: code: 200 message: OK @@ -2532,13 +2483,13 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-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/\\\"0fa5869f-e3db-4d77-a472-903860d6958a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"791533f0-f2ec-48c4-9d3c-c715a380653e\\\"\",\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\": @@ -2549,7 +2500,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8389eb74-ff61-4123-b9fa-55d3715dfca6?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d601adfa-8067-4ffd-8e47-9b26c9c56e26?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -2557,7 +2508,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:42:46 GMT + - Tue, 23 Nov 2021 03:15:30 GMT expires: - '-1' pragma: @@ -2574,7 +2525,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bd900661-06a8-4b85-b1db-03cc189c8aa3 + - 1402d23f-b190-4952-bc25-18b5d4ae64cf x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -2594,9 +2545,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8389eb74-ff61-4123-b9fa-55d3715dfca6?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d601adfa-8067-4ffd-8e47-9b26c9c56e26?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2608,7 +2559,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:42:57 GMT + - Tue, 23 Nov 2021 03:15:40 GMT expires: - '-1' pragma: @@ -2625,7 +2576,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8b97f88b-cf68-45bf-9ad6-056d8889bd92 + - 0fe6acf3-305f-4b67-917f-fce488e5a23b status: code: 200 message: OK @@ -2643,9 +2594,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8389eb74-ff61-4123-b9fa-55d3715dfca6?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d601adfa-8067-4ffd-8e47-9b26c9c56e26?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2657,7 +2608,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:43:07 GMT + - Tue, 23 Nov 2021 03:15:50 GMT expires: - '-1' pragma: @@ -2674,7 +2625,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b86bdcb9-7582-48e7-a84e-1c9ddef995d9 + - 0fc5043f-bcb4-438e-ade1-ec362788efdd status: code: 200 message: OK @@ -2692,9 +2643,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8389eb74-ff61-4123-b9fa-55d3715dfca6?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d601adfa-8067-4ffd-8e47-9b26c9c56e26?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2706,7 +2657,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:43:27 GMT + - Tue, 23 Nov 2021 03:16:11 GMT expires: - '-1' pragma: @@ -2723,7 +2674,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e2e27fed-ed08-4f8d-9da6-2b12d1e3d1b2 + - cf54fe70-2801-4787-ac4f-01888b5d7de3 status: code: 200 message: OK @@ -2741,9 +2692,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8389eb74-ff61-4123-b9fa-55d3715dfca6?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d601adfa-8067-4ffd-8e47-9b26c9c56e26?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2755,7 +2706,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:43:47 GMT + - Tue, 23 Nov 2021 03:16:33 GMT expires: - '-1' pragma: @@ -2772,7 +2723,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 68042148-156d-4a0e-99a7-2adab8ed623f + - a4a66fa1-291e-4caa-a2cb-3fa29e72b1e6 status: code: 200 message: OK @@ -2790,9 +2741,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8389eb74-ff61-4123-b9fa-55d3715dfca6?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d601adfa-8067-4ffd-8e47-9b26c9c56e26?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2804,7 +2755,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:44:28 GMT + - Tue, 23 Nov 2021 03:17:13 GMT expires: - '-1' pragma: @@ -2821,7 +2772,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0c704321-61c8-4f22-a5ab-0cb65009b519 + - caf03ed2-5392-4737-b97d-c75ebe111478 status: code: 200 message: OK @@ -2839,9 +2790,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8389eb74-ff61-4123-b9fa-55d3715dfca6?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d601adfa-8067-4ffd-8e47-9b26c9c56e26?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2853,7 +2804,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:45:08 GMT + - Tue, 23 Nov 2021 03:17:53 GMT expires: - '-1' pragma: @@ -2870,7 +2821,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 55486c00-662d-4ed3-ba30-a781959c65dc + - 9a683b56-b6f0-4ea8-b0b8-2f04d8241300 status: code: 200 message: OK @@ -2888,9 +2839,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8389eb74-ff61-4123-b9fa-55d3715dfca6?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d601adfa-8067-4ffd-8e47-9b26c9c56e26?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2902,7 +2853,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:46:29 GMT + - Tue, 23 Nov 2021 03:19:14 GMT expires: - '-1' pragma: @@ -2919,7 +2870,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e3f9002e-aabe-4e6b-a37f-09a8a146642f + - 798d5b7a-e77d-42c0-b65f-d270df43c08a status: code: 200 message: OK @@ -2937,9 +2888,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8389eb74-ff61-4123-b9fa-55d3715dfca6?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d601adfa-8067-4ffd-8e47-9b26c9c56e26?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2951,7 +2902,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:49:09 GMT + - Tue, 23 Nov 2021 03:21:54 GMT expires: - '-1' pragma: @@ -2968,7 +2919,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5baf9457-b589-4c38-9f1e-0f16505724ec + - 94beb92d-0917-418a-a11f-a91d60c73361 status: code: 200 message: OK @@ -2986,13 +2937,13 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-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/\\\"cf725250-a0dd-49d4-af2e-c7caef933581\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"461f6167-7d8d-4ebe-91b9-ef01a376d303\\\"\",\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\": @@ -3007,9 +2958,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:49:10 GMT + - Tue, 23 Nov 2021 03:21:55 GMT etag: - - W/"cf725250-a0dd-49d4-af2e-c7caef933581" + - W/"461f6167-7d8d-4ebe-91b9-ef01a376d303" expires: - '-1' pragma: @@ -3026,7 +2977,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0ead77cc-b8cf-40ba-b0a1-6c221ff54f2d + - 9eeb958a-675d-4eec-8e63-99af57815dbc status: code: 200 message: OK diff --git a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_management_ip_config.yaml b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_management_ip_config.yaml index 8890da49fc7..f85560bfb42 100644 --- a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_management_ip_config.yaml +++ b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_management_ip_config.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_firewall_management_ip_config000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001","name":"test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-10-28T06:59:23Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001","name":"test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T03:06:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:01:20 GMT + - Tue, 23 Nov 2021 03:06:46 GMT expires: - '-1' pragma: @@ -59,13 +59,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"90357a24-1617-4070-af18-5919c5972a42\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"582b2b17-3de8-4b9f-8645-b7c52f579e27\\\"\",\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\": @@ -76,7 +76,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/75ad671c-b14b-46a1-b2a4-19c9815a63f1?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/edf1c1d5-608d-47a5-9f47-fd711e9c0457?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -84,7 +84,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:01:26 GMT + - Tue, 23 Nov 2021 03:06:52 GMT expires: - '-1' pragma: @@ -97,9 +97,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0e874788-8751-4d7c-b5d3-668b35bf6b6a + - 1dd0c483-316a-4801-b768-6f6e29892626 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -117,9 +117,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/75ad671c-b14b-46a1-b2a4-19c9815a63f1?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/edf1c1d5-608d-47a5-9f47-fd711e9c0457?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -131,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:01:37 GMT + - Tue, 23 Nov 2021 03:07:02 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2252732a-d821-4dcc-99cc-f8fc705949d4 + - 3b488cd3-6fb3-4388-901d-809886d061c9 status: code: 200 message: OK @@ -166,13 +166,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"a120b2af-a74c-4c5d-874b-5715ac3ac7ab\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"287132bf-1c1b-4f11-b6ec-47b30111e305\\\"\",\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\": @@ -187,9 +187,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:01:37 GMT + - Tue, 23 Nov 2021 03:07:02 GMT etag: - - W/"a120b2af-a74c-4c5d-874b-5715ac3ac7ab" + - W/"287132bf-1c1b-4f11-b6ec-47b30111e305" expires: - '-1' pragma: @@ -206,7 +206,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fc78f251-1111-4010-8bf2-a0cd2649ffae + - ca5a1f0e-1201-4b62-97cc-6b02333ff039 status: code: 200 message: OK @@ -224,12 +224,12 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_firewall_management_ip_config000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001","name":"test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-10-28T06:59:23Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001","name":"test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T03:06:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -238,7 +238,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:01:43 GMT + - Tue, 23 Nov 2021 03:07:04 GMT expires: - '-1' pragma: @@ -271,15 +271,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"pubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip\",\r\n - \ \"etag\": \"W/\\\"1b039087-90ab-4e4a-83ea-c2e266fb9a18\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"f335c507-c1b5-4b95-b68c-56130b0213ce\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"72768cd9-4e6c-4436-88ad-daa3480103a7\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"ef8cdd0f-0aa5-47c8-a18e-f3a7faf858b3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n @@ -288,7 +288,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/07a338f4-d7ab-4f7b-bd1f-ee94917dfc94?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/05f0ece2-f82b-4395-a3bc-c5979e09c8ea?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -296,7 +296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:01:49 GMT + - Tue, 23 Nov 2021 03:07:12 GMT expires: - '-1' pragma: @@ -309,7 +309,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 23596a13-a327-482c-b706-8ca6ad91653e + - 49315000-8c05-44eb-8880-b3ec81946094 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -329,9 +329,9 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/07a338f4-d7ab-4f7b-bd1f-ee94917dfc94?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/05f0ece2-f82b-4395-a3bc-c5979e09c8ea?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -343,7 +343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:01:50 GMT + - Tue, 23 Nov 2021 03:07:13 GMT expires: - '-1' pragma: @@ -360,7 +360,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - be81de18-cf2b-4247-95cb-3051a668c13c + - b4120028-5898-425d-a1cd-c7bd04063120 status: code: 200 message: OK @@ -378,16 +378,16 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"pubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip\",\r\n - \ \"etag\": \"W/\\\"db0608e6-8190-4c0b-af5d-17e433bbc32d\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"05a2b854-bf3d-4a31-88cc-b6c2367224f0\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"72768cd9-4e6c-4436-88ad-daa3480103a7\",\r\n \"ipAddress\": - \"13.87.187.10\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"ef8cdd0f-0aa5-47c8-a18e-f3a7faf858b3\",\r\n \"ipAddress\": + \"52.180.67.4\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" @@ -395,13 +395,13 @@ interactions: cache-control: - no-cache content-length: - - '720' + - '719' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:01:51 GMT + - Tue, 23 Nov 2021 03:07:13 GMT etag: - - W/"db0608e6-8190-4c0b-af5d-17e433bbc32d" + - W/"05a2b854-bf3d-4a31-88cc-b6c2367224f0" expires: - '-1' pragma: @@ -418,7 +418,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0898212b-9e8e-4e2b-89e6-6356aa23abaa + - cc591ee2-9ed4-4798-925d-5bb71461712a status: code: 200 message: OK @@ -436,12 +436,12 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_firewall_management_ip_config000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001","name":"test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-10-28T06:59:23Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001","name":"test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T03:06:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -450,13 +450,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:01:53 GMT + - Tue, 23 Nov 2021 03:07:13 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -481,15 +483,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"pubip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2\",\r\n - \ \"etag\": \"W/\\\"36bdd49f-4726-4a44-9695-d7ffef7fd275\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"b263d4f1-ccc2-4675-9b3b-dd0dd124b10e\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"4a3cebf0-2687-4282-b9e5-18ae59fe70c8\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"d8144c38-0f7b-4ed6-b0e6-d68e07db0571\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n @@ -498,7 +500,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c7b725d2-a52f-4f3a-982f-ecd0be23aa22?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/067056f1-241a-4925-840b-160678cbb35d?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -506,7 +508,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:00 GMT + - Tue, 23 Nov 2021 03:07:21 GMT expires: - '-1' pragma: @@ -519,7 +521,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6b534b2c-ccd3-4de1-9e15-497d5b99e926 + - c676076b-c66f-499d-8bca-84a26c6ef7f5 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -539,9 +541,9 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c7b725d2-a52f-4f3a-982f-ecd0be23aa22?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/067056f1-241a-4925-840b-160678cbb35d?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -553,7 +555,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:02 GMT + - Tue, 23 Nov 2021 03:07:22 GMT expires: - '-1' pragma: @@ -570,7 +572,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 258a98db-a3de-45e3-9941-c3791780926e + - 4dec88a6-1cf5-4ab7-adea-7d49904777cf status: code: 200 message: OK @@ -588,16 +590,16 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"pubip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2\",\r\n - \ \"etag\": \"W/\\\"883383f5-a2e7-4079-b77c-544f858284df\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"f360afd2-add9-4ccf-b16b-b1d81393d4fc\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"4a3cebf0-2687-4282-b9e5-18ae59fe70c8\",\r\n \"ipAddress\": - \"13.87.187.218\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"d8144c38-0f7b-4ed6-b0e6-d68e07db0571\",\r\n \"ipAddress\": + \"52.180.67.7\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" @@ -605,13 +607,13 @@ interactions: cache-control: - no-cache content-length: - - '723' + - '721' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:02 GMT + - Tue, 23 Nov 2021 03:07:22 GMT etag: - - W/"883383f5-a2e7-4079-b77c-544f858284df" + - W/"f360afd2-add9-4ccf-b16b-b1d81393d4fc" expires: - '-1' pragma: @@ -628,7 +630,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9f3d4078-048f-42b9-8eee-00ff5a9f87dd + - 61998a79-036a-481a-8674-478d7a86a9f8 status: code: 200 message: OK @@ -646,12 +648,12 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_firewall_management_ip_config000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001","name":"test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-10-28T06:59:23Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001","name":"test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T03:06:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -660,7 +662,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:04 GMT + - Tue, 23 Nov 2021 03:07:23 GMT expires: - '-1' pragma: @@ -693,15 +695,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"pubip3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3\",\r\n - \ \"etag\": \"W/\\\"92213b1b-ca8c-44ed-af20-61434acfb8ef\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"31193c33-b475-4850-982f-764833d6bafb\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"8cf4ed46-19f8-4ca0-98e0-e6cdb167afcb\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"0253c8a0-625d-445f-a097-9adc96b3f5f3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n @@ -710,7 +712,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ceb6c2ba-4429-4628-bf5a-2db11cd105aa?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae01c782-3838-4292-9ca0-c290f3613eb7?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -718,7 +720,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:12 GMT + - Tue, 23 Nov 2021 03:07:31 GMT expires: - '-1' pragma: @@ -731,9 +733,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 639b45b6-1600-4b88-9512-72101c1abb85 + - 58b809d2-a39a-4ea1-aa66-643d0ffc7530 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -751,9 +753,9 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ceb6c2ba-4429-4628-bf5a-2db11cd105aa?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae01c782-3838-4292-9ca0-c290f3613eb7?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -765,7 +767,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:14 GMT + - Tue, 23 Nov 2021 03:07:32 GMT expires: - '-1' pragma: @@ -782,7 +784,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b2cee647-87b8-458f-bfd5-6e39d86cfad7 + - 9487b004-c3d6-4ded-b12a-546f49612f1a status: code: 200 message: OK @@ -800,16 +802,16 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"pubip3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3\",\r\n - \ \"etag\": \"W/\\\"1e3c191f-3cff-47a0-ae49-a314eeb02e12\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"dfbb4e4d-a2b7-40b4-8a17-ea19c34c5e48\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"8cf4ed46-19f8-4ca0-98e0-e6cdb167afcb\",\r\n \"ipAddress\": - \"13.87.203.148\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"0253c8a0-625d-445f-a097-9adc96b3f5f3\",\r\n \"ipAddress\": + \"52.180.66.101\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" @@ -821,9 +823,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:14 GMT + - Tue, 23 Nov 2021 03:07:33 GMT etag: - - W/"1e3c191f-3cff-47a0-ae49-a314eeb02e12" + - W/"dfbb4e4d-a2b7-40b4-8a17-ea19c34c5e48" expires: - '-1' pragma: @@ -840,7 +842,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9b54f71a-b239-4709-84e5-95a54885b4f5 + - 3264581c-f21c-4abc-b3cb-5379fbb4daee status: code: 200 message: OK @@ -858,12 +860,12 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_firewall_management_ip_config000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001","name":"test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-10-28T06:59:23Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001","name":"test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T03:06:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -872,7 +874,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:16 GMT + - Tue, 23 Nov 2021 03:07:33 GMT expires: - '-1' pragma: @@ -905,15 +907,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip4?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip4?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"pubip4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip4\",\r\n - \ \"etag\": \"W/\\\"e83c3c19-aac3-433b-9854-f5026ab92dab\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"d1ab6aae-f49c-4bfe-894e-eac899aed0b1\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"0e283538-6d89-426f-a46f-d5aed3d2efbe\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"de42a620-e56b-4ddf-947e-f14ac97fbff0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n @@ -922,7 +924,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d05099fc-4909-42c1-8d53-60eb885d5cff?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7718fb6a-a88f-4672-bd5d-31219db40f4d?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -930,7 +932,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:25 GMT + - Tue, 23 Nov 2021 03:07:41 GMT expires: - '-1' pragma: @@ -943,7 +945,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c70d0cd6-7266-4d9c-98bd-ba65e09d1d0c + - 15d75161-9b29-4ee3-8d9f-c65182e4e28b x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -963,9 +965,9 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d05099fc-4909-42c1-8d53-60eb885d5cff?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7718fb6a-a88f-4672-bd5d-31219db40f4d?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -977,7 +979,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:26 GMT + - Tue, 23 Nov 2021 03:07:42 GMT expires: - '-1' pragma: @@ -994,7 +996,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 81d80bba-6b0f-4d44-be8b-2c50e60b4764 + - e0ff3c3c-4f55-42a4-82a4-08887cd8e991 status: code: 200 message: OK @@ -1012,16 +1014,16 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip4?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip4?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"pubip4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip4\",\r\n - \ \"etag\": \"W/\\\"36273104-32a2-47e0-8102-5e9993ab0c03\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"47b270ac-2953-4502-87b8-12a90e34fa98\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"0e283538-6d89-426f-a46f-d5aed3d2efbe\",\r\n \"ipAddress\": - \"52.160.82.166\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"de42a620-e56b-4ddf-947e-f14ac97fbff0\",\r\n \"ipAddress\": + \"52.180.67.21\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" @@ -1029,13 +1031,13 @@ interactions: cache-control: - no-cache content-length: - - '723' + - '722' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:27 GMT + - Tue, 23 Nov 2021 03:07:43 GMT etag: - - W/"36273104-32a2-47e0-8102-5e9993ab0c03" + - W/"47b270ac-2953-4502-87b8-12a90e34fa98" expires: - '-1' pragma: @@ -1052,7 +1054,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9cf994f0-19d5-4dec-af95-4d28b695bd30 + - 5340b73b-9323-4706-af47-ff4a6ea26729 status: code: 200 message: OK @@ -1070,12 +1072,12 @@ interactions: ParameterSetName: - -g -n --subnet-name --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_firewall_management_ip_config000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001","name":"test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-10-28T06:59:23Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001","name":"test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T03:06:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1084,7 +1086,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:29 GMT + - Tue, 23 Nov 2021 03:07:44 GMT expires: - '-1' pragma: @@ -1119,21 +1121,21 @@ interactions: ParameterSetName: - -g -n --subnet-name --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n - \ \"etag\": \"W/\\\"26b5cfab-f48e-4cb4-bfcf-dfaf010adfc5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"54c95890-e56c-4e5a-92cf-77fec0cfcab8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"bce0e3d6-c8a3-48a5-aabf-28f240289ccf\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"94e9a9ba-b68f-4b73-86db-65b7f165ccd3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallSubnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\",\r\n - \ \"etag\": \"W/\\\"26b5cfab-f48e-4cb4-bfcf-dfaf010adfc5\\\"\",\r\n + \ \"etag\": \"W/\\\"54c95890-e56c-4e5a-92cf-77fec0cfcab8\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1144,7 +1146,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9e1ce6df-eace-41fe-98f4-750047ef85e8?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/30fd67a6-302a-4818-ac86-f8473251e226?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -1152,7 +1154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:37 GMT + - Tue, 23 Nov 2021 03:07:50 GMT expires: - '-1' pragma: @@ -1165,9 +1167,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4b808ca8-0cb1-47f1-badf-3bedf7c537c2 + - c39b18cd-32de-4b5e-be6a-9a8fe8fb4f62 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -1185,9 +1187,9 @@ interactions: ParameterSetName: - -g -n --subnet-name --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9e1ce6df-eace-41fe-98f4-750047ef85e8?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/30fd67a6-302a-4818-ac86-f8473251e226?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1199,7 +1201,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:40 GMT + - Tue, 23 Nov 2021 03:07:54 GMT expires: - '-1' pragma: @@ -1216,7 +1218,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 655fd53e-98ed-4988-88a5-a81b639feb0a + - 7465e4c3-f7db-44df-96c2-be45dd37aa1c status: code: 200 message: OK @@ -1234,21 +1236,21 @@ interactions: ParameterSetName: - -g -n --subnet-name --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n - \ \"etag\": \"W/\\\"244dbcb6-3b2b-4979-99ba-a7fa07b85bcc\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"53f1eff2-12b8-4535-8798-2490fe9c6cb0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"bce0e3d6-c8a3-48a5-aabf-28f240289ccf\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"94e9a9ba-b68f-4b73-86db-65b7f165ccd3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallSubnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\",\r\n - \ \"etag\": \"W/\\\"244dbcb6-3b2b-4979-99ba-a7fa07b85bcc\\\"\",\r\n + \ \"etag\": \"W/\\\"53f1eff2-12b8-4535-8798-2490fe9c6cb0\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1263,9 +1265,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:42 GMT + - Tue, 23 Nov 2021 03:07:54 GMT etag: - - W/"244dbcb6-3b2b-4979-99ba-a7fa07b85bcc" + - W/"53f1eff2-12b8-4535-8798-2490fe9c6cb0" expires: - '-1' pragma: @@ -1282,7 +1284,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f0620ad8-b506-449a-9e9f-9fbabf4f579d + - a4dfbdeb-63f4-4d68-928d-d80e55ab7783 status: code: 200 message: OK @@ -1300,13 +1302,13 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"a120b2af-a74c-4c5d-874b-5715ac3ac7ab\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"287132bf-1c1b-4f11-b6ec-47b30111e305\\\"\",\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\": @@ -1321,9 +1323,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:45 GMT + - Tue, 23 Nov 2021 03:07:55 GMT etag: - - W/"a120b2af-a74c-4c5d-874b-5715ac3ac7ab" + - W/"287132bf-1c1b-4f11-b6ec-47b30111e305" expires: - '-1' pragma: @@ -1340,7 +1342,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 19844f16-0b6c-4c51-b215-3abd86c8a26d + - 68e2867a-8e34-4a44-86d5-f829a7066c8e status: code: 200 message: OK @@ -1368,19 +1370,19 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"93a0aef7-de46-4436-b27d-7aebfb373139\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d54a13b1-ddf3-4975-b3b1-35cc8702be11\\\"\",\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 {\r\n \"name\": \"myipconfig3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig3\",\r\n - \ \"etag\": \"W/\\\"93a0aef7-de46-4436-b27d-7aebfb373139\\\"\",\r\n + \ \"etag\": \"W/\\\"d54a13b1-ddf3-4975-b3b1-35cc8702be11\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -1393,7 +1395,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/af93795b-0077-4abf-aee9-c5be509f4a2e?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/444b4b0b-a80b-4d3f-9861-c26bce0dee47?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -1401,7 +1403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:46 GMT + - Tue, 23 Nov 2021 03:07:56 GMT expires: - '-1' pragma: @@ -1418,58 +1420,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7160d2fc-a212-4544-a8a2-e5e450b4842f + - 61387a8a-0c09-4a79-8ff9-9a4b9e239edc x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config create - Connection: - - keep-alive - ParameterSetName: - - -g -n -f --public-ip-address --vnet-name - User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/af93795b-0077-4abf-aee9-c5be509f4a2e?api-version=2020-07-01 - 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, 28 Oct 2021 07:02:57 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-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - b8879335-5f4c-4086-af10-4c0a2e0d8da4 + - '1199' status: code: 200 message: OK @@ -1487,9 +1440,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/af93795b-0077-4abf-aee9-c5be509f4a2e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/444b4b0b-a80b-4d3f-9861-c26bce0dee47?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1501,7 +1454,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:03:07 GMT + - Tue, 23 Nov 2021 03:08:07 GMT expires: - '-1' pragma: @@ -1518,7 +1471,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b3ee11f0-7dfc-4904-b27a-7e77e95a4d1e + - 84e32b5d-095d-4e7b-9aad-cba7b8ca0f14 status: code: 200 message: OK @@ -1536,9 +1489,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/af93795b-0077-4abf-aee9-c5be509f4a2e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/444b4b0b-a80b-4d3f-9861-c26bce0dee47?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1550,7 +1503,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:03:27 GMT + - Tue, 23 Nov 2021 03:08:17 GMT expires: - '-1' pragma: @@ -1567,7 +1520,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c8cab4ed-2815-4885-87e2-6531e5ecade4 + - 5a75de44-2201-4342-8568-4e7ba84175e5 status: code: 200 message: OK @@ -1585,9 +1538,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/af93795b-0077-4abf-aee9-c5be509f4a2e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/444b4b0b-a80b-4d3f-9861-c26bce0dee47?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1599,7 +1552,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:03:47 GMT + - Tue, 23 Nov 2021 03:08:38 GMT expires: - '-1' pragma: @@ -1616,7 +1569,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 233c616f-fcaa-4561-a6cc-c840b57d708a + - d72eaec6-5daf-45ba-9d73-8b9e354be03f status: code: 200 message: OK @@ -1634,9 +1587,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/af93795b-0077-4abf-aee9-c5be509f4a2e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/444b4b0b-a80b-4d3f-9861-c26bce0dee47?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1648,7 +1601,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:04:28 GMT + - Tue, 23 Nov 2021 03:08:58 GMT expires: - '-1' pragma: @@ -1665,7 +1618,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6d1b2352-f11f-4dfe-80df-1a31ae82272b + - 9befc543-f406-4ea3-9317-1839ab8f9696 status: code: 200 message: OK @@ -1683,9 +1636,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/af93795b-0077-4abf-aee9-c5be509f4a2e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/444b4b0b-a80b-4d3f-9861-c26bce0dee47?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1697,7 +1650,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:05:08 GMT + - Tue, 23 Nov 2021 03:09:39 GMT expires: - '-1' pragma: @@ -1714,7 +1667,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4dcc390f-c19b-490c-8d8a-ddb704cb757d + - 9b3a8079-f9c3-4745-ad43-51d8de21c416 status: code: 200 message: OK @@ -1732,9 +1685,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/af93795b-0077-4abf-aee9-c5be509f4a2e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/444b4b0b-a80b-4d3f-9861-c26bce0dee47?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1746,7 +1699,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:06:29 GMT + - Tue, 23 Nov 2021 03:10:19 GMT expires: - '-1' pragma: @@ -1763,7 +1716,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6d9253b8-8d9c-4aff-af62-c29e5ebff401 + - fa7af3ee-13f4-40f5-be6b-8e6ba1d39afd status: code: 200 message: OK @@ -1781,9 +1734,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/af93795b-0077-4abf-aee9-c5be509f4a2e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/444b4b0b-a80b-4d3f-9861-c26bce0dee47?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1795,7 +1748,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:09:10 GMT + - Tue, 23 Nov 2021 03:11:39 GMT expires: - '-1' pragma: @@ -1812,7 +1765,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6ac2ba02-5dad-436d-8881-60b0857b73c5 + - ad1284df-512c-468b-a174-3f80b090a8aa status: code: 200 message: OK @@ -1830,19 +1783,19 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"e7d90bb5-5ace-42e8-9d77-6953549d222e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9637e2bc-2547-4285-8b0c-8718e5d187fd\\\"\",\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 {\r\n \"name\": \"myipconfig3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig3\",\r\n - \ \"etag\": \"W/\\\"e7d90bb5-5ace-42e8-9d77-6953549d222e\\\"\",\r\n + \ \"etag\": \"W/\\\"9637e2bc-2547-4285-8b0c-8718e5d187fd\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1859,9 +1812,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:09:10 GMT + - Tue, 23 Nov 2021 03:11:40 GMT etag: - - W/"e7d90bb5-5ace-42e8-9d77-6953549d222e" + - W/"9637e2bc-2547-4285-8b0c-8718e5d187fd" expires: - '-1' pragma: @@ -1878,7 +1831,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 98828b98-fefa-4a74-99da-3ba429281e25 + - 0886caa2-2b37-45c5-9925-89c6fb0d99e7 status: code: 200 message: OK @@ -1896,19 +1849,19 @@ interactions: ParameterSetName: - -g -f -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"e7d90bb5-5ace-42e8-9d77-6953549d222e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9637e2bc-2547-4285-8b0c-8718e5d187fd\\\"\",\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 {\r\n \"name\": \"myipconfig3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig3\",\r\n - \ \"etag\": \"W/\\\"e7d90bb5-5ace-42e8-9d77-6953549d222e\\\"\",\r\n + \ \"etag\": \"W/\\\"9637e2bc-2547-4285-8b0c-8718e5d187fd\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1925,9 +1878,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:09:13 GMT + - Tue, 23 Nov 2021 03:11:42 GMT etag: - - W/"e7d90bb5-5ace-42e8-9d77-6953549d222e" + - W/"9637e2bc-2547-4285-8b0c-8718e5d187fd" expires: - '-1' pragma: @@ -1944,7 +1897,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1310567d-72c3-4aa4-b41a-8a61d9717d79 + - 72731eb3-f0e0-40e8-b3be-a045954d15b3 status: code: 200 message: OK @@ -1969,13 +1922,13 @@ interactions: ParameterSetName: - -g -f -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"70ab447f-5e38-45ac-8f15-9b7fb89e6625\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"31b804f1-3113-4235-84ca-2c03558906d5\\\"\",\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\": @@ -1986,7 +1939,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18d1950c-e5c6-428c-b086-1224d452a2d7?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb9da1ec-01f4-4de9-acab-cc34078ee012?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -1994,7 +1947,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:09:13 GMT + - Tue, 23 Nov 2021 03:11:42 GMT expires: - '-1' pragma: @@ -2011,7 +1964,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d961620b-f351-4630-b1a0-f652335f8455 + - d4decd8b-f54b-400e-a206-60af09200f72 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2031,9 +1984,58 @@ interactions: ParameterSetName: - -g -f -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb9da1ec-01f4-4de9-acab-cc34078ee012?api-version=2020-07-01 + 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: + - Tue, 23 Nov 2021 03:11: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 57f43757-9d51-47bd-aef8-1f59f5ab9465 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config delete + Connection: + - keep-alive + ParameterSetName: + - -g -f -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18d1950c-e5c6-428c-b086-1224d452a2d7?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb9da1ec-01f4-4de9-acab-cc34078ee012?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2045,7 +2047,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:09:24 GMT + - Tue, 23 Nov 2021 03:12:03 GMT expires: - '-1' pragma: @@ -2062,7 +2064,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 271030b7-0a5e-4a40-98c7-3dfdae10482d + - 615c243c-89b0-4dd6-92bc-3acfe725ca33 status: code: 200 message: OK @@ -2080,9 +2082,9 @@ interactions: ParameterSetName: - -g -f -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18d1950c-e5c6-428c-b086-1224d452a2d7?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb9da1ec-01f4-4de9-acab-cc34078ee012?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2094,7 +2096,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:09:34 GMT + - Tue, 23 Nov 2021 03:12:23 GMT expires: - '-1' pragma: @@ -2111,7 +2113,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 85dd9f9c-74d7-4dcb-b07a-e7e16f81d9fe + - 0ff26bc1-95f7-493e-a18f-422aaf48071f status: code: 200 message: OK @@ -2129,9 +2131,9 @@ interactions: ParameterSetName: - -g -f -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18d1950c-e5c6-428c-b086-1224d452a2d7?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb9da1ec-01f4-4de9-acab-cc34078ee012?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2143,7 +2145,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:09:54 GMT + - Tue, 23 Nov 2021 03:12:43 GMT expires: - '-1' pragma: @@ -2160,7 +2162,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6436ac13-546c-48ae-a257-6ce5f89c51a6 + - 155aa95b-ee6e-4135-bbaf-abe74ed21786 status: code: 200 message: OK @@ -2178,9 +2180,9 @@ interactions: ParameterSetName: - -g -f -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18d1950c-e5c6-428c-b086-1224d452a2d7?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb9da1ec-01f4-4de9-acab-cc34078ee012?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2192,7 +2194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:10:15 GMT + - Tue, 23 Nov 2021 03:13:24 GMT expires: - '-1' pragma: @@ -2209,7 +2211,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 929ee523-05d8-4fc5-ba1f-acd112668bbe + - 491a4990-1c7f-478d-a47e-4e5fb87f1de2 status: code: 200 message: OK @@ -2227,9 +2229,9 @@ interactions: ParameterSetName: - -g -f -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18d1950c-e5c6-428c-b086-1224d452a2d7?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb9da1ec-01f4-4de9-acab-cc34078ee012?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2241,7 +2243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:10:56 GMT + - Tue, 23 Nov 2021 03:14:04 GMT expires: - '-1' pragma: @@ -2258,7 +2260,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 44359bfa-a429-47bf-96d4-3819801839f1 + - f7749160-30c3-4076-b774-85b0f5ae5bff status: code: 200 message: OK @@ -2276,9 +2278,9 @@ interactions: ParameterSetName: - -g -f -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18d1950c-e5c6-428c-b086-1224d452a2d7?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb9da1ec-01f4-4de9-acab-cc34078ee012?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2290,7 +2292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:11:36 GMT + - Tue, 23 Nov 2021 03:15:25 GMT expires: - '-1' pragma: @@ -2307,7 +2309,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - afe4b00c-2588-4ba2-b22e-57ad1a4f7262 + - 89c064fd-9b76-488f-9697-a6d98edd1aa7 status: code: 200 message: OK @@ -2325,9 +2327,9 @@ interactions: ParameterSetName: - -g -f -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18d1950c-e5c6-428c-b086-1224d452a2d7?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb9da1ec-01f4-4de9-acab-cc34078ee012?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2339,7 +2341,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:12:57 GMT + - Tue, 23 Nov 2021 03:18:05 GMT expires: - '-1' pragma: @@ -2356,7 +2358,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - da5f3059-3388-41c1-85ab-8a50583131c4 + - f7ba36d9-3b91-48be-9cf3-a8c74d915371 status: code: 200 message: OK @@ -2374,13 +2376,13 @@ interactions: ParameterSetName: - -g -f -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"7b312a0f-2cef-4d13-8c29-ab27b4e32641\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"786004ff-7a16-4f84-8efc-0e24896b3f98\\\"\",\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\": @@ -2395,9 +2397,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:12:58 GMT + - Tue, 23 Nov 2021 03:18:05 GMT etag: - - W/"7b312a0f-2cef-4d13-8c29-ab27b4e32641" + - W/"786004ff-7a16-4f84-8efc-0e24896b3f98" expires: - '-1' pragma: @@ -2414,7 +2416,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d313feae-87a8-4334-8527-89c97496d744 + - 6fdfdcad-ff70-4136-af74-a3a2374389cf status: code: 200 message: OK @@ -2432,13 +2434,13 @@ interactions: ParameterSetName: - -g -f -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"7b312a0f-2cef-4d13-8c29-ab27b4e32641\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"786004ff-7a16-4f84-8efc-0e24896b3f98\\\"\",\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\": @@ -2453,9 +2455,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:12:59 GMT + - Tue, 23 Nov 2021 03:18:07 GMT etag: - - W/"7b312a0f-2cef-4d13-8c29-ab27b4e32641" + - W/"786004ff-7a16-4f84-8efc-0e24896b3f98" expires: - '-1' pragma: @@ -2472,7 +2474,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f6176d3e-0a13-4814-81ba-94b266d9fac5 + - e1c7e27b-52df-43e8-97b9-79b6c02d3bad status: code: 200 message: OK @@ -2497,13 +2499,13 @@ interactions: ParameterSetName: - -g -f -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"7b312a0f-2cef-4d13-8c29-ab27b4e32641\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"786004ff-7a16-4f84-8efc-0e24896b3f98\\\"\",\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\": @@ -2514,7 +2516,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e38a72fd-d87d-46b1-ac74-a1eab0687045?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b7ae541b-1b2b-43c1-a241-920b46479847?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -2522,7 +2524,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:13:00 GMT + - Tue, 23 Nov 2021 03:18:07 GMT expires: - '-1' pragma: @@ -2539,7 +2541,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 310c75c3-7053-448b-97fd-412d1e147cc8 + - 61e7fc01-d738-4472-8840-8ce81e534654 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2559,9 +2561,9 @@ interactions: ParameterSetName: - -g -f -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e38a72fd-d87d-46b1-ac74-a1eab0687045?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b7ae541b-1b2b-43c1-a241-920b46479847?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2573,7 +2575,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:13:30 GMT + - Tue, 23 Nov 2021 03:18:37 GMT expires: - '-1' pragma: @@ -2590,7 +2592,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ee3f2800-c297-4116-95bb-dd1936c7e480 + - ec35e9a3-f08d-4211-88fc-76197c35612a status: code: 200 message: OK @@ -2608,13 +2610,13 @@ interactions: ParameterSetName: - -g -f -n User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"7b312a0f-2cef-4d13-8c29-ab27b4e32641\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"786004ff-7a16-4f84-8efc-0e24896b3f98\\\"\",\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\": @@ -2629,9 +2631,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:13:30 GMT + - Tue, 23 Nov 2021 03:18:37 GMT etag: - - W/"7b312a0f-2cef-4d13-8c29-ab27b4e32641" + - W/"786004ff-7a16-4f84-8efc-0e24896b3f98" expires: - '-1' pragma: @@ -2648,7 +2650,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2aaab33c-8438-44ed-9922-4ddbefc055c1 + - ed8dd547-56a8-4821-a14f-df8a32daf255 status: code: 200 message: OK @@ -2666,13 +2668,13 @@ interactions: ParameterSetName: - -g -f User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"7b312a0f-2cef-4d13-8c29-ab27b4e32641\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"786004ff-7a16-4f84-8efc-0e24896b3f98\\\"\",\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\": @@ -2687,9 +2689,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:13:33 GMT + - Tue, 23 Nov 2021 03:18:39 GMT etag: - - W/"7b312a0f-2cef-4d13-8c29-ab27b4e32641" + - W/"786004ff-7a16-4f84-8efc-0e24896b3f98" expires: - '-1' pragma: @@ -2706,7 +2708,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 014efa44-e1ed-479a-9131-fb55a4d09dea + - ff0e8fbf-dad5-4d56-a9f8-1a472a9cd0c0 status: code: 200 message: OK diff --git a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_policy_update_premiumonlyproperty_issue.yaml b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_policy_update_premiumonlyproperty_issue.yaml new file mode 100644 index 00000000000..5b906be24fa --- /dev/null +++ b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_policy_update_premiumonlyproperty_issue.yaml @@ -0,0 +1,412 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall policy create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --threat-intel-mode + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_firewall_policy_update_premiumonlyproperty_issue000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_policy_update_premiumonlyproperty_issue000001","name":"test_azure_firewall_policy_update_premiumonlyproperty_issue000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2021-11-23T02:41:30Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '433' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 23 Nov 2021 02:41:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus2euap", "properties": {"threatIntelMode": "Alert", + "sku": {"tier": "Standard"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall policy create + Connection: + - keep-alive + Content-Length: + - '100' + Content-Type: + - application/json + ParameterSetName: + - -g -n --sku --threat-intel-mode + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_policy_update_premiumonlyproperty_issue000001/providers/Microsoft.Network/firewallPolicies/testpolicy?api-version=2020-07-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Standard\"\r\n + \ },\r\n \"threatIntelMode\": \"Alert\",\r\n \"childPolicies\": [],\r\n + \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": + \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_policy_update_premiumonlyproperty_issue000001/providers/Microsoft.Network/firewallPolicies/testpolicy\",\r\n + \ \"name\": \"testpolicy\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n + \ \"etag\": \"7b0e1fe4-19fb-406c-93d7-5be4d7d89aa8\",\r\n \"location\": \"eastus2euap\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/nfvOperations/9c5620e0-cbc2-42de-b097-3ac246c64960?api-version=2020-07-01 + cache-control: + - no-cache + content-length: + - '593' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 23 Nov 2021 02:41:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall policy create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --threat-intel-mode + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/nfvOperations/9c5620e0-cbc2-42de-b097-3ac246c64960?api-version=2020-07-01 + 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: + - Tue, 23 Nov 2021 02:41:54 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-content-type-options: + - nosniff + 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 --sku --threat-intel-mode + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_policy_update_premiumonlyproperty_issue000001/providers/Microsoft.Network/firewallPolicies/testpolicy?api-version=2020-07-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Standard\"\r\n + \ },\r\n \"threatIntelMode\": \"Alert\",\r\n \"childPolicies\": [],\r\n + \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": + \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_policy_update_premiumonlyproperty_issue000001/providers/Microsoft.Network/firewallPolicies/testpolicy\",\r\n + \ \"name\": \"testpolicy\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n + \ \"etag\": \"7b0e1fe4-19fb-406c-93d7-5be4d7d89aa8\",\r\n \"location\": \"eastus2euap\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '594' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 23 Nov 2021 02:41:55 GMT + etag: + - '"7b0e1fe4-19fb-406c-93d7-5be4d7d89aa8"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall policy update + Connection: + - keep-alive + ParameterSetName: + - -g -n --threat-intel-mode + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_policy_update_premiumonlyproperty_issue000001/providers/Microsoft.Network/firewallPolicies/testpolicy?api-version=2020-07-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Standard\"\r\n + \ },\r\n \"threatIntelMode\": \"Alert\",\r\n \"childPolicies\": [],\r\n + \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": + \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_policy_update_premiumonlyproperty_issue000001/providers/Microsoft.Network/firewallPolicies/testpolicy\",\r\n + \ \"name\": \"testpolicy\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n + \ \"etag\": \"7b0e1fe4-19fb-406c-93d7-5be4d7d89aa8\",\r\n \"location\": \"eastus2euap\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '594' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 23 Nov 2021 02:41:58 GMT + etag: + - '"7b0e1fe4-19fb-406c-93d7-5be4d7d89aa8"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_policy_update_premiumonlyproperty_issue000001/providers/Microsoft.Network/firewallPolicies/testpolicy", + "location": "eastus2euap", "properties": {"threatIntelMode": "Deny", "sku": + {"tier": "Standard"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall policy update + Connection: + - keep-alive + Content-Length: + - '307' + Content-Type: + - application/json + ParameterSetName: + - -g -n --threat-intel-mode + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_policy_update_premiumonlyproperty_issue000001/providers/Microsoft.Network/firewallPolicies/testpolicy?api-version=2020-07-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Standard\"\r\n + \ },\r\n \"threatIntelMode\": \"Deny\",\r\n \"childPolicies\": [],\r\n + \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": + \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_policy_update_premiumonlyproperty_issue000001/providers/Microsoft.Network/firewallPolicies/testpolicy\",\r\n + \ \"name\": \"testpolicy\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n + \ \"etag\": \"6778a7ed-84da-45b8-ab7c-cb84b2ec965d\",\r\n \"location\": \"eastus2euap\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/nfvOperations/2a527da0-a0af-4ab4-b2f9-a8eefc67e901?api-version=2020-07-01 + cache-control: + - no-cache + content-length: + - '592' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 23 Nov 2021 02:41:59 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-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall policy update + Connection: + - keep-alive + ParameterSetName: + - -g -n --threat-intel-mode + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/nfvOperations/2a527da0-a0af-4ab4-b2f9-a8eefc67e901?api-version=2020-07-01 + 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: + - Tue, 23 Nov 2021 02:42: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-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall policy update + Connection: + - keep-alive + ParameterSetName: + - -g -n --threat-intel-mode + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_policy_update_premiumonlyproperty_issue000001/providers/Microsoft.Network/firewallPolicies/testpolicy?api-version=2020-07-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Standard\"\r\n + \ },\r\n \"threatIntelMode\": \"Deny\",\r\n \"childPolicies\": [],\r\n + \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": + \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_policy_update_premiumonlyproperty_issue000001/providers/Microsoft.Network/firewallPolicies/testpolicy\",\r\n + \ \"name\": \"testpolicy\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n + \ \"etag\": \"6778a7ed-84da-45b8-ab7c-cb84b2ec965d\",\r\n \"location\": \"eastus2euap\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '593' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 23 Nov 2021 02:42:10 GMT + etag: + - '"6778a7ed-84da-45b8-ab7c-cb84b2ec965d"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +version: 1 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 df41cd338ea..2d61f1812fa 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 @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_with_firewall_policy000001?api-version=2021-04-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","date":"2021-10-28T06:59:54Z"},"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","date":"2021-11-23T03:06:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:01:51 GMT + - Tue, 23 Nov 2021 03:06:44 GMT expires: - '-1' pragma: @@ -59,13 +59,13 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-05-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/\\\"58cf8fff-e9cb-4ff8-85fb-cc96709524da\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"296960d0-8272-4a24-b0f0-7df4eca4c977\\\"\",\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\": @@ -74,7 +74,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4ed45257-d25b-41c9-b89c-b775f4b2427f?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4a2dfdb3-170a-43e6-8137-01f1a87ac1a4?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:00 GMT + - Tue, 23 Nov 2021 03:06:49 GMT expires: - '-1' pragma: @@ -95,7 +95,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e60adfae-1a25-4fb5-87fd-b5767881cad1 + - d113ea6a-9439-432a-a08b-58e595f7ebcf x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -115,9 +115,9 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4ed45257-d25b-41c9-b89c-b775f4b2427f?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4a2dfdb3-170a-43e6-8137-01f1a87ac1a4?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -129,7 +129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:10 GMT + - Tue, 23 Nov 2021 03:06:59 GMT expires: - '-1' pragma: @@ -146,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8020fab4-9b30-4ed2-b44e-d3bc088bb864 + - f693624f-977a-4de3-91e3-d5ff1fc58b49 status: code: 200 message: OK @@ -164,13 +164,13 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-05-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/\\\"0f697390-4401-471b-a2b2-4b4809982709\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4c32b67c-908e-4878-b38a-47bb272bc2c3\\\"\",\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\": @@ -183,9 +183,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:10 GMT + - Tue, 23 Nov 2021 03:07:00 GMT etag: - - W/"0f697390-4401-471b-a2b2-4b4809982709" + - W/"4c32b67c-908e-4878-b38a-47bb272bc2c3" expires: - '-1' pragma: @@ -202,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fdc6e0eb-be5e-4bea-b198-990d76787f7d + - fff34aea-3cac-4363-87a3-bfdd2129ba14 status: code: 200 message: OK @@ -225,13 +225,13 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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/virtualHubs/clitestvhub?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"e512cf1c-72b3-4273-ba80-56802b9ef599\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2f0e970f-0cc1-4c6b-9dc9-67f16c8a5840\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": @@ -243,7 +243,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5c28fb89-7cb6-43f7-a7d4-a1a14a0691e4?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/812491a7-5ef2-4c66-8b76-9505236522f1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -251,7 +251,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:18 GMT + - Tue, 23 Nov 2021 03:07:06 GMT expires: - '-1' pragma: @@ -264,7 +264,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d73e3df6-f2fb-4d14-9ba0-4c76121018eb + - 6edce03f-8b70-4a16-a8c0-79fcb27d4260 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -284,9 +284,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5c28fb89-7cb6-43f7-a7d4-a1a14a0691e4?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/812491a7-5ef2-4c66-8b76-9505236522f1?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -298,7 +298,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:28 GMT + - Tue, 23 Nov 2021 03:07:17 GMT expires: - '-1' pragma: @@ -315,7 +315,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3d4dd998-e172-4c4d-a886-3cfd08ac3af7 + - 35412e8b-ef3c-4c31-8cb8-c9c927767479 status: code: 200 message: OK @@ -333,9 +333,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5c28fb89-7cb6-43f7-a7d4-a1a14a0691e4?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/812491a7-5ef2-4c66-8b76-9505236522f1?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -347,7 +347,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:39 GMT + - Tue, 23 Nov 2021 03:07:28 GMT expires: - '-1' pragma: @@ -364,7 +364,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c293ba2d-6ff0-4de5-ab9d-00486b3713e9 + - 2e22995b-2ad2-43d2-8b07-9eae7b62d03d status: code: 200 message: OK @@ -382,9 +382,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5c28fb89-7cb6-43f7-a7d4-a1a14a0691e4?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/812491a7-5ef2-4c66-8b76-9505236522f1?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -396,7 +396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:02:59 GMT + - Tue, 23 Nov 2021 03:07:48 GMT expires: - '-1' pragma: @@ -413,7 +413,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d8b78b37-68de-4707-bfe6-4b1f21ff9617 + - d780c386-c7db-471d-a8b4-fb955d67addb status: code: 200 message: OK @@ -431,9 +431,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5c28fb89-7cb6-43f7-a7d4-a1a14a0691e4?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/812491a7-5ef2-4c66-8b76-9505236522f1?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -445,7 +445,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:03:19 GMT + - Tue, 23 Nov 2021 03:08:08 GMT expires: - '-1' pragma: @@ -462,7 +462,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e978630e-87ec-4120-85b7-e79e76674774 + - a9e3d8c7-73c5-4379-898d-f36ce8a11a38 status: code: 200 message: OK @@ -480,9 +480,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5c28fb89-7cb6-43f7-a7d4-a1a14a0691e4?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/812491a7-5ef2-4c66-8b76-9505236522f1?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -494,7 +494,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:04:00 GMT + - Tue, 23 Nov 2021 03:08:48 GMT expires: - '-1' pragma: @@ -511,7 +511,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - faf16a43-9b69-4166-9dc3-20067c391a49 + - cb8c094f-0c5d-4c8c-bd03-7b46c331597f status: code: 200 message: OK @@ -529,9 +529,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5c28fb89-7cb6-43f7-a7d4-a1a14a0691e4?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/812491a7-5ef2-4c66-8b76-9505236522f1?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -543,7 +543,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:04:40 GMT + - Tue, 23 Nov 2021 03:09:30 GMT expires: - '-1' pragma: @@ -560,7 +560,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4e602013-9642-4096-bd72-e04100df781a + - 0d936940-3305-4436-b911-b2847bb87932 status: code: 200 message: OK @@ -578,9 +578,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5c28fb89-7cb6-43f7-a7d4-a1a14a0691e4?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/812491a7-5ef2-4c66-8b76-9505236522f1?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -592,7 +592,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:06:01 GMT + - Tue, 23 Nov 2021 03:10:49 GMT expires: - '-1' pragma: @@ -609,7 +609,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3aea85cd-bda0-4840-b749-1d2d207844c9 + - 1eb97610-fe7e-4b0f-82d6-092c93c86fa0 status: code: 200 message: OK @@ -627,9 +627,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5c28fb89-7cb6-43f7-a7d4-a1a14a0691e4?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/812491a7-5ef2-4c66-8b76-9505236522f1?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -641,7 +641,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:08:42 GMT + - Tue, 23 Nov 2021 03:13:31 GMT expires: - '-1' pragma: @@ -658,7 +658,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1fb2a26e-4901-4755-842c-aac5fd1edccb + - 30e351ab-ef34-4535-b42e-32f7ef10a46d status: code: 200 message: OK @@ -676,13 +676,13 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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/virtualHubs/clitestvhub?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"a6f2cf04-3525-4a27-808d-2b8e187278aa\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8d692970-9d78-4c7d-aff3-4adf69821a45\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": @@ -698,7 +698,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:08:43 GMT + - Tue, 23 Nov 2021 03:13:31 GMT expires: - '-1' pragma: @@ -715,7 +715,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bc3dabd2-63b0-4fdb-a466-5d09d171eec0 + - e35559f1-beeb-48a3-9958-39740aff0cc0 status: code: 200 message: OK @@ -737,7 +737,7 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-01 response: @@ -747,10 +747,10 @@ interactions: \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\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\": \"a399c19d-32f2-4654-8346-13df537bd30b\",\r\n \"location\": \"westus2\"\r\n}" + \ \"etag\": \"f72f54d4-aa2e-4ca6-b610-16eb0793fb51\",\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/b7afb863-95e5-4103-ab56-205741117e94?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/a41d4431-ea8b-4b64-92bd-cab0c47afbda?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -758,7 +758,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:08:53 GMT + - Tue, 23 Nov 2021 03:13:41 GMT expires: - '-1' pragma: @@ -770,7 +770,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -788,9 +788,9 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/b7afb863-95e5-4103-ab56-205741117e94?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/a41d4431-ea8b-4b64-92bd-cab0c47afbda?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -802,7 +802,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:09:03 GMT + - Tue, 23 Nov 2021 03:13:51 GMT expires: - '-1' pragma: @@ -834,7 +834,7 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-01 response: @@ -844,7 +844,7 @@ interactions: \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\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\": \"a399c19d-32f2-4654-8346-13df537bd30b\",\r\n \"location\": \"westus2\"\r\n}" + \ \"etag\": \"f72f54d4-aa2e-4ca6-b610-16eb0793fb51\",\r\n \"location\": \"westus2\"\r\n}" headers: cache-control: - no-cache @@ -853,9 +853,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:09:03 GMT + - Tue, 23 Nov 2021 03:13:52 GMT etag: - - '"a399c19d-32f2-4654-8346-13df537bd30b"' + - '"f72f54d4-aa2e-4ca6-b610-16eb0793fb51"' expires: - '-1' pragma: @@ -887,12 +887,12 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_with_firewall_policy000001?api-version=2021-04-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","date":"2021-10-28T06:59:54Z"},"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","date":"2021-11-23T03:06:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -901,7 +901,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:09:05 GMT + - Tue, 23 Nov 2021 03:13:53 GMT expires: - '-1' pragma: @@ -936,13 +936,13 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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/af1?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"5b085e53-de87-4b61-ae86-026e617a3f32\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"eee3808a-4108-4db1-befb-f149ff647809\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus2\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n @@ -956,7 +956,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e2611ce4-a475-42d2-943e-1b6e3fe4b8a8?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/30b257f6-0540-4dab-b836-512e4d2deb52?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -964,7 +964,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:09:14 GMT + - Tue, 23 Nov 2021 03:14:04 GMT expires: - '-1' pragma: @@ -977,9 +977,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f0916e20-86f7-4527-a6a6-ae9b716470a4 + - 3c97e730-a71a-4b9d-97df-16e20fffc6e8 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -997,107 +997,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e2611ce4-a475-42d2-943e-1b6e3fe4b8a8?api-version=2020-07-01 - 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, 28 Oct 2021 07:09: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-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 81ed2ccd-9a98-4033-9edf-08eae97d620c - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall create - Connection: - - keep-alive - ParameterSetName: - - -g -n --count --sku --vhub --firewall-policy - User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e2611ce4-a475-42d2-943e-1b6e3fe4b8a8?api-version=2020-07-01 - 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, 28 Oct 2021 07:09:35 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-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 45981ba1-8473-413e-8552-6d7c2c2a77f9 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall create - Connection: - - keep-alive - ParameterSetName: - - -g -n --count --sku --vhub --firewall-policy - User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e2611ce4-a475-42d2-943e-1b6e3fe4b8a8?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/30b257f6-0540-4dab-b836-512e4d2deb52?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1109,7 +1011,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:09:56 GMT + - Tue, 23 Nov 2021 03:14:15 GMT expires: - '-1' pragma: @@ -1126,7 +1028,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2aee3b36-87a6-4826-8619-cc7a904254f2 + - a344786f-bcd7-454e-b8e8-a7081b8f9425 status: code: 200 message: OK @@ -1144,9 +1046,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e2611ce4-a475-42d2-943e-1b6e3fe4b8a8?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/30b257f6-0540-4dab-b836-512e4d2deb52?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1158,7 +1060,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:10:16 GMT + - Tue, 23 Nov 2021 03:14:25 GMT expires: - '-1' pragma: @@ -1175,7 +1077,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0d43b73c-929c-4211-9dfa-2fbce29d056c + - 3a045b46-aabb-4826-9d60-90b44fb07b3c status: code: 200 message: OK @@ -1193,9 +1095,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e2611ce4-a475-42d2-943e-1b6e3fe4b8a8?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/30b257f6-0540-4dab-b836-512e4d2deb52?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1207,7 +1109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:10:56 GMT + - Tue, 23 Nov 2021 03:14:45 GMT expires: - '-1' pragma: @@ -1224,7 +1126,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5831e300-23a0-466e-994f-bcf6b9921951 + - 7560bd5c-05ab-48af-af15-635bcf6f2e0e status: code: 200 message: OK @@ -1242,9 +1144,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e2611ce4-a475-42d2-943e-1b6e3fe4b8a8?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/30b257f6-0540-4dab-b836-512e4d2deb52?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1256,7 +1158,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:11:37 GMT + - Tue, 23 Nov 2021 03:15:05 GMT expires: - '-1' pragma: @@ -1273,7 +1175,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 41d87b4d-f9b0-45a4-a998-565b45713660 + - 092130b4-eea4-4afb-9382-0c1fc5755858 status: code: 200 message: OK @@ -1291,9 +1193,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e2611ce4-a475-42d2-943e-1b6e3fe4b8a8?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/30b257f6-0540-4dab-b836-512e4d2deb52?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1305,7 +1207,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:12:58 GMT + - Tue, 23 Nov 2021 03:15:46 GMT expires: - '-1' pragma: @@ -1322,7 +1224,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 611f4823-d9e4-44cb-a81c-0952584944b9 + - b146065a-8138-4b31-87ff-6e428c5b2835 status: code: 200 message: OK @@ -1340,9 +1242,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e2611ce4-a475-42d2-943e-1b6e3fe4b8a8?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/30b257f6-0540-4dab-b836-512e4d2deb52?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1354,7 +1256,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:15:39 GMT + - Tue, 23 Nov 2021 03:16:26 GMT expires: - '-1' pragma: @@ -1371,7 +1273,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5ac17fb9-f5d1-48a6-a9df-9d2e7a489960 + - 1df52813-15c8-43e4-8307-04de46d020ee status: code: 200 message: OK @@ -1389,9 +1291,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e2611ce4-a475-42d2-943e-1b6e3fe4b8a8?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/30b257f6-0540-4dab-b836-512e4d2deb52?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1403,7 +1305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:17:19 GMT + - Tue, 23 Nov 2021 03:17:47 GMT expires: - '-1' pragma: @@ -1420,7 +1322,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d41b7d69-127d-4989-ab0e-8ba1b379a95b + - dd810bc9-23b0-43b1-99f6-9787b8f00bfa status: code: 200 message: OK @@ -1438,9 +1340,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e2611ce4-a475-42d2-943e-1b6e3fe4b8a8?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/30b257f6-0540-4dab-b836-512e4d2deb52?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1452,7 +1354,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:18:59 GMT + - Tue, 23 Nov 2021 03:20:27 GMT expires: - '-1' pragma: @@ -1469,7 +1371,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dc112549-04ce-49ed-88ca-9cea1762a3d8 + - 53284558-05d5-4034-a0a6-f7507d47f79f status: code: 200 message: OK @@ -1487,9 +1389,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e2611ce4-a475-42d2-943e-1b6e3fe4b8a8?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/30b257f6-0540-4dab-b836-512e4d2deb52?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1501,7 +1403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:20:41 GMT + - Tue, 23 Nov 2021 03:22:08 GMT expires: - '-1' pragma: @@ -1518,7 +1420,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 09bab155-5cfc-4993-800d-adfa5fbab2e1 + - b1d32d1f-6af3-48ec-b0e2-7f7495224124 status: code: 200 message: OK @@ -1536,9 +1438,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e2611ce4-a475-42d2-943e-1b6e3fe4b8a8?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/30b257f6-0540-4dab-b836-512e4d2deb52?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1550,7 +1452,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:22:21 GMT + - Tue, 23 Nov 2021 03:23:48 GMT expires: - '-1' pragma: @@ -1567,7 +1469,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 36e9e315-9ca0-48f5-8905-6648a80e3ef4 + - 5d3f2dba-9ca2-48a9-ba50-317d34b561b9 status: code: 200 message: OK @@ -1585,9 +1487,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e2611ce4-a475-42d2-943e-1b6e3fe4b8a8?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/30b257f6-0540-4dab-b836-512e4d2deb52?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1599,7 +1501,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:24:02 GMT + - Tue, 23 Nov 2021 03:25:28 GMT expires: - '-1' pragma: @@ -1616,7 +1518,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 60fa4d81-2151-485e-8f4f-744ca3f41df8 + - b2dccd51-3b06-4b49-8de0-07e96b9d0eda status: code: 200 message: OK @@ -1634,9 +1536,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e2611ce4-a475-42d2-943e-1b6e3fe4b8a8?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/30b257f6-0540-4dab-b836-512e4d2deb52?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1648,7 +1550,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:25:42 GMT + - Tue, 23 Nov 2021 03:27:09 GMT expires: - '-1' pragma: @@ -1665,7 +1567,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 470c777e-9f2d-4be5-8292-3b889a0fb593 + - db076614-5359-4376-abb7-58fc7bd1dd00 status: code: 200 message: OK @@ -1683,13 +1585,13 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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/af1?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"6eec894c-dc49-4c5f-b57c-d4cb9dae5858\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"35314ecf-fec7-473e-9863-7f7f238a6f50\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus2\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n @@ -1697,20 +1599,20 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n \ },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.132\",\r\n \ \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": - \"20.99.158.199\"\r\n }\r\n ],\r\n \"count\": 1\r\n + \"20.112.6.216\"\r\n }\r\n ],\r\n \"count\": 1\r\n \ }\r\n },\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}" headers: cache-control: - no-cache content-length: - - '1238' + - '1237' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:25:43 GMT + - Tue, 23 Nov 2021 03:27:09 GMT etag: - - W/"6eec894c-dc49-4c5f-b57c-d4cb9dae5858" + - W/"35314ecf-fec7-473e-9863-7f7f238a6f50" expires: - '-1' pragma: @@ -1727,7 +1629,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5dfdf6fe-ec51-4231-99c4-054ef684159d + - 432da1d1-14e5-423e-85d7-204eafbb01b4 status: code: 200 message: OK @@ -1750,13 +1652,13 @@ interactions: ParameterSetName: - -g -n -l --firewall-policy User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-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/\\\"94ab1aad-0f0d-4358-9ba0-2ba61f3d1f9e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"11ae66b4-902a-439a-ab60-1a67da409436\\\"\",\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 @@ -1769,7 +1671,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/63003ffa-046b-4879-ab96-2a7fb7a7a06c?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/48be1dc3-394b-4750-a48c-90b68d83a535?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -1777,7 +1679,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:25:56 GMT + - Tue, 23 Nov 2021 03:27:22 GMT expires: - '-1' pragma: @@ -1790,9 +1692,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4579baee-d6e3-4d73-ab50-5d5158c1d7e7 + - f3ae13f4-a7ea-48cd-bfd2-62cc471d226b x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -1810,9 +1712,9 @@ interactions: ParameterSetName: - -g -n -l --firewall-policy User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/63003ffa-046b-4879-ab96-2a7fb7a7a06c?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/48be1dc3-394b-4750-a48c-90b68d83a535?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1824,7 +1726,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:26:07 GMT + - Tue, 23 Nov 2021 03:27:32 GMT expires: - '-1' pragma: @@ -1841,7 +1743,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 883c1d0f-f8ff-447c-9d6b-249f97c878e9 + - b33249b4-4afe-4394-beb7-e9e970a96cb0 status: code: 200 message: OK @@ -1859,13 +1761,13 @@ interactions: ParameterSetName: - -g -n -l --firewall-policy User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-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/\\\"9f61f41c-ad7e-48b3-9242-3e2e603a23e5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"48488a9e-cf7d-40ad-a489-277671d74e28\\\"\",\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 @@ -1882,9 +1784,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:26:07 GMT + - Tue, 23 Nov 2021 03:27:32 GMT etag: - - W/"9f61f41c-ad7e-48b3-9242-3e2e603a23e5" + - W/"48488a9e-cf7d-40ad-a489-277671d74e28" expires: - '-1' pragma: @@ -1901,7 +1803,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7cdb7547-4a61-4238-abad-2cd92ca4abe1 + - 3b325f10-10be-4b4b-8370-e5b31454d150 status: code: 200 message: OK @@ -1924,15 +1826,15 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-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=2021-03-01 + 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=2021-05-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/\\\"21b51791-3294-400d-a0a4-f199d3826db8\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"a61218dd-c276-43e9-ad46-233ac08eab33\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"8798ce6a-b182-4038-98bf-58611ef6d519\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"00ada497-5281-4296-982a-7cbd91cbb78d\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n @@ -1941,7 +1843,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3e5c5efa-06cc-4ba8-8e95-c253664f2600?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b2355bf0-e45e-49f0-8fe9-9f2538f7204c?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -1949,7 +1851,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:26:18 GMT + - Tue, 23 Nov 2021 03:27:41 GMT expires: - '-1' pragma: @@ -1962,9 +1864,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a1fe1636-c65c-4a09-8d66-721eaf219fd8 + - bb1c3b34-e77f-4454-8e6f-e6d4595fa715 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1982,9 +1884,9 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3e5c5efa-06cc-4ba8-8e95-c253664f2600?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b2355bf0-e45e-49f0-8fe9-9f2538f7204c?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1996,7 +1898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:26:20 GMT + - Tue, 23 Nov 2021 03:27:42 GMT expires: - '-1' pragma: @@ -2013,7 +1915,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a4fa7b69-bd83-43af-b95d-896220c3f618 + - b2831746-574b-442f-bc8e-bbd1ddef89ec status: code: 200 message: OK @@ -2031,16 +1933,16 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-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=2021-03-01 + 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=2021-05-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/\\\"8a6ec082-24f4-4567-b0ce-567e4d125fe5\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"cf86f84f-1bf5-4898-b4af-d087c89be4ed\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"8798ce6a-b182-4038-98bf-58611ef6d519\",\r\n \"ipAddress\": - \"20.69.109.74\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"00ada497-5281-4296-982a-7cbd91cbb78d\",\r\n \"ipAddress\": + \"20.69.180.71\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" @@ -2052,9 +1954,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:26:20 GMT + - Tue, 23 Nov 2021 03:27:43 GMT etag: - - W/"8a6ec082-24f4-4567-b0ce-567e4d125fe5" + - W/"cf86f84f-1bf5-4898-b4af-d087c89be4ed" expires: - '-1' pragma: @@ -2071,7 +1973,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 36bb6e4a-7565-44e3-a7c1-2f75d4dbd267 + - 1ca98e4f-d997-49e7-98dd-f2de9b9e2d32 status: code: 200 message: OK @@ -2096,21 +1998,21 @@ interactions: ParameterSetName: - -g -n --subnet-name -l --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-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=2021-03-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=2021-05-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/\\\"a5e126b5-64c2-4864-b711-76fe955fb534\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"205d6014-96e3-474a-8774-807e6a01f6db\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"c290bd82-3826-48ce-b810-ae69afe60de4\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"2905dcc2-ff69-4660-a7d7-7eb736a1c1df\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/\\\"a5e126b5-64c2-4864-b711-76fe955fb534\\\"\",\r\n + \ \"etag\": \"W/\\\"205d6014-96e3-474a-8774-807e6a01f6db\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -2121,7 +2023,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/95d6b831-95a5-439b-855b-ecedca98b590?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/61a6b842-5dfa-4b8b-b8c8-19f93b124741?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -2129,7 +2031,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:26:26 GMT + - Tue, 23 Nov 2021 03:27:52 GMT expires: - '-1' pragma: @@ -2142,9 +2044,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 279e3c17-899f-4051-951b-e1c01f75408c + - e719b396-51e0-4138-a282-65b4110fd77b x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -2162,9 +2064,9 @@ interactions: ParameterSetName: - -g -n --subnet-name -l --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/95d6b831-95a5-439b-855b-ecedca98b590?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/61a6b842-5dfa-4b8b-b8c8-19f93b124741?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2176,7 +2078,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:26:29 GMT + - Tue, 23 Nov 2021 03:27:56 GMT expires: - '-1' pragma: @@ -2193,7 +2095,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 812c5c7b-0562-4591-aa2e-ae26ad3010fb + - d0186876-48c0-4661-ba93-97d4a04e42e6 status: code: 200 message: OK @@ -2211,21 +2113,21 @@ interactions: ParameterSetName: - -g -n --subnet-name -l --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.3 (Windows-10-10.0.18362-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=2021-03-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=2021-05-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/\\\"734201ad-f7ab-4577-bf3a-501d432060b9\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"bb096cd2-5fce-48dc-825c-523c4bb7c259\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"c290bd82-3826-48ce-b810-ae69afe60de4\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"2905dcc2-ff69-4660-a7d7-7eb736a1c1df\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\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/\\\"734201ad-f7ab-4577-bf3a-501d432060b9\\\"\",\r\n + \ \"etag\": \"W/\\\"bb096cd2-5fce-48dc-825c-523c4bb7c259\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -2240,9 +2142,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:26:30 GMT + - Tue, 23 Nov 2021 03:27:56 GMT etag: - - W/"734201ad-f7ab-4577-bf3a-501d432060b9" + - W/"bb096cd2-5fce-48dc-825c-523c4bb7c259" expires: - '-1' pragma: @@ -2259,7 +2161,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6fd197cd-31d1-48c5-993c-a51f3b6b2c1a + - 47236e00-368a-4306-bb4f-c327e826eefc status: code: 200 message: OK @@ -2277,13 +2179,13 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-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/\\\"9f61f41c-ad7e-48b3-9242-3e2e603a23e5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"48488a9e-cf7d-40ad-a489-277671d74e28\\\"\",\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 @@ -2300,9 +2202,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:26:32 GMT + - Tue, 23 Nov 2021 03:27:57 GMT etag: - - W/"9f61f41c-ad7e-48b3-9242-3e2e603a23e5" + - W/"48488a9e-cf7d-40ad-a489-277671d74e28" expires: - '-1' pragma: @@ -2319,7 +2221,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 158cc1e6-7521-4616-ba40-d9feed230237 + - c5cb952b-d312-4801-8c92-f7a0257e418f status: code: 200 message: OK @@ -2347,20 +2249,20 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-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/\\\"8151e81c-1805-4527-9572-1af9c9b2a704\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6fc1b0cb-8dc0-44b1-a139-592a8a033591\\\"\",\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 {\r\n \"name\": \"myipconfig1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af2/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"8151e81c-1805-4527-9572-1af9c9b2a704\\\"\",\r\n + \ \"etag\": \"W/\\\"6fc1b0cb-8dc0-44b1-a139-592a8a033591\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -2374,7 +2276,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/17c3bf2c-6a0a-4f74-9d2f-b994cb7f44f2?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c0912b03-369a-4de9-b4fb-2ad76deb98a3?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -2382,7 +2284,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:26:33 GMT + - Tue, 23 Nov 2021 03:27:58 GMT expires: - '-1' pragma: @@ -2399,58 +2301,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 53f5de78-37d5-492e-976a-5eaba3f55bf4 + - a2cb845d-5c03-45f1-884a-5c7d9c6cf9b1 x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config create - Connection: - - keep-alive - ParameterSetName: - - -g -n -f --public-ip-address --vnet-name - User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/17c3bf2c-6a0a-4f74-9d2f-b994cb7f44f2?api-version=2020-07-01 - 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, 28 Oct 2021 07:26:44 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-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 0e220004-3813-4701-93a8-6e3611db9405 + - '1199' status: code: 200 message: OK @@ -2468,9 +2321,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/17c3bf2c-6a0a-4f74-9d2f-b994cb7f44f2?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c0912b03-369a-4de9-b4fb-2ad76deb98a3?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2482,7 +2335,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:26:55 GMT + - Tue, 23 Nov 2021 03:28:08 GMT expires: - '-1' pragma: @@ -2499,7 +2352,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bff8d6fe-50d6-484a-b63a-84e0a36c3c91 + - 67533f70-6cc3-42c6-be0e-c4005777016f status: code: 200 message: OK @@ -2517,9 +2370,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/17c3bf2c-6a0a-4f74-9d2f-b994cb7f44f2?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c0912b03-369a-4de9-b4fb-2ad76deb98a3?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2531,7 +2384,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:27:15 GMT + - Tue, 23 Nov 2021 03:28:18 GMT expires: - '-1' pragma: @@ -2548,7 +2401,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 77d02dc8-572c-4084-acc6-9bdd17fbb185 + - 07e723eb-5904-428b-b661-e89d750c3dd9 status: code: 200 message: OK @@ -2566,9 +2419,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/17c3bf2c-6a0a-4f74-9d2f-b994cb7f44f2?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c0912b03-369a-4de9-b4fb-2ad76deb98a3?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2580,7 +2433,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:27:36 GMT + - Tue, 23 Nov 2021 03:28:40 GMT expires: - '-1' pragma: @@ -2597,7 +2450,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 42215b5b-edcf-47fc-a873-c6d66213a605 + - 3d87a2b0-dbc8-4e67-9a50-cbdc0a38a942 status: code: 200 message: OK @@ -2615,9 +2468,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/17c3bf2c-6a0a-4f74-9d2f-b994cb7f44f2?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c0912b03-369a-4de9-b4fb-2ad76deb98a3?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2629,7 +2482,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:28:17 GMT + - Tue, 23 Nov 2021 03:29:00 GMT expires: - '-1' pragma: @@ -2646,7 +2499,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - accfe711-57b0-44e4-aac1-29f53f4575b8 + - 684a94e6-6b42-4613-891b-9121c50e92a0 status: code: 200 message: OK @@ -2664,9 +2517,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/17c3bf2c-6a0a-4f74-9d2f-b994cb7f44f2?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c0912b03-369a-4de9-b4fb-2ad76deb98a3?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2678,7 +2531,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:28:57 GMT + - Tue, 23 Nov 2021 03:29:40 GMT expires: - '-1' pragma: @@ -2695,7 +2548,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 83aaf64a-3ce1-4136-95e2-d3d92f57f9a2 + - 4d2335f5-748e-4357-a780-9bc864d06666 status: code: 200 message: OK @@ -2713,9 +2566,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/17c3bf2c-6a0a-4f74-9d2f-b994cb7f44f2?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c0912b03-369a-4de9-b4fb-2ad76deb98a3?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2727,7 +2580,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:30:17 GMT + - Tue, 23 Nov 2021 03:30:21 GMT expires: - '-1' pragma: @@ -2744,7 +2597,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 534510ed-42a4-4162-a5ae-2f5863aeb36f + - fd791a39-427e-4740-8ccb-aac79ec14f25 status: code: 200 message: OK @@ -2762,9 +2615,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/17c3bf2c-6a0a-4f74-9d2f-b994cb7f44f2?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c0912b03-369a-4de9-b4fb-2ad76deb98a3?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2776,7 +2629,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:32:58 GMT + - Tue, 23 Nov 2021 03:31:41 GMT expires: - '-1' pragma: @@ -2793,7 +2646,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 33be44cb-9e6c-49a5-a4d5-13b26f24e2f5 + - 326dc369-510c-4f6a-8f0b-f5bf8fde404e status: code: 200 message: OK @@ -2811,20 +2664,20 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-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/\\\"be72f600-abb7-4f27-9bf3-659f94d1a4da\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e7bc6ab0-9341-4c83-afaf-7649000fb6ac\\\"\",\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 {\r\n \"name\": \"myipconfig1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af2/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"be72f600-abb7-4f27-9bf3-659f94d1a4da\\\"\",\r\n + \ \"etag\": \"W/\\\"e7bc6ab0-9341-4c83-afaf-7649000fb6ac\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -2842,9 +2695,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:32:58 GMT + - Tue, 23 Nov 2021 03:31:42 GMT etag: - - W/"be72f600-abb7-4f27-9bf3-659f94d1a4da" + - W/"e7bc6ab0-9341-4c83-afaf-7649000fb6ac" expires: - '-1' pragma: @@ -2861,7 +2714,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 83b16ab5-2dc9-4472-839b-dd568451937a + - 0d64b2b6-fd16-4b08-ba48-d0df0be1885c status: code: 200 message: OK @@ -2883,7 +2736,7 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-01 response: @@ -2893,10 +2746,10 @@ interactions: \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\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\": \"592e978c-4dc2-4ccc-b16c-444bf173db80\",\r\n \"location\": \"westus2\"\r\n}" + \ \"etag\": \"e8f8a9c3-1eac-441d-bb8c-a7de0ccce3cb\",\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/e22f686b-e9a8-4017-aeae-1fb21631fd8b?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/6dfb4d12-8c67-4441-92b6-07a6a0e06389?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -2904,7 +2757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:33:07 GMT + - Tue, 23 Nov 2021 03:31:49 GMT expires: - '-1' pragma: @@ -2916,7 +2769,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -2934,9 +2787,9 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/e22f686b-e9a8-4017-aeae-1fb21631fd8b?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/6dfb4d12-8c67-4441-92b6-07a6a0e06389?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2948,7 +2801,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:33:17 GMT + - Tue, 23 Nov 2021 03:32:00 GMT expires: - '-1' pragma: @@ -2980,7 +2833,7 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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=2020-07-01 response: @@ -2990,7 +2843,7 @@ interactions: \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\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\": \"592e978c-4dc2-4ccc-b16c-444bf173db80\",\r\n \"location\": \"westus2\"\r\n}" + \ \"etag\": \"e8f8a9c3-1eac-441d-bb8c-a7de0ccce3cb\",\r\n \"location\": \"westus2\"\r\n}" headers: cache-control: - no-cache @@ -2999,9 +2852,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Oct 2021 07:33:18 GMT + - Tue, 23 Nov 2021 03:32:00 GMT etag: - - '"592e978c-4dc2-4ccc-b16c-444bf173db80"' + - '"e8f8a9c3-1eac-441d-bb8c-a7de0ccce3cb"' expires: - '-1' pragma: diff --git a/src/azure-firewall/azext_firewall/tests/latest/test_azure_firewall_scenario.py b/src/azure-firewall/azext_firewall/tests/latest/test_azure_firewall_scenario.py index be9e247dece..b97d8349d83 100644 --- a/src/azure-firewall/azext_firewall/tests/latest/test_azure_firewall_scenario.py +++ b/src/azure-firewall/azext_firewall/tests/latest/test_azure_firewall_scenario.py @@ -909,3 +909,14 @@ def test_azure_firewall_tier(self, resource_group): }) self.cmd('network firewall create -g {rg} -n af --sku AZFW_VNet --tier Premium', checks=self.check('sku.tier', 'Premium')) + + # BUG ISSUE: https://github.com/Azure/azure-cli-extensions/issues/4096 + @ResourceGroupPreparer(name_prefix='test_azure_firewall_policy_update_premiumonlyproperty_issue', location='eastus2euap') + def test_azure_firewall_policy_update_premiumonlyproperty_issue(self, resource_group): + self.kwargs.update({ + 'policy': 'testpolicy' + }) + + self.cmd('network firewall policy create -g {rg} -n {policy} --sku Standard --threat-intel-mode Alert') + + self.cmd('network firewall policy update -g {rg} -n {policy} --threat-intel-mode Deny') diff --git a/src/azure-firewall/setup.py b/src/azure-firewall/setup.py index e522357779d..d4f2c9ba0d3 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 = "0.12.0" +VERSION = "0.13.0" CLASSIFIERS = [ 'Development Status :: 4 - Beta', diff --git a/src/blockchain/azext_blockchain/tests/latest/preparers.py b/src/blockchain/azext_blockchain/tests/latest/preparers.py index 580507395b5..448b0fad934 100644 --- a/src/blockchain/azext_blockchain/tests/latest/preparers.py +++ b/src/blockchain/azext_blockchain/tests/latest/preparers.py @@ -10,7 +10,7 @@ import os from datetime import datetime -from azure_devtools.scenario_tests import SingleValueReplacer +from azure.cli.testsdk.scenario_tests import SingleValueReplacer from azure.cli.testsdk.preparers import NoTrafficRecordingPreparer from azure.cli.testsdk.exceptions import CliTestError diff --git a/src/blockchain/azext_blockchain/tests/latest/test_blockchain_scenario.py b/src/blockchain/azext_blockchain/tests/latest/test_blockchain_scenario.py index 8bf09776ab4..48181a55a79 100644 --- a/src/blockchain/azext_blockchain/tests/latest/test_blockchain_scenario.py +++ b/src/blockchain/azext_blockchain/tests/latest/test_blockchain_scenario.py @@ -11,7 +11,7 @@ import os import unittest -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import ScenarioTest from .. import try_manual from azure.cli.testsdk import ResourceGroupPreparer diff --git a/src/blueprint/azext_blueprint/tests/latest/test_blueprint_scenario.py b/src/blueprint/azext_blueprint/tests/latest/test_blueprint_scenario.py index 73b95142b11..eb722dad287 100644 --- a/src/blueprint/azext_blueprint/tests/latest/test_blueprint_scenario.py +++ b/src/blueprint/azext_blueprint/tests/latest/test_blueprint_scenario.py @@ -10,7 +10,7 @@ from pathlib import Path import shutil -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, JMESPathCheck, JMESPathCheckExists, NoneCheck) diff --git a/src/codespaces/azext_codespaces/tests/latest/test_codespaces_scenario.py b/src/codespaces/azext_codespaces/tests/latest/test_codespaces_scenario.py index 2ed144885d7..440ab4e0dd6 100644 --- a/src/codespaces/azext_codespaces/tests/latest/test_codespaces_scenario.py +++ b/src/codespaces/azext_codespaces/tests/latest/test_codespaces_scenario.py @@ -6,7 +6,7 @@ import os import unittest -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, live_only) diff --git a/src/confluent/azext_confluent/tests/latest/test_confluent_scenario.py b/src/confluent/azext_confluent/tests/latest/test_confluent_scenario.py index 214ac8db81f..6687b1b4783 100644 --- a/src/confluent/azext_confluent/tests/latest/test_confluent_scenario.py +++ b/src/confluent/azext_confluent/tests/latest/test_confluent_scenario.py @@ -20,7 +20,7 @@ from .example_steps import step_organization_list2 from .example_steps import step_organization_update from .example_steps import step_organization_delete -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from .. import ( try_manual, raise_if, diff --git a/src/confluent/azext_confluent/tests/latest/test_confluent_term_accept_flow.py b/src/confluent/azext_confluent/tests/latest/test_confluent_term_accept_flow.py index 93d14aa06a9..1057f02c3e4 100644 --- a/src/confluent/azext_confluent/tests/latest/test_confluent_term_accept_flow.py +++ b/src/confluent/azext_confluent/tests/latest/test_confluent_term_accept_flow.py @@ -12,7 +12,7 @@ import time from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from .test_confluent_scenario import mock_jwt_decode, mock_list_role_assignments diff --git a/src/connectedk8s/HISTORY.rst b/src/connectedk8s/HISTORY.rst index f4e4636f31f..1164b9e669d 100644 --- a/src/connectedk8s/HISTORY.rst +++ b/src/connectedk8s/HISTORY.rst @@ -2,6 +2,11 @@ Release History =============== +1.2.1 +++++++ + +* Add maxCliCoreVersion as 2.29.0 + 1.2.0 ++++++ diff --git a/src/connectedk8s/azext_connectedk8s/azext_metadata.json b/src/connectedk8s/azext_connectedk8s/azext_metadata.json index f3541f0d286..09bc07d3377 100644 --- a/src/connectedk8s/azext_connectedk8s/azext_metadata.json +++ b/src/connectedk8s/azext_connectedk8s/azext_metadata.json @@ -1,3 +1,6 @@ { - "azext.minCliCoreVersion": "2.16.0" + "name": "connectedk8s", + "version": "1.2.1", + "azext.minCliCoreVersion": "2.16.0", + "azext.maxCliCoreVersion": "2.29.0" } \ No newline at end of file diff --git a/src/connectedk8s/azext_connectedk8s/tests/latest/test_connectedk8s_scenario.py b/src/connectedk8s/azext_connectedk8s/tests/latest/test_connectedk8s_scenario.py index cd81443b27c..203c7877efb 100644 --- a/src/connectedk8s/azext_connectedk8s/tests/latest/test_connectedk8s_scenario.py +++ b/src/connectedk8s/azext_connectedk8s/tests/latest/test_connectedk8s_scenario.py @@ -7,7 +7,7 @@ import unittest from azure.cli.testsdk import (LiveScenarioTest, ResourceGroupPreparer) # pylint: disable=import-error -from azure_devtools.scenario_tests import AllowLargeResponse # pylint: disable=import-error +from azure.cli.testsdk.scenario_tests import AllowLargeResponse # pylint: disable=import-error TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) diff --git a/src/connectedk8s/setup.py b/src/connectedk8s/setup.py index 6223f2dd686..1ef4a25820d 100644 --- a/src/connectedk8s/setup.py +++ b/src/connectedk8s/setup.py @@ -17,7 +17,7 @@ # TODO: Confirm this is the right version number you want and it matches your # HISTORY.rst entry. -VERSION = '1.2.0' +VERSION = '1.2.1' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers diff --git a/src/connectedvmware/HISTORY.rst b/src/connectedvmware/HISTORY.rst index 08e47022c6e..6702c59d8e3 100644 --- a/src/connectedvmware/HISTORY.rst +++ b/src/connectedvmware/HISTORY.rst @@ -3,6 +3,14 @@ Release History =============== +0.1.5 +++++++ +* Fixed inventory item id issue. + +0.1.4 +++++++ +* Add vm extension support. + 0.1.3 ++++++ * Fixed inventory item issue. diff --git a/src/connectedvmware/azext_connectedvmware/_actions.py b/src/connectedvmware/azext_connectedvmware/_actions.py index 349c57ce96f..433736850b8 100644 --- a/src/connectedvmware/azext_connectedvmware/_actions.py +++ b/src/connectedvmware/azext_connectedvmware/_actions.py @@ -2,14 +2,16 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -# pylint: disable= protected-access, too-few-public-methods +# pylint: disable= protected-access, too-few-public-methods, raise-missing-from, no-self-use """ This file contains actions for parsing complex arguments. """ import argparse +from collections import defaultdict from azext_connectedvmware.vmware_utils import create_dictionary_from_arg_string +from azure.cli.core.azclierror import InvalidArgumentValueError class VmNicAddAction(argparse._AppendAction): @@ -36,3 +38,45 @@ def __call__(self, parser, namespace, values, option_string=None): namespace.disks.append(disk_params_dict) else: namespace.disks = [disk_params_dict] + + +class AddStatus(argparse.Action): + def __call__(self, parser, namespace, values, option_string=None): + action = self.get_action(values, option_string) + namespace.status = action + + def get_action(self, values, option_string): + try: + properties = defaultdict(list) + for (k, v) in (x.split('=', 1) for x in values): + properties[k].append(v) + properties = dict(properties) + except ValueError: + raise InvalidArgumentValueError('usage error: {} [KEY=VALUE ...]'.format(option_string)) + d = {} + for k in properties: + kl = k.lower() + v = properties[k] + + if kl == 'code': + d['code'] = v[0] + + elif kl == 'level': + d['level'] = v[0] + + elif kl == 'display-status': + d['display_status'] = v[0] + + elif kl == 'message': + d['message'] = v[0] + + elif kl == 'time': + d['time'] = v[0] + + else: + raise InvalidArgumentValueError( + 'Unsupported Key {} is provided for parameter status. All possible keys are: code, level,' + ' display-status, message, time'.format(k) + ) + + return d diff --git a/src/connectedvmware/azext_connectedvmware/_client_factory.py b/src/connectedvmware/azext_connectedvmware/_client_factory.py index c71f7974029..e7205c64c66 100644 --- a/src/connectedvmware/azext_connectedvmware/_client_factory.py +++ b/src/connectedvmware/azext_connectedvmware/_client_factory.py @@ -79,4 +79,8 @@ def cf_guest_agent(cli_ctx, *_): """ Client factory for guest agent. """ - return cf_connectedvmware(cli_ctx).guest_agent + return cf_connectedvmware(cli_ctx).guest_agents + + +def cf_machine_extension(cli_ctx, *_): + return cf_connectedvmware(cli_ctx).machine_extensions diff --git a/src/connectedvmware/azext_connectedvmware/_help.py b/src/connectedvmware/azext_connectedvmware/_help.py index 3f139c7f278..23e2ea8a3ad 100644 --- a/src/connectedvmware/azext_connectedvmware/_help.py +++ b/src/connectedvmware/azext_connectedvmware/_help.py @@ -625,7 +625,6 @@ --vm-name "vm name" """ - helps[ 'connectedvmware vm guest-agent show' ] = """ @@ -638,6 +637,63 @@ --vm-name "name of the vm" """ +helps['connectedvmware vm extension'] = """ + type: group + short-summary: Manage vm extension with connectedvmware +""" + +helps['connectedvmware vm extension list'] = """ + type: command + short-summary: "The operation to get all extensions of a non-Azure vm." + examples: + - name: Get all VM Extensions + text: |- + az connectedvmware vm extension list --vm-name "vm name" --resource-group "myResourceGroup" +""" + +helps['connectedvmware vm extension show'] = """ + type: command + short-summary: "The operation to get the extension." + examples: + - name: Get VM Extension + text: |- + az connectedvmware vm extension show --name "CustomScriptExtension" --vm-name "vm name" \ +--resource-group "myResourceGroup" +""" + +helps['connectedvmware vm extension create'] = """ + type: command + short-summary: "The operation to create the extension." + examples: + - name: Create a VM Extension + text: |- + az connectedvmware vm extension create --name "CustomScriptExtension" --location "eastus2euap" --type \ +"CustomScriptExtension" --publisher "Microsoft.Compute" --settings "{\\"commandToExecute\\":\\"powershell.exe -c \ +\\\\\\"Get-Process | Where-Object { $_.CPU -gt 10000 }\\\\\\"\\"}" --type-handler-version "1.10" --vm-name \ +"vm name" --resource-group "myResourceGroup" +""" + +helps['connectedvmware vm extension update'] = """ + type: command + short-summary: "The operation to update the extension." + examples: + - name: Update a VM Extension + text: |- + az connectedvmware vm extension update --name "CustomScriptExtension" --type "CustomScriptExtension" \ +--publisher "Microsoft.Compute" --settings "{\\"commandToExecute\\":\\"powershell.exe -c \\\\\\"Get-Process | \ +Where-Object { $_.CPU -lt 100 }\\\\\\"\\"}" --type-handler-version "1.10" --vm-name "vm name" --resource-group \ +"myResourceGroup" +""" + +helps['connectedvmware vm extension delete'] = """ + type: command + short-summary: "The operation to delete the extension." + examples: + - name: Delete a VM Extension + text: |- + az connectedvmware vm extension delete --name "vm extension name" --vm-name "vm name" --resource-group \ +"myResourceGroup" +""" helps[ 'connectedvmware vm-template' diff --git a/src/connectedvmware/azext_connectedvmware/_params.py b/src/connectedvmware/azext_connectedvmware/_params.py index 97c1a1d957c..a536fcd04d9 100644 --- a/src/connectedvmware/azext_connectedvmware/_params.py +++ b/src/connectedvmware/azext_connectedvmware/_params.py @@ -5,8 +5,14 @@ # pylint: disable= too-many-statements from knack.arguments import CLIArgumentType -from azure.cli.core.commands.parameters import tags_type -from azure.cli.core.commands.validators import get_default_location_from_resource_group +from azure.cli.core.commands.parameters import ( + tags_type, + get_three_state_flag, +) +from azure.cli.core.commands.validators import ( + get_default_location_from_resource_group, + validate_file_or_dict +) from ._actions import VmNicAddAction, VmDiskAddAction @@ -111,14 +117,10 @@ def load_arguments(self, _): with self.argument_context('connectedvmware vm create') as c: c.argument( - 'vm_template', - options_list=['--vm-template'], - help="Name or ID of the vm template for deploying the vm.", + 'vm_template', help="Name or ID of the vm template for deploying the vm.", ) c.argument( - 'resource_pool', - options_list=['--resource-pool'], - help="Name or ID of the resource pool for deploying the vm.", + 'resource_pool', help="Name or ID of the resource pool for deploying the vm.", ) c.argument( 'cluster', @@ -283,7 +285,7 @@ def load_arguments(self, _): with self.argument_context('connectedvmware vm disk delete') as c: c.argument( - 'vm_name', options_list=['--vm-name'], help="Name of the virtual machine." + 'vm_name', help="Name of the virtual machine." ) c.argument( 'disk_names', @@ -294,7 +296,7 @@ def load_arguments(self, _): with self.argument_context('connectedvmware vm disk list') as c: c.argument( - 'vm_name', options_list=['--vm-name'], help="Name of the virtual machine." + 'vm_name', help="Name of the virtual machine." ) with self.argument_context('connectedvmware vm disk show') as c: @@ -306,7 +308,7 @@ def load_arguments(self, _): with self.argument_context('connectedvmware vm disk update') as c: c.argument('disk_name', options_list=['--name', '-n'], help="Name of the Disk.") c.argument( - 'vm_name', options_list=['--vm-name'], help="Name of the virtual machine." + 'vm_name', help="Name of the virtual machine." ) c.argument( 'disk_size', @@ -338,7 +340,7 @@ def load_arguments(self, _): with self.argument_context('connectedvmware vm guest-agent enable') as c: c.argument( - 'vm_name', options_list=['--vm-name'], help="Name of the VM." + 'vm_name', help="Name of the VM." ) c.argument( 'username', @@ -346,12 +348,68 @@ def load_arguments(self, _): help="Username to use for connecting to the vm.", ) c.argument( - 'password', - options_list=['--password'], + 'password', options_list=['--password'], help="Username password credentials to use for connecting to the VM.", ) with self.argument_context('connectedvmware vm guest-agent show') as c: c.argument( - 'vm_name', options_list=['--vm-name'], help="Name of the VM.", + 'password', options_list=['--password'], + help="Username password credentials to use for connecting to the VM.", ) + + with self.argument_context('connectedvmware vm guest-agent show') as c: + c.argument( + 'vm_name', help="Name of the VM.", + ) + + with self.argument_context('connectedvmware vm extension list') as c: + c.argument('vm_name', type=str, help='The name of the vm containing the extension.') + c.argument( + 'expand', help='The expand expression to apply on the operation.') + + with self.argument_context('connectedvmware vm extension show') as c: + c.argument( + 'vm_name', type=str, help='The name of the vm containing the extension.', + id_part='name') + c.argument('name', type=str, help='The name of the vm extension.', id_part='child_name_1') + + for scope in ['connectedvmware vm extension update', 'connectedvmware vm extension create']: + with self.argument_context(scope) as c: + c.argument( + 'vm_name', type=str, help='The name of the vm where the extension ' + 'should be created or updated.') + c.argument('name', type=str, help='The name of the vm extension.') + c.argument('tags', tags_type) + c.argument( + 'force_update_tag', type=str, help='How the extension handler should be forced to update even if ' + 'the extension configuration has not changed.') + c.argument('publisher', type=str, help='The name of the extension handler publisher.') + c.argument( + 'type_', options_list=['--type'], type=str, help='Specify the type of the extension; an example ' + 'is "CustomScriptExtension".') + c.argument('type_handler_version', type=str, help='Specifies the version of the script handler.') + c.argument( + 'auto_upgrade_minor', arg_type=get_three_state_flag(), help='Indicate whether the extension should ' + 'use a newer minor version if one is available at deployment time. Once deployed, however, the ' + 'extension will not upgrade minor versions unless redeployed, even with this property set to true.') + c.argument( + 'settings', type=validate_file_or_dict, help='Json formatted public settings for the extension. ' + 'Expected value: json-string/json-file/@json-file.') + c.argument( + 'protected_settings', type=validate_file_or_dict, help='The extension can contain either ' + 'protectedSettings or protectedSettingsFromKeyVault or no protected settings at all. Expected ' + 'value: json-string/json-file/@json-file.') + + with self.argument_context('connectedvmware vm extension create') as c: + c.argument( + 'instance_view_type', type=str, help='Specify the type of the extension; an example is ' + '"CustomScriptExtension".', arg_group='Instance View') + c.argument( + 'inst_handler_version', type=str, help='Specify the version of the script handler.', + arg_group='Instance View') + + with self.argument_context('connectedvmware vm extension delete') as c: + c.argument('vm_name', type=str, help='The name of the vm where the extension ' + 'should be deleted.', id_part='name') + c.argument('name', type=str, help='The name of the vm extension.', id_part='child_name_1') diff --git a/src/connectedvmware/azext_connectedvmware/commands.py b/src/connectedvmware/azext_connectedvmware/commands.py index 415351eea39..f6a067f14e4 100644 --- a/src/connectedvmware/azext_connectedvmware/commands.py +++ b/src/connectedvmware/azext_connectedvmware/commands.py @@ -15,6 +15,7 @@ cf_cluster, cf_datastore, cf_host, + cf_machine_extension, ) @@ -116,5 +117,14 @@ def load_command_table(self, _): g.custom_command('enable', 'enable_guest_agent', supports_no_wait=True) g.custom_show_command('show', 'show_guest_agent') + with self.command_group( + 'connectedvmware vm extension', client_factory=cf_machine_extension + ) as g: + g.custom_command('list', 'connectedvmware_extension_list') + g.custom_show_command('show', 'connectedvmware_extension_show') + g.custom_command('create', 'connectedvmware_extension_create', supports_no_wait=True) + g.custom_command('update', 'connectedvmware_extension_update', supports_no_wait=True) + g.custom_command('delete', 'connectedvmware_extension_delete', supports_no_wait=True, confirmation=True) + with self.command_group('connectedvmware', is_preview=False): pass diff --git a/src/connectedvmware/azext_connectedvmware/custom.py b/src/connectedvmware/azext_connectedvmware/custom.py index 354f0364f7d..4e99aba1b83 100644 --- a/src/connectedvmware/azext_connectedvmware/custom.py +++ b/src/connectedvmware/azext_connectedvmware/custom.py @@ -87,7 +87,8 @@ VirtualMachineTemplatesOperations, VirtualMachinesOperations, InventoryItemsOperations, - GuestAgentOperations, + GuestAgentsOperations, + MachineExtensionsOperations, ) from ._client_factory import ( @@ -1755,7 +1756,7 @@ def enable_system_identity( def enable_guest_agent( cmd, - client: GuestAgentOperations, + client: GuestAgentsOperations, resource_group_name, vm_name, username, @@ -1786,7 +1787,7 @@ def enable_guest_agent( def show_guest_agent( - client: GuestAgentOperations, + client: GuestAgentsOperations, resource_group_name, vm_name, ): @@ -1798,3 +1799,138 @@ def show_guest_agent( # endregion + +# region Extenstion + + +def connectedvmware_extension_list( + client: MachineExtensionsOperations, + resource_group_name, + vm_name, + expand=None +): + """ + List all the vm extension of a given vm. + """ + + return client.list(resource_group_name=resource_group_name, + name=vm_name, + expand=expand) + + +def connectedvmware_extension_show( + client: MachineExtensionsOperations, + resource_group_name, + vm_name, + name +): + """ + Get the details of the vm extension of a given vm. + """ + + return client.get(resource_group_name=resource_group_name, + name=vm_name, + extension_name=name) + + +def connectedvmware_extension_create( + client: MachineExtensionsOperations, + resource_group_name, + vm_name, + name, + location, + tags=None, + force_update_tag=None, + publisher=None, + type_=None, + type_handler_version=None, + auto_upgrade_minor=None, + settings=None, + protected_settings=None, + instance_view_type=None, + inst_handler_version=None, + no_wait=False +): + """ + Create the vm extension of a given vm. + """ + + extension_parameters = {} + extension_parameters['tags'] = tags + extension_parameters['location'] = location + extension_parameters['properties'] = {} + extension_parameters['properties']['force_update_tag'] = force_update_tag + extension_parameters['properties']['publisher'] = publisher + extension_parameters['properties']['type'] = type_ + extension_parameters['properties']['type_handler_version'] = type_handler_version + extension_parameters['properties']['auto_upgrade_minor_version'] = auto_upgrade_minor + extension_parameters['properties']['settings'] = settings + extension_parameters['properties']['protected_settings'] = protected_settings + extension_parameters['properties']['instance_view'] = {} + extension_parameters['properties']['instance_view']['name'] = name + extension_parameters['properties']['instance_view']['type'] = instance_view_type + extension_parameters['properties']['instance_view']['type_handler_version'] = inst_handler_version + return sdk_no_wait(no_wait, + client.begin_create_or_update, + resource_group_name=resource_group_name, + name=vm_name, + extension_name=name, + extension_parameters=extension_parameters) + + +def connectedvmware_extension_update( + client: MachineExtensionsOperations, + resource_group_name, + vm_name, + name, + tags=None, + force_update_tag=None, + publisher=None, + type_=None, + type_handler_version=None, + auto_upgrade_minor=None, + settings=None, + protected_settings=None, + no_wait=False +): + """ + Update the vm extension of a given vm. + """ + + extension_parameters = {} + extension_parameters['tags'] = tags + extension_parameters['properties'] = {} + extension_parameters['properties']['force_update_tag'] = force_update_tag + extension_parameters['properties']['publisher'] = publisher + extension_parameters['properties']['type'] = type_ + extension_parameters['properties']['type_handler_version'] = type_handler_version + extension_parameters['properties']['auto_upgrade_minor_version'] = auto_upgrade_minor + extension_parameters['properties']['settings'] = settings + extension_parameters['properties']['protected_settings'] = protected_settings + return sdk_no_wait(no_wait, + client.begin_update, + resource_group_name=resource_group_name, + machine_name=vm_name, + extension_name=name, + extension_parameters=extension_parameters) + + +def connectedvmware_extension_delete( + client: MachineExtensionsOperations, + resource_group_name, + vm_name, + name, + no_wait=False +): + """ + Delete the vm extension of a given vm. + """ + + return sdk_no_wait(no_wait, + client.begin_delete, + resource_group_name=resource_group_name, + name=vm_name, + extension_name=name) + + +# endregion diff --git a/src/connectedvmware/azext_connectedvmware/tests/latest/test_connectedvmware_scenario.py b/src/connectedvmware/azext_connectedvmware/tests/latest/test_connectedvmware_scenario.py index 4baf7fc857b..2398046829b 100644 --- a/src/connectedvmware/azext_connectedvmware/tests/latest/test_connectedvmware_scenario.py +++ b/src/connectedvmware/azext_connectedvmware/tests/latest/test_connectedvmware_scenario.py @@ -6,7 +6,7 @@ import os import unittest -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer from knack.util import CLIError from azure.cli.testsdk import ScenarioTest diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/_azure_arc_vmware_management_service_api.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/_azure_arc_vmware_management_service_api.py index 4d4f0f49e50..20aef933dee 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/_azure_arc_vmware_management_service_api.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/_azure_arc_vmware_management_service_api.py @@ -31,7 +31,7 @@ from .operations import InventoryItemsOperations from .operations import HybridIdentityMetadataOperations from .operations import MachineExtensionsOperations -from .operations import GuestAgentOperations +from .operations import GuestAgentsOperations from . import models @@ -39,31 +39,31 @@ class AzureArcVMwareManagementServiceAPI(object): """Self service experience for VMware. :ivar operations: Operations operations - :vartype operations: azure_arc_vmware_management_service_api.operations.Operations + :vartype operations: azure.mgmt.connectedvmware.operations.Operations :ivar resource_pools: ResourcePoolsOperations operations - :vartype resource_pools: azure_arc_vmware_management_service_api.operations.ResourcePoolsOperations + :vartype resource_pools: azure.mgmt.connectedvmware.operations.ResourcePoolsOperations :ivar clusters: ClustersOperations operations - :vartype clusters: azure_arc_vmware_management_service_api.operations.ClustersOperations + :vartype clusters: azure.mgmt.connectedvmware.operations.ClustersOperations :ivar hosts: HostsOperations operations - :vartype hosts: azure_arc_vmware_management_service_api.operations.HostsOperations + :vartype hosts: azure.mgmt.connectedvmware.operations.HostsOperations :ivar datastores: DatastoresOperations operations - :vartype datastores: azure_arc_vmware_management_service_api.operations.DatastoresOperations + :vartype datastores: azure.mgmt.connectedvmware.operations.DatastoresOperations :ivar vcenters: VCentersOperations operations - :vartype vcenters: azure_arc_vmware_management_service_api.operations.VCentersOperations + :vartype vcenters: azure.mgmt.connectedvmware.operations.VCentersOperations :ivar virtual_machines: VirtualMachinesOperations operations - :vartype virtual_machines: azure_arc_vmware_management_service_api.operations.VirtualMachinesOperations + :vartype virtual_machines: azure.mgmt.connectedvmware.operations.VirtualMachinesOperations :ivar virtual_machine_templates: VirtualMachineTemplatesOperations operations - :vartype virtual_machine_templates: azure_arc_vmware_management_service_api.operations.VirtualMachineTemplatesOperations + :vartype virtual_machine_templates: azure.mgmt.connectedvmware.operations.VirtualMachineTemplatesOperations :ivar virtual_networks: VirtualNetworksOperations operations - :vartype virtual_networks: azure_arc_vmware_management_service_api.operations.VirtualNetworksOperations + :vartype virtual_networks: azure.mgmt.connectedvmware.operations.VirtualNetworksOperations :ivar inventory_items: InventoryItemsOperations operations - :vartype inventory_items: azure_arc_vmware_management_service_api.operations.InventoryItemsOperations + :vartype inventory_items: azure.mgmt.connectedvmware.operations.InventoryItemsOperations :ivar hybrid_identity_metadata: HybridIdentityMetadataOperations operations - :vartype hybrid_identity_metadata: azure_arc_vmware_management_service_api.operations.HybridIdentityMetadataOperations + :vartype hybrid_identity_metadata: azure.mgmt.connectedvmware.operations.HybridIdentityMetadataOperations :ivar machine_extensions: MachineExtensionsOperations operations - :vartype machine_extensions: azure_arc_vmware_management_service_api.operations.MachineExtensionsOperations - :ivar guest_agent: GuestAgentOperations operations - :vartype guest_agent: azure_arc_vmware_management_service_api.operations.GuestAgentOperations + :vartype machine_extensions: azure.mgmt.connectedvmware.operations.MachineExtensionsOperations + :ivar guest_agents: GuestAgentsOperations operations + :vartype guest_agents: azure.mgmt.connectedvmware.operations.GuestAgentsOperations :param credential: Credential needed for the client to connect to Azure. :type credential: ~azure.core.credentials.TokenCredential :param subscription_id: The Subscription ID. @@ -114,7 +114,7 @@ def __init__( self._client, self._config, self._serialize, self._deserialize) self.machine_extensions = MachineExtensionsOperations( self._client, self._config, self._serialize, self._deserialize) - self.guest_agent = GuestAgentOperations( + self.guest_agents = GuestAgentsOperations( self._client, self._config, self._serialize, self._deserialize) def _send_request(self, http_request, **kwargs): diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/_version.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/_version.py index e5754a47ce6..8761a6c8ec5 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/_version.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/_version.py @@ -6,4 +6,4 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -VERSION = "1.0.0b1" +VERSION = "0.1.1" diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/_azure_arc_vmware_management_service_api.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/_azure_arc_vmware_management_service_api.py index 1dea4672c0b..af1a589c110 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/_azure_arc_vmware_management_service_api.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/_azure_arc_vmware_management_service_api.py @@ -29,7 +29,7 @@ from .operations import InventoryItemsOperations from .operations import HybridIdentityMetadataOperations from .operations import MachineExtensionsOperations -from .operations import GuestAgentOperations +from .operations import GuestAgentsOperations from .. import models @@ -37,31 +37,31 @@ class AzureArcVMwareManagementServiceAPI(object): """Self service experience for VMware. :ivar operations: Operations operations - :vartype operations: azure_arc_vmware_management_service_api.aio.operations.Operations + :vartype operations: azure.mgmt.connectedvmware.aio.operations.Operations :ivar resource_pools: ResourcePoolsOperations operations - :vartype resource_pools: azure_arc_vmware_management_service_api.aio.operations.ResourcePoolsOperations + :vartype resource_pools: azure.mgmt.connectedvmware.aio.operations.ResourcePoolsOperations :ivar clusters: ClustersOperations operations - :vartype clusters: azure_arc_vmware_management_service_api.aio.operations.ClustersOperations + :vartype clusters: azure.mgmt.connectedvmware.aio.operations.ClustersOperations :ivar hosts: HostsOperations operations - :vartype hosts: azure_arc_vmware_management_service_api.aio.operations.HostsOperations + :vartype hosts: azure.mgmt.connectedvmware.aio.operations.HostsOperations :ivar datastores: DatastoresOperations operations - :vartype datastores: azure_arc_vmware_management_service_api.aio.operations.DatastoresOperations + :vartype datastores: azure.mgmt.connectedvmware.aio.operations.DatastoresOperations :ivar vcenters: VCentersOperations operations - :vartype vcenters: azure_arc_vmware_management_service_api.aio.operations.VCentersOperations + :vartype vcenters: azure.mgmt.connectedvmware.aio.operations.VCentersOperations :ivar virtual_machines: VirtualMachinesOperations operations - :vartype virtual_machines: azure_arc_vmware_management_service_api.aio.operations.VirtualMachinesOperations + :vartype virtual_machines: azure.mgmt.connectedvmware.aio.operations.VirtualMachinesOperations :ivar virtual_machine_templates: VirtualMachineTemplatesOperations operations - :vartype virtual_machine_templates: azure_arc_vmware_management_service_api.aio.operations.VirtualMachineTemplatesOperations + :vartype virtual_machine_templates: azure.mgmt.connectedvmware.aio.operations.VirtualMachineTemplatesOperations :ivar virtual_networks: VirtualNetworksOperations operations - :vartype virtual_networks: azure_arc_vmware_management_service_api.aio.operations.VirtualNetworksOperations + :vartype virtual_networks: azure.mgmt.connectedvmware.aio.operations.VirtualNetworksOperations :ivar inventory_items: InventoryItemsOperations operations - :vartype inventory_items: azure_arc_vmware_management_service_api.aio.operations.InventoryItemsOperations + :vartype inventory_items: azure.mgmt.connectedvmware.aio.operations.InventoryItemsOperations :ivar hybrid_identity_metadata: HybridIdentityMetadataOperations operations - :vartype hybrid_identity_metadata: azure_arc_vmware_management_service_api.aio.operations.HybridIdentityMetadataOperations + :vartype hybrid_identity_metadata: azure.mgmt.connectedvmware.aio.operations.HybridIdentityMetadataOperations :ivar machine_extensions: MachineExtensionsOperations operations - :vartype machine_extensions: azure_arc_vmware_management_service_api.aio.operations.MachineExtensionsOperations - :ivar guest_agent: GuestAgentOperations operations - :vartype guest_agent: azure_arc_vmware_management_service_api.aio.operations.GuestAgentOperations + :vartype machine_extensions: azure.mgmt.connectedvmware.aio.operations.MachineExtensionsOperations + :ivar guest_agents: GuestAgentsOperations operations + :vartype guest_agents: azure.mgmt.connectedvmware.aio.operations.GuestAgentsOperations :param credential: Credential needed for the client to connect to Azure. :type credential: ~azure.core.credentials_async.AsyncTokenCredential :param subscription_id: The Subscription ID. @@ -111,7 +111,7 @@ def __init__( self._client, self._config, self._serialize, self._deserialize) self.machine_extensions = MachineExtensionsOperations( self._client, self._config, self._serialize, self._deserialize) - self.guest_agent = GuestAgentOperations( + self.guest_agents = GuestAgentsOperations( self._client, self._config, self._serialize, self._deserialize) async def _send_request(self, http_request: HttpRequest, **kwargs: Any) -> AsyncHttpResponse: diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/__init__.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/__init__.py index b41a867163f..de63ef86d5d 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/__init__.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/__init__.py @@ -18,7 +18,7 @@ from ._inventory_items_operations import InventoryItemsOperations from ._hybrid_identity_metadata_operations import HybridIdentityMetadataOperations from ._machine_extensions_operations import MachineExtensionsOperations -from ._guest_agent_operations import GuestAgentOperations +from ._guest_agents_operations import GuestAgentsOperations __all__ = [ 'Operations', @@ -33,5 +33,5 @@ 'InventoryItemsOperations', 'HybridIdentityMetadataOperations', 'MachineExtensionsOperations', - 'GuestAgentOperations', + 'GuestAgentsOperations', ] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_clusters_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_clusters_operations.py index 65a0981ed1c..2759532e00e 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_clusters_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_clusters_operations.py @@ -28,7 +28,7 @@ class ClustersOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -120,7 +120,7 @@ async def begin_create( :param cluster_name: Name of the cluster. :type cluster_name: str :param body: Request payload. - :type body: ~azure_arc_vmware_management_service_api.models.Cluster + :type body: ~azure.mgmt.connectedvmware.models.Cluster :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. @@ -128,7 +128,7 @@ async def begin_create( :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of AsyncLROPoller that returns either Cluster or the result of cls(response) - :rtype: ~azure.core.polling.AsyncLROPoller[~azure_arc_vmware_management_service_api.models.Cluster] + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.connectedvmware.models.Cluster] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] @@ -193,7 +193,7 @@ async def get( :type cluster_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: Cluster, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.Cluster + :rtype: ~azure.mgmt.connectedvmware.models.Cluster :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Cluster"] @@ -254,10 +254,10 @@ async def update( :param cluster_name: Name of the cluster. :type cluster_name: str :param body: Resource properties to update. - :type body: ~azure_arc_vmware_management_service_api.models.ResourcePatch + :type body: ~azure.mgmt.connectedvmware.models.ResourcePatch :keyword callable cls: A custom type or function that will be passed the direct response :return: Cluster, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.Cluster + :rtype: ~azure.mgmt.connectedvmware.models.Cluster :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Cluster"] @@ -438,7 +438,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either ClustersList or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure_arc_vmware_management_service_api.models.ClustersList] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.connectedvmware.models.ClustersList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ClustersList"] @@ -510,7 +510,7 @@ def list_by_resource_group( :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either ClustersList or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure_arc_vmware_management_service_api.models.ClustersList] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.connectedvmware.models.ClustersList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ClustersList"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_datastores_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_datastores_operations.py index 698422156d4..2bc7a9fe757 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_datastores_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_datastores_operations.py @@ -28,7 +28,7 @@ class DatastoresOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -120,7 +120,7 @@ async def begin_create( :param datastore_name: Name of the datastore. :type datastore_name: str :param body: Request payload. - :type body: ~azure_arc_vmware_management_service_api.models.Datastore + :type body: ~azure.mgmt.connectedvmware.models.Datastore :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. @@ -128,7 +128,7 @@ async def begin_create( :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of AsyncLROPoller that returns either Datastore or the result of cls(response) - :rtype: ~azure.core.polling.AsyncLROPoller[~azure_arc_vmware_management_service_api.models.Datastore] + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.connectedvmware.models.Datastore] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] @@ -193,7 +193,7 @@ async def get( :type datastore_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: Datastore, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.Datastore + :rtype: ~azure.mgmt.connectedvmware.models.Datastore :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Datastore"] @@ -254,10 +254,10 @@ async def update( :param datastore_name: Name of the datastore. :type datastore_name: str :param body: Resource properties to update. - :type body: ~azure_arc_vmware_management_service_api.models.ResourcePatch + :type body: ~azure.mgmt.connectedvmware.models.ResourcePatch :keyword callable cls: A custom type or function that will be passed the direct response :return: Datastore, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.Datastore + :rtype: ~azure.mgmt.connectedvmware.models.Datastore :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Datastore"] @@ -438,7 +438,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either DatastoresList or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure_arc_vmware_management_service_api.models.DatastoresList] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.connectedvmware.models.DatastoresList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.DatastoresList"] @@ -510,7 +510,7 @@ def list_by_resource_group( :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either DatastoresList or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure_arc_vmware_management_service_api.models.DatastoresList] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.connectedvmware.models.DatastoresList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.DatastoresList"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_guest_agents_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_guest_agents_operations.py new file mode 100644 index 00000000000..3f25196fc2f --- /dev/null +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_guest_agents_operations.py @@ -0,0 +1,445 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar, Union +import warnings + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling + +from ... import models as _models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class GuestAgentsOperations: + """GuestAgentsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.connectedvmware.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _create_initial( + self, + resource_group_name: str, + virtual_machine_name: str, + name: str, + body: Optional["_models.GuestAgent"] = None, + **kwargs: Any + ) -> "_models.GuestAgent": + cls = kwargs.pop('cls', None) # type: ClsType["_models.GuestAgent"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._create_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'virtualMachineName': self._serialize.url("virtual_machine_name", virtual_machine_name, 'str'), + 'name': self._serialize.url("name", name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if body is not None: + body_content = self._serialize.body(body, 'GuestAgent') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('GuestAgent', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('GuestAgent', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _create_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedVMwarevSphere/virtualMachines/{virtualMachineName}/guestAgents/{name}'} # type: ignore + + async def begin_create( + self, + resource_group_name: str, + virtual_machine_name: str, + name: str, + body: Optional["_models.GuestAgent"] = None, + **kwargs: Any + ) -> AsyncLROPoller["_models.GuestAgent"]: + """Implements GuestAgent PUT method. + + Create Or Update GuestAgent. + + :param resource_group_name: The Resource Group Name. + :type resource_group_name: str + :param virtual_machine_name: Name of the vm. + :type virtual_machine_name: str + :param name: Name of the guestAgents. + :type name: str + :param body: Request payload. + :type body: ~azure.mgmt.connectedvmware.models.GuestAgent + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. + Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either GuestAgent or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.connectedvmware.models.GuestAgent] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.GuestAgent"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_initial( + resource_group_name=resource_group_name, + virtual_machine_name=virtual_machine_name, + name=name, + body=body, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('GuestAgent', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'virtualMachineName': self._serialize.url("virtual_machine_name", virtual_machine_name, 'str'), + 'name': self._serialize.url("name", name, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_create.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedVMwarevSphere/virtualMachines/{virtualMachineName}/guestAgents/{name}'} # type: ignore + + async def get( + self, + resource_group_name: str, + virtual_machine_name: str, + name: str, + **kwargs: Any + ) -> "_models.GuestAgent": + """Gets GuestAgent. + + Implements GuestAgent GET method. + + :param resource_group_name: The Resource Group Name. + :type resource_group_name: str + :param virtual_machine_name: Name of the vm. + :type virtual_machine_name: str + :param name: Name of the GuestAgent. + :type name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: GuestAgent, or the result of cls(response) + :rtype: ~azure.mgmt.connectedvmware.models.GuestAgent + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.GuestAgent"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'virtualMachineName': self._serialize.url("virtual_machine_name", virtual_machine_name, 'str'), + 'name': self._serialize.url("name", name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('GuestAgent', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedVMwarevSphere/virtualMachines/{virtualMachineName}/guestAgents/{name}'} # type: ignore + + async def _delete_initial( + self, + resource_group_name: str, + virtual_machine_name: str, + name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self._delete_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'virtualMachineName': self._serialize.url("virtual_machine_name", virtual_machine_name, 'str'), + 'name': self._serialize.url("name", name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.delete(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedVMwarevSphere/virtualMachines/{virtualMachineName}/guestAgents/{name}'} # type: ignore + + async def begin_delete( + self, + resource_group_name: str, + virtual_machine_name: str, + name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes an GuestAgent. + + Implements GuestAgent DELETE method. + + :param resource_group_name: The Resource Group Name. + :type resource_group_name: str + :param virtual_machine_name: Name of the vm. + :type virtual_machine_name: str + :param name: Name of the GuestAgent. + :type name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. + Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + virtual_machine_name=virtual_machine_name, + name=name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'virtualMachineName': self._serialize.url("virtual_machine_name", virtual_machine_name, 'str'), + 'name': self._serialize.url("name", name, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedVMwarevSphere/virtualMachines/{virtualMachineName}/guestAgents/{name}'} # type: ignore + + def list_by_vm( + self, + resource_group_name: str, + virtual_machine_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.GuestAgentList"]: + """Implements GET GuestAgent in a vm. + + Returns the list of GuestAgent of the given vm. + + :param resource_group_name: The Resource Group Name. + :type resource_group_name: str + :param virtual_machine_name: Name of the vm. + :type virtual_machine_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either GuestAgentList or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.connectedvmware.models.GuestAgentList] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.GuestAgentList"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_by_vm.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'virtualMachineName': self._serialize.url("virtual_machine_name", virtual_machine_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('GuestAgentList', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_vm.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedVMwarevSphere/virtualMachines/{virtualMachineName}/guestAgents'} # type: ignore diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_hosts_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_hosts_operations.py index d0b9b27f302..342b008d0b4 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_hosts_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_hosts_operations.py @@ -28,7 +28,7 @@ class HostsOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -120,7 +120,7 @@ async def begin_create( :param host_name: Name of the host. :type host_name: str :param body: Request payload. - :type body: ~azure_arc_vmware_management_service_api.models.Host + :type body: ~azure.mgmt.connectedvmware.models.Host :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. @@ -128,7 +128,7 @@ async def begin_create( :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of AsyncLROPoller that returns either Host or the result of cls(response) - :rtype: ~azure.core.polling.AsyncLROPoller[~azure_arc_vmware_management_service_api.models.Host] + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.connectedvmware.models.Host] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] @@ -193,7 +193,7 @@ async def get( :type host_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: Host, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.Host + :rtype: ~azure.mgmt.connectedvmware.models.Host :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Host"] @@ -254,10 +254,10 @@ async def update( :param host_name: Name of the host. :type host_name: str :param body: Resource properties to update. - :type body: ~azure_arc_vmware_management_service_api.models.ResourcePatch + :type body: ~azure.mgmt.connectedvmware.models.ResourcePatch :keyword callable cls: A custom type or function that will be passed the direct response :return: Host, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.Host + :rtype: ~azure.mgmt.connectedvmware.models.Host :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Host"] @@ -438,7 +438,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either HostsList or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure_arc_vmware_management_service_api.models.HostsList] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.connectedvmware.models.HostsList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.HostsList"] @@ -510,7 +510,7 @@ def list_by_resource_group( :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either HostsList or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure_arc_vmware_management_service_api.models.HostsList] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.connectedvmware.models.HostsList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.HostsList"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_hybrid_identity_metadata_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_hybrid_identity_metadata_operations.py index c77c3577a26..d8a86e3a989 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_hybrid_identity_metadata_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_hybrid_identity_metadata_operations.py @@ -26,7 +26,7 @@ class HybridIdentityMetadataOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -60,10 +60,10 @@ async def create( :param metadata_name: Name of the hybridIdentityMetadata. :type metadata_name: str :param body: Request payload. - :type body: ~azure_arc_vmware_management_service_api.models.HybridIdentityMetadata + :type body: ~azure.mgmt.connectedvmware.models.HybridIdentityMetadata :keyword callable cls: A custom type or function that will be passed the direct response :return: HybridIdentityMetadata, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.HybridIdentityMetadata + :rtype: ~azure.mgmt.connectedvmware.models.HybridIdentityMetadata :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.HybridIdentityMetadata"] @@ -136,7 +136,7 @@ async def get( :type metadata_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: HybridIdentityMetadata, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.HybridIdentityMetadata + :rtype: ~azure.mgmt.connectedvmware.models.HybridIdentityMetadata :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.HybridIdentityMetadata"] @@ -260,7 +260,7 @@ def list_by_vm( :type virtual_machine_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either HybridIdentityMetadataList or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure_arc_vmware_management_service_api.models.HybridIdentityMetadataList] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.connectedvmware.models.HybridIdentityMetadataList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.HybridIdentityMetadataList"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_inventory_items_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_inventory_items_operations.py index 3964fa934e3..056f35faa07 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_inventory_items_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_inventory_items_operations.py @@ -26,7 +26,7 @@ class InventoryItemsOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -60,10 +60,10 @@ async def create( :param inventory_item_name: Name of the inventoryItem. :type inventory_item_name: str :param body: Request payload. - :type body: ~azure_arc_vmware_management_service_api.models.InventoryItem + :type body: ~azure.mgmt.connectedvmware.models.InventoryItem :keyword callable cls: A custom type or function that will be passed the direct response :return: InventoryItem, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.InventoryItem + :rtype: ~azure.mgmt.connectedvmware.models.InventoryItem :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.InventoryItem"] @@ -136,7 +136,7 @@ async def get( :type inventory_item_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: InventoryItem, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.InventoryItem + :rtype: ~azure.mgmt.connectedvmware.models.InventoryItem :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.InventoryItem"] @@ -260,7 +260,7 @@ def list_by_v_center( :type vcenter_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either InventoryItemsList or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure_arc_vmware_management_service_api.models.InventoryItemsList] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.connectedvmware.models.InventoryItemsList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.InventoryItemsList"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_machine_extensions_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_machine_extensions_operations.py index adcb8d8e3b8..d07f35c6c0e 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_machine_extensions_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_machine_extensions_operations.py @@ -28,7 +28,7 @@ class MachineExtensionsOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -120,7 +120,7 @@ async def begin_create_or_update( :param extension_name: The name of the machine extension. :type extension_name: str :param extension_parameters: Parameters supplied to the Create Machine Extension operation. - :type extension_parameters: ~azure_arc_vmware_management_service_api.models.MachineExtension + :type extension_parameters: ~azure.mgmt.connectedvmware.models.MachineExtension :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. @@ -128,7 +128,7 @@ async def begin_create_or_update( :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of AsyncLROPoller that returns either MachineExtension or the result of cls(response) - :rtype: ~azure.core.polling.AsyncLROPoller[~azure_arc_vmware_management_service_api.models.MachineExtension] + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.connectedvmware.models.MachineExtension] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] @@ -256,7 +256,7 @@ async def begin_update( :param extension_name: The name of the machine extension. :type extension_name: str :param extension_parameters: Parameters supplied to the Create Machine Extension operation. - :type extension_parameters: ~azure_arc_vmware_management_service_api.models.MachineExtensionUpdate + :type extension_parameters: ~azure.mgmt.connectedvmware.models.MachineExtensionUpdate :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. @@ -264,7 +264,7 @@ async def begin_update( :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of AsyncLROPoller that returns either MachineExtension or the result of cls(response) - :rtype: ~azure.core.polling.AsyncLROPoller[~azure_arc_vmware_management_service_api.models.MachineExtension] + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.connectedvmware.models.MachineExtension] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] @@ -448,7 +448,7 @@ async def get( :type extension_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: MachineExtension, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.MachineExtension + :rtype: ~azure.mgmt.connectedvmware.models.MachineExtension :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.MachineExtension"] @@ -511,7 +511,7 @@ def list( :type expand: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either MachineExtensionsListResult or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure_arc_vmware_management_service_api.models.MachineExtensionsListResult] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.connectedvmware.models.MachineExtensionsListResult] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.MachineExtensionsListResult"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_operations.py index 462475b6c0b..8c28a2ae19d 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_operations.py @@ -26,7 +26,7 @@ class Operations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -49,7 +49,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either OperationsList or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure_arc_vmware_management_service_api.models.OperationsList] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.connectedvmware.models.OperationsList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.OperationsList"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_resource_pools_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_resource_pools_operations.py index 19c7a7a9a8b..05d871c51c7 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_resource_pools_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_resource_pools_operations.py @@ -28,7 +28,7 @@ class ResourcePoolsOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -120,7 +120,7 @@ async def begin_create( :param resource_pool_name: Name of the resourcePool. :type resource_pool_name: str :param body: Request payload. - :type body: ~azure_arc_vmware_management_service_api.models.ResourcePool + :type body: ~azure.mgmt.connectedvmware.models.ResourcePool :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. @@ -128,7 +128,7 @@ async def begin_create( :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of AsyncLROPoller that returns either ResourcePool or the result of cls(response) - :rtype: ~azure.core.polling.AsyncLROPoller[~azure_arc_vmware_management_service_api.models.ResourcePool] + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.connectedvmware.models.ResourcePool] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] @@ -193,7 +193,7 @@ async def get( :type resource_pool_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: ResourcePool, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.ResourcePool + :rtype: ~azure.mgmt.connectedvmware.models.ResourcePool :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ResourcePool"] @@ -254,10 +254,10 @@ async def update( :param resource_pool_name: Name of the resourcePool. :type resource_pool_name: str :param body: Resource properties to update. - :type body: ~azure_arc_vmware_management_service_api.models.ResourcePatch + :type body: ~azure.mgmt.connectedvmware.models.ResourcePatch :keyword callable cls: A custom type or function that will be passed the direct response :return: ResourcePool, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.ResourcePool + :rtype: ~azure.mgmt.connectedvmware.models.ResourcePool :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ResourcePool"] @@ -438,7 +438,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either ResourcePoolsList or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure_arc_vmware_management_service_api.models.ResourcePoolsList] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.connectedvmware.models.ResourcePoolsList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ResourcePoolsList"] @@ -510,7 +510,7 @@ def list_by_resource_group( :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either ResourcePoolsList or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure_arc_vmware_management_service_api.models.ResourcePoolsList] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.connectedvmware.models.ResourcePoolsList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ResourcePoolsList"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_vcenters_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_vcenters_operations.py index 1505b91c10a..94d34c43821 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_vcenters_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_vcenters_operations.py @@ -28,7 +28,7 @@ class VCentersOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -120,7 +120,7 @@ async def begin_create( :param vcenter_name: Name of the vCenter. :type vcenter_name: str :param body: Request payload. - :type body: ~azure_arc_vmware_management_service_api.models.VCenter + :type body: ~azure.mgmt.connectedvmware.models.VCenter :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. @@ -128,7 +128,7 @@ async def begin_create( :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of AsyncLROPoller that returns either VCenter or the result of cls(response) - :rtype: ~azure.core.polling.AsyncLROPoller[~azure_arc_vmware_management_service_api.models.VCenter] + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.connectedvmware.models.VCenter] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] @@ -193,7 +193,7 @@ async def get( :type vcenter_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: VCenter, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.VCenter + :rtype: ~azure.mgmt.connectedvmware.models.VCenter :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VCenter"] @@ -254,10 +254,10 @@ async def update( :param vcenter_name: Name of the vCenter. :type vcenter_name: str :param body: Resource properties to update. - :type body: ~azure_arc_vmware_management_service_api.models.ResourcePatch + :type body: ~azure.mgmt.connectedvmware.models.ResourcePatch :keyword callable cls: A custom type or function that will be passed the direct response :return: VCenter, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.VCenter + :rtype: ~azure.mgmt.connectedvmware.models.VCenter :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VCenter"] @@ -438,7 +438,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either VCentersList or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure_arc_vmware_management_service_api.models.VCentersList] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.connectedvmware.models.VCentersList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VCentersList"] @@ -510,7 +510,7 @@ def list_by_resource_group( :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either VCentersList or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure_arc_vmware_management_service_api.models.VCentersList] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.connectedvmware.models.VCentersList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VCentersList"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_virtual_machine_templates_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_virtual_machine_templates_operations.py index c93bd051cdc..6b829b6d708 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_virtual_machine_templates_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_virtual_machine_templates_operations.py @@ -28,7 +28,7 @@ class VirtualMachineTemplatesOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -120,7 +120,7 @@ async def begin_create( :param virtual_machine_template_name: Name of the virtual machine template resource. :type virtual_machine_template_name: str :param body: Request payload. - :type body: ~azure_arc_vmware_management_service_api.models.VirtualMachineTemplate + :type body: ~azure.mgmt.connectedvmware.models.VirtualMachineTemplate :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. @@ -128,7 +128,7 @@ async def begin_create( :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of AsyncLROPoller that returns either VirtualMachineTemplate or the result of cls(response) - :rtype: ~azure.core.polling.AsyncLROPoller[~azure_arc_vmware_management_service_api.models.VirtualMachineTemplate] + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.connectedvmware.models.VirtualMachineTemplate] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] @@ -193,7 +193,7 @@ async def get( :type virtual_machine_template_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: VirtualMachineTemplate, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.VirtualMachineTemplate + :rtype: ~azure.mgmt.connectedvmware.models.VirtualMachineTemplate :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualMachineTemplate"] @@ -254,10 +254,10 @@ async def update( :param virtual_machine_template_name: Name of the virtual machine template resource. :type virtual_machine_template_name: str :param body: Resource properties to update. - :type body: ~azure_arc_vmware_management_service_api.models.ResourcePatch + :type body: ~azure.mgmt.connectedvmware.models.ResourcePatch :keyword callable cls: A custom type or function that will be passed the direct response :return: VirtualMachineTemplate, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.VirtualMachineTemplate + :rtype: ~azure.mgmt.connectedvmware.models.VirtualMachineTemplate :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualMachineTemplate"] @@ -438,7 +438,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either VirtualMachineTemplatesList or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure_arc_vmware_management_service_api.models.VirtualMachineTemplatesList] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.connectedvmware.models.VirtualMachineTemplatesList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualMachineTemplatesList"] @@ -510,7 +510,7 @@ def list_by_resource_group( :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either VirtualMachineTemplatesList or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure_arc_vmware_management_service_api.models.VirtualMachineTemplatesList] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.connectedvmware.models.VirtualMachineTemplatesList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualMachineTemplatesList"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_virtual_machines_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_virtual_machines_operations.py index 8bf87cbea7e..87786f136f6 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_virtual_machines_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_virtual_machines_operations.py @@ -28,7 +28,7 @@ class VirtualMachinesOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -120,7 +120,7 @@ async def begin_create( :param virtual_machine_name: Name of the virtual machine resource. :type virtual_machine_name: str :param body: Request payload. - :type body: ~azure_arc_vmware_management_service_api.models.VirtualMachine + :type body: ~azure.mgmt.connectedvmware.models.VirtualMachine :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. @@ -128,7 +128,7 @@ async def begin_create( :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of AsyncLROPoller that returns either VirtualMachine or the result of cls(response) - :rtype: ~azure.core.polling.AsyncLROPoller[~azure_arc_vmware_management_service_api.models.VirtualMachine] + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.connectedvmware.models.VirtualMachine] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] @@ -193,7 +193,7 @@ async def get( :type virtual_machine_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: VirtualMachine, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.VirtualMachine + :rtype: ~azure.mgmt.connectedvmware.models.VirtualMachine :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualMachine"] @@ -315,7 +315,7 @@ async def begin_update( :param virtual_machine_name: Name of the virtual machine resource. :type virtual_machine_name: str :param body: Resource properties to update. - :type body: ~azure_arc_vmware_management_service_api.models.VirtualMachineUpdate + :type body: ~azure.mgmt.connectedvmware.models.VirtualMachineUpdate :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. @@ -323,7 +323,7 @@ async def begin_update( :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of AsyncLROPoller that returns either VirtualMachine or the result of cls(response) - :rtype: ~azure.core.polling.AsyncLROPoller[~azure_arc_vmware_management_service_api.models.VirtualMachine] + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.connectedvmware.models.VirtualMachine] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] @@ -560,7 +560,7 @@ async def begin_stop( :param virtual_machine_name: Name of the virtual machine resource. :type virtual_machine_name: str :param body: Virtualmachine stop action payload. - :type body: ~azure_arc_vmware_management_service_api.models.StopVirtualMachineOptions + :type body: ~azure.mgmt.connectedvmware.models.StopVirtualMachineOptions :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. @@ -846,7 +846,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either VirtualMachinesList or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure_arc_vmware_management_service_api.models.VirtualMachinesList] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.connectedvmware.models.VirtualMachinesList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualMachinesList"] @@ -918,7 +918,7 @@ def list_by_resource_group( :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either VirtualMachinesList or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure_arc_vmware_management_service_api.models.VirtualMachinesList] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.connectedvmware.models.VirtualMachinesList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualMachinesList"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_virtual_networks_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_virtual_networks_operations.py index de4184e064e..36bd2c41584 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_virtual_networks_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/aio/operations/_virtual_networks_operations.py @@ -28,7 +28,7 @@ class VirtualNetworksOperations: instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -120,7 +120,7 @@ async def begin_create( :param virtual_network_name: Name of the virtual network resource. :type virtual_network_name: str :param body: Request payload. - :type body: ~azure_arc_vmware_management_service_api.models.VirtualNetwork + :type body: ~azure.mgmt.connectedvmware.models.VirtualNetwork :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. @@ -128,7 +128,7 @@ async def begin_create( :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of AsyncLROPoller that returns either VirtualNetwork or the result of cls(response) - :rtype: ~azure.core.polling.AsyncLROPoller[~azure_arc_vmware_management_service_api.models.VirtualNetwork] + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.connectedvmware.models.VirtualNetwork] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] @@ -193,7 +193,7 @@ async def get( :type virtual_network_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: VirtualNetwork, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.VirtualNetwork + :rtype: ~azure.mgmt.connectedvmware.models.VirtualNetwork :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetwork"] @@ -254,10 +254,10 @@ async def update( :param virtual_network_name: Name of the virtual network resource. :type virtual_network_name: str :param body: Resource properties to update. - :type body: ~azure_arc_vmware_management_service_api.models.ResourcePatch + :type body: ~azure.mgmt.connectedvmware.models.ResourcePatch :keyword callable cls: A custom type or function that will be passed the direct response :return: VirtualNetwork, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.VirtualNetwork + :rtype: ~azure.mgmt.connectedvmware.models.VirtualNetwork :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetwork"] @@ -438,7 +438,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either VirtualNetworksList or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure_arc_vmware_management_service_api.models.VirtualNetworksList] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.connectedvmware.models.VirtualNetworksList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworksList"] @@ -510,7 +510,7 @@ def list_by_resource_group( :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either VirtualNetworksList or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure_arc_vmware_management_service_api.models.VirtualNetworksList] + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.connectedvmware.models.VirtualNetworksList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworksList"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/models/__init__.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/models/__init__.py index 8565dca41b6..137a2f8f856 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/models/__init__.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/models/__init__.py @@ -24,6 +24,7 @@ from ._models_py3 import GuestCredential from ._models_py3 import HardwareProfile from ._models_py3 import Host + from ._models_py3 import HostInventoryItem from ._models_py3 import HostsList from ._models_py3 import HttpProxyConfiguration from ._models_py3 import HybridIdentityMetadata @@ -95,6 +96,7 @@ from ._models import GuestCredential # type: ignore from ._models import HardwareProfile # type: ignore from ._models import Host # type: ignore + from ._models import HostInventoryItem # type: ignore from ._models import HostsList # type: ignore from ._models import HttpProxyConfiguration # type: ignore from ._models import HybridIdentityMetadata # type: ignore @@ -153,6 +155,7 @@ CreatedByType, DiskMode, DiskType, + FirmwareType, IPAddressAllocationMethod, IdentityType, InventoryType, @@ -185,6 +188,7 @@ 'GuestCredential', 'HardwareProfile', 'Host', + 'HostInventoryItem', 'HostsList', 'HttpProxyConfiguration', 'HybridIdentityMetadata', @@ -241,6 +245,7 @@ 'CreatedByType', 'DiskMode', 'DiskType', + 'FirmwareType', 'IPAddressAllocationMethod', 'IdentityType', 'InventoryType', diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/models/_azure_arc_vmware_management_service_api_enums.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/models/_azure_arc_vmware_management_service_api_enums.py index 40baa56f776..9a15a80b6c8 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/models/_azure_arc_vmware_management_service_api_enums.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/models/_azure_arc_vmware_management_service_api_enums.py @@ -55,6 +55,13 @@ class DiskType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): SESPARSE = "sesparse" UNKNOWN = "unknown" +class FirmwareType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Firmware type + """ + + BIOS = "bios" + EFI = "efi" + class IdentityType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """The type of managed service identity. """ @@ -72,6 +79,7 @@ class InventoryType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): VIRTUAL_NETWORK = "VirtualNetwork" CLUSTER = "Cluster" DATASTORE = "Datastore" + HOST = "Host" class IPAddressAllocationMethod(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """IP address allocation method. diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/models/_models.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/models/_models.py index 3ddb908d08c..b932b37bd4d 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/models/_models.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/models/_models.py @@ -20,9 +20,9 @@ class Cluster(msrest.serialization.Model): :param location: Required. Gets or sets the location. :type location: str :param extended_location: Gets or sets the extended location. - :type extended_location: ~azure_arc_vmware_management_service_api.models.ExtendedLocation + :type extended_location: ~azure.mgmt.connectedvmware.models.ExtendedLocation :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param tags: A set of tags. Gets or sets the Resource tags. :type tags: dict[str, str] :ivar name: Gets or sets the name. @@ -47,9 +47,13 @@ class Cluster(msrest.serialization.Model): :ivar mo_name: Gets or sets the vCenter Managed Object name for the cluster. :vartype mo_name: str :ivar statuses: The resource status information. - :vartype statuses: list[~azure_arc_vmware_management_service_api.models.ResourceStatus] + :vartype statuses: list[~azure.mgmt.connectedvmware.models.ResourceStatus] :ivar custom_resource_name: Gets the name of the corresponding resource in Kubernetes. :vartype custom_resource_name: str + :ivar datastore_ids: Gets or sets the datastore ARM ids. + :vartype datastore_ids: list[str] + :ivar network_ids: Gets or sets the network ARM ids. + :vartype network_ids: list[str] :ivar provisioning_state: Gets or sets the provisioning state. :vartype provisioning_state: str """ @@ -64,6 +68,8 @@ class Cluster(msrest.serialization.Model): 'mo_name': {'readonly': True}, 'statuses': {'readonly': True}, 'custom_resource_name': {'readonly': True}, + 'datastore_ids': {'readonly': True}, + 'network_ids': {'readonly': True}, 'provisioning_state': {'readonly': True}, } @@ -83,6 +89,8 @@ class Cluster(msrest.serialization.Model): 'mo_name': {'key': 'properties.moName', 'type': 'str'}, 'statuses': {'key': 'properties.statuses', 'type': '[ResourceStatus]'}, 'custom_resource_name': {'key': 'properties.customResourceName', 'type': 'str'}, + 'datastore_ids': {'key': 'properties.datastoreIds', 'type': '[str]'}, + 'network_ids': {'key': 'properties.networkIds', 'type': '[str]'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, } @@ -106,6 +114,8 @@ def __init__( self.mo_name = None self.statuses = None self.custom_resource_name = None + self.datastore_ids = None + self.network_ids = None self.provisioning_state = None @@ -113,7 +123,7 @@ class InventoryItemProperties(msrest.serialization.Model): """Defines the resource properties. You probably want to use the sub-classes and not this class directly. Known - sub-classes are: ClusterInventoryItem, DatastoreInventoryItem, ResourcePoolInventoryItem, VirtualMachineInventoryItem, VirtualMachineTemplateInventoryItem, VirtualNetworkInventoryItem. + sub-classes are: ClusterInventoryItem, DatastoreInventoryItem, HostInventoryItem, ResourcePoolInventoryItem, VirtualMachineInventoryItem, VirtualMachineTemplateInventoryItem, VirtualNetworkInventoryItem. Variables are only populated by the server, and will be ignored when sending a request. @@ -121,8 +131,8 @@ class InventoryItemProperties(msrest.serialization.Model): :param inventory_type: Required. They inventory type.Constant filled by server. Possible values include: "ResourcePool", "VirtualMachine", "VirtualMachineTemplate", "VirtualNetwork", - "Cluster", "Datastore". - :type inventory_type: str or ~azure_arc_vmware_management_service_api.models.InventoryType + "Cluster", "Datastore", "Host". + :type inventory_type: str or ~azure.mgmt.connectedvmware.models.InventoryType :param managed_resource_id: Gets or sets the tracked resource id corresponding to the inventory resource. :type managed_resource_id: str @@ -148,7 +158,7 @@ class InventoryItemProperties(msrest.serialization.Model): } _subtype_map = { - 'inventory_type': {'Cluster': 'ClusterInventoryItem', 'Datastore': 'DatastoreInventoryItem', 'ResourcePool': 'ResourcePoolInventoryItem', 'VirtualMachine': 'VirtualMachineInventoryItem', 'VirtualMachineTemplate': 'VirtualMachineTemplateInventoryItem', 'VirtualNetwork': 'VirtualNetworkInventoryItem'} + 'inventory_type': {'Cluster': 'ClusterInventoryItem', 'Datastore': 'DatastoreInventoryItem', 'Host': 'HostInventoryItem', 'ResourcePool': 'ResourcePoolInventoryItem', 'VirtualMachine': 'VirtualMachineInventoryItem', 'VirtualMachineTemplate': 'VirtualMachineTemplateInventoryItem', 'VirtualNetwork': 'VirtualNetworkInventoryItem'} } def __init__( @@ -172,8 +182,8 @@ class ClusterInventoryItem(InventoryItemProperties): :param inventory_type: Required. They inventory type.Constant filled by server. Possible values include: "ResourcePool", "VirtualMachine", "VirtualMachineTemplate", "VirtualNetwork", - "Cluster", "Datastore". - :type inventory_type: str or ~azure_arc_vmware_management_service_api.models.InventoryType + "Cluster", "Datastore", "Host". + :type inventory_type: str or ~azure.mgmt.connectedvmware.models.InventoryType :param managed_resource_id: Gets or sets the tracked resource id corresponding to the inventory resource. :type managed_resource_id: str @@ -214,7 +224,7 @@ class ClustersList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of Clusters. :type next_link: str :param value: Required. Array of Clusters. - :type value: list[~azure_arc_vmware_management_service_api.models.Cluster] + :type value: list[~azure.mgmt.connectedvmware.models.Cluster] """ _validation = { @@ -285,9 +295,9 @@ class Datastore(msrest.serialization.Model): :param location: Required. Gets or sets the location. :type location: str :param extended_location: Gets or sets the extended location. - :type extended_location: ~azure_arc_vmware_management_service_api.models.ExtendedLocation + :type extended_location: ~azure.mgmt.connectedvmware.models.ExtendedLocation :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param tags: A set of tags. Gets or sets the Resource tags. :type tags: dict[str, str] :ivar name: Gets or sets the name. @@ -313,14 +323,13 @@ class Datastore(msrest.serialization.Model): :ivar mo_name: Gets or sets the vCenter Managed Object name for the datastore. :vartype mo_name: str :ivar statuses: The resource status information. - :vartype statuses: list[~azure_arc_vmware_management_service_api.models.ResourceStatus] + :vartype statuses: list[~azure.mgmt.connectedvmware.models.ResourceStatus] :ivar custom_resource_name: Gets the name of the corresponding resource in Kubernetes. :vartype custom_resource_name: str :ivar provisioning_state: Provisioning state of the resource. Possible values include: "Succeeded", "Failed", "Canceled", "Provisioning", "Updating", "Deleting", "Accepted", "Created". - :vartype provisioning_state: str or - ~azure_arc_vmware_management_service_api.models.ProvisioningState + :vartype provisioning_state: str or ~azure.mgmt.connectedvmware.models.ProvisioningState """ _validation = { @@ -387,8 +396,8 @@ class DatastoreInventoryItem(InventoryItemProperties): :param inventory_type: Required. They inventory type.Constant filled by server. Possible values include: "ResourcePool", "VirtualMachine", "VirtualMachineTemplate", "VirtualNetwork", - "Cluster", "Datastore". - :type inventory_type: str or ~azure_arc_vmware_management_service_api.models.InventoryType + "Cluster", "Datastore", "Host". + :type inventory_type: str or ~azure.mgmt.connectedvmware.models.InventoryType :param managed_resource_id: Gets or sets the tracked resource id corresponding to the inventory resource. :type managed_resource_id: str @@ -398,6 +407,10 @@ class DatastoreInventoryItem(InventoryItemProperties): :type mo_name: str :ivar provisioning_state: Gets or sets the provisioning state. :vartype provisioning_state: str + :param capacity_gb: Gets or sets Maximum capacity of this datastore, in GBs. + :type capacity_gb: long + :param free_space_gb: Gets or sets Available space of this datastore, in GBs. + :type free_space_gb: long """ _validation = { @@ -411,6 +424,8 @@ class DatastoreInventoryItem(InventoryItemProperties): 'mo_ref_id': {'key': 'moRefId', 'type': 'str'}, 'mo_name': {'key': 'moName', 'type': 'str'}, 'provisioning_state': {'key': 'provisioningState', 'type': 'str'}, + 'capacity_gb': {'key': 'capacityGB', 'type': 'long'}, + 'free_space_gb': {'key': 'freeSpaceGB', 'type': 'long'}, } def __init__( @@ -419,6 +434,8 @@ def __init__( ): super(DatastoreInventoryItem, self).__init__(**kwargs) self.inventory_type = 'Datastore' # type: str + self.capacity_gb = kwargs.get('capacity_gb', None) + self.free_space_gb = kwargs.get('free_space_gb', None) class DatastoresList(msrest.serialization.Model): @@ -429,7 +446,7 @@ class DatastoresList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of Datastores. :type next_link: str :param value: Required. Array of Datastores. - :type value: list[~azure_arc_vmware_management_service_api.models.Datastore] + :type value: list[~azure.mgmt.connectedvmware.models.Datastore] """ _validation = { @@ -460,7 +477,7 @@ class ErrorDefinition(msrest.serialization.Model): :ivar message: Description of the error. :vartype message: str :ivar details: Internal error details. - :vartype details: list[~azure_arc_vmware_management_service_api.models.ErrorDefinition] + :vartype details: list[~azure.mgmt.connectedvmware.models.ErrorDefinition] """ _validation = { @@ -497,7 +514,7 @@ class ErrorDetail(msrest.serialization.Model): :param target: Indicates which property in the request is responsible for the error. :type target: str :param details: Additional error details. - :type details: list[~azure_arc_vmware_management_service_api.models.ErrorDetail] + :type details: list[~azure.mgmt.connectedvmware.models.ErrorDetail] """ _validation = { @@ -527,7 +544,7 @@ class ErrorResponse(msrest.serialization.Model): """Error response. :param error: The error details. - :type error: ~azure_arc_vmware_management_service_api.models.ErrorDefinition + :type error: ~azure.mgmt.connectedvmware.models.ErrorDefinition """ _attribute_map = { @@ -650,21 +667,22 @@ class GuestAgent(ProxyResource): "Microsoft.Storage/storageAccounts". :vartype type: str :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :ivar uuid: Gets or sets a unique identifier for this resource. :vartype uuid: str :param credentials: Username / Password Credentials to provision guest agent. - :type credentials: ~azure_arc_vmware_management_service_api.models.GuestCredential + :type credentials: ~azure.mgmt.connectedvmware.models.GuestCredential :param http_proxy_config: HTTP Proxy configuration for the VM. - :type http_proxy_config: ~azure_arc_vmware_management_service_api.models.HttpProxyConfiguration + :type http_proxy_config: ~azure.mgmt.connectedvmware.models.HttpProxyConfiguration :param provisioning_action: Gets or sets the guest agent provisioning action. Possible values include: "install", "uninstall", "repair". - :type provisioning_action: str or - ~azure_arc_vmware_management_service_api.models.ProvisioningAction + :type provisioning_action: str or ~azure.mgmt.connectedvmware.models.ProvisioningAction :ivar status: Gets or sets the guest agent status. :vartype status: str :ivar custom_resource_name: Gets the name of the corresponding resource in Kubernetes. :vartype custom_resource_name: str + :ivar statuses: The resource status information. + :vartype statuses: list[~azure.mgmt.connectedvmware.models.ResourceStatus] :ivar provisioning_state: Gets or sets the provisioning state. :vartype provisioning_state: str """ @@ -677,6 +695,7 @@ class GuestAgent(ProxyResource): 'uuid': {'readonly': True}, 'status': {'readonly': True}, 'custom_resource_name': {'readonly': True}, + 'statuses': {'readonly': True}, 'provisioning_state': {'readonly': True}, } @@ -691,6 +710,7 @@ class GuestAgent(ProxyResource): 'provisioning_action': {'key': 'properties.provisioningAction', 'type': 'str'}, 'status': {'key': 'properties.status', 'type': 'str'}, 'custom_resource_name': {'key': 'properties.customResourceName', 'type': 'str'}, + 'statuses': {'key': 'properties.statuses', 'type': '[ResourceStatus]'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, } @@ -706,6 +726,7 @@ def __init__( self.provisioning_action = kwargs.get('provisioning_action', None) self.status = None self.custom_resource_name = None + self.statuses = None self.provisioning_state = None @@ -717,7 +738,7 @@ class GuestAgentList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of GuestAgent. :type next_link: str :param value: Required. Array of GuestAgent. - :type value: list[~azure_arc_vmware_management_service_api.models.GuestAgent] + :type value: list[~azure.mgmt.connectedvmware.models.GuestAgent] """ _validation = { @@ -747,13 +768,13 @@ class GuestAgentProfile(msrest.serialization.Model): :vartype vm_uuid: str :ivar status: The status of the hybrid machine agent. Possible values include: "Connected", "Disconnected", "Error". - :vartype status: str or ~azure_arc_vmware_management_service_api.models.StatusTypes + :vartype status: str or ~azure.mgmt.connectedvmware.models.StatusTypes :ivar last_status_change: The time of the last status change. :vartype last_status_change: ~datetime.datetime :ivar agent_version: The hybrid machine agent full version. :vartype agent_version: str :ivar error_details: Details about the error state. - :vartype error_details: list[~azure_arc_vmware_management_service_api.models.ErrorDetail] + :vartype error_details: list[~azure.mgmt.connectedvmware.models.ErrorDetail] """ _validation = { @@ -868,9 +889,9 @@ class Host(msrest.serialization.Model): :param location: Required. Gets or sets the location. :type location: str :param extended_location: Gets or sets the extended location. - :type extended_location: ~azure_arc_vmware_management_service_api.models.ExtendedLocation + :type extended_location: ~azure.mgmt.connectedvmware.models.ExtendedLocation :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param tags: A set of tags. Gets or sets the Resource tags. :type tags: dict[str, str] :ivar name: Gets or sets the name. @@ -894,7 +915,7 @@ class Host(msrest.serialization.Model): :ivar mo_name: Gets or sets the vCenter Managed Object name for the host. :vartype mo_name: str :ivar statuses: The resource status information. - :vartype statuses: list[~azure_arc_vmware_management_service_api.models.ResourceStatus] + :vartype statuses: list[~azure.mgmt.connectedvmware.models.ResourceStatus] :ivar custom_resource_name: Gets the name of the corresponding resource in Kubernetes. :vartype custom_resource_name: str :ivar provisioning_state: Gets or sets the provisioning state. @@ -956,6 +977,53 @@ def __init__( self.provisioning_state = None +class HostInventoryItem(InventoryItemProperties): + """The host inventory item. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :param inventory_type: Required. They inventory type.Constant filled by server. Possible + values include: "ResourcePool", "VirtualMachine", "VirtualMachineTemplate", "VirtualNetwork", + "Cluster", "Datastore", "Host". + :type inventory_type: str or ~azure.mgmt.connectedvmware.models.InventoryType + :param managed_resource_id: Gets or sets the tracked resource id corresponding to the inventory + resource. + :type managed_resource_id: str + :param mo_ref_id: Gets or sets the MoRef (Managed Object Reference) ID for the inventory item. + :type mo_ref_id: str + :param mo_name: Gets or sets the vCenter Managed Object name for the inventory item. + :type mo_name: str + :ivar provisioning_state: Gets or sets the provisioning state. + :vartype provisioning_state: str + :param parent: Parent host inventory resource details. + :type parent: ~azure.mgmt.connectedvmware.models.InventoryItemDetails + """ + + _validation = { + 'inventory_type': {'required': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'inventory_type': {'key': 'inventoryType', 'type': 'str'}, + 'managed_resource_id': {'key': 'managedResourceId', 'type': 'str'}, + 'mo_ref_id': {'key': 'moRefId', 'type': 'str'}, + 'mo_name': {'key': 'moName', 'type': 'str'}, + 'provisioning_state': {'key': 'provisioningState', 'type': 'str'}, + 'parent': {'key': 'parent', 'type': 'InventoryItemDetails'}, + } + + def __init__( + self, + **kwargs + ): + super(HostInventoryItem, self).__init__(**kwargs) + self.inventory_type = 'Host' # type: str + self.parent = kwargs.get('parent', None) + + class HostsList(msrest.serialization.Model): """List of Hosts. @@ -964,7 +1032,7 @@ class HostsList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of Hosts. :type next_link: str :param value: Required. Array of Hosts. - :type value: list[~azure_arc_vmware_management_service_api.models.Host] + :type value: list[~azure.mgmt.connectedvmware.models.Host] """ _validation = { @@ -1018,13 +1086,13 @@ class HybridIdentityMetadata(ProxyResource): "Microsoft.Storage/storageAccounts". :vartype type: str :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param vm_id: Gets or sets the Vm Id. :type vm_id: str :param public_key: Gets or sets the Public Key. :type public_key: str :ivar identity: The identity of the resource. - :vartype identity: ~azure_arc_vmware_management_service_api.models.Identity + :vartype identity: ~azure.mgmt.connectedvmware.models.Identity :ivar provisioning_state: Gets or sets the provisioning state. :vartype provisioning_state: str """ @@ -1069,7 +1137,7 @@ class HybridIdentityMetadataList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of HybridIdentityMetadata. :type next_link: str :param value: Required. Array of HybridIdentityMetadata. - :type value: list[~azure_arc_vmware_management_service_api.models.HybridIdentityMetadata] + :type value: list[~azure.mgmt.connectedvmware.models.HybridIdentityMetadata] """ _validation = { @@ -1103,7 +1171,7 @@ class Identity(msrest.serialization.Model): :vartype tenant_id: str :param type: Required. The type of managed service identity. Possible values include: "None", "SystemAssigned". - :type type: str or ~azure_arc_vmware_management_service_api.models.IdentityType + :type type: str or ~azure.mgmt.connectedvmware.models.IdentityType """ _validation = { @@ -1144,15 +1212,15 @@ class InventoryItem(ProxyResource): "Microsoft.Storage/storageAccounts". :vartype type: str :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param kind: Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type; e.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value. :type kind: str :param inventory_type: Required. They inventory type.Constant filled by server. Possible values include: "ResourcePool", "VirtualMachine", "VirtualMachineTemplate", "VirtualNetwork", - "Cluster", "Datastore". - :type inventory_type: str or ~azure_arc_vmware_management_service_api.models.InventoryType + "Cluster", "Datastore", "Host". + :type inventory_type: str or ~azure.mgmt.connectedvmware.models.InventoryType :param managed_resource_id: Gets or sets the tracked resource id corresponding to the inventory resource. :type managed_resource_id: str @@ -1231,7 +1299,7 @@ class InventoryItemsList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of InventoryItems. :type next_link: str :param value: Required. Array of InventoryItems. - :type value: list[~azure_arc_vmware_management_service_api.models.InventoryItem] + :type value: list[~azure.mgmt.connectedvmware.models.InventoryItem] """ _validation = { @@ -1260,7 +1328,7 @@ class MachineExtension(msrest.serialization.Model): :param location: Gets or sets the location. :type location: str :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param tags: A set of tags. Gets or sets the Resource tags. :type tags: dict[str, str] :ivar name: Gets or sets the name. @@ -1291,8 +1359,7 @@ class MachineExtension(msrest.serialization.Model): :ivar provisioning_state: The provisioning state, which only appears in the response. :vartype provisioning_state: str :param instance_view: The machine extension instance view. - :type instance_view: - ~azure_arc_vmware_management_service_api.models.MachineExtensionPropertiesInstanceView + :type instance_view: ~azure.mgmt.connectedvmware.models.MachineExtensionPropertiesInstanceView """ _validation = { @@ -1355,8 +1422,7 @@ class MachineExtensionInstanceView(msrest.serialization.Model): :ivar type_handler_version: Specifies the version of the script handler. :vartype type_handler_version: str :param status: Instance view status. - :type status: - ~azure_arc_vmware_management_service_api.models.MachineExtensionInstanceViewStatus + :type status: ~azure.mgmt.connectedvmware.models.MachineExtensionInstanceViewStatus """ _validation = { @@ -1391,7 +1457,7 @@ class MachineExtensionInstanceViewStatus(msrest.serialization.Model): :ivar code: The status code. :vartype code: str :ivar level: The level code. Possible values include: "Info", "Warning", "Error". - :vartype level: str or ~azure_arc_vmware_management_service_api.models.StatusLevelTypes + :vartype level: str or ~azure.mgmt.connectedvmware.models.StatusLevelTypes :ivar display_status: The short localizable label for the status. :vartype display_status: str :ivar message: The detailed status message, including for alerts and error messages. @@ -1440,8 +1506,7 @@ class MachineExtensionPropertiesInstanceView(MachineExtensionInstanceView): :ivar type_handler_version: Specifies the version of the script handler. :vartype type_handler_version: str :param status: Instance view status. - :type status: - ~azure_arc_vmware_management_service_api.models.MachineExtensionInstanceViewStatus + :type status: ~azure.mgmt.connectedvmware.models.MachineExtensionInstanceViewStatus """ _validation = { @@ -1468,7 +1533,7 @@ class MachineExtensionsListResult(msrest.serialization.Model): """Describes the Machine Extensions List Result. :param value: The list of extensions. - :type value: list[~azure_arc_vmware_management_service_api.models.MachineExtension] + :type value: list[~azure.mgmt.connectedvmware.models.MachineExtension] :param next_link: The uri to fetch the next page of machine extensions. Call ListNext() with this to fetch the next page of extensions. :type next_link: str @@ -1576,10 +1641,10 @@ class NetworkInterface(msrest.serialization.Model): :type network_id: str :param nic_type: NIC type. Possible values include: "vmxnet3", "vmxnet2", "vmxnet", "e1000", "e1000e", "pcnet32". - :type nic_type: str or ~azure_arc_vmware_management_service_api.models.NICType + :type nic_type: str or ~azure.mgmt.connectedvmware.models.NICType :param power_on_boot: Gets or sets the power on boot. Possible values include: "enabled", "disabled". - :type power_on_boot: str or ~azure_arc_vmware_management_service_api.models.PowerOnBootOption + :type power_on_boot: str or ~azure.mgmt.connectedvmware.models.PowerOnBootOption :ivar network_mo_ref_id: Gets or sets the vCenter MoRef (Managed Object Reference) ID of the virtual network that the nic is connected to. @@ -1590,7 +1655,7 @@ class NetworkInterface(msrest.serialization.Model): :param device_key: Gets or sets the device key value. :type device_key: int :param ip_settings: Gets or sets the ipsettings. - :type ip_settings: ~azure_arc_vmware_management_service_api.models.NicIPSettings + :type ip_settings: ~azure.mgmt.connectedvmware.models.NicIPSettings """ _validation = { @@ -1643,10 +1708,10 @@ class NetworkInterfaceUpdate(msrest.serialization.Model): :type network_id: str :param nic_type: NIC type. Possible values include: "vmxnet3", "vmxnet2", "vmxnet", "e1000", "e1000e", "pcnet32". - :type nic_type: str or ~azure_arc_vmware_management_service_api.models.NICType + :type nic_type: str or ~azure.mgmt.connectedvmware.models.NICType :param power_on_boot: Gets or sets the power on boot. Possible values include: "enabled", "disabled". - :type power_on_boot: str or ~azure_arc_vmware_management_service_api.models.PowerOnBootOption + :type power_on_boot: str or ~azure.mgmt.connectedvmware.models.PowerOnBootOption :param device_key: Gets or sets the device key value. :type device_key: int """ @@ -1676,8 +1741,7 @@ class NetworkProfile(msrest.serialization.Model): :param network_interfaces: Gets or sets the list of network interfaces associated with the virtual machine. - :type network_interfaces: - list[~azure_arc_vmware_management_service_api.models.NetworkInterface] + :type network_interfaces: list[~azure.mgmt.connectedvmware.models.NetworkInterface] """ _attribute_map = { @@ -1697,8 +1761,7 @@ class NetworkProfileUpdate(msrest.serialization.Model): :param network_interfaces: Gets or sets the list of network interfaces associated with the virtual machine. - :type network_interfaces: - list[~azure_arc_vmware_management_service_api.models.NetworkInterfaceUpdate] + :type network_interfaces: list[~azure.mgmt.connectedvmware.models.NetworkInterfaceUpdate] """ _attribute_map = { @@ -1755,8 +1818,7 @@ class NicIPSettings(msrest.serialization.Model): :param allocation_method: Gets or sets the nic allocation method. Possible values include: "unset", "dynamic", "static", "linklayer", "random", "other". - :type allocation_method: str or - ~azure_arc_vmware_management_service_api.models.IPAddressAllocationMethod + :type allocation_method: str or ~azure.mgmt.connectedvmware.models.IPAddressAllocationMethod :param dns_servers: Gets or sets the dns servers. :type dns_servers: list[str] :param gateway: Gets or sets the gateway. @@ -1771,8 +1833,7 @@ class NicIPSettings(msrest.serialization.Model): :vartype secondary_wins_server: str :ivar ip_address_info: Gets or sets the IP address information being reported for this NIC. This contains the same IPv4 information above plus IPV6 information. - :vartype ip_address_info: - list[~azure_arc_vmware_management_service_api.models.NicIPAddressSettings] + :vartype ip_address_info: list[~azure.mgmt.connectedvmware.models.NicIPAddressSettings] """ _validation = { @@ -1815,7 +1876,7 @@ class Operation(msrest.serialization.Model): :param is_data_action: Indicates whether the operation is data action or not. :type is_data_action: bool :param display: Properties of the operation. - :type display: ~azure_arc_vmware_management_service_api.models.OperationDisplay + :type display: ~azure.mgmt.connectedvmware.models.OperationDisplay """ _attribute_map = { @@ -1873,7 +1934,7 @@ class OperationsList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of operations. :type next_link: str :param value: Required. Array of operations. - :type value: list[~azure_arc_vmware_management_service_api.models.Operation] + :type value: list[~azure.mgmt.connectedvmware.models.Operation] """ _validation = { @@ -1907,7 +1968,7 @@ class OsProfile(msrest.serialization.Model): :type admin_password: str :param os_type: Gets or sets the type of the os. Possible values include: "Windows", "Linux", "Other". - :type os_type: str or ~azure_arc_vmware_management_service_api.models.OsType + :type os_type: str or ~azure.mgmt.connectedvmware.models.OsType :ivar os_name: Gets or sets os name. :vartype os_name: str :ivar tools_running_status: Gets or sets the current running status of VMware Tools running in @@ -1998,9 +2059,9 @@ class ResourcePool(msrest.serialization.Model): :param location: Required. Gets or sets the location. :type location: str :param extended_location: Gets or sets the extended location. - :type extended_location: ~azure_arc_vmware_management_service_api.models.ExtendedLocation + :type extended_location: ~azure.mgmt.connectedvmware.models.ExtendedLocation :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param tags: A set of tags. Gets or sets the Resource tags. :type tags: dict[str, str] :ivar name: Gets or sets the name. @@ -2050,7 +2111,7 @@ class ResourcePool(msrest.serialization.Model): :ivar custom_resource_name: Gets the name of the corresponding resource in Kubernetes. :vartype custom_resource_name: str :ivar statuses: The resource status information. - :vartype statuses: list[~azure_arc_vmware_management_service_api.models.ResourceStatus] + :vartype statuses: list[~azure.mgmt.connectedvmware.models.ResourceStatus] :ivar provisioning_state: Gets or sets the provisioning state. :vartype provisioning_state: str """ @@ -2137,8 +2198,8 @@ class ResourcePoolInventoryItem(InventoryItemProperties): :param inventory_type: Required. They inventory type.Constant filled by server. Possible values include: "ResourcePool", "VirtualMachine", "VirtualMachineTemplate", "VirtualNetwork", - "Cluster", "Datastore". - :type inventory_type: str or ~azure_arc_vmware_management_service_api.models.InventoryType + "Cluster", "Datastore", "Host". + :type inventory_type: str or ~azure.mgmt.connectedvmware.models.InventoryType :param managed_resource_id: Gets or sets the tracked resource id corresponding to the inventory resource. :type managed_resource_id: str @@ -2149,7 +2210,7 @@ class ResourcePoolInventoryItem(InventoryItemProperties): :ivar provisioning_state: Gets or sets the provisioning state. :vartype provisioning_state: str :param parent: Parent resourcePool inventory resource details. - :type parent: ~azure_arc_vmware_management_service_api.models.InventoryItemDetails + :type parent: ~azure.mgmt.connectedvmware.models.InventoryItemDetails """ _validation = { @@ -2183,7 +2244,7 @@ class ResourcePoolsList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of ResourcePools. :type next_link: str :param value: Required. Array of ResourcePools. - :type value: list[~azure_arc_vmware_management_service_api.models.ResourcePool] + :type value: list[~azure.mgmt.connectedvmware.models.ResourcePool] """ _validation = { @@ -2281,11 +2342,10 @@ class StorageProfile(msrest.serialization.Model): Variables are only populated by the server, and will be ignored when sending a request. :param disks: Gets or sets the list of virtual disks associated with the virtual machine. - :type disks: list[~azure_arc_vmware_management_service_api.models.VirtualDisk] + :type disks: list[~azure.mgmt.connectedvmware.models.VirtualDisk] :ivar scsi_controllers: Gets or sets the list of virtual SCSI controllers associated with the virtual machine. - :vartype scsi_controllers: - list[~azure_arc_vmware_management_service_api.models.VirtualSCSIController] + :vartype scsi_controllers: list[~azure.mgmt.connectedvmware.models.VirtualSCSIController] """ _validation = { @@ -2310,7 +2370,7 @@ class StorageProfileUpdate(msrest.serialization.Model): """Defines the resource update properties. :param disks: Gets or sets the list of virtual disks associated with the virtual machine. - :type disks: list[~azure_arc_vmware_management_service_api.models.VirtualDiskUpdate] + :type disks: list[~azure.mgmt.connectedvmware.models.VirtualDiskUpdate] """ _attribute_map = { @@ -2332,15 +2392,14 @@ class SystemData(msrest.serialization.Model): :type created_by: str :param created_by_type: The type of identity that created the resource. Possible values include: "User", "Application", "ManagedIdentity", "Key". - :type created_by_type: str or ~azure_arc_vmware_management_service_api.models.CreatedByType + :type created_by_type: str or ~azure.mgmt.connectedvmware.models.CreatedByType :param created_at: The timestamp of resource creation (UTC). :type created_at: ~datetime.datetime :param last_modified_by: The identity that last modified the resource. :type last_modified_by: str :param last_modified_by_type: The type of identity that last modified the resource. Possible values include: "User", "Application", "ManagedIdentity", "Key". - :type last_modified_by_type: str or - ~azure_arc_vmware_management_service_api.models.CreatedByType + :type last_modified_by_type: str or ~azure.mgmt.connectedvmware.models.CreatedByType :param last_modified_at: The timestamp of resource last modification (UTC). :type last_modified_at: ~datetime.datetime """ @@ -2377,9 +2436,9 @@ class VCenter(msrest.serialization.Model): :param location: Required. Gets or sets the location. :type location: str :param extended_location: Gets or sets the extended location. - :type extended_location: ~azure_arc_vmware_management_service_api.models.ExtendedLocation + :type extended_location: ~azure.mgmt.connectedvmware.models.ExtendedLocation :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param tags: A set of tags. Gets or sets the Resource tags. :type tags: dict[str, str] :ivar name: Gets or sets the name. @@ -2407,9 +2466,9 @@ class VCenter(msrest.serialization.Model): :ivar custom_resource_name: Gets the name of the corresponding resource in Kubernetes. :vartype custom_resource_name: str :param credentials: Username / Password Credentials to connect to vcenter. - :type credentials: ~azure_arc_vmware_management_service_api.models.VICredential + :type credentials: ~azure.mgmt.connectedvmware.models.VICredential :ivar statuses: The resource status information. - :vartype statuses: list[~azure_arc_vmware_management_service_api.models.ResourceStatus] + :vartype statuses: list[~azure.mgmt.connectedvmware.models.ResourceStatus] :ivar provisioning_state: Gets or sets the provisioning state. :vartype provisioning_state: str """ @@ -2485,7 +2544,7 @@ class VCentersList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of VCenters. :type next_link: str :param value: Required. Array of VCenters. - :type value: list[~azure_arc_vmware_management_service_api.models.VCenter] + :type value: list[~azure.mgmt.connectedvmware.models.VCenter] """ _validation = { @@ -2546,7 +2605,7 @@ class VirtualDisk(msrest.serialization.Model): :type device_key: int :param disk_mode: Gets or sets the disk mode. Possible values include: "persistent", "independent_persistent", "independent_nonpersistent". - :type disk_mode: str or ~azure_arc_vmware_management_service_api.models.DiskMode + :type disk_mode: str or ~azure.mgmt.connectedvmware.models.DiskMode :param controller_key: Gets or sets the controller id. :type controller_key: int :param unit_number: Gets or sets the unit number of the disk on the controller. @@ -2555,7 +2614,7 @@ class VirtualDisk(msrest.serialization.Model): :type device_name: str :param disk_type: Gets or sets the disk backing type. Possible values include: "flat", "pmem", "rawphysical", "rawvirtual", "sparse", "sesparse", "unknown". - :type disk_type: str or ~azure_arc_vmware_management_service_api.models.DiskType + :type disk_type: str or ~azure.mgmt.connectedvmware.models.DiskType """ _validation = { @@ -2604,7 +2663,7 @@ class VirtualDiskUpdate(msrest.serialization.Model): :type device_key: int :param disk_mode: Gets or sets the disk mode. Possible values include: "persistent", "independent_persistent", "independent_nonpersistent". - :type disk_mode: str or ~azure_arc_vmware_management_service_api.models.DiskMode + :type disk_mode: str or ~azure.mgmt.connectedvmware.models.DiskMode :param controller_key: Gets or sets the controller id. :type controller_key: int :param unit_number: Gets or sets the unit number of the disk on the controller. @@ -2613,7 +2672,7 @@ class VirtualDiskUpdate(msrest.serialization.Model): :type device_name: str :param disk_type: Gets or sets the disk backing type. Possible values include: "flat", "pmem", "rawphysical", "rawvirtual", "sparse", "sesparse", "unknown". - :type disk_type: str or ~azure_arc_vmware_management_service_api.models.DiskType + :type disk_type: str or ~azure.mgmt.connectedvmware.models.DiskType """ _attribute_map = { @@ -2652,9 +2711,9 @@ class VirtualMachine(msrest.serialization.Model): :param location: Required. Gets or sets the location. :type location: str :param extended_location: Gets or sets the extended location. - :type extended_location: ~azure_arc_vmware_management_service_api.models.ExtendedLocation + :type extended_location: ~azure.mgmt.connectedvmware.models.ExtendedLocation :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param tags: A set of tags. Gets or sets the Resource tags. :type tags: dict[str, str] :ivar name: Gets or sets the name. @@ -2668,7 +2727,7 @@ class VirtualMachine(msrest.serialization.Model): the resource provider must validate and persist this value. :type kind: str :param identity: The identity of the resource. - :type identity: ~azure_arc_vmware_management_service_api.models.Identity + :type identity: ~azure.mgmt.connectedvmware.models.Identity :param resource_pool_id: Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will deploy. @@ -2680,17 +2739,17 @@ class VirtualMachine(msrest.serialization.Model): resides. :type v_center_id: str :param placement_profile: Placement properties. - :type placement_profile: ~azure_arc_vmware_management_service_api.models.PlacementProfile + :type placement_profile: ~azure.mgmt.connectedvmware.models.PlacementProfile :param os_profile: OS properties. - :type os_profile: ~azure_arc_vmware_management_service_api.models.OsProfile + :type os_profile: ~azure.mgmt.connectedvmware.models.OsProfile :param hardware_profile: Hardware properties. - :type hardware_profile: ~azure_arc_vmware_management_service_api.models.HardwareProfile + :type hardware_profile: ~azure.mgmt.connectedvmware.models.HardwareProfile :param network_profile: Network properties. - :type network_profile: ~azure_arc_vmware_management_service_api.models.NetworkProfile + :type network_profile: ~azure.mgmt.connectedvmware.models.NetworkProfile :param storage_profile: Storage properties. - :type storage_profile: ~azure_arc_vmware_management_service_api.models.StorageProfile + :type storage_profile: ~azure.mgmt.connectedvmware.models.StorageProfile :param guest_agent_profile: Guest agent status properties. - :type guest_agent_profile: ~azure_arc_vmware_management_service_api.models.GuestAgentProfile + :type guest_agent_profile: ~azure.mgmt.connectedvmware.models.GuestAgentProfile :param mo_ref_id: Gets or sets the vCenter MoRef (Managed Object Reference) ID for the virtual machine. :type mo_ref_id: str @@ -2704,6 +2763,8 @@ class VirtualMachine(msrest.serialization.Model): :vartype instance_uuid: str :param smbios_uuid: Gets or sets the SMBIOS UUID of the vm. :type smbios_uuid: str + :param firmware_type: Firmware type. Possible values include: "bios", "efi". + :type firmware_type: str or ~azure.mgmt.connectedvmware.models.FirmwareType :ivar power_state: Gets the power state of the virtual machine. :vartype power_state: str :ivar custom_resource_name: Gets the name of the corresponding resource in Kubernetes. @@ -2711,7 +2772,7 @@ class VirtualMachine(msrest.serialization.Model): :ivar uuid: Gets or sets a unique identifier for this resource. :vartype uuid: str :ivar statuses: The resource status information. - :vartype statuses: list[~azure_arc_vmware_management_service_api.models.ResourceStatus] + :vartype statuses: list[~azure.mgmt.connectedvmware.models.ResourceStatus] :ivar provisioning_state: Gets or sets the provisioning state. :vartype provisioning_state: str :ivar vm_id: Gets or sets a unique identifier for the vm resource. @@ -2760,6 +2821,7 @@ class VirtualMachine(msrest.serialization.Model): 'folder_path': {'key': 'properties.folderPath', 'type': 'str'}, 'instance_uuid': {'key': 'properties.instanceUuid', 'type': 'str'}, 'smbios_uuid': {'key': 'properties.smbiosUuid', 'type': 'str'}, + 'firmware_type': {'key': 'properties.firmwareType', 'type': 'str'}, 'power_state': {'key': 'properties.powerState', 'type': 'str'}, 'custom_resource_name': {'key': 'properties.customResourceName', 'type': 'str'}, 'uuid': {'key': 'properties.uuid', 'type': 'str'}, @@ -2797,6 +2859,7 @@ def __init__( self.folder_path = None self.instance_uuid = None self.smbios_uuid = kwargs.get('smbios_uuid', None) + self.firmware_type = kwargs.get('firmware_type', None) self.power_state = None self.custom_resource_name = None self.uuid = None @@ -2814,8 +2877,8 @@ class VirtualMachineInventoryItem(InventoryItemProperties): :param inventory_type: Required. They inventory type.Constant filled by server. Possible values include: "ResourcePool", "VirtualMachine", "VirtualMachineTemplate", "VirtualNetwork", - "Cluster", "Datastore". - :type inventory_type: str or ~azure_arc_vmware_management_service_api.models.InventoryType + "Cluster", "Datastore", "Host". + :type inventory_type: str or ~azure.mgmt.connectedvmware.models.InventoryType :param managed_resource_id: Gets or sets the tracked resource id corresponding to the inventory resource. :type managed_resource_id: str @@ -2827,7 +2890,7 @@ class VirtualMachineInventoryItem(InventoryItemProperties): :vartype provisioning_state: str :param os_type: Gets or sets the type of the os. Possible values include: "Windows", "Linux", "Other". - :type os_type: str or ~azure_arc_vmware_management_service_api.models.OsType + :type os_type: str or ~azure.mgmt.connectedvmware.models.OsType :param os_name: Gets or sets os name. :type os_name: str :param ip_addresses: Gets or sets the nic ip addresses. @@ -2835,9 +2898,9 @@ class VirtualMachineInventoryItem(InventoryItemProperties): :param folder_path: Gets or sets the folder path of the vm. :type folder_path: str :param host: Host inventory resource details. - :type host: ~azure_arc_vmware_management_service_api.models.InventoryItemDetails + :type host: ~azure.mgmt.connectedvmware.models.InventoryItemDetails :param resource_pool: ResourcePool inventory resource details. - :type resource_pool: ~azure_arc_vmware_management_service_api.models.InventoryItemDetails + :type resource_pool: ~azure.mgmt.connectedvmware.models.InventoryItemDetails :param instance_uuid: Gets or sets the instance uuid of the vm. :type instance_uuid: str :param smbios_uuid: Gets or sets the SMBIOS UUID of the vm. @@ -2911,7 +2974,7 @@ class VirtualMachinesList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of VirtualMachines. :type next_link: str :param value: Required. Array of VirtualMachines. - :type value: list[~azure_arc_vmware_management_service_api.models.VirtualMachine] + :type value: list[~azure.mgmt.connectedvmware.models.VirtualMachine] """ _validation = { @@ -2942,9 +3005,9 @@ class VirtualMachineTemplate(msrest.serialization.Model): :param location: Required. Gets or sets the location. :type location: str :param extended_location: Gets or sets the extended location. - :type extended_location: ~azure_arc_vmware_management_service_api.models.ExtendedLocation + :type extended_location: ~azure.mgmt.connectedvmware.models.ExtendedLocation :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param tags: A set of tags. Gets or sets the Resource tags. :type tags: dict[str, str] :ivar name: Gets or sets the name. @@ -2979,16 +3042,15 @@ class VirtualMachineTemplate(msrest.serialization.Model): :vartype num_cores_per_socket: int :ivar os_type: Gets or sets the type of the os. Possible values include: "Windows", "Linux", "Other". - :vartype os_type: str or ~azure_arc_vmware_management_service_api.models.OsType + :vartype os_type: str or ~azure.mgmt.connectedvmware.models.OsType :ivar os_name: Gets or sets os name. :vartype os_name: str :ivar folder_path: Gets or sets the folder path of the template. :vartype folder_path: str :ivar network_interfaces: Gets or sets the network interfaces of the template. - :vartype network_interfaces: - list[~azure_arc_vmware_management_service_api.models.NetworkInterface] + :vartype network_interfaces: list[~azure.mgmt.connectedvmware.models.NetworkInterface] :ivar disks: Gets or sets the disks the template. - :vartype disks: list[~azure_arc_vmware_management_service_api.models.VirtualDisk] + :vartype disks: list[~azure.mgmt.connectedvmware.models.VirtualDisk] :ivar custom_resource_name: Gets the name of the corresponding resource in Kubernetes. :vartype custom_resource_name: str :ivar tools_version_status: Gets or sets the current version status of VMware Tools installed @@ -2996,8 +3058,10 @@ class VirtualMachineTemplate(msrest.serialization.Model): :vartype tools_version_status: str :ivar tools_version: Gets or sets the current version of VMware Tools. :vartype tools_version: str + :ivar firmware_type: Firmware type. Possible values include: "bios", "efi". + :vartype firmware_type: str or ~azure.mgmt.connectedvmware.models.FirmwareType :ivar statuses: The resource status information. - :vartype statuses: list[~azure_arc_vmware_management_service_api.models.ResourceStatus] + :vartype statuses: list[~azure.mgmt.connectedvmware.models.ResourceStatus] :ivar provisioning_state: Gets or sets the provisioning state. :vartype provisioning_state: str """ @@ -3021,6 +3085,7 @@ class VirtualMachineTemplate(msrest.serialization.Model): 'custom_resource_name': {'readonly': True}, 'tools_version_status': {'readonly': True}, 'tools_version': {'readonly': True}, + 'firmware_type': {'readonly': True}, 'statuses': {'readonly': True}, 'provisioning_state': {'readonly': True}, } @@ -3050,6 +3115,7 @@ class VirtualMachineTemplate(msrest.serialization.Model): 'custom_resource_name': {'key': 'properties.customResourceName', 'type': 'str'}, 'tools_version_status': {'key': 'properties.toolsVersionStatus', 'type': 'str'}, 'tools_version': {'key': 'properties.toolsVersion', 'type': 'str'}, + 'firmware_type': {'key': 'properties.firmwareType', 'type': 'str'}, 'statuses': {'key': 'properties.statuses', 'type': '[ResourceStatus]'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, } @@ -3083,6 +3149,7 @@ def __init__( self.custom_resource_name = None self.tools_version_status = None self.tools_version = None + self.firmware_type = None self.statuses = None self.provisioning_state = None @@ -3096,8 +3163,8 @@ class VirtualMachineTemplateInventoryItem(InventoryItemProperties): :param inventory_type: Required. They inventory type.Constant filled by server. Possible values include: "ResourcePool", "VirtualMachine", "VirtualMachineTemplate", "VirtualNetwork", - "Cluster", "Datastore". - :type inventory_type: str or ~azure_arc_vmware_management_service_api.models.InventoryType + "Cluster", "Datastore", "Host". + :type inventory_type: str or ~azure.mgmt.connectedvmware.models.InventoryType :param managed_resource_id: Gets or sets the tracked resource id corresponding to the inventory resource. :type managed_resource_id: str @@ -3116,7 +3183,7 @@ class VirtualMachineTemplateInventoryItem(InventoryItemProperties): :type num_cores_per_socket: int :param os_type: Gets or sets the type of the os. Possible values include: "Windows", "Linux", "Other". - :type os_type: str or ~azure_arc_vmware_management_service_api.models.OsType + :type os_type: str or ~azure.mgmt.connectedvmware.models.OsType :param os_name: Gets or sets os name. :type os_name: str :param folder_path: Gets or sets the folder path of the template. @@ -3164,7 +3231,7 @@ class VirtualMachineTemplatesList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of VirtualMachineTemplates. :type next_link: str :param value: Required. Array of VirtualMachineTemplates. - :type value: list[~azure_arc_vmware_management_service_api.models.VirtualMachineTemplate] + :type value: list[~azure.mgmt.connectedvmware.models.VirtualMachineTemplate] """ _validation = { @@ -3191,13 +3258,13 @@ class VirtualMachineUpdate(msrest.serialization.Model): :param tags: A set of tags. Gets or sets the Resource tags. :type tags: dict[str, str] :param identity: The identity of the resource. - :type identity: ~azure_arc_vmware_management_service_api.models.Identity + :type identity: ~azure.mgmt.connectedvmware.models.Identity :param hardware_profile: Defines the resource properties. - :type hardware_profile: ~azure_arc_vmware_management_service_api.models.HardwareProfile + :type hardware_profile: ~azure.mgmt.connectedvmware.models.HardwareProfile :param storage_profile: Defines the resource update properties. - :type storage_profile: ~azure_arc_vmware_management_service_api.models.StorageProfileUpdate + :type storage_profile: ~azure.mgmt.connectedvmware.models.StorageProfileUpdate :param network_profile: Defines the update resource properties. - :type network_profile: ~azure_arc_vmware_management_service_api.models.NetworkProfileUpdate + :type network_profile: ~azure.mgmt.connectedvmware.models.NetworkProfileUpdate """ _attribute_map = { @@ -3230,9 +3297,9 @@ class VirtualNetwork(msrest.serialization.Model): :param location: Required. Gets or sets the location. :type location: str :param extended_location: Gets or sets the extended location. - :type extended_location: ~azure_arc_vmware_management_service_api.models.ExtendedLocation + :type extended_location: ~azure.mgmt.connectedvmware.models.ExtendedLocation :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param tags: A set of tags. Gets or sets the Resource tags. :type tags: dict[str, str] :ivar name: Gets or sets the name. @@ -3260,7 +3327,7 @@ class VirtualNetwork(msrest.serialization.Model): :ivar custom_resource_name: Gets the name of the corresponding resource in Kubernetes. :vartype custom_resource_name: str :ivar statuses: The resource status information. - :vartype statuses: list[~azure_arc_vmware_management_service_api.models.ResourceStatus] + :vartype statuses: list[~azure.mgmt.connectedvmware.models.ResourceStatus] :ivar provisioning_state: Gets or sets the provisioning state. :vartype provisioning_state: str """ @@ -3329,8 +3396,8 @@ class VirtualNetworkInventoryItem(InventoryItemProperties): :param inventory_type: Required. They inventory type.Constant filled by server. Possible values include: "ResourcePool", "VirtualMachine", "VirtualMachineTemplate", "VirtualNetwork", - "Cluster", "Datastore". - :type inventory_type: str or ~azure_arc_vmware_management_service_api.models.InventoryType + "Cluster", "Datastore", "Host". + :type inventory_type: str or ~azure.mgmt.connectedvmware.models.InventoryType :param managed_resource_id: Gets or sets the tracked resource id corresponding to the inventory resource. :type managed_resource_id: str @@ -3371,7 +3438,7 @@ class VirtualNetworksList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of VirtualNetworks. :type next_link: str :param value: Required. Array of VirtualNetworks. - :type value: list[~azure_arc_vmware_management_service_api.models.VirtualNetwork] + :type value: list[~azure.mgmt.connectedvmware.models.VirtualNetwork] """ _validation = { @@ -3397,7 +3464,7 @@ class VirtualSCSIController(msrest.serialization.Model): :param type: Gets or sets the controller type. Possible values include: "lsilogic", "buslogic", "pvscsi", "lsilogicsas". - :type type: str or ~azure_arc_vmware_management_service_api.models.SCSIControllerType + :type type: str or ~azure.mgmt.connectedvmware.models.SCSIControllerType :param controller_key: Gets or sets the key of the controller. :type controller_key: int :param bus_number: Gets or sets the bus number of the controller. @@ -3406,7 +3473,7 @@ class VirtualSCSIController(msrest.serialization.Model): :type scsi_ctlr_unit_number: int :param sharing: Gets or sets the sharing mode. Possible values include: "noSharing", "physicalSharing", "virtualSharing". - :type sharing: str or ~azure_arc_vmware_management_service_api.models.VirtualSCSISharing + :type sharing: str or ~azure.mgmt.connectedvmware.models.VirtualSCSISharing """ _attribute_map = { diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/models/_models_py3.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/models/_models_py3.py index 6113e7a5eb7..b89102973d6 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/models/_models_py3.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/models/_models_py3.py @@ -25,9 +25,9 @@ class Cluster(msrest.serialization.Model): :param location: Required. Gets or sets the location. :type location: str :param extended_location: Gets or sets the extended location. - :type extended_location: ~azure_arc_vmware_management_service_api.models.ExtendedLocation + :type extended_location: ~azure.mgmt.connectedvmware.models.ExtendedLocation :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param tags: A set of tags. Gets or sets the Resource tags. :type tags: dict[str, str] :ivar name: Gets or sets the name. @@ -52,9 +52,13 @@ class Cluster(msrest.serialization.Model): :ivar mo_name: Gets or sets the vCenter Managed Object name for the cluster. :vartype mo_name: str :ivar statuses: The resource status information. - :vartype statuses: list[~azure_arc_vmware_management_service_api.models.ResourceStatus] + :vartype statuses: list[~azure.mgmt.connectedvmware.models.ResourceStatus] :ivar custom_resource_name: Gets the name of the corresponding resource in Kubernetes. :vartype custom_resource_name: str + :ivar datastore_ids: Gets or sets the datastore ARM ids. + :vartype datastore_ids: list[str] + :ivar network_ids: Gets or sets the network ARM ids. + :vartype network_ids: list[str] :ivar provisioning_state: Gets or sets the provisioning state. :vartype provisioning_state: str """ @@ -69,6 +73,8 @@ class Cluster(msrest.serialization.Model): 'mo_name': {'readonly': True}, 'statuses': {'readonly': True}, 'custom_resource_name': {'readonly': True}, + 'datastore_ids': {'readonly': True}, + 'network_ids': {'readonly': True}, 'provisioning_state': {'readonly': True}, } @@ -88,6 +94,8 @@ class Cluster(msrest.serialization.Model): 'mo_name': {'key': 'properties.moName', 'type': 'str'}, 'statuses': {'key': 'properties.statuses', 'type': '[ResourceStatus]'}, 'custom_resource_name': {'key': 'properties.customResourceName', 'type': 'str'}, + 'datastore_ids': {'key': 'properties.datastoreIds', 'type': '[str]'}, + 'network_ids': {'key': 'properties.networkIds', 'type': '[str]'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, } @@ -119,6 +127,8 @@ def __init__( self.mo_name = None self.statuses = None self.custom_resource_name = None + self.datastore_ids = None + self.network_ids = None self.provisioning_state = None @@ -126,7 +136,7 @@ class InventoryItemProperties(msrest.serialization.Model): """Defines the resource properties. You probably want to use the sub-classes and not this class directly. Known - sub-classes are: ClusterInventoryItem, DatastoreInventoryItem, ResourcePoolInventoryItem, VirtualMachineInventoryItem, VirtualMachineTemplateInventoryItem, VirtualNetworkInventoryItem. + sub-classes are: ClusterInventoryItem, DatastoreInventoryItem, HostInventoryItem, ResourcePoolInventoryItem, VirtualMachineInventoryItem, VirtualMachineTemplateInventoryItem, VirtualNetworkInventoryItem. Variables are only populated by the server, and will be ignored when sending a request. @@ -134,8 +144,8 @@ class InventoryItemProperties(msrest.serialization.Model): :param inventory_type: Required. They inventory type.Constant filled by server. Possible values include: "ResourcePool", "VirtualMachine", "VirtualMachineTemplate", "VirtualNetwork", - "Cluster", "Datastore". - :type inventory_type: str or ~azure_arc_vmware_management_service_api.models.InventoryType + "Cluster", "Datastore", "Host". + :type inventory_type: str or ~azure.mgmt.connectedvmware.models.InventoryType :param managed_resource_id: Gets or sets the tracked resource id corresponding to the inventory resource. :type managed_resource_id: str @@ -161,7 +171,7 @@ class InventoryItemProperties(msrest.serialization.Model): } _subtype_map = { - 'inventory_type': {'Cluster': 'ClusterInventoryItem', 'Datastore': 'DatastoreInventoryItem', 'ResourcePool': 'ResourcePoolInventoryItem', 'VirtualMachine': 'VirtualMachineInventoryItem', 'VirtualMachineTemplate': 'VirtualMachineTemplateInventoryItem', 'VirtualNetwork': 'VirtualNetworkInventoryItem'} + 'inventory_type': {'Cluster': 'ClusterInventoryItem', 'Datastore': 'DatastoreInventoryItem', 'Host': 'HostInventoryItem', 'ResourcePool': 'ResourcePoolInventoryItem', 'VirtualMachine': 'VirtualMachineInventoryItem', 'VirtualMachineTemplate': 'VirtualMachineTemplateInventoryItem', 'VirtualNetwork': 'VirtualNetworkInventoryItem'} } def __init__( @@ -189,8 +199,8 @@ class ClusterInventoryItem(InventoryItemProperties): :param inventory_type: Required. They inventory type.Constant filled by server. Possible values include: "ResourcePool", "VirtualMachine", "VirtualMachineTemplate", "VirtualNetwork", - "Cluster", "Datastore". - :type inventory_type: str or ~azure_arc_vmware_management_service_api.models.InventoryType + "Cluster", "Datastore", "Host". + :type inventory_type: str or ~azure.mgmt.connectedvmware.models.InventoryType :param managed_resource_id: Gets or sets the tracked resource id corresponding to the inventory resource. :type managed_resource_id: str @@ -235,7 +245,7 @@ class ClustersList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of Clusters. :type next_link: str :param value: Required. Array of Clusters. - :type value: list[~azure_arc_vmware_management_service_api.models.Cluster] + :type value: list[~azure.mgmt.connectedvmware.models.Cluster] """ _validation = { @@ -309,9 +319,9 @@ class Datastore(msrest.serialization.Model): :param location: Required. Gets or sets the location. :type location: str :param extended_location: Gets or sets the extended location. - :type extended_location: ~azure_arc_vmware_management_service_api.models.ExtendedLocation + :type extended_location: ~azure.mgmt.connectedvmware.models.ExtendedLocation :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param tags: A set of tags. Gets or sets the Resource tags. :type tags: dict[str, str] :ivar name: Gets or sets the name. @@ -337,14 +347,13 @@ class Datastore(msrest.serialization.Model): :ivar mo_name: Gets or sets the vCenter Managed Object name for the datastore. :vartype mo_name: str :ivar statuses: The resource status information. - :vartype statuses: list[~azure_arc_vmware_management_service_api.models.ResourceStatus] + :vartype statuses: list[~azure.mgmt.connectedvmware.models.ResourceStatus] :ivar custom_resource_name: Gets the name of the corresponding resource in Kubernetes. :vartype custom_resource_name: str :ivar provisioning_state: Provisioning state of the resource. Possible values include: "Succeeded", "Failed", "Canceled", "Provisioning", "Updating", "Deleting", "Accepted", "Created". - :vartype provisioning_state: str or - ~azure_arc_vmware_management_service_api.models.ProvisioningState + :vartype provisioning_state: str or ~azure.mgmt.connectedvmware.models.ProvisioningState """ _validation = { @@ -419,8 +428,8 @@ class DatastoreInventoryItem(InventoryItemProperties): :param inventory_type: Required. They inventory type.Constant filled by server. Possible values include: "ResourcePool", "VirtualMachine", "VirtualMachineTemplate", "VirtualNetwork", - "Cluster", "Datastore". - :type inventory_type: str or ~azure_arc_vmware_management_service_api.models.InventoryType + "Cluster", "Datastore", "Host". + :type inventory_type: str or ~azure.mgmt.connectedvmware.models.InventoryType :param managed_resource_id: Gets or sets the tracked resource id corresponding to the inventory resource. :type managed_resource_id: str @@ -430,6 +439,10 @@ class DatastoreInventoryItem(InventoryItemProperties): :type mo_name: str :ivar provisioning_state: Gets or sets the provisioning state. :vartype provisioning_state: str + :param capacity_gb: Gets or sets Maximum capacity of this datastore, in GBs. + :type capacity_gb: long + :param free_space_gb: Gets or sets Available space of this datastore, in GBs. + :type free_space_gb: long """ _validation = { @@ -443,6 +456,8 @@ class DatastoreInventoryItem(InventoryItemProperties): 'mo_ref_id': {'key': 'moRefId', 'type': 'str'}, 'mo_name': {'key': 'moName', 'type': 'str'}, 'provisioning_state': {'key': 'provisioningState', 'type': 'str'}, + 'capacity_gb': {'key': 'capacityGB', 'type': 'long'}, + 'free_space_gb': {'key': 'freeSpaceGB', 'type': 'long'}, } def __init__( @@ -451,10 +466,14 @@ def __init__( managed_resource_id: Optional[str] = None, mo_ref_id: Optional[str] = None, mo_name: Optional[str] = None, + capacity_gb: Optional[int] = None, + free_space_gb: Optional[int] = None, **kwargs ): super(DatastoreInventoryItem, self).__init__(managed_resource_id=managed_resource_id, mo_ref_id=mo_ref_id, mo_name=mo_name, **kwargs) self.inventory_type = 'Datastore' # type: str + self.capacity_gb = capacity_gb + self.free_space_gb = free_space_gb class DatastoresList(msrest.serialization.Model): @@ -465,7 +484,7 @@ class DatastoresList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of Datastores. :type next_link: str :param value: Required. Array of Datastores. - :type value: list[~azure_arc_vmware_management_service_api.models.Datastore] + :type value: list[~azure.mgmt.connectedvmware.models.Datastore] """ _validation = { @@ -499,7 +518,7 @@ class ErrorDefinition(msrest.serialization.Model): :ivar message: Description of the error. :vartype message: str :ivar details: Internal error details. - :vartype details: list[~azure_arc_vmware_management_service_api.models.ErrorDefinition] + :vartype details: list[~azure.mgmt.connectedvmware.models.ErrorDefinition] """ _validation = { @@ -536,7 +555,7 @@ class ErrorDetail(msrest.serialization.Model): :param target: Indicates which property in the request is responsible for the error. :type target: str :param details: Additional error details. - :type details: list[~azure_arc_vmware_management_service_api.models.ErrorDetail] + :type details: list[~azure.mgmt.connectedvmware.models.ErrorDetail] """ _validation = { @@ -571,7 +590,7 @@ class ErrorResponse(msrest.serialization.Model): """Error response. :param error: The error details. - :type error: ~azure_arc_vmware_management_service_api.models.ErrorDefinition + :type error: ~azure.mgmt.connectedvmware.models.ErrorDefinition """ _attribute_map = { @@ -699,21 +718,22 @@ class GuestAgent(ProxyResource): "Microsoft.Storage/storageAccounts". :vartype type: str :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :ivar uuid: Gets or sets a unique identifier for this resource. :vartype uuid: str :param credentials: Username / Password Credentials to provision guest agent. - :type credentials: ~azure_arc_vmware_management_service_api.models.GuestCredential + :type credentials: ~azure.mgmt.connectedvmware.models.GuestCredential :param http_proxy_config: HTTP Proxy configuration for the VM. - :type http_proxy_config: ~azure_arc_vmware_management_service_api.models.HttpProxyConfiguration + :type http_proxy_config: ~azure.mgmt.connectedvmware.models.HttpProxyConfiguration :param provisioning_action: Gets or sets the guest agent provisioning action. Possible values include: "install", "uninstall", "repair". - :type provisioning_action: str or - ~azure_arc_vmware_management_service_api.models.ProvisioningAction + :type provisioning_action: str or ~azure.mgmt.connectedvmware.models.ProvisioningAction :ivar status: Gets or sets the guest agent status. :vartype status: str :ivar custom_resource_name: Gets the name of the corresponding resource in Kubernetes. :vartype custom_resource_name: str + :ivar statuses: The resource status information. + :vartype statuses: list[~azure.mgmt.connectedvmware.models.ResourceStatus] :ivar provisioning_state: Gets or sets the provisioning state. :vartype provisioning_state: str """ @@ -726,6 +746,7 @@ class GuestAgent(ProxyResource): 'uuid': {'readonly': True}, 'status': {'readonly': True}, 'custom_resource_name': {'readonly': True}, + 'statuses': {'readonly': True}, 'provisioning_state': {'readonly': True}, } @@ -740,6 +761,7 @@ class GuestAgent(ProxyResource): 'provisioning_action': {'key': 'properties.provisioningAction', 'type': 'str'}, 'status': {'key': 'properties.status', 'type': 'str'}, 'custom_resource_name': {'key': 'properties.customResourceName', 'type': 'str'}, + 'statuses': {'key': 'properties.statuses', 'type': '[ResourceStatus]'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, } @@ -759,6 +781,7 @@ def __init__( self.provisioning_action = provisioning_action self.status = None self.custom_resource_name = None + self.statuses = None self.provisioning_state = None @@ -770,7 +793,7 @@ class GuestAgentList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of GuestAgent. :type next_link: str :param value: Required. Array of GuestAgent. - :type value: list[~azure_arc_vmware_management_service_api.models.GuestAgent] + :type value: list[~azure.mgmt.connectedvmware.models.GuestAgent] """ _validation = { @@ -803,13 +826,13 @@ class GuestAgentProfile(msrest.serialization.Model): :vartype vm_uuid: str :ivar status: The status of the hybrid machine agent. Possible values include: "Connected", "Disconnected", "Error". - :vartype status: str or ~azure_arc_vmware_management_service_api.models.StatusTypes + :vartype status: str or ~azure.mgmt.connectedvmware.models.StatusTypes :ivar last_status_change: The time of the last status change. :vartype last_status_change: ~datetime.datetime :ivar agent_version: The hybrid machine agent full version. :vartype agent_version: str :ivar error_details: Details about the error state. - :vartype error_details: list[~azure_arc_vmware_management_service_api.models.ErrorDetail] + :vartype error_details: list[~azure.mgmt.connectedvmware.models.ErrorDetail] """ _validation = { @@ -931,9 +954,9 @@ class Host(msrest.serialization.Model): :param location: Required. Gets or sets the location. :type location: str :param extended_location: Gets or sets the extended location. - :type extended_location: ~azure_arc_vmware_management_service_api.models.ExtendedLocation + :type extended_location: ~azure.mgmt.connectedvmware.models.ExtendedLocation :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param tags: A set of tags. Gets or sets the Resource tags. :type tags: dict[str, str] :ivar name: Gets or sets the name. @@ -957,7 +980,7 @@ class Host(msrest.serialization.Model): :ivar mo_name: Gets or sets the vCenter Managed Object name for the host. :vartype mo_name: str :ivar statuses: The resource status information. - :vartype statuses: list[~azure_arc_vmware_management_service_api.models.ResourceStatus] + :vartype statuses: list[~azure.mgmt.connectedvmware.models.ResourceStatus] :ivar custom_resource_name: Gets the name of the corresponding resource in Kubernetes. :vartype custom_resource_name: str :ivar provisioning_state: Gets or sets the provisioning state. @@ -1027,6 +1050,58 @@ def __init__( self.provisioning_state = None +class HostInventoryItem(InventoryItemProperties): + """The host inventory item. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :param inventory_type: Required. They inventory type.Constant filled by server. Possible + values include: "ResourcePool", "VirtualMachine", "VirtualMachineTemplate", "VirtualNetwork", + "Cluster", "Datastore", "Host". + :type inventory_type: str or ~azure.mgmt.connectedvmware.models.InventoryType + :param managed_resource_id: Gets or sets the tracked resource id corresponding to the inventory + resource. + :type managed_resource_id: str + :param mo_ref_id: Gets or sets the MoRef (Managed Object Reference) ID for the inventory item. + :type mo_ref_id: str + :param mo_name: Gets or sets the vCenter Managed Object name for the inventory item. + :type mo_name: str + :ivar provisioning_state: Gets or sets the provisioning state. + :vartype provisioning_state: str + :param parent: Parent host inventory resource details. + :type parent: ~azure.mgmt.connectedvmware.models.InventoryItemDetails + """ + + _validation = { + 'inventory_type': {'required': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'inventory_type': {'key': 'inventoryType', 'type': 'str'}, + 'managed_resource_id': {'key': 'managedResourceId', 'type': 'str'}, + 'mo_ref_id': {'key': 'moRefId', 'type': 'str'}, + 'mo_name': {'key': 'moName', 'type': 'str'}, + 'provisioning_state': {'key': 'provisioningState', 'type': 'str'}, + 'parent': {'key': 'parent', 'type': 'InventoryItemDetails'}, + } + + def __init__( + self, + *, + managed_resource_id: Optional[str] = None, + mo_ref_id: Optional[str] = None, + mo_name: Optional[str] = None, + parent: Optional["InventoryItemDetails"] = None, + **kwargs + ): + super(HostInventoryItem, self).__init__(managed_resource_id=managed_resource_id, mo_ref_id=mo_ref_id, mo_name=mo_name, **kwargs) + self.inventory_type = 'Host' # type: str + self.parent = parent + + class HostsList(msrest.serialization.Model): """List of Hosts. @@ -1035,7 +1110,7 @@ class HostsList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of Hosts. :type next_link: str :param value: Required. Array of Hosts. - :type value: list[~azure_arc_vmware_management_service_api.models.Host] + :type value: list[~azure.mgmt.connectedvmware.models.Host] """ _validation = { @@ -1094,13 +1169,13 @@ class HybridIdentityMetadata(ProxyResource): "Microsoft.Storage/storageAccounts". :vartype type: str :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param vm_id: Gets or sets the Vm Id. :type vm_id: str :param public_key: Gets or sets the Public Key. :type public_key: str :ivar identity: The identity of the resource. - :vartype identity: ~azure_arc_vmware_management_service_api.models.Identity + :vartype identity: ~azure.mgmt.connectedvmware.models.Identity :ivar provisioning_state: Gets or sets the provisioning state. :vartype provisioning_state: str """ @@ -1148,7 +1223,7 @@ class HybridIdentityMetadataList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of HybridIdentityMetadata. :type next_link: str :param value: Required. Array of HybridIdentityMetadata. - :type value: list[~azure_arc_vmware_management_service_api.models.HybridIdentityMetadata] + :type value: list[~azure.mgmt.connectedvmware.models.HybridIdentityMetadata] """ _validation = { @@ -1185,7 +1260,7 @@ class Identity(msrest.serialization.Model): :vartype tenant_id: str :param type: Required. The type of managed service identity. Possible values include: "None", "SystemAssigned". - :type type: str or ~azure_arc_vmware_management_service_api.models.IdentityType + :type type: str or ~azure.mgmt.connectedvmware.models.IdentityType """ _validation = { @@ -1228,15 +1303,15 @@ class InventoryItem(ProxyResource): "Microsoft.Storage/storageAccounts". :vartype type: str :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param kind: Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type; e.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value. :type kind: str :param inventory_type: Required. They inventory type.Constant filled by server. Possible values include: "ResourcePool", "VirtualMachine", "VirtualMachineTemplate", "VirtualNetwork", - "Cluster", "Datastore". - :type inventory_type: str or ~azure_arc_vmware_management_service_api.models.InventoryType + "Cluster", "Datastore", "Host". + :type inventory_type: str or ~azure.mgmt.connectedvmware.models.InventoryType :param managed_resource_id: Gets or sets the tracked resource id corresponding to the inventory resource. :type managed_resource_id: str @@ -1323,7 +1398,7 @@ class InventoryItemsList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of InventoryItems. :type next_link: str :param value: Required. Array of InventoryItems. - :type value: list[~azure_arc_vmware_management_service_api.models.InventoryItem] + :type value: list[~azure.mgmt.connectedvmware.models.InventoryItem] """ _validation = { @@ -1355,7 +1430,7 @@ class MachineExtension(msrest.serialization.Model): :param location: Gets or sets the location. :type location: str :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param tags: A set of tags. Gets or sets the Resource tags. :type tags: dict[str, str] :ivar name: Gets or sets the name. @@ -1386,8 +1461,7 @@ class MachineExtension(msrest.serialization.Model): :ivar provisioning_state: The provisioning state, which only appears in the response. :vartype provisioning_state: str :param instance_view: The machine extension instance view. - :type instance_view: - ~azure_arc_vmware_management_service_api.models.MachineExtensionPropertiesInstanceView + :type instance_view: ~azure.mgmt.connectedvmware.models.MachineExtensionPropertiesInstanceView """ _validation = { @@ -1461,8 +1535,7 @@ class MachineExtensionInstanceView(msrest.serialization.Model): :ivar type_handler_version: Specifies the version of the script handler. :vartype type_handler_version: str :param status: Instance view status. - :type status: - ~azure_arc_vmware_management_service_api.models.MachineExtensionInstanceViewStatus + :type status: ~azure.mgmt.connectedvmware.models.MachineExtensionInstanceViewStatus """ _validation = { @@ -1499,7 +1572,7 @@ class MachineExtensionInstanceViewStatus(msrest.serialization.Model): :ivar code: The status code. :vartype code: str :ivar level: The level code. Possible values include: "Info", "Warning", "Error". - :vartype level: str or ~azure_arc_vmware_management_service_api.models.StatusLevelTypes + :vartype level: str or ~azure.mgmt.connectedvmware.models.StatusLevelTypes :ivar display_status: The short localizable label for the status. :vartype display_status: str :ivar message: The detailed status message, including for alerts and error messages. @@ -1548,8 +1621,7 @@ class MachineExtensionPropertiesInstanceView(MachineExtensionInstanceView): :ivar type_handler_version: Specifies the version of the script handler. :vartype type_handler_version: str :param status: Instance view status. - :type status: - ~azure_arc_vmware_management_service_api.models.MachineExtensionInstanceViewStatus + :type status: ~azure.mgmt.connectedvmware.models.MachineExtensionInstanceViewStatus """ _validation = { @@ -1578,7 +1650,7 @@ class MachineExtensionsListResult(msrest.serialization.Model): """Describes the Machine Extensions List Result. :param value: The list of extensions. - :type value: list[~azure_arc_vmware_management_service_api.models.MachineExtension] + :type value: list[~azure.mgmt.connectedvmware.models.MachineExtension] :param next_link: The uri to fetch the next page of machine extensions. Call ListNext() with this to fetch the next page of extensions. :type next_link: str @@ -1700,10 +1772,10 @@ class NetworkInterface(msrest.serialization.Model): :type network_id: str :param nic_type: NIC type. Possible values include: "vmxnet3", "vmxnet2", "vmxnet", "e1000", "e1000e", "pcnet32". - :type nic_type: str or ~azure_arc_vmware_management_service_api.models.NICType + :type nic_type: str or ~azure.mgmt.connectedvmware.models.NICType :param power_on_boot: Gets or sets the power on boot. Possible values include: "enabled", "disabled". - :type power_on_boot: str or ~azure_arc_vmware_management_service_api.models.PowerOnBootOption + :type power_on_boot: str or ~azure.mgmt.connectedvmware.models.PowerOnBootOption :ivar network_mo_ref_id: Gets or sets the vCenter MoRef (Managed Object Reference) ID of the virtual network that the nic is connected to. @@ -1714,7 +1786,7 @@ class NetworkInterface(msrest.serialization.Model): :param device_key: Gets or sets the device key value. :type device_key: int :param ip_settings: Gets or sets the ipsettings. - :type ip_settings: ~azure_arc_vmware_management_service_api.models.NicIPSettings + :type ip_settings: ~azure.mgmt.connectedvmware.models.NicIPSettings """ _validation = { @@ -1774,10 +1846,10 @@ class NetworkInterfaceUpdate(msrest.serialization.Model): :type network_id: str :param nic_type: NIC type. Possible values include: "vmxnet3", "vmxnet2", "vmxnet", "e1000", "e1000e", "pcnet32". - :type nic_type: str or ~azure_arc_vmware_management_service_api.models.NICType + :type nic_type: str or ~azure.mgmt.connectedvmware.models.NICType :param power_on_boot: Gets or sets the power on boot. Possible values include: "enabled", "disabled". - :type power_on_boot: str or ~azure_arc_vmware_management_service_api.models.PowerOnBootOption + :type power_on_boot: str or ~azure.mgmt.connectedvmware.models.PowerOnBootOption :param device_key: Gets or sets the device key value. :type device_key: int """ @@ -1813,8 +1885,7 @@ class NetworkProfile(msrest.serialization.Model): :param network_interfaces: Gets or sets the list of network interfaces associated with the virtual machine. - :type network_interfaces: - list[~azure_arc_vmware_management_service_api.models.NetworkInterface] + :type network_interfaces: list[~azure.mgmt.connectedvmware.models.NetworkInterface] """ _attribute_map = { @@ -1836,8 +1907,7 @@ class NetworkProfileUpdate(msrest.serialization.Model): :param network_interfaces: Gets or sets the list of network interfaces associated with the virtual machine. - :type network_interfaces: - list[~azure_arc_vmware_management_service_api.models.NetworkInterfaceUpdate] + :type network_interfaces: list[~azure.mgmt.connectedvmware.models.NetworkInterfaceUpdate] """ _attribute_map = { @@ -1896,8 +1966,7 @@ class NicIPSettings(msrest.serialization.Model): :param allocation_method: Gets or sets the nic allocation method. Possible values include: "unset", "dynamic", "static", "linklayer", "random", "other". - :type allocation_method: str or - ~azure_arc_vmware_management_service_api.models.IPAddressAllocationMethod + :type allocation_method: str or ~azure.mgmt.connectedvmware.models.IPAddressAllocationMethod :param dns_servers: Gets or sets the dns servers. :type dns_servers: list[str] :param gateway: Gets or sets the gateway. @@ -1912,8 +1981,7 @@ class NicIPSettings(msrest.serialization.Model): :vartype secondary_wins_server: str :ivar ip_address_info: Gets or sets the IP address information being reported for this NIC. This contains the same IPv4 information above plus IPV6 information. - :vartype ip_address_info: - list[~azure_arc_vmware_management_service_api.models.NicIPAddressSettings] + :vartype ip_address_info: list[~azure.mgmt.connectedvmware.models.NicIPAddressSettings] """ _validation = { @@ -1962,7 +2030,7 @@ class Operation(msrest.serialization.Model): :param is_data_action: Indicates whether the operation is data action or not. :type is_data_action: bool :param display: Properties of the operation. - :type display: ~azure_arc_vmware_management_service_api.models.OperationDisplay + :type display: ~azure.mgmt.connectedvmware.models.OperationDisplay """ _attribute_map = { @@ -2029,7 +2097,7 @@ class OperationsList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of operations. :type next_link: str :param value: Required. Array of operations. - :type value: list[~azure_arc_vmware_management_service_api.models.Operation] + :type value: list[~azure.mgmt.connectedvmware.models.Operation] """ _validation = { @@ -2066,7 +2134,7 @@ class OsProfile(msrest.serialization.Model): :type admin_password: str :param os_type: Gets or sets the type of the os. Possible values include: "Windows", "Linux", "Other". - :type os_type: str or ~azure_arc_vmware_management_service_api.models.OsType + :type os_type: str or ~azure.mgmt.connectedvmware.models.OsType :ivar os_name: Gets or sets os name. :vartype os_name: str :ivar tools_running_status: Gets or sets the current running status of VMware Tools running in @@ -2167,9 +2235,9 @@ class ResourcePool(msrest.serialization.Model): :param location: Required. Gets or sets the location. :type location: str :param extended_location: Gets or sets the extended location. - :type extended_location: ~azure_arc_vmware_management_service_api.models.ExtendedLocation + :type extended_location: ~azure.mgmt.connectedvmware.models.ExtendedLocation :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param tags: A set of tags. Gets or sets the Resource tags. :type tags: dict[str, str] :ivar name: Gets or sets the name. @@ -2219,7 +2287,7 @@ class ResourcePool(msrest.serialization.Model): :ivar custom_resource_name: Gets the name of the corresponding resource in Kubernetes. :vartype custom_resource_name: str :ivar statuses: The resource status information. - :vartype statuses: list[~azure_arc_vmware_management_service_api.models.ResourceStatus] + :vartype statuses: list[~azure.mgmt.connectedvmware.models.ResourceStatus] :ivar provisioning_state: Gets or sets the provisioning state. :vartype provisioning_state: str """ @@ -2314,8 +2382,8 @@ class ResourcePoolInventoryItem(InventoryItemProperties): :param inventory_type: Required. They inventory type.Constant filled by server. Possible values include: "ResourcePool", "VirtualMachine", "VirtualMachineTemplate", "VirtualNetwork", - "Cluster", "Datastore". - :type inventory_type: str or ~azure_arc_vmware_management_service_api.models.InventoryType + "Cluster", "Datastore", "Host". + :type inventory_type: str or ~azure.mgmt.connectedvmware.models.InventoryType :param managed_resource_id: Gets or sets the tracked resource id corresponding to the inventory resource. :type managed_resource_id: str @@ -2326,7 +2394,7 @@ class ResourcePoolInventoryItem(InventoryItemProperties): :ivar provisioning_state: Gets or sets the provisioning state. :vartype provisioning_state: str :param parent: Parent resourcePool inventory resource details. - :type parent: ~azure_arc_vmware_management_service_api.models.InventoryItemDetails + :type parent: ~azure.mgmt.connectedvmware.models.InventoryItemDetails """ _validation = { @@ -2365,7 +2433,7 @@ class ResourcePoolsList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of ResourcePools. :type next_link: str :param value: Required. Array of ResourcePools. - :type value: list[~azure_arc_vmware_management_service_api.models.ResourcePool] + :type value: list[~azure.mgmt.connectedvmware.models.ResourcePool] """ _validation = { @@ -2468,11 +2536,10 @@ class StorageProfile(msrest.serialization.Model): Variables are only populated by the server, and will be ignored when sending a request. :param disks: Gets or sets the list of virtual disks associated with the virtual machine. - :type disks: list[~azure_arc_vmware_management_service_api.models.VirtualDisk] + :type disks: list[~azure.mgmt.connectedvmware.models.VirtualDisk] :ivar scsi_controllers: Gets or sets the list of virtual SCSI controllers associated with the virtual machine. - :vartype scsi_controllers: - list[~azure_arc_vmware_management_service_api.models.VirtualSCSIController] + :vartype scsi_controllers: list[~azure.mgmt.connectedvmware.models.VirtualSCSIController] """ _validation = { @@ -2499,7 +2566,7 @@ class StorageProfileUpdate(msrest.serialization.Model): """Defines the resource update properties. :param disks: Gets or sets the list of virtual disks associated with the virtual machine. - :type disks: list[~azure_arc_vmware_management_service_api.models.VirtualDiskUpdate] + :type disks: list[~azure.mgmt.connectedvmware.models.VirtualDiskUpdate] """ _attribute_map = { @@ -2523,15 +2590,14 @@ class SystemData(msrest.serialization.Model): :type created_by: str :param created_by_type: The type of identity that created the resource. Possible values include: "User", "Application", "ManagedIdentity", "Key". - :type created_by_type: str or ~azure_arc_vmware_management_service_api.models.CreatedByType + :type created_by_type: str or ~azure.mgmt.connectedvmware.models.CreatedByType :param created_at: The timestamp of resource creation (UTC). :type created_at: ~datetime.datetime :param last_modified_by: The identity that last modified the resource. :type last_modified_by: str :param last_modified_by_type: The type of identity that last modified the resource. Possible values include: "User", "Application", "ManagedIdentity", "Key". - :type last_modified_by_type: str or - ~azure_arc_vmware_management_service_api.models.CreatedByType + :type last_modified_by_type: str or ~azure.mgmt.connectedvmware.models.CreatedByType :param last_modified_at: The timestamp of resource last modification (UTC). :type last_modified_at: ~datetime.datetime """ @@ -2575,9 +2641,9 @@ class VCenter(msrest.serialization.Model): :param location: Required. Gets or sets the location. :type location: str :param extended_location: Gets or sets the extended location. - :type extended_location: ~azure_arc_vmware_management_service_api.models.ExtendedLocation + :type extended_location: ~azure.mgmt.connectedvmware.models.ExtendedLocation :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param tags: A set of tags. Gets or sets the Resource tags. :type tags: dict[str, str] :ivar name: Gets or sets the name. @@ -2605,9 +2671,9 @@ class VCenter(msrest.serialization.Model): :ivar custom_resource_name: Gets the name of the corresponding resource in Kubernetes. :vartype custom_resource_name: str :param credentials: Username / Password Credentials to connect to vcenter. - :type credentials: ~azure_arc_vmware_management_service_api.models.VICredential + :type credentials: ~azure.mgmt.connectedvmware.models.VICredential :ivar statuses: The resource status information. - :vartype statuses: list[~azure_arc_vmware_management_service_api.models.ResourceStatus] + :vartype statuses: list[~azure.mgmt.connectedvmware.models.ResourceStatus] :ivar provisioning_state: Gets or sets the provisioning state. :vartype provisioning_state: str """ @@ -2691,7 +2757,7 @@ class VCentersList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of VCenters. :type next_link: str :param value: Required. Array of VCenters. - :type value: list[~azure_arc_vmware_management_service_api.models.VCenter] + :type value: list[~azure.mgmt.connectedvmware.models.VCenter] """ _validation = { @@ -2758,7 +2824,7 @@ class VirtualDisk(msrest.serialization.Model): :type device_key: int :param disk_mode: Gets or sets the disk mode. Possible values include: "persistent", "independent_persistent", "independent_nonpersistent". - :type disk_mode: str or ~azure_arc_vmware_management_service_api.models.DiskMode + :type disk_mode: str or ~azure.mgmt.connectedvmware.models.DiskMode :param controller_key: Gets or sets the controller id. :type controller_key: int :param unit_number: Gets or sets the unit number of the disk on the controller. @@ -2767,7 +2833,7 @@ class VirtualDisk(msrest.serialization.Model): :type device_name: str :param disk_type: Gets or sets the disk backing type. Possible values include: "flat", "pmem", "rawphysical", "rawvirtual", "sparse", "sesparse", "unknown". - :type disk_type: str or ~azure_arc_vmware_management_service_api.models.DiskType + :type disk_type: str or ~azure.mgmt.connectedvmware.models.DiskType """ _validation = { @@ -2825,7 +2891,7 @@ class VirtualDiskUpdate(msrest.serialization.Model): :type device_key: int :param disk_mode: Gets or sets the disk mode. Possible values include: "persistent", "independent_persistent", "independent_nonpersistent". - :type disk_mode: str or ~azure_arc_vmware_management_service_api.models.DiskMode + :type disk_mode: str or ~azure.mgmt.connectedvmware.models.DiskMode :param controller_key: Gets or sets the controller id. :type controller_key: int :param unit_number: Gets or sets the unit number of the disk on the controller. @@ -2834,7 +2900,7 @@ class VirtualDiskUpdate(msrest.serialization.Model): :type device_name: str :param disk_type: Gets or sets the disk backing type. Possible values include: "flat", "pmem", "rawphysical", "rawvirtual", "sparse", "sesparse", "unknown". - :type disk_type: str or ~azure_arc_vmware_management_service_api.models.DiskType + :type disk_type: str or ~azure.mgmt.connectedvmware.models.DiskType """ _attribute_map = { @@ -2882,9 +2948,9 @@ class VirtualMachine(msrest.serialization.Model): :param location: Required. Gets or sets the location. :type location: str :param extended_location: Gets or sets the extended location. - :type extended_location: ~azure_arc_vmware_management_service_api.models.ExtendedLocation + :type extended_location: ~azure.mgmt.connectedvmware.models.ExtendedLocation :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param tags: A set of tags. Gets or sets the Resource tags. :type tags: dict[str, str] :ivar name: Gets or sets the name. @@ -2898,7 +2964,7 @@ class VirtualMachine(msrest.serialization.Model): the resource provider must validate and persist this value. :type kind: str :param identity: The identity of the resource. - :type identity: ~azure_arc_vmware_management_service_api.models.Identity + :type identity: ~azure.mgmt.connectedvmware.models.Identity :param resource_pool_id: Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will deploy. @@ -2910,17 +2976,17 @@ class VirtualMachine(msrest.serialization.Model): resides. :type v_center_id: str :param placement_profile: Placement properties. - :type placement_profile: ~azure_arc_vmware_management_service_api.models.PlacementProfile + :type placement_profile: ~azure.mgmt.connectedvmware.models.PlacementProfile :param os_profile: OS properties. - :type os_profile: ~azure_arc_vmware_management_service_api.models.OsProfile + :type os_profile: ~azure.mgmt.connectedvmware.models.OsProfile :param hardware_profile: Hardware properties. - :type hardware_profile: ~azure_arc_vmware_management_service_api.models.HardwareProfile + :type hardware_profile: ~azure.mgmt.connectedvmware.models.HardwareProfile :param network_profile: Network properties. - :type network_profile: ~azure_arc_vmware_management_service_api.models.NetworkProfile + :type network_profile: ~azure.mgmt.connectedvmware.models.NetworkProfile :param storage_profile: Storage properties. - :type storage_profile: ~azure_arc_vmware_management_service_api.models.StorageProfile + :type storage_profile: ~azure.mgmt.connectedvmware.models.StorageProfile :param guest_agent_profile: Guest agent status properties. - :type guest_agent_profile: ~azure_arc_vmware_management_service_api.models.GuestAgentProfile + :type guest_agent_profile: ~azure.mgmt.connectedvmware.models.GuestAgentProfile :param mo_ref_id: Gets or sets the vCenter MoRef (Managed Object Reference) ID for the virtual machine. :type mo_ref_id: str @@ -2934,6 +3000,8 @@ class VirtualMachine(msrest.serialization.Model): :vartype instance_uuid: str :param smbios_uuid: Gets or sets the SMBIOS UUID of the vm. :type smbios_uuid: str + :param firmware_type: Firmware type. Possible values include: "bios", "efi". + :type firmware_type: str or ~azure.mgmt.connectedvmware.models.FirmwareType :ivar power_state: Gets the power state of the virtual machine. :vartype power_state: str :ivar custom_resource_name: Gets the name of the corresponding resource in Kubernetes. @@ -2941,7 +3009,7 @@ class VirtualMachine(msrest.serialization.Model): :ivar uuid: Gets or sets a unique identifier for this resource. :vartype uuid: str :ivar statuses: The resource status information. - :vartype statuses: list[~azure_arc_vmware_management_service_api.models.ResourceStatus] + :vartype statuses: list[~azure.mgmt.connectedvmware.models.ResourceStatus] :ivar provisioning_state: Gets or sets the provisioning state. :vartype provisioning_state: str :ivar vm_id: Gets or sets a unique identifier for the vm resource. @@ -2990,6 +3058,7 @@ class VirtualMachine(msrest.serialization.Model): 'folder_path': {'key': 'properties.folderPath', 'type': 'str'}, 'instance_uuid': {'key': 'properties.instanceUuid', 'type': 'str'}, 'smbios_uuid': {'key': 'properties.smbiosUuid', 'type': 'str'}, + 'firmware_type': {'key': 'properties.firmwareType', 'type': 'str'}, 'power_state': {'key': 'properties.powerState', 'type': 'str'}, 'custom_resource_name': {'key': 'properties.customResourceName', 'type': 'str'}, 'uuid': {'key': 'properties.uuid', 'type': 'str'}, @@ -3018,6 +3087,7 @@ def __init__( mo_ref_id: Optional[str] = None, inventory_item_id: Optional[str] = None, smbios_uuid: Optional[str] = None, + firmware_type: Optional[Union[str, "FirmwareType"]] = None, **kwargs ): super(VirtualMachine, self).__init__(**kwargs) @@ -3045,6 +3115,7 @@ def __init__( self.folder_path = None self.instance_uuid = None self.smbios_uuid = smbios_uuid + self.firmware_type = firmware_type self.power_state = None self.custom_resource_name = None self.uuid = None @@ -3062,8 +3133,8 @@ class VirtualMachineInventoryItem(InventoryItemProperties): :param inventory_type: Required. They inventory type.Constant filled by server. Possible values include: "ResourcePool", "VirtualMachine", "VirtualMachineTemplate", "VirtualNetwork", - "Cluster", "Datastore". - :type inventory_type: str or ~azure_arc_vmware_management_service_api.models.InventoryType + "Cluster", "Datastore", "Host". + :type inventory_type: str or ~azure.mgmt.connectedvmware.models.InventoryType :param managed_resource_id: Gets or sets the tracked resource id corresponding to the inventory resource. :type managed_resource_id: str @@ -3075,7 +3146,7 @@ class VirtualMachineInventoryItem(InventoryItemProperties): :vartype provisioning_state: str :param os_type: Gets or sets the type of the os. Possible values include: "Windows", "Linux", "Other". - :type os_type: str or ~azure_arc_vmware_management_service_api.models.OsType + :type os_type: str or ~azure.mgmt.connectedvmware.models.OsType :param os_name: Gets or sets os name. :type os_name: str :param ip_addresses: Gets or sets the nic ip addresses. @@ -3083,9 +3154,9 @@ class VirtualMachineInventoryItem(InventoryItemProperties): :param folder_path: Gets or sets the folder path of the vm. :type folder_path: str :param host: Host inventory resource details. - :type host: ~azure_arc_vmware_management_service_api.models.InventoryItemDetails + :type host: ~azure.mgmt.connectedvmware.models.InventoryItemDetails :param resource_pool: ResourcePool inventory resource details. - :type resource_pool: ~azure_arc_vmware_management_service_api.models.InventoryItemDetails + :type resource_pool: ~azure.mgmt.connectedvmware.models.InventoryItemDetails :param instance_uuid: Gets or sets the instance uuid of the vm. :type instance_uuid: str :param smbios_uuid: Gets or sets the SMBIOS UUID of the vm. @@ -3171,7 +3242,7 @@ class VirtualMachinesList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of VirtualMachines. :type next_link: str :param value: Required. Array of VirtualMachines. - :type value: list[~azure_arc_vmware_management_service_api.models.VirtualMachine] + :type value: list[~azure.mgmt.connectedvmware.models.VirtualMachine] """ _validation = { @@ -3205,9 +3276,9 @@ class VirtualMachineTemplate(msrest.serialization.Model): :param location: Required. Gets or sets the location. :type location: str :param extended_location: Gets or sets the extended location. - :type extended_location: ~azure_arc_vmware_management_service_api.models.ExtendedLocation + :type extended_location: ~azure.mgmt.connectedvmware.models.ExtendedLocation :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param tags: A set of tags. Gets or sets the Resource tags. :type tags: dict[str, str] :ivar name: Gets or sets the name. @@ -3242,16 +3313,15 @@ class VirtualMachineTemplate(msrest.serialization.Model): :vartype num_cores_per_socket: int :ivar os_type: Gets or sets the type of the os. Possible values include: "Windows", "Linux", "Other". - :vartype os_type: str or ~azure_arc_vmware_management_service_api.models.OsType + :vartype os_type: str or ~azure.mgmt.connectedvmware.models.OsType :ivar os_name: Gets or sets os name. :vartype os_name: str :ivar folder_path: Gets or sets the folder path of the template. :vartype folder_path: str :ivar network_interfaces: Gets or sets the network interfaces of the template. - :vartype network_interfaces: - list[~azure_arc_vmware_management_service_api.models.NetworkInterface] + :vartype network_interfaces: list[~azure.mgmt.connectedvmware.models.NetworkInterface] :ivar disks: Gets or sets the disks the template. - :vartype disks: list[~azure_arc_vmware_management_service_api.models.VirtualDisk] + :vartype disks: list[~azure.mgmt.connectedvmware.models.VirtualDisk] :ivar custom_resource_name: Gets the name of the corresponding resource in Kubernetes. :vartype custom_resource_name: str :ivar tools_version_status: Gets or sets the current version status of VMware Tools installed @@ -3259,8 +3329,10 @@ class VirtualMachineTemplate(msrest.serialization.Model): :vartype tools_version_status: str :ivar tools_version: Gets or sets the current version of VMware Tools. :vartype tools_version: str + :ivar firmware_type: Firmware type. Possible values include: "bios", "efi". + :vartype firmware_type: str or ~azure.mgmt.connectedvmware.models.FirmwareType :ivar statuses: The resource status information. - :vartype statuses: list[~azure_arc_vmware_management_service_api.models.ResourceStatus] + :vartype statuses: list[~azure.mgmt.connectedvmware.models.ResourceStatus] :ivar provisioning_state: Gets or sets the provisioning state. :vartype provisioning_state: str """ @@ -3284,6 +3356,7 @@ class VirtualMachineTemplate(msrest.serialization.Model): 'custom_resource_name': {'readonly': True}, 'tools_version_status': {'readonly': True}, 'tools_version': {'readonly': True}, + 'firmware_type': {'readonly': True}, 'statuses': {'readonly': True}, 'provisioning_state': {'readonly': True}, } @@ -3313,6 +3386,7 @@ class VirtualMachineTemplate(msrest.serialization.Model): 'custom_resource_name': {'key': 'properties.customResourceName', 'type': 'str'}, 'tools_version_status': {'key': 'properties.toolsVersionStatus', 'type': 'str'}, 'tools_version': {'key': 'properties.toolsVersion', 'type': 'str'}, + 'firmware_type': {'key': 'properties.firmwareType', 'type': 'str'}, 'statuses': {'key': 'properties.statuses', 'type': '[ResourceStatus]'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, } @@ -3354,6 +3428,7 @@ def __init__( self.custom_resource_name = None self.tools_version_status = None self.tools_version = None + self.firmware_type = None self.statuses = None self.provisioning_state = None @@ -3367,8 +3442,8 @@ class VirtualMachineTemplateInventoryItem(InventoryItemProperties): :param inventory_type: Required. They inventory type.Constant filled by server. Possible values include: "ResourcePool", "VirtualMachine", "VirtualMachineTemplate", "VirtualNetwork", - "Cluster", "Datastore". - :type inventory_type: str or ~azure_arc_vmware_management_service_api.models.InventoryType + "Cluster", "Datastore", "Host". + :type inventory_type: str or ~azure.mgmt.connectedvmware.models.InventoryType :param managed_resource_id: Gets or sets the tracked resource id corresponding to the inventory resource. :type managed_resource_id: str @@ -3387,7 +3462,7 @@ class VirtualMachineTemplateInventoryItem(InventoryItemProperties): :type num_cores_per_socket: int :param os_type: Gets or sets the type of the os. Possible values include: "Windows", "Linux", "Other". - :type os_type: str or ~azure_arc_vmware_management_service_api.models.OsType + :type os_type: str or ~azure.mgmt.connectedvmware.models.OsType :param os_name: Gets or sets os name. :type os_name: str :param folder_path: Gets or sets the folder path of the template. @@ -3445,7 +3520,7 @@ class VirtualMachineTemplatesList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of VirtualMachineTemplates. :type next_link: str :param value: Required. Array of VirtualMachineTemplates. - :type value: list[~azure_arc_vmware_management_service_api.models.VirtualMachineTemplate] + :type value: list[~azure.mgmt.connectedvmware.models.VirtualMachineTemplate] """ _validation = { @@ -3475,13 +3550,13 @@ class VirtualMachineUpdate(msrest.serialization.Model): :param tags: A set of tags. Gets or sets the Resource tags. :type tags: dict[str, str] :param identity: The identity of the resource. - :type identity: ~azure_arc_vmware_management_service_api.models.Identity + :type identity: ~azure.mgmt.connectedvmware.models.Identity :param hardware_profile: Defines the resource properties. - :type hardware_profile: ~azure_arc_vmware_management_service_api.models.HardwareProfile + :type hardware_profile: ~azure.mgmt.connectedvmware.models.HardwareProfile :param storage_profile: Defines the resource update properties. - :type storage_profile: ~azure_arc_vmware_management_service_api.models.StorageProfileUpdate + :type storage_profile: ~azure.mgmt.connectedvmware.models.StorageProfileUpdate :param network_profile: Defines the update resource properties. - :type network_profile: ~azure_arc_vmware_management_service_api.models.NetworkProfileUpdate + :type network_profile: ~azure.mgmt.connectedvmware.models.NetworkProfileUpdate """ _attribute_map = { @@ -3520,9 +3595,9 @@ class VirtualNetwork(msrest.serialization.Model): :param location: Required. Gets or sets the location. :type location: str :param extended_location: Gets or sets the extended location. - :type extended_location: ~azure_arc_vmware_management_service_api.models.ExtendedLocation + :type extended_location: ~azure.mgmt.connectedvmware.models.ExtendedLocation :ivar system_data: The system data. - :vartype system_data: ~azure_arc_vmware_management_service_api.models.SystemData + :vartype system_data: ~azure.mgmt.connectedvmware.models.SystemData :param tags: A set of tags. Gets or sets the Resource tags. :type tags: dict[str, str] :ivar name: Gets or sets the name. @@ -3550,7 +3625,7 @@ class VirtualNetwork(msrest.serialization.Model): :ivar custom_resource_name: Gets the name of the corresponding resource in Kubernetes. :vartype custom_resource_name: str :ivar statuses: The resource status information. - :vartype statuses: list[~azure_arc_vmware_management_service_api.models.ResourceStatus] + :vartype statuses: list[~azure.mgmt.connectedvmware.models.ResourceStatus] :ivar provisioning_state: Gets or sets the provisioning state. :vartype provisioning_state: str """ @@ -3627,8 +3702,8 @@ class VirtualNetworkInventoryItem(InventoryItemProperties): :param inventory_type: Required. They inventory type.Constant filled by server. Possible values include: "ResourcePool", "VirtualMachine", "VirtualMachineTemplate", "VirtualNetwork", - "Cluster", "Datastore". - :type inventory_type: str or ~azure_arc_vmware_management_service_api.models.InventoryType + "Cluster", "Datastore", "Host". + :type inventory_type: str or ~azure.mgmt.connectedvmware.models.InventoryType :param managed_resource_id: Gets or sets the tracked resource id corresponding to the inventory resource. :type managed_resource_id: str @@ -3673,7 +3748,7 @@ class VirtualNetworksList(msrest.serialization.Model): :param next_link: Url to follow for getting next page of VirtualNetworks. :type next_link: str :param value: Required. Array of VirtualNetworks. - :type value: list[~azure_arc_vmware_management_service_api.models.VirtualNetwork] + :type value: list[~azure.mgmt.connectedvmware.models.VirtualNetwork] """ _validation = { @@ -3702,7 +3777,7 @@ class VirtualSCSIController(msrest.serialization.Model): :param type: Gets or sets the controller type. Possible values include: "lsilogic", "buslogic", "pvscsi", "lsilogicsas". - :type type: str or ~azure_arc_vmware_management_service_api.models.SCSIControllerType + :type type: str or ~azure.mgmt.connectedvmware.models.SCSIControllerType :param controller_key: Gets or sets the key of the controller. :type controller_key: int :param bus_number: Gets or sets the bus number of the controller. @@ -3711,7 +3786,7 @@ class VirtualSCSIController(msrest.serialization.Model): :type scsi_ctlr_unit_number: int :param sharing: Gets or sets the sharing mode. Possible values include: "noSharing", "physicalSharing", "virtualSharing". - :type sharing: str or ~azure_arc_vmware_management_service_api.models.VirtualSCSISharing + :type sharing: str or ~azure.mgmt.connectedvmware.models.VirtualSCSISharing """ _attribute_map = { diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/__init__.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/__init__.py index b41a867163f..de63ef86d5d 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/__init__.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/__init__.py @@ -18,7 +18,7 @@ from ._inventory_items_operations import InventoryItemsOperations from ._hybrid_identity_metadata_operations import HybridIdentityMetadataOperations from ._machine_extensions_operations import MachineExtensionsOperations -from ._guest_agent_operations import GuestAgentOperations +from ._guest_agents_operations import GuestAgentsOperations __all__ = [ 'Operations', @@ -33,5 +33,5 @@ 'InventoryItemsOperations', 'HybridIdentityMetadataOperations', 'MachineExtensionsOperations', - 'GuestAgentOperations', + 'GuestAgentsOperations', ] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_clusters_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_clusters_operations.py index 37b2d6ea3a4..5fa8af04a2c 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_clusters_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_clusters_operations.py @@ -32,7 +32,7 @@ class ClustersOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -126,7 +126,7 @@ def begin_create( :param cluster_name: Name of the cluster. :type cluster_name: str :param body: Request payload. - :type body: ~azure_arc_vmware_management_service_api.models.Cluster + :type body: ~azure.mgmt.connectedvmware.models.Cluster :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. @@ -134,7 +134,7 @@ def begin_create( :paramtype polling: bool or ~azure.core.polling.PollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of LROPoller that returns either Cluster or the result of cls(response) - :rtype: ~azure.core.polling.LROPoller[~azure_arc_vmware_management_service_api.models.Cluster] + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.connectedvmware.models.Cluster] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] @@ -200,7 +200,7 @@ def get( :type cluster_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: Cluster, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.Cluster + :rtype: ~azure.mgmt.connectedvmware.models.Cluster :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Cluster"] @@ -262,10 +262,10 @@ def update( :param cluster_name: Name of the cluster. :type cluster_name: str :param body: Resource properties to update. - :type body: ~azure_arc_vmware_management_service_api.models.ResourcePatch + :type body: ~azure.mgmt.connectedvmware.models.ResourcePatch :keyword callable cls: A custom type or function that will be passed the direct response :return: Cluster, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.Cluster + :rtype: ~azure.mgmt.connectedvmware.models.Cluster :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Cluster"] @@ -449,7 +449,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either ClustersList or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure_arc_vmware_management_service_api.models.ClustersList] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.connectedvmware.models.ClustersList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ClustersList"] @@ -522,7 +522,7 @@ def list_by_resource_group( :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either ClustersList or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure_arc_vmware_management_service_api.models.ClustersList] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.connectedvmware.models.ClustersList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ClustersList"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_datastores_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_datastores_operations.py index f2c6a7e61bb..d5f88939bed 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_datastores_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_datastores_operations.py @@ -32,7 +32,7 @@ class DatastoresOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -126,7 +126,7 @@ def begin_create( :param datastore_name: Name of the datastore. :type datastore_name: str :param body: Request payload. - :type body: ~azure_arc_vmware_management_service_api.models.Datastore + :type body: ~azure.mgmt.connectedvmware.models.Datastore :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. @@ -134,7 +134,7 @@ def begin_create( :paramtype polling: bool or ~azure.core.polling.PollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of LROPoller that returns either Datastore or the result of cls(response) - :rtype: ~azure.core.polling.LROPoller[~azure_arc_vmware_management_service_api.models.Datastore] + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.connectedvmware.models.Datastore] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] @@ -200,7 +200,7 @@ def get( :type datastore_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: Datastore, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.Datastore + :rtype: ~azure.mgmt.connectedvmware.models.Datastore :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Datastore"] @@ -262,10 +262,10 @@ def update( :param datastore_name: Name of the datastore. :type datastore_name: str :param body: Resource properties to update. - :type body: ~azure_arc_vmware_management_service_api.models.ResourcePatch + :type body: ~azure.mgmt.connectedvmware.models.ResourcePatch :keyword callable cls: A custom type or function that will be passed the direct response :return: Datastore, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.Datastore + :rtype: ~azure.mgmt.connectedvmware.models.Datastore :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Datastore"] @@ -449,7 +449,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either DatastoresList or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure_arc_vmware_management_service_api.models.DatastoresList] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.connectedvmware.models.DatastoresList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.DatastoresList"] @@ -522,7 +522,7 @@ def list_by_resource_group( :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either DatastoresList or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure_arc_vmware_management_service_api.models.DatastoresList] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.connectedvmware.models.DatastoresList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.DatastoresList"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_guest_agents_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_guest_agents_operations.py new file mode 100644 index 00000000000..07d175b6d9c --- /dev/null +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_guest_agents_operations.py @@ -0,0 +1,455 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import TYPE_CHECKING +import warnings + +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling + +from .. import models as _models + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar, Union + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + +class GuestAgentsOperations(object): + """GuestAgentsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.connectedvmware.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _create_initial( + self, + resource_group_name, # type: str + virtual_machine_name, # type: str + name, # type: str + body=None, # type: Optional["_models.GuestAgent"] + **kwargs # type: Any + ): + # type: (...) -> "_models.GuestAgent" + cls = kwargs.pop('cls', None) # type: ClsType["_models.GuestAgent"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._create_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'virtualMachineName': self._serialize.url("virtual_machine_name", virtual_machine_name, 'str'), + 'name': self._serialize.url("name", name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if body is not None: + body_content = self._serialize.body(body, 'GuestAgent') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('GuestAgent', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('GuestAgent', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _create_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedVMwarevSphere/virtualMachines/{virtualMachineName}/guestAgents/{name}'} # type: ignore + + def begin_create( + self, + resource_group_name, # type: str + virtual_machine_name, # type: str + name, # type: str + body=None, # type: Optional["_models.GuestAgent"] + **kwargs # type: Any + ): + # type: (...) -> LROPoller["_models.GuestAgent"] + """Implements GuestAgent PUT method. + + Create Or Update GuestAgent. + + :param resource_group_name: The Resource Group Name. + :type resource_group_name: str + :param virtual_machine_name: Name of the vm. + :type virtual_machine_name: str + :param name: Name of the guestAgents. + :type name: str + :param body: Request payload. + :type body: ~azure.mgmt.connectedvmware.models.GuestAgent + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. + Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either GuestAgent or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.connectedvmware.models.GuestAgent] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.GuestAgent"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_initial( + resource_group_name=resource_group_name, + virtual_machine_name=virtual_machine_name, + name=name, + body=body, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('GuestAgent', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'virtualMachineName': self._serialize.url("virtual_machine_name", virtual_machine_name, 'str'), + 'name': self._serialize.url("name", name, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_create.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedVMwarevSphere/virtualMachines/{virtualMachineName}/guestAgents/{name}'} # type: ignore + + def get( + self, + resource_group_name, # type: str + virtual_machine_name, # type: str + name, # type: str + **kwargs # type: Any + ): + # type: (...) -> "_models.GuestAgent" + """Gets GuestAgent. + + Implements GuestAgent GET method. + + :param resource_group_name: The Resource Group Name. + :type resource_group_name: str + :param virtual_machine_name: Name of the vm. + :type virtual_machine_name: str + :param name: Name of the GuestAgent. + :type name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: GuestAgent, or the result of cls(response) + :rtype: ~azure.mgmt.connectedvmware.models.GuestAgent + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.GuestAgent"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'virtualMachineName': self._serialize.url("virtual_machine_name", virtual_machine_name, 'str'), + 'name': self._serialize.url("name", name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('GuestAgent', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedVMwarevSphere/virtualMachines/{virtualMachineName}/guestAgents/{name}'} # type: ignore + + def _delete_initial( + self, + resource_group_name, # type: str + virtual_machine_name, # type: str + name, # type: str + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self._delete_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'virtualMachineName': self._serialize.url("virtual_machine_name", virtual_machine_name, 'str'), + 'name': self._serialize.url("name", name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.delete(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedVMwarevSphere/virtualMachines/{virtualMachineName}/guestAgents/{name}'} # type: ignore + + def begin_delete( + self, + resource_group_name, # type: str + virtual_machine_name, # type: str + name, # type: str + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """Deletes an GuestAgent. + + Implements GuestAgent DELETE method. + + :param resource_group_name: The Resource Group Name. + :type resource_group_name: str + :param virtual_machine_name: Name of the vm. + :type virtual_machine_name: str + :param name: Name of the GuestAgent. + :type name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. + Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + virtual_machine_name=virtual_machine_name, + name=name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'virtualMachineName': self._serialize.url("virtual_machine_name", virtual_machine_name, 'str'), + 'name': self._serialize.url("name", name, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedVMwarevSphere/virtualMachines/{virtualMachineName}/guestAgents/{name}'} # type: ignore + + def list_by_vm( + self, + resource_group_name, # type: str + virtual_machine_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> Iterable["_models.GuestAgentList"] + """Implements GET GuestAgent in a vm. + + Returns the list of GuestAgent of the given vm. + + :param resource_group_name: The Resource Group Name. + :type resource_group_name: str + :param virtual_machine_name: Name of the vm. + :type virtual_machine_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either GuestAgentList or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.connectedvmware.models.GuestAgentList] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.GuestAgentList"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_by_vm.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'virtualMachineName': self._serialize.url("virtual_machine_name", virtual_machine_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize('GuestAgentList', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged( + get_next, extract_data + ) + list_by_vm.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedVMwarevSphere/virtualMachines/{virtualMachineName}/guestAgents'} # type: ignore diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_hosts_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_hosts_operations.py index 5478f162d7f..94d7caa8278 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_hosts_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_hosts_operations.py @@ -32,7 +32,7 @@ class HostsOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -126,7 +126,7 @@ def begin_create( :param host_name: Name of the host. :type host_name: str :param body: Request payload. - :type body: ~azure_arc_vmware_management_service_api.models.Host + :type body: ~azure.mgmt.connectedvmware.models.Host :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. @@ -134,7 +134,7 @@ def begin_create( :paramtype polling: bool or ~azure.core.polling.PollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of LROPoller that returns either Host or the result of cls(response) - :rtype: ~azure.core.polling.LROPoller[~azure_arc_vmware_management_service_api.models.Host] + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.connectedvmware.models.Host] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] @@ -200,7 +200,7 @@ def get( :type host_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: Host, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.Host + :rtype: ~azure.mgmt.connectedvmware.models.Host :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Host"] @@ -262,10 +262,10 @@ def update( :param host_name: Name of the host. :type host_name: str :param body: Resource properties to update. - :type body: ~azure_arc_vmware_management_service_api.models.ResourcePatch + :type body: ~azure.mgmt.connectedvmware.models.ResourcePatch :keyword callable cls: A custom type or function that will be passed the direct response :return: Host, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.Host + :rtype: ~azure.mgmt.connectedvmware.models.Host :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.Host"] @@ -449,7 +449,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either HostsList or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure_arc_vmware_management_service_api.models.HostsList] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.connectedvmware.models.HostsList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.HostsList"] @@ -522,7 +522,7 @@ def list_by_resource_group( :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either HostsList or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure_arc_vmware_management_service_api.models.HostsList] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.connectedvmware.models.HostsList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.HostsList"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_hybrid_identity_metadata_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_hybrid_identity_metadata_operations.py index 11f23b92088..3c9de2f0868 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_hybrid_identity_metadata_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_hybrid_identity_metadata_operations.py @@ -30,7 +30,7 @@ class HybridIdentityMetadataOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -65,10 +65,10 @@ def create( :param metadata_name: Name of the hybridIdentityMetadata. :type metadata_name: str :param body: Request payload. - :type body: ~azure_arc_vmware_management_service_api.models.HybridIdentityMetadata + :type body: ~azure.mgmt.connectedvmware.models.HybridIdentityMetadata :keyword callable cls: A custom type or function that will be passed the direct response :return: HybridIdentityMetadata, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.HybridIdentityMetadata + :rtype: ~azure.mgmt.connectedvmware.models.HybridIdentityMetadata :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.HybridIdentityMetadata"] @@ -142,7 +142,7 @@ def get( :type metadata_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: HybridIdentityMetadata, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.HybridIdentityMetadata + :rtype: ~azure.mgmt.connectedvmware.models.HybridIdentityMetadata :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.HybridIdentityMetadata"] @@ -268,7 +268,7 @@ def list_by_vm( :type virtual_machine_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either HybridIdentityMetadataList or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure_arc_vmware_management_service_api.models.HybridIdentityMetadataList] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.connectedvmware.models.HybridIdentityMetadataList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.HybridIdentityMetadataList"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_inventory_items_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_inventory_items_operations.py index 47a559503ba..1cdcbb485fc 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_inventory_items_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_inventory_items_operations.py @@ -30,7 +30,7 @@ class InventoryItemsOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -65,10 +65,10 @@ def create( :param inventory_item_name: Name of the inventoryItem. :type inventory_item_name: str :param body: Request payload. - :type body: ~azure_arc_vmware_management_service_api.models.InventoryItem + :type body: ~azure.mgmt.connectedvmware.models.InventoryItem :keyword callable cls: A custom type or function that will be passed the direct response :return: InventoryItem, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.InventoryItem + :rtype: ~azure.mgmt.connectedvmware.models.InventoryItem :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.InventoryItem"] @@ -142,7 +142,7 @@ def get( :type inventory_item_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: InventoryItem, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.InventoryItem + :rtype: ~azure.mgmt.connectedvmware.models.InventoryItem :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.InventoryItem"] @@ -268,7 +268,7 @@ def list_by_v_center( :type vcenter_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either InventoryItemsList or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure_arc_vmware_management_service_api.models.InventoryItemsList] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.connectedvmware.models.InventoryItemsList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.InventoryItemsList"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_machine_extensions_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_machine_extensions_operations.py index bb735351323..cb85d62c88c 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_machine_extensions_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_machine_extensions_operations.py @@ -32,7 +32,7 @@ class MachineExtensionsOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -126,7 +126,7 @@ def begin_create_or_update( :param extension_name: The name of the machine extension. :type extension_name: str :param extension_parameters: Parameters supplied to the Create Machine Extension operation. - :type extension_parameters: ~azure_arc_vmware_management_service_api.models.MachineExtension + :type extension_parameters: ~azure.mgmt.connectedvmware.models.MachineExtension :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. @@ -134,7 +134,7 @@ def begin_create_or_update( :paramtype polling: bool or ~azure.core.polling.PollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of LROPoller that returns either MachineExtension or the result of cls(response) - :rtype: ~azure.core.polling.LROPoller[~azure_arc_vmware_management_service_api.models.MachineExtension] + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.connectedvmware.models.MachineExtension] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] @@ -264,7 +264,7 @@ def begin_update( :param extension_name: The name of the machine extension. :type extension_name: str :param extension_parameters: Parameters supplied to the Create Machine Extension operation. - :type extension_parameters: ~azure_arc_vmware_management_service_api.models.MachineExtensionUpdate + :type extension_parameters: ~azure.mgmt.connectedvmware.models.MachineExtensionUpdate :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. @@ -272,7 +272,7 @@ def begin_update( :paramtype polling: bool or ~azure.core.polling.PollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of LROPoller that returns either MachineExtension or the result of cls(response) - :rtype: ~azure.core.polling.LROPoller[~azure_arc_vmware_management_service_api.models.MachineExtension] + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.connectedvmware.models.MachineExtension] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] @@ -459,7 +459,7 @@ def get( :type extension_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: MachineExtension, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.MachineExtension + :rtype: ~azure.mgmt.connectedvmware.models.MachineExtension :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.MachineExtension"] @@ -523,7 +523,7 @@ def list( :type expand: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either MachineExtensionsListResult or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure_arc_vmware_management_service_api.models.MachineExtensionsListResult] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.connectedvmware.models.MachineExtensionsListResult] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.MachineExtensionsListResult"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_operations.py index 05c41412ca7..d9ee0445a02 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_operations.py @@ -30,7 +30,7 @@ class Operations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -54,7 +54,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either OperationsList or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure_arc_vmware_management_service_api.models.OperationsList] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.connectedvmware.models.OperationsList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.OperationsList"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_resource_pools_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_resource_pools_operations.py index 0578f17286d..5a7f67c6035 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_resource_pools_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_resource_pools_operations.py @@ -32,7 +32,7 @@ class ResourcePoolsOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -126,7 +126,7 @@ def begin_create( :param resource_pool_name: Name of the resourcePool. :type resource_pool_name: str :param body: Request payload. - :type body: ~azure_arc_vmware_management_service_api.models.ResourcePool + :type body: ~azure.mgmt.connectedvmware.models.ResourcePool :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. @@ -134,7 +134,7 @@ def begin_create( :paramtype polling: bool or ~azure.core.polling.PollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of LROPoller that returns either ResourcePool or the result of cls(response) - :rtype: ~azure.core.polling.LROPoller[~azure_arc_vmware_management_service_api.models.ResourcePool] + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.connectedvmware.models.ResourcePool] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] @@ -200,7 +200,7 @@ def get( :type resource_pool_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: ResourcePool, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.ResourcePool + :rtype: ~azure.mgmt.connectedvmware.models.ResourcePool :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ResourcePool"] @@ -262,10 +262,10 @@ def update( :param resource_pool_name: Name of the resourcePool. :type resource_pool_name: str :param body: Resource properties to update. - :type body: ~azure_arc_vmware_management_service_api.models.ResourcePatch + :type body: ~azure.mgmt.connectedvmware.models.ResourcePatch :keyword callable cls: A custom type or function that will be passed the direct response :return: ResourcePool, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.ResourcePool + :rtype: ~azure.mgmt.connectedvmware.models.ResourcePool :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ResourcePool"] @@ -449,7 +449,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either ResourcePoolsList or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure_arc_vmware_management_service_api.models.ResourcePoolsList] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.connectedvmware.models.ResourcePoolsList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ResourcePoolsList"] @@ -522,7 +522,7 @@ def list_by_resource_group( :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either ResourcePoolsList or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure_arc_vmware_management_service_api.models.ResourcePoolsList] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.connectedvmware.models.ResourcePoolsList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.ResourcePoolsList"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_vcenters_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_vcenters_operations.py index 33b7db50a91..d959200f8ae 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_vcenters_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_vcenters_operations.py @@ -32,7 +32,7 @@ class VCentersOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -126,7 +126,7 @@ def begin_create( :param vcenter_name: Name of the vCenter. :type vcenter_name: str :param body: Request payload. - :type body: ~azure_arc_vmware_management_service_api.models.VCenter + :type body: ~azure.mgmt.connectedvmware.models.VCenter :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. @@ -134,7 +134,7 @@ def begin_create( :paramtype polling: bool or ~azure.core.polling.PollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of LROPoller that returns either VCenter or the result of cls(response) - :rtype: ~azure.core.polling.LROPoller[~azure_arc_vmware_management_service_api.models.VCenter] + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.connectedvmware.models.VCenter] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] @@ -200,7 +200,7 @@ def get( :type vcenter_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: VCenter, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.VCenter + :rtype: ~azure.mgmt.connectedvmware.models.VCenter :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VCenter"] @@ -262,10 +262,10 @@ def update( :param vcenter_name: Name of the vCenter. :type vcenter_name: str :param body: Resource properties to update. - :type body: ~azure_arc_vmware_management_service_api.models.ResourcePatch + :type body: ~azure.mgmt.connectedvmware.models.ResourcePatch :keyword callable cls: A custom type or function that will be passed the direct response :return: VCenter, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.VCenter + :rtype: ~azure.mgmt.connectedvmware.models.VCenter :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VCenter"] @@ -449,7 +449,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either VCentersList or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure_arc_vmware_management_service_api.models.VCentersList] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.connectedvmware.models.VCentersList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VCentersList"] @@ -522,7 +522,7 @@ def list_by_resource_group( :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either VCentersList or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure_arc_vmware_management_service_api.models.VCentersList] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.connectedvmware.models.VCentersList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VCentersList"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_virtual_machine_templates_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_virtual_machine_templates_operations.py index e5ba84d0fe7..27f8bdcf311 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_virtual_machine_templates_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_virtual_machine_templates_operations.py @@ -32,7 +32,7 @@ class VirtualMachineTemplatesOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -126,7 +126,7 @@ def begin_create( :param virtual_machine_template_name: Name of the virtual machine template resource. :type virtual_machine_template_name: str :param body: Request payload. - :type body: ~azure_arc_vmware_management_service_api.models.VirtualMachineTemplate + :type body: ~azure.mgmt.connectedvmware.models.VirtualMachineTemplate :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. @@ -134,7 +134,7 @@ def begin_create( :paramtype polling: bool or ~azure.core.polling.PollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of LROPoller that returns either VirtualMachineTemplate or the result of cls(response) - :rtype: ~azure.core.polling.LROPoller[~azure_arc_vmware_management_service_api.models.VirtualMachineTemplate] + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.connectedvmware.models.VirtualMachineTemplate] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] @@ -200,7 +200,7 @@ def get( :type virtual_machine_template_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: VirtualMachineTemplate, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.VirtualMachineTemplate + :rtype: ~azure.mgmt.connectedvmware.models.VirtualMachineTemplate :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualMachineTemplate"] @@ -262,10 +262,10 @@ def update( :param virtual_machine_template_name: Name of the virtual machine template resource. :type virtual_machine_template_name: str :param body: Resource properties to update. - :type body: ~azure_arc_vmware_management_service_api.models.ResourcePatch + :type body: ~azure.mgmt.connectedvmware.models.ResourcePatch :keyword callable cls: A custom type or function that will be passed the direct response :return: VirtualMachineTemplate, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.VirtualMachineTemplate + :rtype: ~azure.mgmt.connectedvmware.models.VirtualMachineTemplate :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualMachineTemplate"] @@ -449,7 +449,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either VirtualMachineTemplatesList or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure_arc_vmware_management_service_api.models.VirtualMachineTemplatesList] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.connectedvmware.models.VirtualMachineTemplatesList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualMachineTemplatesList"] @@ -522,7 +522,7 @@ def list_by_resource_group( :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either VirtualMachineTemplatesList or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure_arc_vmware_management_service_api.models.VirtualMachineTemplatesList] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.connectedvmware.models.VirtualMachineTemplatesList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualMachineTemplatesList"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_virtual_machines_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_virtual_machines_operations.py index e55ae66f644..15163c2eac4 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_virtual_machines_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_virtual_machines_operations.py @@ -32,7 +32,7 @@ class VirtualMachinesOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -126,7 +126,7 @@ def begin_create( :param virtual_machine_name: Name of the virtual machine resource. :type virtual_machine_name: str :param body: Request payload. - :type body: ~azure_arc_vmware_management_service_api.models.VirtualMachine + :type body: ~azure.mgmt.connectedvmware.models.VirtualMachine :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. @@ -134,7 +134,7 @@ def begin_create( :paramtype polling: bool or ~azure.core.polling.PollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of LROPoller that returns either VirtualMachine or the result of cls(response) - :rtype: ~azure.core.polling.LROPoller[~azure_arc_vmware_management_service_api.models.VirtualMachine] + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.connectedvmware.models.VirtualMachine] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] @@ -200,7 +200,7 @@ def get( :type virtual_machine_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: VirtualMachine, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.VirtualMachine + :rtype: ~azure.mgmt.connectedvmware.models.VirtualMachine :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualMachine"] @@ -324,7 +324,7 @@ def begin_update( :param virtual_machine_name: Name of the virtual machine resource. :type virtual_machine_name: str :param body: Resource properties to update. - :type body: ~azure_arc_vmware_management_service_api.models.VirtualMachineUpdate + :type body: ~azure.mgmt.connectedvmware.models.VirtualMachineUpdate :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. @@ -332,7 +332,7 @@ def begin_update( :paramtype polling: bool or ~azure.core.polling.PollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of LROPoller that returns either VirtualMachine or the result of cls(response) - :rtype: ~azure.core.polling.LROPoller[~azure_arc_vmware_management_service_api.models.VirtualMachine] + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.connectedvmware.models.VirtualMachine] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] @@ -573,7 +573,7 @@ def begin_stop( :param virtual_machine_name: Name of the virtual machine resource. :type virtual_machine_name: str :param body: Virtualmachine stop action payload. - :type body: ~azure_arc_vmware_management_service_api.models.StopVirtualMachineOptions + :type body: ~azure.mgmt.connectedvmware.models.StopVirtualMachineOptions :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. @@ -864,7 +864,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either VirtualMachinesList or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure_arc_vmware_management_service_api.models.VirtualMachinesList] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.connectedvmware.models.VirtualMachinesList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualMachinesList"] @@ -937,7 +937,7 @@ def list_by_resource_group( :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either VirtualMachinesList or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure_arc_vmware_management_service_api.models.VirtualMachinesList] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.connectedvmware.models.VirtualMachinesList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualMachinesList"] diff --git a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_virtual_networks_operations.py b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_virtual_networks_operations.py index cfff5dc5169..c0d69a60878 100644 --- a/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_virtual_networks_operations.py +++ b/src/connectedvmware/azext_connectedvmware/vendored_sdks/operations/_virtual_networks_operations.py @@ -32,7 +32,7 @@ class VirtualNetworksOperations(object): instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. - :type models: ~azure_arc_vmware_management_service_api.models + :type models: ~azure.mgmt.connectedvmware.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. @@ -126,7 +126,7 @@ def begin_create( :param virtual_network_name: Name of the virtual network resource. :type virtual_network_name: str :param body: Request payload. - :type body: ~azure_arc_vmware_management_service_api.models.VirtualNetwork + :type body: ~azure.mgmt.connectedvmware.models.VirtualNetwork :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. @@ -134,7 +134,7 @@ def begin_create( :paramtype polling: bool or ~azure.core.polling.PollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of LROPoller that returns either VirtualNetwork or the result of cls(response) - :rtype: ~azure.core.polling.LROPoller[~azure_arc_vmware_management_service_api.models.VirtualNetwork] + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.connectedvmware.models.VirtualNetwork] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] @@ -200,7 +200,7 @@ def get( :type virtual_network_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: VirtualNetwork, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.VirtualNetwork + :rtype: ~azure.mgmt.connectedvmware.models.VirtualNetwork :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetwork"] @@ -262,10 +262,10 @@ def update( :param virtual_network_name: Name of the virtual network resource. :type virtual_network_name: str :param body: Resource properties to update. - :type body: ~azure_arc_vmware_management_service_api.models.ResourcePatch + :type body: ~azure.mgmt.connectedvmware.models.ResourcePatch :keyword callable cls: A custom type or function that will be passed the direct response :return: VirtualNetwork, or the result of cls(response) - :rtype: ~azure_arc_vmware_management_service_api.models.VirtualNetwork + :rtype: ~azure.mgmt.connectedvmware.models.VirtualNetwork :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetwork"] @@ -449,7 +449,7 @@ def list( :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either VirtualNetworksList or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure_arc_vmware_management_service_api.models.VirtualNetworksList] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.connectedvmware.models.VirtualNetworksList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworksList"] @@ -522,7 +522,7 @@ def list_by_resource_group( :type resource_group_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either VirtualNetworksList or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure_arc_vmware_management_service_api.models.VirtualNetworksList] + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.connectedvmware.models.VirtualNetworksList] :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.VirtualNetworksList"] diff --git a/src/connectedvmware/azext_connectedvmware/vmware_utils.py b/src/connectedvmware/azext_connectedvmware/vmware_utils.py index 19ec95f2f34..19af0d9d0b1 100644 --- a/src/connectedvmware/azext_connectedvmware/vmware_utils.py +++ b/src/connectedvmware/azext_connectedvmware/vmware_utils.py @@ -24,6 +24,7 @@ def get_resource_id( _resource_id = None if child_type_1 and child_name_1: if not is_valid_resource_id(child_name_1): + resource = resource.split('/')[-1] _resource_id = resource_id( subscription=get_subscription_id(cmd.cli_ctx), resource_group=resource_group_name, diff --git a/src/connectedvmware/setup.py b/src/connectedvmware/setup.py index 7c3743c4af0..20ab120d362 100644 --- a/src/connectedvmware/setup.py +++ b/src/connectedvmware/setup.py @@ -19,7 +19,7 @@ # TODO: Confirm this is the right version number you want and it matches your # HISTORY.rst entry. -VERSION = '0.1.3' +VERSION = '0.1.5' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers diff --git a/src/connection-monitor-preview/azext_connection_monitor_preview/tests/latest/test_connection_monitor_preview.py b/src/connection-monitor-preview/azext_connection_monitor_preview/tests/latest/test_connection_monitor_preview.py index c72c18950f8..702e98601a1 100644 --- a/src/connection-monitor-preview/azext_connection_monitor_preview/tests/latest/test_connection_monitor_preview.py +++ b/src/connection-monitor-preview/azext_connection_monitor_preview/tests/latest/test_connection_monitor_preview.py @@ -5,7 +5,7 @@ from knack.util import CLIError -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) diff --git a/src/cosmosdb-preview/HISTORY.rst b/src/cosmosdb-preview/HISTORY.rst index c97fa6774f4..a69d5387291 100644 --- a/src/cosmosdb-preview/HISTORY.rst +++ b/src/cosmosdb-preview/HISTORY.rst @@ -2,6 +2,10 @@ Release History =============== +0.11.0 +++++++ +* Add Ldap support for Managed Instance for Apache Cassandra. + 0.10.0 ++++++ * Adding support for Services APIs and Graph Resources. diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_help.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_help.py index b656d4d79a6..3f37845b21d 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_help.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_help.py @@ -72,16 +72,36 @@ az managed-cassandra cluster list """ -helps['managed-cassandra cluster node-status'] = """ +helps['managed-cassandra cluster backup list'] = """ type: command -short-summary: Gets Status of all the nodes in all the datacenters in a given Cluster. +short-summary: List the backups of this cluster that are available to restore. examples: - - name: This command gets the status of all the nodes in this cluster. By default a json is returned. + - name: This command lists the backups of this cluster that are available to restore. text: | - az managed-cassandra cluster node-status --resource-group MyResourceGroup --cluster-name MyCluster - - name: This command gets the status of all the nodes in this cluster. When a table output is specified only one token is displayed. Use json output to get all the tokens. + az managed-cassandra cluster backup list --resource-group MyResourceGroup --cluster-name MyCluster +""" + +helps['managed-cassandra cluster backup show'] = """ +type: command +short-summary: Get a managed cassandra backup resource of this cluster +examples: + - name: Gets a managed cassandra backup resource. + text: | + az managed-cassandra cluster backup show --resource-group MyResourceGroup --cluster-name MyCluster --backup-id BackUpId +""" + +helps['managed-cassandra cluster backup'] = """ +type: group +short-summary: Azure Managed Cassandra cluster Backup. +""" + +helps['managed-cassandra cluster invoke-command'] = """ +type: command +short-summary: Invoke a command like nodetool for cassandra maintenance. +examples: + - name: This command runs nodetool with these arguments in a host node of the cluster. text: | - az managed-cassandra cluster node-status --resource-group MyResourceGroup --cluster-name MyCluster --output table + az managed-cassandra cluster invoke-command --resource-group MyResourceGroup --cluster-name MyCluster --host "10.0.1.12" --command-name "nodetool" --arguments arg1="value1" arg2="value2" arg3="value3" """ helps['managed-cassandra datacenter'] = """ diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py index fd031571481..32b9a341828 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_params.py @@ -8,12 +8,16 @@ from azext_cosmosdb_preview._validators import ( validate_gossip_certificates, validate_client_certificates, + validate_server_certificates, validate_seednodes, validate_node_count) +from azext_cosmosdb_preview.actions import ( + InvokeCommandArgumentsAddAction) + def load_arguments(self, _): - from azure.cli.core.commands.parameters import tags_type + from azure.cli.core.commands.parameters import tags_type, get_enum_type, get_three_state_flag # Managed Cassandra Cluster for scope in [ @@ -21,7 +25,8 @@ def load_arguments(self, _): 'managed-cassandra cluster update', 'managed-cassandra cluster show', 'managed-cassandra cluster delete', - 'managed-cassandra cluster node-status']: + 'managed-cassandra cluster backup list', + 'managed-cassandra cluster backup show']: with self.argument_context(scope) as c: c.argument('cluster_name', options_list=['--cluster-name', '-c'], help="Cluster Name", required=True) @@ -33,13 +38,13 @@ def load_arguments(self, _): c.argument('tags', arg_type=tags_type) c.argument('external_gossip_certificates', nargs='+', validator=validate_gossip_certificates, options_list=['--external-gossip-certificates', '-e'], help="A list of certificates that the managed cassandra data center's should accept.") c.argument('cassandra_version', help="The version of Cassandra chosen.") - c.argument('authentication_method', help="Authentication mode can be None or Cassandra. If None, no authentication will be required to connect to the Cassandra API. If Cassandra, then passwords will be used.") + c.argument('authentication_method', arg_type=get_enum_type(['None', 'Cassandra', 'Ldap']), help="Authentication mode can be None, Cassandra or Ldap. If None, no authentication will be required to connect to the Cassandra API. If Cassandra, then passwords will be used. Ldap is in preview") c.argument('hours_between_backups', help="The number of hours between backup attempts.") c.argument('repair_enabled', help="Enables automatic repair.") c.argument('client_certificates', nargs='+', validator=validate_client_certificates, help="If specified, enables client certificate authentication to the Cassandra API.") c.argument('gossip_certificates', help="A list of certificates that should be accepted by on-premise data centers.") c.argument('external_seed_nodes', nargs='+', validator=validate_seednodes, help="A list of ip addresses of the seed nodes of on-premise data centers.") - c.argument('identity', help="Identity used to authenticate.") + c.argument('identity_type', options_list=['--identity-type'], arg_type=get_enum_type(['None', 'SystemAssigned']), help="Type of identity used for Customer Managed Disk Key.") # Managed Cassandra Cluster with self.argument_context('managed-cassandra cluster create') as c: @@ -49,6 +54,11 @@ def load_arguments(self, _): c.argument('restore_from_backup_id', help="The resource id of a backup. If provided on create, the backup will be used to prepopulate the cluster. The cluster data center count and node counts must match the backup.") c.argument('cluster_name_override', help="If a cluster must have a name that is not a valid azure resource name, this field can be specified to choose the Cassandra cluster name. Otherwise, the resource name will be used as the cluster name.") + # Managed Cassandra Cluster + for scope in ['managed-cassandra cluster backup show']: + with self.argument_context(scope) as c: + c.argument('backup_id', options_list=['--backup-id'], help="The resource id of the backup", required=True) + # Managed Cassandra Datacenter for scope in [ 'managed-cassandra datacenter create', @@ -68,12 +78,25 @@ def load_arguments(self, _): c.argument('base64_encoded_cassandra_yaml_fragment', options_list=['--base64-encoded-cassandra-yaml-fragment', '-b'], help="This is a Base64 encoded yaml file that is a subset of cassandra.yaml. Supported fields will be honored and others will be ignored.") c.argument('data_center_location', options_list=['--data-center-location', '-l'], help="The region where the virtual machine for this data center will be located.") c.argument('delegated_subnet_id', options_list=['--delegated-subnet-id', '-s'], help="The resource id of a subnet where ip addresses of the Cassandra virtual machines will be allocated. This must be in the same region as data_center_location.") + c.argument('managed_disk_customer_key_uri', options_list=['--managed-disk-customer-key-uri', '-k'], help="Key uri to use for encryption of managed disks. Ensure the system assigned identity of the cluster has been assigned appropriate permissions(key get/wrap/unwrap permissions) on the key.") + c.argument('backup_storage_customer_key_uri', options_list=['--backup-storage-customer-key-uri', '-p'], help="Indicates the Key Uri of the customer key to use for encryption of the backup storage account.") + c.argument('server_hostname', options_list=['--ldap-server-hostname'], help="Hostname of the LDAP server.") + c.argument('server_port', options_list=['--ldap-server-port'], help="Port of the LDAP server.") + c.argument('service_user_distinguished_name', options_list=['--ldap-user-name'], help="Distinguished name of the look up user account, who can look up user details on authentication.") + c.argument('service_user_password', options_list=['--ldap-user-password'], help="Password of the look up user.") + c.argument('search_base_distinguished_name', options_list=['--ldap-base-name'], help="Distinguished name of the object to start the recursive search of users from.") + c.argument('search_filter_template', options_list=['--ldap-filter-template'], help="Template to use for searching. Defaults to (cn=%s) where %s will be replaced by the username used to login.") + c.argument('server_certificates', nargs='+', validator=validate_server_certificates, options_list=['--ldap-certificates'], help="LDAP server certificate.") # Managed Cassandra Datacenter with self.argument_context('managed-cassandra datacenter create') as c: c.argument('data_center_location', options_list=['--data-center-location', '-l'], help="Azure Location of the Datacenter", required=True) c.argument('delegated_subnet_id', options_list=['--delegated-subnet-id', '-s'], help="The resource id of a subnet where ip addresses of the Cassandra virtual machines will be allocated. This must be in the same region as data_center_location.", required=True) c.argument('node_count', options_list=['--node-count', '-n'], validator=validate_node_count, help="The number of Cassandra virtual machines in this data center. The minimum value is 3.", required=True) + c.argument('sku', options_list=['--sku'], help="Virtual Machine SKU used for data centers. Default value is Standard_DS14_v2") + c.argument('disk_sku', options_list=['--disk-sku'], help="Disk SKU used for data centers. Default value is P30.") + c.argument('disk_capacity', options_list=['--disk-capacity'], help="Number of disk used for data centers. Default value is 4.") + c.argument('availability_zone', options_list=['--availability-zone', '-z'], arg_type=get_three_state_flag(), help="If the data center haves Availability Zone feature, apply it to the Virtual Machine ScaleSet that host the data center virtual machines.") # Managed Cassandra Datacenter with self.argument_context('managed-cassandra datacenter list') as c: diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/_validators.py b/src/cosmosdb-preview/azext_cosmosdb_preview/_validators.py index 3c87e9c19fc..a9a9e2e160e 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/_validators.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/_validators.py @@ -19,6 +19,12 @@ def validate_client_certificates(ns): ns.client_certificates = get_certificates(ns.client_certificates) +def validate_server_certificates(ns): + """ Extracts multiple comma-separated certificates """ + if ns.server_certificates is not None: + ns.server_certificates = get_certificates(ns.server_certificates) + + def get_certificates(input_certificates): from azext_cosmosdb_preview.vendored_sdks.azure_mgmt_cosmosdb.models import Certificate certificates = [] diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/actions.py b/src/cosmosdb-preview/azext_cosmosdb_preview/actions.py index 27a92aec927..3d8209b5d81 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/actions.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/actions.py @@ -120,3 +120,16 @@ def __call__(self, parser, namespace, values, option_string=None): iso_string = dt_val.isoformat() setattr(namespace, self.dest, iso_string) + + +# pylint: disable=protected-access +class InvokeCommandArgumentsAddAction(argparse._AppendAction): + def __call__(self, parser, namespace, values, option_string=None): + kwargs = {} + for item in values: + try: + key, value = item.split('=', 1) + kwargs[key] = value + except ValueError: + raise CLIError('usage error: {} KEY=VALUE [KEY=VALUE ...]'.format(option_string)) + namespace.arguments = kwargs diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/commands.py b/src/cosmosdb-preview/azext_cosmosdb_preview/commands.py index 5aef8206d16..60fc93c7f41 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/commands.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/commands.py @@ -12,9 +12,6 @@ cf_graph_resources, cf_service ) -from azext_cosmosdb_preview._format import ( - amc_node_status_table_format -) def load_command_table(self, _): @@ -34,15 +31,16 @@ def load_command_table(self, _): operations_tmpl='azext_cosmosdb_preview.vendored_sdks.azure_mgmt_cosmosdb.operations#CassandraDataCentersOperations.{}', client_factory=cf_cassandra_data_center) - with self.command_group('managed-cassandra cluster', cosmosdb_managed_cassandra_cluster_sdk, client_factory=cf_cassandra_cluster, is_preview=True) as g: + with self.command_group('managed-cassandra cluster', cosmosdb_managed_cassandra_cluster_sdk, client_factory=cf_cassandra_cluster) as g: g.custom_command('create', 'cli_cosmosdb_managed_cassandra_cluster_create', supports_no_wait=True) g.custom_command('update', 'cli_cosmosdb_managed_cassandra_cluster_update', supports_no_wait=True) - g.custom_command('node-status', 'cli_cosmosdb_managed_cassandra_fetch_node_status', table_transformer=amc_node_status_table_format, supports_no_wait=True) + g.custom_command('backup list', 'cli_cosmosdb_managed_cassandra_cluster_list_backup', is_preview=True) + g.custom_command('backup show', 'cli_cosmosdb_managed_cassandra_cluster_show_backup', is_preview=True) g.custom_command('list', 'cli_cosmosdb_managed_cassandra_cluster_list') g.show_command('show', 'get') g.command('delete', 'begin_delete', confirmation=True, supports_no_wait=True) - with self.command_group('managed-cassandra datacenter', cosmosdb_managed_cassandra_datacenter_sdk, client_factory=cf_cassandra_data_center, is_preview=True) as g: + with self.command_group('managed-cassandra datacenter', cosmosdb_managed_cassandra_datacenter_sdk, client_factory=cf_cassandra_data_center) as g: g.custom_command('create', 'cli_cosmosdb_managed_cassandra_datacenter_create', supports_no_wait=True) g.custom_command('update', 'cli_cosmosdb_managed_cassandra_datacenter_update', supports_no_wait=True) g.command('list', 'list') diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py index d5f673934f5..156e96b3e28 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/custom.py @@ -9,8 +9,11 @@ from azext_cosmosdb_preview.vendored_sdks.azure_mgmt_cosmosdb.models import ( ClusterResource, ClusterResourceProperties, + CommandPostBody, DataCenterResource, DataCenterResourceProperties, + ManagedCassandraManagedServiceIdentity, + AuthenticationMethodLdapProperties, GraphResource, GraphResourceCreateUpdateParameters, ServiceResourceCreateUpdateParameters @@ -31,7 +34,7 @@ def cli_cosmosdb_managed_cassandra_cluster_create(client, location, delegated_management_subnet_id, tags=None, - identity=None, + identity_type='None', cluster_name_override=None, initial_cassandra_admin_password=None, client_certificates=None, @@ -64,10 +67,14 @@ def cli_cosmosdb_managed_cassandra_cluster_create(client, hours_between_backups=hours_between_backups, repair_enabled=repair_enabled) + managed_service_identity_parameter = ManagedCassandraManagedServiceIdentity( + type=identity_type + ) + cluster_resource_create_update_parameters = ClusterResource( location=location, tags=tags, - identity=identity, + identity=managed_service_identity_parameter, properties=cluster_properties) return client.begin_create_update(resource_group_name, cluster_name, cluster_resource_create_update_parameters) @@ -77,7 +84,7 @@ def cli_cosmosdb_managed_cassandra_cluster_update(client, resource_group_name, cluster_name, tags=None, - identity=None, + identity_type=None, client_certificates=None, external_gossip_certificates=None, external_seed_nodes=None, @@ -114,8 +121,10 @@ def cli_cosmosdb_managed_cassandra_cluster_update(client, if tags is None: tags = cluster_resource.tags - if identity is None: - identity = cluster_resource.identity + identity = cluster_resource.identity + + if identity_type is not None: + identity = ManagedCassandraManagedServiceIdentity(type=identity_type) cluster_properties = ClusterResourceProperties( provisioning_state=cluster_resource.properties.provisioning_state, @@ -154,13 +163,19 @@ def cli_cosmosdb_managed_cassandra_cluster_list(client, return client.list_by_resource_group(resource_group_name) -def cli_cosmosdb_managed_cassandra_fetch_node_status(client, - resource_group_name, - cluster_name): +def cli_cosmosdb_managed_cassandra_cluster_list_backup(client, + resource_group_name, + cluster_name): + """List Azure Managed Cassandra Backup""" + return client.list_backups(resource_group_name, cluster_name) - """Get Azure Managed Cassandra Cluster Node Status""" - return client.begin_fetch_node_status(resource_group_name, cluster_name) +def cli_cosmosdb_managed_cassandra_cluster_show_backup(client, + resource_group_name, + cluster_name, + backup_id): + """Get Azure Managed Cassandra Backup""" + return client.get_backup(resource_group_name, cluster_name, backup_id) def cli_cosmosdb_managed_cassandra_datacenter_create(client, @@ -170,15 +185,45 @@ def cli_cosmosdb_managed_cassandra_datacenter_create(client, data_center_location, delegated_subnet_id, node_count, - base64_encoded_cassandra_yaml_fragment=None): + base64_encoded_cassandra_yaml_fragment=None, + managed_disk_customer_key_uri=None, + backup_storage_customer_key_uri=None, + sku=None, + disk_sku=None, + disk_capacity=None, + availability_zone=None, + server_hostname=None, + server_port=None, + service_user_distinguished_name=None, + service_user_password=None, + search_base_distinguished_name=None, + search_filter_template=None, + server_certificates=None): """Creates an Azure Managed Cassandra Datacenter""" + authentication_method_ldap_properties = AuthenticationMethodLdapProperties( + server_hostname=server_hostname, + server_port=server_port, + service_user_distinguished_name=service_user_distinguished_name, + service_user_password=service_user_password, + search_base_distinguished_name=search_base_distinguished_name, + search_filter_template=search_filter_template, + server_certificates=server_certificates + ) + data_center_properties = DataCenterResourceProperties( data_center_location=data_center_location, delegated_subnet_id=delegated_subnet_id, node_count=node_count, - base64_encoded_cassandra_yaml_fragment=base64_encoded_cassandra_yaml_fragment + base64_encoded_cassandra_yaml_fragment=base64_encoded_cassandra_yaml_fragment, + sku=sku, + disk_sku=disk_sku, + disk_capacity=disk_capacity, + availability_zone=availability_zone, + managed_disk_customer_key_uri=managed_disk_customer_key_uri, + backup_storage_customer_key_uri=backup_storage_customer_key_uri, + authentication_method_ldap_properties=authentication_method_ldap_properties ) data_center_resource = DataCenterResource( @@ -188,11 +233,21 @@ def cli_cosmosdb_managed_cassandra_datacenter_create(client, return client.begin_create_update(resource_group_name, cluster_name, data_center_name, data_center_resource) -def cli_cosmosdb_managed_cassandra_datacenter_update(client, resource_group_name, +def cli_cosmosdb_managed_cassandra_datacenter_update(client, + resource_group_name, cluster_name, data_center_name, node_count=None, - base64_encoded_cassandra_yaml_fragment=None): + base64_encoded_cassandra_yaml_fragment=None, + managed_disk_customer_key_uri=None, + backup_storage_customer_key_uri=None, + server_hostname=None, + server_port=None, + service_user_distinguished_name=None, + service_user_password=None, + search_base_distinguished_name=None, + search_filter_template=None, + server_certificates=None): """Updates an Azure Managed Cassandra Datacenter""" @@ -204,12 +259,54 @@ def cli_cosmosdb_managed_cassandra_datacenter_update(client, resource_group_name if base64_encoded_cassandra_yaml_fragment is None: base64_encoded_cassandra_yaml_fragment = data_center_resource.properties.base64_encoded_cassandra_yaml_fragment + if managed_disk_customer_key_uri is None: + managed_disk_customer_key_uri = data_center_resource.properties.managed_disk_customer_key_uri + + if backup_storage_customer_key_uri is None: + backup_storage_customer_key_uri = data_center_resource.properties.backup_storage_customer_key_uri + + is_ldap_properties_none = False + if data_center_resource.properties.authentication_method_ldap_properties is None: + is_ldap_properties_none = True + + if server_hostname is None and is_ldap_properties_none is False: + server_hostname = data_center_resource.properties.authentication_method_ldap_properties.server_hostname + + if service_user_password is None and is_ldap_properties_none is False: + service_user_password = data_center_resource.properties.authentication_method_ldap_properties.service_user_password + + if service_user_distinguished_name is None and is_ldap_properties_none is False: + service_user_distinguished_name = data_center_resource.properties.authentication_method_ldap_properties.service_user_distinguished_name + + if search_base_distinguished_name is None and is_ldap_properties_none is False: + search_base_distinguished_name = data_center_resource.properties.authentication_method_ldap_properties.search_base_distinguished_name + + if search_filter_template is None and is_ldap_properties_none is False: + search_filter_template = data_center_resource.properties.authentication_method_ldap_properties.search_filter_template + + if server_certificates is None and is_ldap_properties_none is False: + server_certificates = data_center_resource.properties.authentication_method_ldap_properties.server_certificates + + authentication_method_ldap_properties = AuthenticationMethodLdapProperties( + server_hostname=server_hostname, + server_port=server_port, + service_user_distinguished_name=service_user_distinguished_name, + service_user_password=service_user_password, + search_base_distinguished_name=search_base_distinguished_name, + search_filter_template=search_filter_template, + server_certificates=server_certificates + ) + data_center_properties = DataCenterResourceProperties( data_center_location=data_center_resource.properties.data_center_location, delegated_subnet_id=data_center_resource.properties.delegated_subnet_id, node_count=node_count, seed_nodes=data_center_resource.properties.seed_nodes, - base64_encoded_cassandra_yaml_fragment=base64_encoded_cassandra_yaml_fragment) + base64_encoded_cassandra_yaml_fragment=base64_encoded_cassandra_yaml_fragment, + managed_disk_customer_key_uri=managed_disk_customer_key_uri, + backup_storage_customer_key_uri=backup_storage_customer_key_uri, + authentication_method_ldap_properties=authentication_method_ldap_properties + ) data_center_resource = DataCenterResource( properties=data_center_properties diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_cluster_without_datacenters.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_cluster_without_datacenters.yaml index a2fd4668fe9..af85d4e72dd 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_cluster_without_datacenters.yaml +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_cluster_without_datacenters.yaml @@ -20,32 +20,33 @@ interactions: ParameterSetName: - -g -l -n --subnet-name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003?api-version=2021-02-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003?api-version=2021-02-01 response: body: - string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003\",\r\n - \ \"etag\": \"W/\\\"23ba051b-94b4-44d0-b55d-db81e625ab2f\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"8bea8b75-6cd9-4fe7-8e57-a8f666eb6c17\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli000004\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\",\r\n - \ \"etag\": \"W/\\\"23ba051b-94b4-44d0-b55d-db81e625ab2f\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003\"\ + ,\r\n \"etag\": \"W/\\\"eda63f15-89b0-4b85-88fd-f0cfd94d09ee\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"69a5fc68-8086-4d1b-a948-3e52d589c4f4\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli000004\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\"\ + ,\r\n \"etag\": \"W/\\\"eda63f15-89b0-4b85-88fd-f0cfd94d09ee\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/6d80df50-e85d-48cb-be21-75a8672e3301?api-version=2021-02-01 + - https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/7964e258-f07f-4dd4-8514-3cc1688fb02f?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -53,7 +54,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Sep 2021 21:27:54 GMT + - Thu, 21 Oct 2021 01:36:44 GMT expires: - '-1' pragma: @@ -66,7 +67,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d52c3553-a102-4bb4-af73-d4c3240bf9d6 + - 61eedff9-ed83-4999-9b38-1590f1a0dd21 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -86,9 +87,9 @@ interactions: ParameterSetName: - -g -l -n --subnet-name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/6d80df50-e85d-48cb-be21-75a8672e3301?api-version=2021-02-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/7964e258-f07f-4dd4-8514-3cc1688fb02f?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -100,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Sep 2021 21:27:57 GMT + - Thu, 21 Oct 2021 01:36:47 GMT expires: - '-1' pragma: @@ -117,7 +118,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 98f257a0-6e53-4dfd-81b2-de3b367a9862 + - 78ae5d8a-b5d1-48c8-9e6f-a2e0728852b0 status: code: 200 message: OK @@ -135,27 +136,28 @@ interactions: ParameterSetName: - -g -l -n --subnet-name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003?api-version=2021-02-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003?api-version=2021-02-01 response: body: - string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003\",\r\n - \ \"etag\": \"W/\\\"8171d9ca-00d6-491c-8562-2aff54f28914\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"8bea8b75-6cd9-4fe7-8e57-a8f666eb6c17\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli000004\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\",\r\n - \ \"etag\": \"W/\\\"8171d9ca-00d6-491c-8562-2aff54f28914\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003\"\ + ,\r\n \"etag\": \"W/\\\"8bf76d80-012e-4b42-a241-281851956ce1\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"69a5fc68-8086-4d1b-a948-3e52d589c4f4\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli000004\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\"\ + ,\r\n \"etag\": \"W/\\\"8bf76d80-012e-4b42-a241-281851956ce1\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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}" headers: cache-control: - no-cache @@ -164,9 +166,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Sep 2021 21:27:57 GMT + - Thu, 21 Oct 2021 01:36:47 GMT etag: - - W/"8171d9ca-00d6-491c-8562-2aff54f28914" + - W/"8bf76d80-012e-4b42-a241-281851956ce1" expires: - '-1' pragma: @@ -183,7 +185,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4a0601c4-0e13-422d-9f5b-25e39dcca5c6 + - 4ac7f5ef-03f1-4873-9bb6-73d04f2c09b6 status: code: 200 message: OK @@ -201,27 +203,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003?api-version=2021-02-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003?api-version=2021-02-01 response: body: - string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003\",\r\n - \ \"etag\": \"W/\\\"8171d9ca-00d6-491c-8562-2aff54f28914\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"8bea8b75-6cd9-4fe7-8e57-a8f666eb6c17\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli000004\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\",\r\n - \ \"etag\": \"W/\\\"8171d9ca-00d6-491c-8562-2aff54f28914\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003\"\ + ,\r\n \"etag\": \"W/\\\"8bf76d80-012e-4b42-a241-281851956ce1\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"69a5fc68-8086-4d1b-a948-3e52d589c4f4\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli000004\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\"\ + ,\r\n \"etag\": \"W/\\\"8bf76d80-012e-4b42-a241-281851956ce1\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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}" headers: cache-control: - no-cache @@ -230,9 +233,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Sep 2021 21:27:59 GMT + - Thu, 21 Oct 2021 01:36:49 GMT etag: - - W/"8171d9ca-00d6-491c-8562-2aff54f28914" + - W/"8bf76d80-012e-4b42-a241-281851956ce1" expires: - '-1' pragma: @@ -249,7 +252,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9d0a7204-3fc9-4676-b2ea-5d815a6ec11f + - b60dd46b-acc7-486f-b349-8e395d4c8987 status: code: 200 message: OK @@ -267,7 +270,7 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.4 + - python/3.8.10 (Windows-10-10.0.19043-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.28.1 accept-language: - en-US @@ -288,19 +291,19 @@ interactions: dataserviceversion: - 3.0; date: - - Wed, 22 Sep 2021 21:28:00 GMT + - Thu, 21 Oct 2021 01:36:51 GMT duration: - - '1225211' + - '1181120' expires: - '-1' ocp-aad-diagnostics-server-name: - - ojoQ7b/HGtwmX7ucuAkGaZy/aZCmLYz2rY4AxK4k0Pg= + - XQl70kghGDCaIP/Yq4UQNqdLsRUHJDiPCtIRGaJ2Beo= ocp-aad-session-key: - - -__tGIrprSEcTjxMuU_G0pReT7TynQDEYAqgT8Mr0UEJgF8eekINzNGWZrypqhOkQUweveI5CNkBc9qCU5mDOGpk45hP6r-e8hu-zQ5Vj0BBllY8NsjocIGS9pG-6554.eAsoIPcXdLDURHta2EXa7QUu_LmCLAKNu0Sjw6vYVOU + - DiRVNJVRLqEE_DYDuZYLU6u_VIrZPJUrWKHHp0p9tOa4UUhE1xrC4zkkW0BViXtcxUB0627V9fKFa7QAF22IpEVxm4jPpcVT-4O2omZkQMc7LJ72XnX5roSh4gHsYJqC.kLGBFnCJXiZVo7kqBoMprTrcjceNG_-r_OyxLAVJnMs pragma: - no-cache request-id: - - ce244446-2ee4-46cc-b9ce-193b73958973 + - ee80df72-d66d-4fa1-a1ad-f81f55b6fb96 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -333,7 +336,7 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.4 + - python/3.8.10 (Windows-10-10.0.19043-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.28.1 accept-language: - en-US @@ -361,19 +364,19 @@ interactions: dataserviceversion: - 3.0; date: - - Wed, 22 Sep 2021 21:27:59 GMT + - Thu, 21 Oct 2021 01:36:52 GMT duration: - - '915092' + - '2220232' expires: - '-1' ocp-aad-diagnostics-server-name: - - MYEuq6VC19ZDUndvD07AhUS/maJ+uZPnQqDgHVxi9Ow= + - 8IuTZIgFo3LWYmg66VcAxq1Dbd8QvAT/wANvSXJjESM= ocp-aad-session-key: - - RqmeuwFeCJExGEycZpsaoZJeaKWhYj3VWksz3cTI3qtmcQj9maZCaW9QMyQqYSvIan7TNJgDPr5qEluwZOCH2WqXRujyxLoxjllVX_PZ1LNp32jrvfrNcnii0fRCF_vn.hM8UQOe55m733hF-_DRho9poftmWUWXRERZ7syDjF84 + - DTKzIiK34k7xB489WWr0Fe5EEnX8d1eafK06Ca834ZfKmtEm9QWZVXSHR8CSx2w3sZ7KK6xFCA9TOw8pT7WJ7yPl1riUBvIoT9v3ls9oZtZ7_x_S5aozJt0nAGM1tjzm.cNerjUWtpR4wF7E9UHUOfjECyLLF9zlH-KC4wpkfHzc pragma: - no-cache request-id: - - c2c4bf95-9ee8-4a6f-94f7-59a106ab1895 + - 1f397cea-0019-41b3-a08c-df46d914e4ff strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -406,15 +409,15 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.4 + - python/3.8.10 (Windows-10-10.0.19043-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.28.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"e5007d2c-4b13-4a74-9b6a-605d99f03501","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003","condition":null,"conditionVersion":null,"createdOn":"2021-09-22T21:28:01.3631362Z","updatedOn":"2021-09-22T21:28:01.7065439Z","createdBy":null,"updatedBy":"02bf3cc6-8649-4605-ad56-ed19c5a1c247","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"e5007d2c-4b13-4a74-9b6a-605d99f03501","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003","condition":null,"conditionVersion":null,"createdOn":"2021-10-21T01:36:53.1574644Z","updatedOn":"2021-10-21T01:36:53.9855758Z","createdBy":null,"updatedBy":"1a219ab5-8e4c-41e1-aad7-28009583c500","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -423,7 +426,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Sep 2021 21:28:03 GMT + - Thu, 21 Oct 2021 01:36:56 GMT expires: - '-1' pragma: @@ -435,7 +438,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -453,17 +456,17 @@ interactions: ParameterSetName: - -g --vnet-name --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004?api-version=2021-02-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004?api-version=2021-02-01 response: body: - string: "{\r\n \"name\": \"cli000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\",\r\n - \ \"etag\": \"W/\\\"8171d9ca-00d6-491c-8562-2aff54f28914\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: "{\r\n \"name\": \"cli000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\"\ + ,\r\n \"etag\": \"W/\\\"8bf76d80-012e-4b42-a241-281851956ce1\\\"\",\r\n \ + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ + addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ + : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ + \n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: cache-control: - no-cache @@ -472,9 +475,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Sep 2021 21:28:03 GMT + - Thu, 21 Oct 2021 01:36:56 GMT etag: - - W/"8171d9ca-00d6-491c-8562-2aff54f28914" + - W/"8bf76d80-012e-4b42-a241-281851956ce1" expires: - '-1' pragma: @@ -491,12 +494,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8918dcb9-0f86-45da-86ea-f4e13d893e07 + - 7d93aeeb-a546-4428-aea9-66ac51c05b3b status: code: 200 message: OK - request: - body: '{"location": "eastus2", "properties": {"delegatedManagementSubnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004", + body: '{"location": "eastus2", "identity": {"type": "None"}, "properties": {"delegatedManagementSubnetId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004", "externalGossipCertificates": [{"pem": "./test.pem"}], "externalSeedNodes": [{"ipAddress": "127.0.0.1"}, {"ipAddress": "127.0.0.2"}]}}' headers: @@ -509,29 +513,30 @@ interactions: Connection: - keep-alive Content-Length: - - '424' + - '454' Content-Type: - application/json ParameterSetName: - -c -l -g -s -e --external-seed-nodes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2021-10-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"eastus2","tags":{},"systemData":{"createdBy":"mekaushi@microsoft.com","createdByType":"User","createdAt":"2021-09-22T21:28:05.4194342Z","lastModifiedBy":"mekaushi@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-22T21:28:05.4194342Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","clientCertificates":[],"clusterNameOverride":"cli000002","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","externalGossipCertificates":[{"pem":"./test.pem"}],"externalSeedNodes":[{"ipAddress":"127.0.0.1"},{"ipAddress":"127.0.0.2"}],"gossipCertificates":[],"hoursBetweenBackups":0,"prometheusEndpoint":{},"provisioningState":"Creating","repairEnabled":true,"seedNodes":[]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2","tags":{},"systemData":{"createdBy":"visunda@microsoft.com","createdByType":"User","createdAt":"2021-10-21T01:37:00.4194005Z","lastModifiedBy":"visunda@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-21T01:37:00.4194005Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"cli000002","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","externalGossipCertificates":[{"pem":"./test.pem"}],"externalSeedNodes":[{"ipAddress":"127.0.0.1"},{"ipAddress":"127.0.0.2"}],"gossipCertificates":[],"hoursBetweenBackups":24,"prometheusEndpoint":{},"provisioningState":"Creating","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/15fc783b-c074-44ea-89fe-5eee9d68b1f0?api-version=2021-07-01-preview + - https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/89ee77b0-1e75-441b-b7f0-6b08e8f64886?api-version=2021-10-15-preview cache-control: - no-store, no-cache content-length: - - '1185' + - '1269' content-type: - application/json date: - - Wed, 22 Sep 2021 21:28:06 GMT + - Thu, 21 Oct 2021 01:37:01 GMT pragma: - no-cache server: @@ -543,7 +548,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -561,9 +566,9 @@ interactions: ParameterSetName: - -c -l -g -s -e --external-seed-nodes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/15fc783b-c074-44ea-89fe-5eee9d68b1f0?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/89ee77b0-1e75-441b-b7f0-6b08e8f64886?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -575,7 +580,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:28:36 GMT + - Thu, 21 Oct 2021 01:37:30 GMT pragma: - no-cache server: @@ -607,9 +612,9 @@ interactions: ParameterSetName: - -c -l -g -s -e --external-seed-nodes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/15fc783b-c074-44ea-89fe-5eee9d68b1f0?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/89ee77b0-1e75-441b-b7f0-6b08e8f64886?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -621,7 +626,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:29:05 GMT + - Thu, 21 Oct 2021 01:38:01 GMT pragma: - no-cache server: @@ -653,9 +658,9 @@ interactions: ParameterSetName: - -c -l -g -s -e --external-seed-nodes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/15fc783b-c074-44ea-89fe-5eee9d68b1f0?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/89ee77b0-1e75-441b-b7f0-6b08e8f64886?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -667,7 +672,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:29:35 GMT + - Thu, 21 Oct 2021 01:38:31 GMT pragma: - no-cache server: @@ -699,9 +704,9 @@ interactions: ParameterSetName: - -c -l -g -s -e --external-seed-nodes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/15fc783b-c074-44ea-89fe-5eee9d68b1f0?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/89ee77b0-1e75-441b-b7f0-6b08e8f64886?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -713,7 +718,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:30:06 GMT + - Thu, 21 Oct 2021 01:39:01 GMT pragma: - no-cache server: @@ -745,9 +750,9 @@ interactions: ParameterSetName: - -c -l -g -s -e --external-seed-nodes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/15fc783b-c074-44ea-89fe-5eee9d68b1f0?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/89ee77b0-1e75-441b-b7f0-6b08e8f64886?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -759,7 +764,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:30:36 GMT + - Thu, 21 Oct 2021 01:39:32 GMT pragma: - no-cache server: @@ -791,9 +796,9 @@ interactions: ParameterSetName: - -c -l -g -s -e --external-seed-nodes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/15fc783b-c074-44ea-89fe-5eee9d68b1f0?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/89ee77b0-1e75-441b-b7f0-6b08e8f64886?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -805,7 +810,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:31:06 GMT + - Thu, 21 Oct 2021 01:40:01 GMT pragma: - no-cache server: @@ -837,21 +842,21 @@ interactions: ParameterSetName: - -c -l -g -s -e --external-seed-nodes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/15fc783b-c074-44ea-89fe-5eee9d68b1f0?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/89ee77b0-1e75-441b-b7f0-6b08e8f64886?api-version=2021-10-15-preview response: body: - string: '{"status":"Dequeued"}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '21' + - '22' content-type: - application/json date: - - Wed, 22 Sep 2021 21:31:37 GMT + - Thu, 21 Oct 2021 01:40:32 GMT pragma: - no-cache server: @@ -883,21 +888,28 @@ interactions: ParameterSetName: - -c -l -g -s -e --external-seed-nodes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/15fc783b-c074-44ea-89fe-5eee9d68b1f0?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2021-10-15-preview response: body: - string: '{"status":"Dequeued"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2","tags":{},"systemData":{"createdBy":"visunda@microsoft.com","createdByType":"User","createdAt":"2021-10-21T01:37:00.4194005Z","lastModifiedBy":"visunda@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-21T01:37:00.4194005Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"cli000002","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","externalGossipCertificates":[{"pem":"./test.pem"}],"externalSeedNodes":[{"ipAddress":"127.0.0.1"},{"ipAddress":"127.0.0.2"}],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GK\r\nDnwygZdK6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5\r\ntq1WdKsPkitPws6V8MWa5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1M\r\nfsitAWVp6hiWANkWKINfRcdt3Z2A23hmMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgO\r\nbJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/zr2Wet5KEcUDtUBhA4dUU\r\noaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kxWkH6kgO5\r\ngTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02\r\nr5q5B/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB\r\n5nw0cJY1QHOr3nIvJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pC\r\nHeiXCNpv+fadwP0k8czaf2Vs19nYsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4H\r\nGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte/bsuAEF4ajkPEES3GHP9AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZSamgwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu\r\n+oZaKaIu7U3NidykFr994jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kO\r\nvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DLKTp2Ox0+jYBCPxla5FO252qpk7/6wt8S\r\nZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5FPzqKoSqN75byLjsIKJE\r\ndNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6TGu1moh4a\r\nE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyr\r\nRygnavXL7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6n\r\nl/jYvZnVeJXjtsKYcXIf/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdm\r\nGW/JI0C/7U/E7evXn9XDio8SYkGSM63aLO5BtLCv092+1d4GGBSQYolRq+7Pd1kR\r\nEkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVsiUeE7F5sY8Me96WVxQcb\r\nOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi9r5UrvYo\r\no19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO\r\n4bCk1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc4\r\n7IxyVccHHq1FzGygOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cj\r\nWGVGtMZHwzVvX1HvSFG771sskcEjJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpR\r\nGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g37Y72qHzidwtyW7rBetZJAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5ygHYwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBA\r\nWxKJoi8YYQafpMTkMqeuzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBs\r\nK9KcStQGGZRfmWU07hPXHnFz+5gTXqzCE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa\r\n+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8JGqMU/UjAdh1pFyTnnHEl\r\nY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDTjHaQcs2J\r\n+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra\r\n3VBo7QznC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPS\r\nu6D804ri0NFZ1SOP9IzjYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1d\r\nskMuVpT4z0MpgEMmxQnrSZ615rBQ25vnVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5\r\nxq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Qc34RgxQdZsLXMUrWuL1J\r\nLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVDiIiXWF0c\r\n9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHy\r\nis01zkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ\r\n/nV94l+hYp+GLW7jSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInP\r\noi1PqN4TudNv0GyBF5tRC/aBjUqply1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bn\r\nKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfLUFc4hYb3YyIIYGmqm2/3AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKliZ/0wHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfe\r\nZd7TR1837H6DSkFa/mGM1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGH\r\niyx5421+HpRxMQIRjligePtOtRGXwaNOQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ\r\n/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCquAV0PksZj7EC4nK6e/UV\r\nbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0EsO3MgjS3e\r\nDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT\r\nMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j\r\nb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG\r\n9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI\r\n2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx\r\n1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ\r\nq2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz\r\ntCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ\r\nvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV\r\n5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY\r\n1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4\r\nNeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG\r\nFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91\r\n8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe\r\npLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+Xb\r\nwjEz+5CipDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMY\r\niwdRd3Y39b/lcGpiuP2d23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99\r\nThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lReUnd1aNjRYVzPOoifgSx2fRyy1+pO1Uz\r\naMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUEDqQuBfBxReL5mXiu1O7WG\r\n0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA5fl6JB0Q\r\ngs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0s\r\nsRfFJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjh\r\nlxuoK2n5/2aVR3BMTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60\r\nN2oV7vQ17wjMN+LXa2rjj/b4ZlZgXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2C\r\nZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHjzwW/9FxGqry57i71c2cDAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVou6UwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF\r\n+rA2LUK5IOQOgcUSTGKSqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+\r\ncS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7RIAAUW6EzDflUoDHKv83zOiPfYGcpHc9s\r\nkxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5hwRlGhBJwps6fEVi1Bt0\r\ntrpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0GMXlHqThy\r\n8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}}' headers: cache-control: - no-store, no-cache content-length: - - '21' + - '11623' content-type: - application/json date: - - Wed, 22 Sep 2021 21:32:07 GMT + - Thu, 21 Oct 2021 01:40:32 GMT pragma: - no-cache server: @@ -919,31 +931,38 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - managed-cassandra cluster create + - managed-cassandra cluster show Connection: - keep-alive ParameterSetName: - - -c -l -g -s -e --external-seed-nodes + - -c -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/15fc783b-c074-44ea-89fe-5eee9d68b1f0?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2021-10-15-preview response: body: - string: '{"status":"Succeeded"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2","tags":{},"systemData":{"createdBy":"visunda@microsoft.com","createdByType":"User","createdAt":"2021-10-21T01:37:00.4194005Z","lastModifiedBy":"visunda@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-21T01:37:00.4194005Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"cli000002","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","externalGossipCertificates":[{"pem":"./test.pem"}],"externalSeedNodes":[{"ipAddress":"127.0.0.1"},{"ipAddress":"127.0.0.2"}],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GK\r\nDnwygZdK6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5\r\ntq1WdKsPkitPws6V8MWa5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1M\r\nfsitAWVp6hiWANkWKINfRcdt3Z2A23hmMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgO\r\nbJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/zr2Wet5KEcUDtUBhA4dUU\r\noaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kxWkH6kgO5\r\ngTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02\r\nr5q5B/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB\r\n5nw0cJY1QHOr3nIvJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pC\r\nHeiXCNpv+fadwP0k8czaf2Vs19nYsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4H\r\nGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte/bsuAEF4ajkPEES3GHP9AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZSamgwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu\r\n+oZaKaIu7U3NidykFr994jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kO\r\nvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DLKTp2Ox0+jYBCPxla5FO252qpk7/6wt8S\r\nZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5FPzqKoSqN75byLjsIKJE\r\ndNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6TGu1moh4a\r\nE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyr\r\nRygnavXL7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6n\r\nl/jYvZnVeJXjtsKYcXIf/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdm\r\nGW/JI0C/7U/E7evXn9XDio8SYkGSM63aLO5BtLCv092+1d4GGBSQYolRq+7Pd1kR\r\nEkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVsiUeE7F5sY8Me96WVxQcb\r\nOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi9r5UrvYo\r\no19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO\r\n4bCk1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc4\r\n7IxyVccHHq1FzGygOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cj\r\nWGVGtMZHwzVvX1HvSFG771sskcEjJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpR\r\nGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g37Y72qHzidwtyW7rBetZJAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5ygHYwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBA\r\nWxKJoi8YYQafpMTkMqeuzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBs\r\nK9KcStQGGZRfmWU07hPXHnFz+5gTXqzCE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa\r\n+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8JGqMU/UjAdh1pFyTnnHEl\r\nY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDTjHaQcs2J\r\n+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra\r\n3VBo7QznC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPS\r\nu6D804ri0NFZ1SOP9IzjYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1d\r\nskMuVpT4z0MpgEMmxQnrSZ615rBQ25vnVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5\r\nxq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Qc34RgxQdZsLXMUrWuL1J\r\nLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVDiIiXWF0c\r\n9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHy\r\nis01zkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ\r\n/nV94l+hYp+GLW7jSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInP\r\noi1PqN4TudNv0GyBF5tRC/aBjUqply1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bn\r\nKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfLUFc4hYb3YyIIYGmqm2/3AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKliZ/0wHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfe\r\nZd7TR1837H6DSkFa/mGM1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGH\r\niyx5421+HpRxMQIRjligePtOtRGXwaNOQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ\r\n/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCquAV0PksZj7EC4nK6e/UV\r\nbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0EsO3MgjS3e\r\nDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT\r\nMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j\r\nb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG\r\n9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI\r\n2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx\r\n1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ\r\nq2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz\r\ntCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ\r\nvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV\r\n5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY\r\n1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4\r\nNeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG\r\nFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91\r\n8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe\r\npLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+Xb\r\nwjEz+5CipDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMY\r\niwdRd3Y39b/lcGpiuP2d23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99\r\nThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lReUnd1aNjRYVzPOoifgSx2fRyy1+pO1Uz\r\naMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUEDqQuBfBxReL5mXiu1O7WG\r\n0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA5fl6JB0Q\r\ngs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0s\r\nsRfFJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjh\r\nlxuoK2n5/2aVR3BMTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60\r\nN2oV7vQ17wjMN+LXa2rjj/b4ZlZgXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2C\r\nZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHjzwW/9FxGqry57i71c2cDAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVou6UwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF\r\n+rA2LUK5IOQOgcUSTGKSqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+\r\ncS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7RIAAUW6EzDflUoDHKv83zOiPfYGcpHc9s\r\nkxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5hwRlGhBJwps6fEVi1Bt0\r\ntrpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0GMXlHqThy\r\n8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}}' headers: cache-control: - no-store, no-cache content-length: - - '22' + - '11623' content-type: - application/json date: - - Wed, 22 Sep 2021 21:32:37 GMT + - Thu, 21 Oct 2021 01:40:33 GMT pragma: - no-cache server: @@ -965,89 +984,81 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - managed-cassandra cluster create + - managed-cassandra cluster delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -c -l -g -s -e --external-seed-nodes + - -c -g --yes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2021-07-01-preview + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + method: DELETE + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2021-10-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"eastus2","tags":{},"systemData":{"createdBy":"mekaushi@microsoft.com","createdByType":"User","createdAt":"2021-09-22T21:28:05.4194342Z","lastModifiedBy":"mekaushi@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-22T21:28:05.4194342Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","clientCertificates":[],"clusterNameOverride":"cli000002","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","externalGossipCertificates":[{"pem":"./test.pem"}],"externalSeedNodes":[{"ipAddress":"127.0.0.1"},{"ipAddress":"127.0.0.2"}],"gossipCertificates":[{"pem":"\r\n-----BEGIN - CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GK\r\nDnwygZdK6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5\r\ntq1WdKsPkitPws6V8MWa5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1M\r\nfsitAWVp6hiWANkWKINfRcdt3Z2A23hmMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgO\r\nbJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/zr2Wet5KEcUDtUBhA4dUU\r\noaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kxWkH6kgO5\r\ngTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02\r\nr5q5B/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB\r\n5nw0cJY1QHOr3nIvJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pC\r\nHeiXCNpv+fadwP0k8czaf2Vs19nYsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4H\r\nGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte/bsuAEF4ajkPEES3GHP9AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZSamgwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu\r\n+oZaKaIu7U3NidykFr994jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kO\r\nvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DLKTp2Ox0+jYBCPxla5FO252qpk7/6wt8S\r\nZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5FPzqKoSqN75byLjsIKJE\r\ndNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6TGu1moh4a\r\nE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyr\r\nRygnavXL7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6n\r\nl/jYvZnVeJXjtsKYcXIf/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdm\r\nGW/JI0C/7U/E7evXn9XDio8SYkGSM63aLO5BtLCv092+1d4GGBSQYolRq+7Pd1kR\r\nEkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVsiUeE7F5sY8Me96WVxQcb\r\nOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi9r5UrvYo\r\no19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO\r\n4bCk1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc4\r\n7IxyVccHHq1FzGygOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cj\r\nWGVGtMZHwzVvX1HvSFG771sskcEjJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpR\r\nGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g37Y72qHzidwtyW7rBetZJAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5ygHYwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBA\r\nWxKJoi8YYQafpMTkMqeuzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBs\r\nK9KcStQGGZRfmWU07hPXHnFz+5gTXqzCE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa\r\n+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8JGqMU/UjAdh1pFyTnnHEl\r\nY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDTjHaQcs2J\r\n+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra\r\n3VBo7QznC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPS\r\nu6D804ri0NFZ1SOP9IzjYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1d\r\nskMuVpT4z0MpgEMmxQnrSZ615rBQ25vnVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5\r\nxq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Qc34RgxQdZsLXMUrWuL1J\r\nLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVDiIiXWF0c\r\n9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHy\r\nis01zkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ\r\n/nV94l+hYp+GLW7jSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInP\r\noi1PqN4TudNv0GyBF5tRC/aBjUqply1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bn\r\nKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfLUFc4hYb3YyIIYGmqm2/3AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKliZ/0wHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfe\r\nZd7TR1837H6DSkFa/mGM1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGH\r\niyx5421+HpRxMQIRjligePtOtRGXwaNOQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ\r\n/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCquAV0PksZj7EC4nK6e/UV\r\nbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0EsO3MgjS3e\r\nDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT\r\nMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j\r\nb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG\r\n9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI\r\n2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx\r\n1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ\r\nq2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz\r\ntCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ\r\nvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV\r\n5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY\r\n1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4\r\nNeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG\r\nFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91\r\n8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe\r\npLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+Xb\r\nwjEz+5CipDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMY\r\niwdRd3Y39b/lcGpiuP2d23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99\r\nThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lReUnd1aNjRYVzPOoifgSx2fRyy1+pO1Uz\r\naMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUEDqQuBfBxReL5mXiu1O7WG\r\n0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA5fl6JB0Q\r\ngs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0s\r\nsRfFJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjh\r\nlxuoK2n5/2aVR3BMTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60\r\nN2oV7vQ17wjMN+LXa2rjj/b4ZlZgXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2C\r\nZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHjzwW/9FxGqry57i71c2cDAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVou6UwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF\r\n+rA2LUK5IOQOgcUSTGKSqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+\r\ncS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7RIAAUW6EzDflUoDHKv83zOiPfYGcpHc9s\r\nkxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5hwRlGhBJwps6fEVi1Bt0\r\ntrpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0GMXlHqThy\r\n8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END - CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[]}}' + string: '{"status":"Enqueued"}' headers: + azure-asyncoperation: + - https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/77cb3bc2-222d-485e-b938-570be572e022?api-version=2021-10-15-preview cache-control: - no-store, no-cache content-length: - - '11539' + - '21' content-type: - application/json date: - - Wed, 22 Sep 2021 21:32:37 GMT + - Thu, 21 Oct 2021 01:40:34 GMT + location: + - https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationResults/77cb3bc2-222d-485e-b938-570be572e022?api-version=2021-10-15-preview pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: - code: 200 - message: Ok + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - managed-cassandra cluster show + - managed-cassandra cluster delete Connection: - keep-alive ParameterSetName: - - -c -g + - -c -g --yes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/77cb3bc2-222d-485e-b938-570be572e022?api-version=2021-10-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"eastus2","tags":{},"systemData":{"createdBy":"mekaushi@microsoft.com","createdByType":"User","createdAt":"2021-09-22T21:28:05.4194342Z","lastModifiedBy":"mekaushi@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-22T21:28:05.4194342Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","clientCertificates":[],"clusterNameOverride":"cli000002","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","externalGossipCertificates":[{"pem":"./test.pem"}],"externalSeedNodes":[{"ipAddress":"127.0.0.1"},{"ipAddress":"127.0.0.2"}],"gossipCertificates":[{"pem":"\r\n-----BEGIN - CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GK\r\nDnwygZdK6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5\r\ntq1WdKsPkitPws6V8MWa5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1M\r\nfsitAWVp6hiWANkWKINfRcdt3Z2A23hmMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgO\r\nbJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/zr2Wet5KEcUDtUBhA4dUU\r\noaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kxWkH6kgO5\r\ngTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02\r\nr5q5B/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB\r\n5nw0cJY1QHOr3nIvJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pC\r\nHeiXCNpv+fadwP0k8czaf2Vs19nYsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4H\r\nGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte/bsuAEF4ajkPEES3GHP9AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZSamgwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu\r\n+oZaKaIu7U3NidykFr994jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kO\r\nvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DLKTp2Ox0+jYBCPxla5FO252qpk7/6wt8S\r\nZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5FPzqKoSqN75byLjsIKJE\r\ndNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6TGu1moh4a\r\nE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyr\r\nRygnavXL7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6n\r\nl/jYvZnVeJXjtsKYcXIf/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdm\r\nGW/JI0C/7U/E7evXn9XDio8SYkGSM63aLO5BtLCv092+1d4GGBSQYolRq+7Pd1kR\r\nEkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVsiUeE7F5sY8Me96WVxQcb\r\nOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi9r5UrvYo\r\no19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO\r\n4bCk1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc4\r\n7IxyVccHHq1FzGygOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cj\r\nWGVGtMZHwzVvX1HvSFG771sskcEjJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpR\r\nGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g37Y72qHzidwtyW7rBetZJAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5ygHYwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBA\r\nWxKJoi8YYQafpMTkMqeuzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBs\r\nK9KcStQGGZRfmWU07hPXHnFz+5gTXqzCE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa\r\n+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8JGqMU/UjAdh1pFyTnnHEl\r\nY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDTjHaQcs2J\r\n+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra\r\n3VBo7QznC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPS\r\nu6D804ri0NFZ1SOP9IzjYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1d\r\nskMuVpT4z0MpgEMmxQnrSZ615rBQ25vnVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5\r\nxq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Qc34RgxQdZsLXMUrWuL1J\r\nLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVDiIiXWF0c\r\n9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHy\r\nis01zkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ\r\n/nV94l+hYp+GLW7jSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInP\r\noi1PqN4TudNv0GyBF5tRC/aBjUqply1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bn\r\nKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfLUFc4hYb3YyIIYGmqm2/3AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKliZ/0wHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfe\r\nZd7TR1837H6DSkFa/mGM1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGH\r\niyx5421+HpRxMQIRjligePtOtRGXwaNOQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ\r\n/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCquAV0PksZj7EC4nK6e/UV\r\nbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0EsO3MgjS3e\r\nDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT\r\nMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j\r\nb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG\r\n9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI\r\n2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx\r\n1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ\r\nq2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz\r\ntCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ\r\nvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV\r\n5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY\r\n1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4\r\nNeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG\r\nFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91\r\n8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe\r\npLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END - CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+Xb\r\nwjEz+5CipDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMY\r\niwdRd3Y39b/lcGpiuP2d23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99\r\nThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lReUnd1aNjRYVzPOoifgSx2fRyy1+pO1Uz\r\naMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUEDqQuBfBxReL5mXiu1O7WG\r\n0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA5fl6JB0Q\r\ngs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0s\r\nsRfFJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjh\r\nlxuoK2n5/2aVR3BMTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60\r\nN2oV7vQ17wjMN+LXa2rjj/b4ZlZgXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2C\r\nZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHjzwW/9FxGqry57i71c2cDAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVou6UwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF\r\n+rA2LUK5IOQOgcUSTGKSqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+\r\ncS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7RIAAUW6EzDflUoDHKv83zOiPfYGcpHc9s\r\nkxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5hwRlGhBJwps6fEVi1Bt0\r\ntrpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0GMXlHqThy\r\n8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END - CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[]}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '11539' + - '21' content-type: - application/json date: - - Wed, 22 Sep 2021 21:32:37 GMT + - Thu, 21 Oct 2021 01:41:04 GMT pragma: - no-cache server: @@ -1069,27 +1080,23 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - managed-cassandra cluster delete Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -c -g --yes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2021-07-01-preview + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + method: GET + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/77cb3bc2-222d-485e-b938-570be572e022?api-version=2021-10-15-preview response: body: - string: '{"status":"Enqueued"}' + string: '{"status":"Dequeued"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/96e8b3ac-fac4-4646-96b2-be2bd92537e9?api-version=2021-07-01-preview cache-control: - no-store, no-cache content-length: @@ -1097,24 +1104,24 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:32:39 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationResults/96e8b3ac-fac4-4646-96b2-be2bd92537e9?api-version=2021-07-01-preview + - Thu, 21 Oct 2021 01:41:35 GMT pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-gatewayversion: - version=2.14.0 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' status: - code: 202 - message: Accepted + code: 200 + message: Ok - request: body: null headers: @@ -1129,9 +1136,9 @@ interactions: ParameterSetName: - -c -g --yes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/96e8b3ac-fac4-4646-96b2-be2bd92537e9?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/77cb3bc2-222d-485e-b938-570be572e022?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1143,7 +1150,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:33:10 GMT + - Thu, 21 Oct 2021 01:42:04 GMT pragma: - no-cache server: @@ -1175,9 +1182,9 @@ interactions: ParameterSetName: - -c -g --yes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/96e8b3ac-fac4-4646-96b2-be2bd92537e9?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/77cb3bc2-222d-485e-b938-570be572e022?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1189,7 +1196,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:33:40 GMT + - Thu, 21 Oct 2021 01:42:34 GMT pragma: - no-cache server: @@ -1221,9 +1228,9 @@ interactions: ParameterSetName: - -c -g --yes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/96e8b3ac-fac4-4646-96b2-be2bd92537e9?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/77cb3bc2-222d-485e-b938-570be572e022?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1235,7 +1242,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:34:10 GMT + - Thu, 21 Oct 2021 01:43:05 GMT pragma: - no-cache server: @@ -1267,9 +1274,9 @@ interactions: ParameterSetName: - -c -g --yes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/96e8b3ac-fac4-4646-96b2-be2bd92537e9?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/77cb3bc2-222d-485e-b938-570be572e022?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1281,7 +1288,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:34:40 GMT + - Thu, 21 Oct 2021 01:43:35 GMT pragma: - no-cache server: @@ -1313,9 +1320,9 @@ interactions: ParameterSetName: - -c -g --yes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/96e8b3ac-fac4-4646-96b2-be2bd92537e9?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/77cb3bc2-222d-485e-b938-570be572e022?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1327,7 +1334,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:35:10 GMT + - Thu, 21 Oct 2021 01:44:05 GMT pragma: - no-cache server: @@ -1359,9 +1366,9 @@ interactions: ParameterSetName: - -c -g --yes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/96e8b3ac-fac4-4646-96b2-be2bd92537e9?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/77cb3bc2-222d-485e-b938-570be572e022?api-version=2021-10-15-preview response: body: string: '{"status":"Succeeded"}' @@ -1373,7 +1380,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:35:41 GMT + - Thu, 21 Oct 2021 01:44:35 GMT pragma: - no-cache server: diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_verify_lists.yaml b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_verify_lists.yaml index 314424ca631..debf1010362 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_verify_lists.yaml +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/recordings/test_managed_cassandra_verify_lists.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "eastus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + body: '{"location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"name": "cli000006", "properties": {"addressPrefix": "10.0.0.0/24", "privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}]}}' @@ -20,32 +20,33 @@ interactions: ParameterSetName: - -g -l -n --subnet-name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005?api-version=2021-02-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005?api-version=2021-02-01 response: body: - string: "{\r\n \"name\": \"cli000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005\",\r\n - \ \"etag\": \"W/\\\"60bf8ef0-0835-4c30-9d75-107fa627b967\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"e64bb910-d37d-4b25-ae41-bec810eb6214\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli000006\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006\",\r\n - \ \"etag\": \"W/\\\"60bf8ef0-0835-4c30-9d75-107fa627b967\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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: "{\r\n \"name\": \"cli000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005\"\ + ,\r\n \"etag\": \"W/\\\"85cb235d-0969-4eb8-955b-8c88efebdd1e\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Updating\",\r\n \"resourceGuid\": \"54676f38-9b61-4099-a06a-96d7e694ebed\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli000006\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006\"\ + ,\r\n \"etag\": \"W/\\\"85cb235d-0969-4eb8-955b-8c88efebdd1e\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/9db7845b-a47d-494d-af7c-4764073dbb5a?api-version=2021-02-01 + - https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d1c4ccae-0784-4fdd-9637-393e4a469000?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -53,7 +54,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Sep 2021 21:36:32 GMT + - Thu, 21 Oct 2021 22:13:23 GMT expires: - '-1' pragma: @@ -66,7 +67,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 38dbd3c8-01c4-4018-8b81-a7aa3f30bb47 + - 16a59cb1-d41a-4447-bd30-be4a9de39b8c x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -86,9 +87,9 @@ interactions: ParameterSetName: - -g -l -n --subnet-name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/9db7845b-a47d-494d-af7c-4764073dbb5a?api-version=2021-02-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d1c4ccae-0784-4fdd-9637-393e4a469000?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -100,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Sep 2021 21:36:35 GMT + - Thu, 21 Oct 2021 22:13:28 GMT expires: - '-1' pragma: @@ -117,7 +118,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ec5224cd-f1a6-4a27-8baf-dd280a10a417 + - 89058295-022a-482c-a223-1c764add9450 status: code: 200 message: OK @@ -135,27 +136,28 @@ interactions: ParameterSetName: - -g -l -n --subnet-name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005?api-version=2021-02-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005?api-version=2021-02-01 response: body: - string: "{\r\n \"name\": \"cli000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005\",\r\n - \ \"etag\": \"W/\\\"c623d7d1-f915-4b1d-8dd1-08b6a0c8d0d4\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"e64bb910-d37d-4b25-ae41-bec810eb6214\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli000006\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006\",\r\n - \ \"etag\": \"W/\\\"c623d7d1-f915-4b1d-8dd1-08b6a0c8d0d4\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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: "{\r\n \"name\": \"cli000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005\"\ + ,\r\n \"etag\": \"W/\\\"94e45b53-76ee-41fd-a4d2-7ff3367a42ce\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"54676f38-9b61-4099-a06a-96d7e694ebed\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli000006\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006\"\ + ,\r\n \"etag\": \"W/\\\"94e45b53-76ee-41fd-a4d2-7ff3367a42ce\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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}" headers: cache-control: - no-cache @@ -164,9 +166,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Sep 2021 21:36:35 GMT + - Thu, 21 Oct 2021 22:13:29 GMT etag: - - W/"c623d7d1-f915-4b1d-8dd1-08b6a0c8d0d4" + - W/"94e45b53-76ee-41fd-a4d2-7ff3367a42ce" expires: - '-1' pragma: @@ -183,7 +185,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 160287a8-497f-47c8-9f29-45d01ec10c34 + - 76c4ff77-a0bc-4e0a-aca0-7de55069486f status: code: 200 message: OK @@ -201,27 +203,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005?api-version=2021-02-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005?api-version=2021-02-01 response: body: - string: "{\r\n \"name\": \"cli000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005\",\r\n - \ \"etag\": \"W/\\\"c623d7d1-f915-4b1d-8dd1-08b6a0c8d0d4\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"e64bb910-d37d-4b25-ae41-bec810eb6214\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli000006\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006\",\r\n - \ \"etag\": \"W/\\\"c623d7d1-f915-4b1d-8dd1-08b6a0c8d0d4\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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: "{\r\n \"name\": \"cli000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005\"\ + ,\r\n \"etag\": \"W/\\\"94e45b53-76ee-41fd-a4d2-7ff3367a42ce\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"54676f38-9b61-4099-a06a-96d7e694ebed\"\ + ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ + 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ + : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"cli000006\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006\"\ + ,\r\n \"etag\": \"W/\\\"94e45b53-76ee-41fd-a4d2-7ff3367a42ce\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ + : [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\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}" headers: cache-control: - no-cache @@ -230,9 +233,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Sep 2021 21:36:36 GMT + - Thu, 21 Oct 2021 22:13:32 GMT etag: - - W/"c623d7d1-f915-4b1d-8dd1-08b6a0c8d0d4" + - W/"94e45b53-76ee-41fd-a4d2-7ff3367a42ce" expires: - '-1' pragma: @@ -249,7 +252,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 45e4c6a7-e2a2-4d37-a3bc-cc3a0500e771 + - 2d6d3253-0060-41ae-b230-b1c4e4de8057 status: code: 200 message: OK @@ -267,7 +270,7 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.4 + - python/3.8.10 (Windows-10-10.0.19043-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.28.1 accept-language: - en-US @@ -288,19 +291,19 @@ interactions: dataserviceversion: - 3.0; date: - - Wed, 22 Sep 2021 21:36:37 GMT + - Thu, 21 Oct 2021 22:13:40 GMT duration: - - '295179' + - '1118906' expires: - '-1' ocp-aad-diagnostics-server-name: - - UqYckHfyOJEXhQr4m+UU5jXmi7d/RuALt+it75Bveio= + - mwVIIUDALRj+mjxxGLxfpBnk3S7s1+khM2BiqLrXXGI= ocp-aad-session-key: - - mE1QG2yuBdu6b9hI8WHawWi8peyjXjfOp8W9Tu6tZqAk5m29peH9aSO0ZaBLRLX1An2Rn2XNTb07NcQ8-osLK5kHIk2gnnTcnhUmOQ3pgM2krNczQpf0cUlK_TSq0Ug-.tjnFAWeCBC9ZFGfRyqtwW0ElzLn_4YmhYczQ0KsPJgE + - RfBUdXcppzkdt9kd2q2gpfQqelsbzcegzjzF9epz37SqWIqhaeW0ecp6M-WXpa0qHqEyO4KvlsBHkGNiwc-S0PO2XVfjpgKRSXGdLSw261U7UJYSrE8ZntNGhHjwnUcO.qLNAKAOq3PtdbOQ0O4V1FB9jD5CxlgGpRO4zNubBh2Y pragma: - no-cache request-id: - - 835e9a02-5448-4655-9161-04d35337a241 + - 453f3f68-da57-423d-8ea2-caf4d7609d79 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -333,7 +336,7 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.4 + - python/3.8.10 (Windows-10-10.0.19043-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.28.1 accept-language: - en-US @@ -361,19 +364,19 @@ interactions: dataserviceversion: - 3.0; date: - - Wed, 22 Sep 2021 21:36:37 GMT + - Thu, 21 Oct 2021 22:13:42 GMT duration: - - '691384' + - '676025' expires: - '-1' ocp-aad-diagnostics-server-name: - - HdjxWx3kM6y80mOyosdvQGivt5htdpWqqqQk81CEhvk= + - AJPpN4zX0ggsX6I/Dp3PSY5DmVKraDhBentO2aqZngU= ocp-aad-session-key: - - Xzyc-S5xmHxfs1NIp5_PPz8vs_aJWlrMA5c9sbr4rhjtaUwZx_AH3CDUtnkcsxo9_JEYXCk7pM_Co5P4oFl3bOu8mM_UBgKJey9VtF4ra67TkYouffclAZqjY2xe5Fsz.BeeIjwCuoT0WZCWV_1Z7EfZMoLcXE_hQhvauO0-t_bc + - jma8Yju6dxCUXH4HCukh3pAl-gJacmCJ5Bqi2UV7Fn30ETpuUIjDVb3ls1dJzUX6NuNqyloFwQeniEfUybhYfXtmjoSAmEAZSA9xFAnrnzausX-R1L5fDFvcYNiN9JtB.MPX5_Q2UCIEFzNBjWfP4A4llr4c6tjFPTPK81pFaeMQ pragma: - no-cache request-id: - - 0ccaaf68-39bb-4180-ae0c-74aa37126e02 + - 96cecdca-5d57-48ef-a830-1fdfbe92d6e9 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -406,15 +409,15 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.4 + - python/3.8.10 (Windows-10-10.0.19043-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.28.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"e5007d2c-4b13-4a74-9b6a-605d99f03501","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005","condition":null,"conditionVersion":null,"createdOn":"2021-09-22T21:36:38.6562777Z","updatedOn":"2021-09-22T21:36:39.0625591Z","createdBy":null,"updatedBy":"02bf3cc6-8649-4605-ad56-ed19c5a1c247","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"e5007d2c-4b13-4a74-9b6a-605d99f03501","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005","condition":null,"conditionVersion":null,"createdOn":"2021-10-21T22:13:44.7642067Z","updatedOn":"2021-10-21T22:13:45.4048130Z","createdBy":null,"updatedBy":"1a219ab5-8e4c-41e1-aad7-28009583c500","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -423,7 +426,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Sep 2021 21:36:40 GMT + - Thu, 21 Oct 2021 22:13:47 GMT expires: - '-1' pragma: @@ -453,28 +456,30 @@ interactions: ParameterSetName: - -g --vnet-name --name User-Agent: - - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-azure-mgmt-network/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006?api-version=2021-02-01 + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006?api-version=2021-02-01 response: body: - string: "{\r\n \"name\": \"cli000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006\",\r\n - \ \"etag\": \"W/\\\"c623d7d1-f915-4b1d-8dd1-08b6a0c8d0d4\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: "{\r\n \"name\": \"cli000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006\"\ + ,\r\n \"etag\": \"W/\\\"cb2a9ec8-242d-449d-a25a-886a8f18e86b\\\"\",\r\n \ + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ + addressPrefix\": \"10.0.0.0/24\",\r\n \"networkSecurityGroup\": {\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg28\"\ + \r\n },\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ + : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ + \n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: cache-control: - no-cache content-length: - - '597' + - '807' content-type: - application/json; charset=utf-8 date: - - Wed, 22 Sep 2021 21:36:40 GMT + - Thu, 21 Oct 2021 22:13:50 GMT etag: - - W/"c623d7d1-f915-4b1d-8dd1-08b6a0c8d0d4" + - W/"cb2a9ec8-242d-449d-a25a-886a8f18e86b" expires: - '-1' pragma: @@ -491,12 +496,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 00f21f2d-e292-425a-9d59-73e46c78becd + - 16aa6a0f-9683-4a1b-85bb-74b2f5db1073 status: code: 200 message: OK - request: - body: '{"location": "eastus2", "properties": {"delegatedManagementSubnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006", + body: '{"location": "westus2", "identity": {"type": "None"}, "properties": {"delegatedManagementSubnetId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006", "initialCassandraAdminPassword": "password"}}' headers: Accept: @@ -508,29 +514,30 @@ interactions: Connection: - keep-alive Content-Length: - - '335' + - '365' Content-Type: - application/json ParameterSetName: - -c -l -g -s -i User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2021-10-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"eastus2","tags":{},"systemData":{"createdBy":"mekaushi@microsoft.com","createdByType":"User","createdAt":"2021-09-22T21:36:42.2632788Z","lastModifiedBy":"mekaushi@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-22T21:36:42.2632788Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","clientCertificates":[],"clusterNameOverride":"cli000002","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","externalGossipCertificates":[],"gossipCertificates":[],"hoursBetweenBackups":0,"prometheusEndpoint":{},"provisioningState":"Creating","repairEnabled":true,"seedNodes":[]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"West + US 2","tags":{},"systemData":{"createdBy":"visunda@microsoft.com","createdByType":"User","createdAt":"2021-10-21T22:13:55.3509231Z","lastModifiedBy":"visunda@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-21T22:13:55.3509231Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"cli000002","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[],"hoursBetweenBackups":24,"prometheusEndpoint":{},"provisioningState":"Creating","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/c920c634-9782-46c2-9d88-ad45339fccfa?api-version=2021-07-01-preview + - https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/581c5e64-e2d9-4ac5-9439-22edb5664f6b?api-version=2021-10-15-preview cache-control: - no-store, no-cache content-length: - - '1091' + - '1198' content-type: - application/json date: - - Wed, 22 Sep 2021 21:36:41 GMT + - Thu, 21 Oct 2021 22:13:56 GMT pragma: - no-cache server: @@ -542,7 +549,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -560,9 +567,9 @@ interactions: ParameterSetName: - -c -l -g -s -i User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/c920c634-9782-46c2-9d88-ad45339fccfa?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/581c5e64-e2d9-4ac5-9439-22edb5664f6b?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -574,7 +581,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:37:12 GMT + - Thu, 21 Oct 2021 22:14:26 GMT pragma: - no-cache server: @@ -606,9 +613,9 @@ interactions: ParameterSetName: - -c -l -g -s -i User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/c920c634-9782-46c2-9d88-ad45339fccfa?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/581c5e64-e2d9-4ac5-9439-22edb5664f6b?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -620,7 +627,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:37:42 GMT + - Thu, 21 Oct 2021 22:14:56 GMT pragma: - no-cache server: @@ -652,9 +659,9 @@ interactions: ParameterSetName: - -c -l -g -s -i User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/c920c634-9782-46c2-9d88-ad45339fccfa?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/581c5e64-e2d9-4ac5-9439-22edb5664f6b?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -666,7 +673,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:38:12 GMT + - Thu, 21 Oct 2021 22:15:27 GMT pragma: - no-cache server: @@ -698,9 +705,9 @@ interactions: ParameterSetName: - -c -l -g -s -i User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/c920c634-9782-46c2-9d88-ad45339fccfa?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/581c5e64-e2d9-4ac5-9439-22edb5664f6b?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -712,7 +719,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:38:42 GMT + - Thu, 21 Oct 2021 22:15:58 GMT pragma: - no-cache server: @@ -744,9 +751,9 @@ interactions: ParameterSetName: - -c -l -g -s -i User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/c920c634-9782-46c2-9d88-ad45339fccfa?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/581c5e64-e2d9-4ac5-9439-22edb5664f6b?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -758,7 +765,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:39:12 GMT + - Thu, 21 Oct 2021 22:16:29 GMT pragma: - no-cache server: @@ -790,9 +797,9 @@ interactions: ParameterSetName: - -c -l -g -s -i User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/c920c634-9782-46c2-9d88-ad45339fccfa?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/581c5e64-e2d9-4ac5-9439-22edb5664f6b?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -804,7 +811,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:39:43 GMT + - Thu, 21 Oct 2021 22:17:00 GMT pragma: - no-cache server: @@ -836,9 +843,9 @@ interactions: ParameterSetName: - -c -l -g -s -i User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/c920c634-9782-46c2-9d88-ad45339fccfa?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/581c5e64-e2d9-4ac5-9439-22edb5664f6b?api-version=2021-10-15-preview response: body: string: '{"status":"Succeeded"}' @@ -850,7 +857,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:40:13 GMT + - Thu, 21 Oct 2021 22:17:31 GMT pragma: - no-cache server: @@ -882,27 +889,28 @@ interactions: ParameterSetName: - -c -l -g -s -i User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2021-10-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"eastus2","tags":{},"systemData":{"createdBy":"mekaushi@microsoft.com","createdByType":"User","createdAt":"2021-09-22T21:36:42.2632788Z","lastModifiedBy":"mekaushi@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-22T21:36:42.2632788Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","clientCertificates":[],"clusterNameOverride":"cli000002","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","externalGossipCertificates":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"West + US 2","tags":{},"systemData":{"createdBy":"visunda@microsoft.com","createdByType":"User","createdAt":"2021-10-21T22:13:55.3509231Z","lastModifiedBy":"visunda@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-21T22:13:55.3509231Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"cli000002","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GK\r\nDnwygZdK6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5\r\ntq1WdKsPkitPws6V8MWa5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1M\r\nfsitAWVp6hiWANkWKINfRcdt3Z2A23hmMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgO\r\nbJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/zr2Wet5KEcUDtUBhA4dUU\r\noaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kxWkH6kgO5\r\ngTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02\r\nr5q5B/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB\r\n5nw0cJY1QHOr3nIvJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pC\r\nHeiXCNpv+fadwP0k8czaf2Vs19nYsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4H\r\nGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte/bsuAEF4ajkPEES3GHP9AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZSamgwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu\r\n+oZaKaIu7U3NidykFr994jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kO\r\nvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DLKTp2Ox0+jYBCPxla5FO252qpk7/6wt8S\r\nZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5FPzqKoSqN75byLjsIKJE\r\ndNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6TGu1moh4a\r\nE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyr\r\nRygnavXL7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6n\r\nl/jYvZnVeJXjtsKYcXIf/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdm\r\nGW/JI0C/7U/E7evXn9XDio8SYkGSM63aLO5BtLCv092+1d4GGBSQYolRq+7Pd1kR\r\nEkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVsiUeE7F5sY8Me96WVxQcb\r\nOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi9r5UrvYo\r\no19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO\r\n4bCk1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc4\r\n7IxyVccHHq1FzGygOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cj\r\nWGVGtMZHwzVvX1HvSFG771sskcEjJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpR\r\nGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g37Y72qHzidwtyW7rBetZJAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5ygHYwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBA\r\nWxKJoi8YYQafpMTkMqeuzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBs\r\nK9KcStQGGZRfmWU07hPXHnFz+5gTXqzCE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa\r\n+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8JGqMU/UjAdh1pFyTnnHEl\r\nY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDTjHaQcs2J\r\n+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra\r\n3VBo7QznC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPS\r\nu6D804ri0NFZ1SOP9IzjYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1d\r\nskMuVpT4z0MpgEMmxQnrSZ615rBQ25vnVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5\r\nxq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Qc34RgxQdZsLXMUrWuL1J\r\nLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVDiIiXWF0c\r\n9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHy\r\nis01zkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ\r\n/nV94l+hYp+GLW7jSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInP\r\noi1PqN4TudNv0GyBF5tRC/aBjUqply1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bn\r\nKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfLUFc4hYb3YyIIYGmqm2/3AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKliZ/0wHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfe\r\nZd7TR1837H6DSkFa/mGM1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGH\r\niyx5421+HpRxMQIRjligePtOtRGXwaNOQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ\r\n/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCquAV0PksZj7EC4nK6e/UV\r\nbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0EsO3MgjS3e\r\nDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT\r\nMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j\r\nb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG\r\n9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI\r\n2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx\r\n1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ\r\nq2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz\r\ntCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ\r\nvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV\r\n5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY\r\n1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4\r\nNeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG\r\nFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91\r\n8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe\r\npLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+Xb\r\nwjEz+5CipDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMY\r\niwdRd3Y39b/lcGpiuP2d23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99\r\nThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lReUnd1aNjRYVzPOoifgSx2fRyy1+pO1Uz\r\naMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUEDqQuBfBxReL5mXiu1O7WG\r\n0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA5fl6JB0Q\r\ngs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0s\r\nsRfFJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjh\r\nlxuoK2n5/2aVR3BMTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60\r\nN2oV7vQ17wjMN+LXa2rjj/b4ZlZgXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2C\r\nZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHjzwW/9FxGqry57i71c2cDAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVou6UwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF\r\n+rA2LUK5IOQOgcUSTGKSqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+\r\ncS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7RIAAUW6EzDflUoDHKv83zOiPfYGcpHc9s\r\nkxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5hwRlGhBJwps6fEVi1Bt0\r\ntrpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0GMXlHqThy\r\n8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END - CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[]}}' + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}}' headers: cache-control: - no-store, no-cache content-length: - - '11445' + - '11552' content-type: - application/json date: - - Wed, 22 Sep 2021 21:40:13 GMT + - Thu, 21 Oct 2021 22:17:32 GMT pragma: - no-cache server: @@ -934,27 +942,28 @@ interactions: ParameterSetName: - -c -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2021-10-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"eastus2","tags":{},"systemData":{"createdBy":"mekaushi@microsoft.com","createdByType":"User","createdAt":"2021-09-22T21:36:42.2632788Z","lastModifiedBy":"mekaushi@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-22T21:36:42.2632788Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","clientCertificates":[],"clusterNameOverride":"cli000002","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","externalGossipCertificates":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"West + US 2","tags":{},"systemData":{"createdBy":"visunda@microsoft.com","createdByType":"User","createdAt":"2021-10-21T22:13:55.3509231Z","lastModifiedBy":"visunda@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-21T22:13:55.3509231Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"cli000002","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GK\r\nDnwygZdK6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5\r\ntq1WdKsPkitPws6V8MWa5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1M\r\nfsitAWVp6hiWANkWKINfRcdt3Z2A23hmMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgO\r\nbJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/zr2Wet5KEcUDtUBhA4dUU\r\noaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kxWkH6kgO5\r\ngTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02\r\nr5q5B/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB\r\n5nw0cJY1QHOr3nIvJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pC\r\nHeiXCNpv+fadwP0k8czaf2Vs19nYsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4H\r\nGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte/bsuAEF4ajkPEES3GHP9AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZSamgwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu\r\n+oZaKaIu7U3NidykFr994jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kO\r\nvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DLKTp2Ox0+jYBCPxla5FO252qpk7/6wt8S\r\nZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5FPzqKoSqN75byLjsIKJE\r\ndNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6TGu1moh4a\r\nE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyr\r\nRygnavXL7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6n\r\nl/jYvZnVeJXjtsKYcXIf/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdm\r\nGW/JI0C/7U/E7evXn9XDio8SYkGSM63aLO5BtLCv092+1d4GGBSQYolRq+7Pd1kR\r\nEkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVsiUeE7F5sY8Me96WVxQcb\r\nOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi9r5UrvYo\r\no19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO\r\n4bCk1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc4\r\n7IxyVccHHq1FzGygOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cj\r\nWGVGtMZHwzVvX1HvSFG771sskcEjJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpR\r\nGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g37Y72qHzidwtyW7rBetZJAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5ygHYwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBA\r\nWxKJoi8YYQafpMTkMqeuzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBs\r\nK9KcStQGGZRfmWU07hPXHnFz+5gTXqzCE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa\r\n+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8JGqMU/UjAdh1pFyTnnHEl\r\nY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDTjHaQcs2J\r\n+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra\r\n3VBo7QznC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPS\r\nu6D804ri0NFZ1SOP9IzjYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1d\r\nskMuVpT4z0MpgEMmxQnrSZ615rBQ25vnVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5\r\nxq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Qc34RgxQdZsLXMUrWuL1J\r\nLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVDiIiXWF0c\r\n9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHy\r\nis01zkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ\r\n/nV94l+hYp+GLW7jSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInP\r\noi1PqN4TudNv0GyBF5tRC/aBjUqply1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bn\r\nKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfLUFc4hYb3YyIIYGmqm2/3AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKliZ/0wHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfe\r\nZd7TR1837H6DSkFa/mGM1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGH\r\niyx5421+HpRxMQIRjligePtOtRGXwaNOQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ\r\n/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCquAV0PksZj7EC4nK6e/UV\r\nbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0EsO3MgjS3e\r\nDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT\r\nMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j\r\nb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG\r\n9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI\r\n2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx\r\n1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ\r\nq2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz\r\ntCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ\r\nvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV\r\n5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY\r\n1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4\r\nNeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG\r\nFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91\r\n8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe\r\npLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+Xb\r\nwjEz+5CipDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMY\r\niwdRd3Y39b/lcGpiuP2d23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99\r\nThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lReUnd1aNjRYVzPOoifgSx2fRyy1+pO1Uz\r\naMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUEDqQuBfBxReL5mXiu1O7WG\r\n0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA5fl6JB0Q\r\ngs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0s\r\nsRfFJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjh\r\nlxuoK2n5/2aVR3BMTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60\r\nN2oV7vQ17wjMN+LXa2rjj/b4ZlZgXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2C\r\nZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHjzwW/9FxGqry57i71c2cDAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVou6UwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF\r\n+rA2LUK5IOQOgcUSTGKSqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+\r\ncS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7RIAAUW6EzDflUoDHKv83zOiPfYGcpHc9s\r\nkxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5hwRlGhBJwps6fEVi1Bt0\r\ntrpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0GMXlHqThy\r\n8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END - CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[]}}' + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}}' headers: cache-control: - no-store, no-cache content-length: - - '11445' + - '11552' content-type: - application/json date: - - Wed, 22 Sep 2021 21:40:14 GMT + - Thu, 21 Oct 2021 22:17:36 GMT pragma: - no-cache server: @@ -973,7 +982,7 @@ interactions: code: 200 message: Ok - request: - body: '{"properties": {"dataCenterLocation": "eastus2", "delegatedSubnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006", + body: '{"properties": {"dataCenterLocation": "westus2", "delegatedSubnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006", "nodeCount": 3}}' headers: Accept: @@ -991,23 +1000,24 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004?api-version=2021-10-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004","name":"cli-dc000004","type":"Microsoft.DocumentDB/cassandraClusters/dataCenters","systemData":{"createdBy":"mekaushi@microsoft.com","createdByType":"User","createdAt":"2021-09-22T21:40:15.9639593Z","lastModifiedBy":"mekaushi@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-22T21:40:15.9639593Z"},"properties":{"provisioningState":"Creating","dataCenterLocation":"eastus2","delegatedSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","nodeCount":3,"seedNodes":[],"base64EncodedCassandraYamlFragment":""}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004","name":"cli-dc000004","type":"Microsoft.DocumentDB/cassandraClusters/dataCenters","systemData":{"createdBy":"visunda@microsoft.com","createdByType":"User","createdAt":"2021-10-21T22:17:39.2279054Z","lastModifiedBy":"visunda@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-21T22:17:39.2279054Z"},"properties":{"provisioningState":"Creating","dataCenterLocation":"West + US 2","delegatedSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","nodeCount":3,"seedNodes":[],"base64EncodedCassandraYamlFragment":"","availabilityZone":false,"authenticationMethodLdapProperties":null,"sku":"Standard_DS14_v2","diskSku":"P30","diskCapacity":4}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + - https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview cache-control: - no-store, no-cache content-length: - - '935' + - '1060' content-type: - application/json date: - - Wed, 22 Sep 2021 21:40:16 GMT + - Thu, 21 Oct 2021 22:17:39 GMT pragma: - no-cache server: @@ -1019,7 +1029,7 @@ interactions: x-ms-gatewayversion: - version=2.14.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -1037,9 +1047,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1051,7 +1061,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:40:46 GMT + - Thu, 21 Oct 2021 22:18:09 GMT pragma: - no-cache server: @@ -1083,9 +1093,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1097,7 +1107,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:41:17 GMT + - Thu, 21 Oct 2021 22:18:39 GMT pragma: - no-cache server: @@ -1129,9 +1139,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1143,7 +1153,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:41:47 GMT + - Thu, 21 Oct 2021 22:19:11 GMT pragma: - no-cache server: @@ -1175,9 +1185,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1189,7 +1199,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:42:17 GMT + - Thu, 21 Oct 2021 22:19:42 GMT pragma: - no-cache server: @@ -1221,9 +1231,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1235,7 +1245,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:42:47 GMT + - Thu, 21 Oct 2021 22:20:12 GMT pragma: - no-cache server: @@ -1267,9 +1277,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1281,7 +1291,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:43:17 GMT + - Thu, 21 Oct 2021 22:20:43 GMT pragma: - no-cache server: @@ -1313,9 +1323,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1327,7 +1337,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:43:48 GMT + - Thu, 21 Oct 2021 22:21:14 GMT pragma: - no-cache server: @@ -1359,9 +1369,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1373,7 +1383,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:44:18 GMT + - Thu, 21 Oct 2021 22:21:46 GMT pragma: - no-cache server: @@ -1405,9 +1415,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1419,7 +1429,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:44:48 GMT + - Thu, 21 Oct 2021 22:22:16 GMT pragma: - no-cache server: @@ -1451,9 +1461,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1465,7 +1475,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:45:18 GMT + - Thu, 21 Oct 2021 22:22:46 GMT pragma: - no-cache server: @@ -1497,9 +1507,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1511,7 +1521,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:45:49 GMT + - Thu, 21 Oct 2021 22:23:17 GMT pragma: - no-cache server: @@ -1543,9 +1553,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1557,7 +1567,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:46:19 GMT + - Thu, 21 Oct 2021 22:23:47 GMT pragma: - no-cache server: @@ -1589,9 +1599,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1603,7 +1613,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:46:54 GMT + - Thu, 21 Oct 2021 22:24:19 GMT pragma: - no-cache server: @@ -1635,9 +1645,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1649,7 +1659,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:47:30 GMT + - Thu, 21 Oct 2021 22:24:49 GMT pragma: - no-cache server: @@ -1681,9 +1691,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1695,7 +1705,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:48:01 GMT + - Thu, 21 Oct 2021 22:25:19 GMT pragma: - no-cache server: @@ -1727,9 +1737,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1741,7 +1751,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:48:31 GMT + - Thu, 21 Oct 2021 22:25:51 GMT pragma: - no-cache server: @@ -1773,9 +1783,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1787,7 +1797,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:49:01 GMT + - Thu, 21 Oct 2021 22:26:22 GMT pragma: - no-cache server: @@ -1819,9 +1829,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1833,7 +1843,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:49:31 GMT + - Thu, 21 Oct 2021 22:26:52 GMT pragma: - no-cache server: @@ -1865,9 +1875,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1879,7 +1889,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:50:02 GMT + - Thu, 21 Oct 2021 22:27:23 GMT pragma: - no-cache server: @@ -1911,9 +1921,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1925,7 +1935,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:50:32 GMT + - Thu, 21 Oct 2021 22:27:53 GMT pragma: - no-cache server: @@ -1957,9 +1967,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -1971,7 +1981,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:51:02 GMT + - Thu, 21 Oct 2021 22:28:22 GMT pragma: - no-cache server: @@ -2003,9 +2013,9 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/e2300036-7760-45c6-8995-d26c46bcb249?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/6f9dd41c-fe7b-4ae5-925c-b7429ca8b27e?api-version=2021-10-15-preview response: body: string: '{"status":"Succeeded"}' @@ -2017,7 +2027,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:51:32 GMT + - Thu, 21 Oct 2021 22:28:53 GMT pragma: - no-cache server: @@ -2049,21 +2059,22 @@ interactions: ParameterSetName: - -c -d -l -g -n -s User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004?api-version=2021-10-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004","name":"cli-dc000004","type":"Microsoft.DocumentDB/cassandraClusters/dataCenters","systemData":{"createdBy":"mekaushi@microsoft.com","createdByType":"User","createdAt":"2021-09-22T21:40:15.9639593Z","lastModifiedBy":"mekaushi@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-22T21:40:15.9639593Z"},"properties":{"provisioningState":"Succeeded","dataCenterLocation":"eastus2","delegatedSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","nodeCount":3,"seedNodes":[{"ipAddress":"10.0.0.7"},{"ipAddress":"10.0.0.8"},{"ipAddress":"10.0.0.9"}],"base64EncodedCassandraYamlFragment":""}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004","name":"cli-dc000004","type":"Microsoft.DocumentDB/cassandraClusters/dataCenters","systemData":{"createdBy":"visunda@microsoft.com","createdByType":"User","createdAt":"2021-10-21T22:17:39.2279054Z","lastModifiedBy":"visunda@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-21T22:17:39.2279054Z"},"properties":{"provisioningState":"Succeeded","dataCenterLocation":"West + US 2","delegatedSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","nodeCount":3,"seedNodes":[{"ipAddress":"10.0.0.6"},{"ipAddress":"10.0.0.7"},{"ipAddress":"10.0.0.9"}],"base64EncodedCassandraYamlFragment":"","availabilityZone":false,"authenticationMethodLdapProperties":null,"sku":"Standard_DS14_v2","diskSku":"P30","diskCapacity":4}}' headers: cache-control: - no-store, no-cache content-length: - - '1010' + - '1135' content-type: - application/json date: - - Wed, 22 Sep 2021 21:51:32 GMT + - Thu, 21 Oct 2021 22:28:54 GMT pragma: - no-cache server: @@ -2095,21 +2106,22 @@ interactions: ParameterSetName: - -c -d -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004?api-version=2021-10-15-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004","name":"cli-dc000004","type":"Microsoft.DocumentDB/cassandraClusters/dataCenters","systemData":{"createdBy":"mekaushi@microsoft.com","createdByType":"User","createdAt":"2021-09-22T21:40:15.9639593Z","lastModifiedBy":"mekaushi@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-22T21:40:15.9639593Z"},"properties":{"provisioningState":"Succeeded","dataCenterLocation":"eastus2","delegatedSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","nodeCount":3,"seedNodes":[{"ipAddress":"10.0.0.7"},{"ipAddress":"10.0.0.8"},{"ipAddress":"10.0.0.9"}],"base64EncodedCassandraYamlFragment":""}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004","name":"cli-dc000004","type":"Microsoft.DocumentDB/cassandraClusters/dataCenters","systemData":{"createdBy":"visunda@microsoft.com","createdByType":"User","createdAt":"2021-10-21T22:17:39.2279054Z","lastModifiedBy":"visunda@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-21T22:17:39.2279054Z"},"properties":{"provisioningState":"Succeeded","dataCenterLocation":"West + US 2","delegatedSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","nodeCount":3,"seedNodes":[{"ipAddress":"10.0.0.6"},{"ipAddress":"10.0.0.7"},{"ipAddress":"10.0.0.9"}],"base64EncodedCassandraYamlFragment":"","availabilityZone":false,"authenticationMethodLdapProperties":null,"sku":"Standard_DS14_v2","diskSku":"P30","diskCapacity":4}}' headers: cache-control: - no-store, no-cache content-length: - - '1010' + - '1135' content-type: - application/json date: - - Wed, 22 Sep 2021 21:51:34 GMT + - Thu, 21 Oct 2021 22:28:56 GMT pragma: - no-cache server: @@ -2141,21 +2153,22 @@ interactions: ParameterSetName: - -c -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters?api-version=2021-10-15-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004","name":"cli-dc000004","type":"Microsoft.DocumentDB/cassandraClusters/dataCenters","systemData":{"createdBy":"mekaushi@microsoft.com","createdByType":"User","createdAt":"2021-09-22T21:40:15.9639593Z","lastModifiedBy":"mekaushi@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-22T21:40:15.9639593Z"},"properties":{"provisioningState":"Succeeded","dataCenterLocation":"eastus2","delegatedSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","nodeCount":3,"seedNodes":[{"ipAddress":"10.0.0.7"},{"ipAddress":"10.0.0.8"},{"ipAddress":"10.0.0.9"}],"base64EncodedCassandraYamlFragment":""}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002/dataCenters/cli-dc000004","name":"cli-dc000004","type":"Microsoft.DocumentDB/cassandraClusters/dataCenters","systemData":{"createdBy":"visunda@microsoft.com","createdByType":"User","createdAt":"2021-10-21T22:17:39.2279054Z","lastModifiedBy":"visunda@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-21T22:17:39.2279054Z"},"properties":{"provisioningState":"Succeeded","dataCenterLocation":"West + US 2","delegatedSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","nodeCount":3,"seedNodes":[{"ipAddress":"10.0.0.6"},{"ipAddress":"10.0.0.7"},{"ipAddress":"10.0.0.9"}],"base64EncodedCassandraYamlFragment":"","availabilityZone":false,"authenticationMethodLdapProperties":null,"sku":"Standard_DS14_v2","diskSku":"P30","diskCapacity":4}}]}' headers: cache-control: - no-store, no-cache content-length: - - '1022' + - '1147' content-type: - application/json date: - - Wed, 22 Sep 2021 21:51:33 GMT + - Thu, 21 Oct 2021 22:28:58 GMT pragma: - no-cache server: @@ -2187,27 +2200,28 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters?api-version=2021-10-15-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"eastus2","tags":{},"systemData":{"createdBy":"mekaushi@microsoft.com","createdByType":"User","createdAt":"2021-09-22T21:36:42.2632788Z","lastModifiedBy":"mekaushi@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-22T21:36:42.2632788Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","clientCertificates":[],"clusterNameOverride":"cli000002","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","externalGossipCertificates":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"West + US 2","tags":{},"systemData":{"createdBy":"visunda@microsoft.com","createdByType":"User","createdAt":"2021-10-21T22:13:55.3509231Z","lastModifiedBy":"visunda@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-21T22:13:55.3509231Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"cli000002","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GK\r\nDnwygZdK6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5\r\ntq1WdKsPkitPws6V8MWa5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1M\r\nfsitAWVp6hiWANkWKINfRcdt3Z2A23hmMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgO\r\nbJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/zr2Wet5KEcUDtUBhA4dUU\r\noaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kxWkH6kgO5\r\ngTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02\r\nr5q5B/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB\r\n5nw0cJY1QHOr3nIvJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pC\r\nHeiXCNpv+fadwP0k8czaf2Vs19nYsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4H\r\nGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte/bsuAEF4ajkPEES3GHP9AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZSamgwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu\r\n+oZaKaIu7U3NidykFr994jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kO\r\nvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DLKTp2Ox0+jYBCPxla5FO252qpk7/6wt8S\r\nZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5FPzqKoSqN75byLjsIKJE\r\ndNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6TGu1moh4a\r\nE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyr\r\nRygnavXL7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6n\r\nl/jYvZnVeJXjtsKYcXIf/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdm\r\nGW/JI0C/7U/E7evXn9XDio8SYkGSM63aLO5BtLCv092+1d4GGBSQYolRq+7Pd1kR\r\nEkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVsiUeE7F5sY8Me96WVxQcb\r\nOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi9r5UrvYo\r\no19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO\r\n4bCk1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc4\r\n7IxyVccHHq1FzGygOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cj\r\nWGVGtMZHwzVvX1HvSFG771sskcEjJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpR\r\nGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g37Y72qHzidwtyW7rBetZJAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5ygHYwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBA\r\nWxKJoi8YYQafpMTkMqeuzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBs\r\nK9KcStQGGZRfmWU07hPXHnFz+5gTXqzCE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa\r\n+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8JGqMU/UjAdh1pFyTnnHEl\r\nY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDTjHaQcs2J\r\n+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra\r\n3VBo7QznC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPS\r\nu6D804ri0NFZ1SOP9IzjYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1d\r\nskMuVpT4z0MpgEMmxQnrSZ615rBQ25vnVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5\r\nxq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Qc34RgxQdZsLXMUrWuL1J\r\nLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVDiIiXWF0c\r\n9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHy\r\nis01zkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ\r\n/nV94l+hYp+GLW7jSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInP\r\noi1PqN4TudNv0GyBF5tRC/aBjUqply1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bn\r\nKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfLUFc4hYb3YyIIYGmqm2/3AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKliZ/0wHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfe\r\nZd7TR1837H6DSkFa/mGM1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGH\r\niyx5421+HpRxMQIRjligePtOtRGXwaNOQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ\r\n/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCquAV0PksZj7EC4nK6e/UV\r\nbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0EsO3MgjS3e\r\nDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT\r\nMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j\r\nb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG\r\n9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI\r\n2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx\r\n1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ\r\nq2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz\r\ntCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ\r\nvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV\r\n5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY\r\n1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4\r\nNeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG\r\nFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91\r\n8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe\r\npLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+Xb\r\nwjEz+5CipDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMY\r\niwdRd3Y39b/lcGpiuP2d23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99\r\nThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lReUnd1aNjRYVzPOoifgSx2fRyy1+pO1Uz\r\naMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUEDqQuBfBxReL5mXiu1O7WG\r\n0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA5fl6JB0Q\r\ngs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0s\r\nsRfFJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjh\r\nlxuoK2n5/2aVR3BMTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60\r\nN2oV7vQ17wjMN+LXa2rjj/b4ZlZgXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2C\r\nZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHjzwW/9FxGqry57i71c2cDAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVou6UwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF\r\n+rA2LUK5IOQOgcUSTGKSqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+\r\ncS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7RIAAUW6EzDflUoDHKv83zOiPfYGcpHc9s\r\nkxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5hwRlGhBJwps6fEVi1Bt0\r\ntrpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0GMXlHqThy\r\n8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END - CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[]}}]}' + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}}]}' headers: cache-control: - no-store, no-cache content-length: - - '11457' + - '11564' content-type: - application/json date: - - Wed, 22 Sep 2021 21:51:34 GMT + - Thu, 21 Oct 2021 22:29:01 GMT pragma: - no-cache server: @@ -2237,31 +2251,473 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/cassandraClusters?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/cassandraClusters?api-version=2021-10-15-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"eastus2","tags":{},"systemData":{"createdBy":"mekaushi@microsoft.com","createdByType":"User","createdAt":"2021-09-22T21:36:42.2632788Z","lastModifiedBy":"mekaushi@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-22T21:36:42.2632788Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","clientCertificates":[],"clusterNameOverride":"cli000002","delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","externalGossipCertificates":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chucks/providers/Microsoft.DocumentDB/cassandraClusters/chucks-cluster-test-01","name":"chucks-cluster-test-01","type":"Microsoft.DocumentDB/cassandraClusters","location":"West + US 2","tags":{},"systemData":{"createdBy":"chskelt@microsoft.com","createdByType":"User","createdAt":"2021-10-21T18:22:53.214212Z","lastModifiedBy":"chskelt@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-21T18:22:53.214212Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"chucks-cluster-test-01","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chucks/providers/Microsoft.Network/virtualNetworks/chucks-vnet-test-01/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GK\r\nDnwygZdK6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5\r\ntq1WdKsPkitPws6V8MWa5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1M\r\nfsitAWVp6hiWANkWKINfRcdt3Z2A23hmMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgO\r\nbJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/zr2Wet5KEcUDtUBhA4dUU\r\noaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kxWkH6kgO5\r\ngTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02\r\nr5q5B/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB\r\n5nw0cJY1QHOr3nIvJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pC\r\nHeiXCNpv+fadwP0k8czaf2Vs19nYsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4H\r\nGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte/bsuAEF4ajkPEES3GHP9AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZSamgwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu\r\n+oZaKaIu7U3NidykFr994jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kO\r\nvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DLKTp2Ox0+jYBCPxla5FO252qpk7/6wt8S\r\nZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5FPzqKoSqN75byLjsIKJE\r\ndNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6TGu1moh4a\r\nE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyr\r\nRygnavXL7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6n\r\nl/jYvZnVeJXjtsKYcXIf/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdm\r\nGW/JI0C/7U/E7evXn9XDio8SYkGSM63aLO5BtLCv092+1d4GGBSQYolRq+7Pd1kR\r\nEkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVsiUeE7F5sY8Me96WVxQcb\r\nOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi9r5UrvYo\r\no19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO\r\n4bCk1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc4\r\n7IxyVccHHq1FzGygOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cj\r\nWGVGtMZHwzVvX1HvSFG771sskcEjJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpR\r\nGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g37Y72qHzidwtyW7rBetZJAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5ygHYwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBA\r\nWxKJoi8YYQafpMTkMqeuzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBs\r\nK9KcStQGGZRfmWU07hPXHnFz+5gTXqzCE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa\r\n+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8JGqMU/UjAdh1pFyTnnHEl\r\nY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDTjHaQcs2J\r\n+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra\r\n3VBo7QznC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPS\r\nu6D804ri0NFZ1SOP9IzjYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1d\r\nskMuVpT4z0MpgEMmxQnrSZ615rBQ25vnVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5\r\nxq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Qc34RgxQdZsLXMUrWuL1J\r\nLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVDiIiXWF0c\r\n9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHy\r\nis01zkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ\r\n/nV94l+hYp+GLW7jSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInP\r\noi1PqN4TudNv0GyBF5tRC/aBjUqply1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bn\r\nKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfLUFc4hYb3YyIIYGmqm2/3AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKliZ/0wHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfe\r\nZd7TR1837H6DSkFa/mGM1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGH\r\niyx5421+HpRxMQIRjligePtOtRGXwaNOQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ\r\n/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCquAV0PksZj7EC4nK6e/UV\r\nbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0EsO3MgjS3e\r\nDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT\r\nMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j\r\nb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG\r\n9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI\r\n2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx\r\n1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ\r\nq2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz\r\ntCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ\r\nvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV\r\n5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY\r\n1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4\r\nNeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG\r\nFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91\r\n8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe\r\npLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+Xb\r\nwjEz+5CipDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMY\r\niwdRd3Y39b/lcGpiuP2d23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99\r\nThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lReUnd1aNjRYVzPOoifgSx2fRyy1+pO1Uz\r\naMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUEDqQuBfBxReL5mXiu1O7WG\r\n0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA5fl6JB0Q\r\ngs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0s\r\nsRfFJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjh\r\nlxuoK2n5/2aVR3BMTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60\r\nN2oV7vQ17wjMN+LXa2rjj/b4ZlZgXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2C\r\nZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHjzwW/9FxGqry57i71c2cDAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVou6UwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF\r\n+rA2LUK5IOQOgcUSTGKSqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+\r\ncS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7RIAAUW6EzDflUoDHKv83zOiPfYGcpHc9s\r\nkxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5hwRlGhBJwps6fEVi1Bt0\r\ntrpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0GMXlHqThy\r\n8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002","name":"cli000002","type":"Microsoft.DocumentDB/cassandraClusters","location":"West + US 2","tags":{},"systemData":{"createdBy":"visunda@microsoft.com","createdByType":"User","createdAt":"2021-10-21T22:13:55.3509231Z","lastModifiedBy":"visunda@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-21T22:13:55.3509231Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"cli000002","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.Network/virtualNetworks/cli000005/subnets/cli000006","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GK\r\nDnwygZdK6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5\r\ntq1WdKsPkitPws6V8MWa5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1M\r\nfsitAWVp6hiWANkWKINfRcdt3Z2A23hmMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgO\r\nbJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/zr2Wet5KEcUDtUBhA4dUU\r\noaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kxWkH6kgO5\r\ngTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02\r\nr5q5B/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB\r\n5nw0cJY1QHOr3nIvJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pC\r\nHeiXCNpv+fadwP0k8czaf2Vs19nYsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4H\r\nGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte/bsuAEF4ajkPEES3GHP9AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZSamgwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu\r\n+oZaKaIu7U3NidykFr994jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kO\r\nvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DLKTp2Ox0+jYBCPxla5FO252qpk7/6wt8S\r\nZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5FPzqKoSqN75byLjsIKJE\r\ndNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6TGu1moh4a\r\nE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyr\r\nRygnavXL7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6n\r\nl/jYvZnVeJXjtsKYcXIf/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdm\r\nGW/JI0C/7U/E7evXn9XDio8SYkGSM63aLO5BtLCv092+1d4GGBSQYolRq+7Pd1kR\r\nEkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVsiUeE7F5sY8Me96WVxQcb\r\nOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi9r5UrvYo\r\no19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO\r\n4bCk1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc4\r\n7IxyVccHHq1FzGygOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cj\r\nWGVGtMZHwzVvX1HvSFG771sskcEjJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpR\r\nGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g37Y72qHzidwtyW7rBetZJAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5ygHYwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBA\r\nWxKJoi8YYQafpMTkMqeuzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBs\r\nK9KcStQGGZRfmWU07hPXHnFz+5gTXqzCE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa\r\n+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8JGqMU/UjAdh1pFyTnnHEl\r\nY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDTjHaQcs2J\r\n+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra\r\n3VBo7QznC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPS\r\nu6D804ri0NFZ1SOP9IzjYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1d\r\nskMuVpT4z0MpgEMmxQnrSZ615rBQ25vnVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5\r\nxq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Qc34RgxQdZsLXMUrWuL1J\r\nLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVDiIiXWF0c\r\n9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHy\r\nis01zkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ\r\n/nV94l+hYp+GLW7jSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInP\r\noi1PqN4TudNv0GyBF5tRC/aBjUqply1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bn\r\nKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfLUFc4hYb3YyIIYGmqm2/3AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKliZ/0wHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfe\r\nZd7TR1837H6DSkFa/mGM1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGH\r\niyx5421+HpRxMQIRjligePtOtRGXwaNOQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ\r\n/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCquAV0PksZj7EC4nK6e/UV\r\nbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0EsO3MgjS3e\r\nDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT\r\nMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j\r\nb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG\r\n9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI\r\n2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx\r\n1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ\r\nq2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz\r\ntCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ\r\nvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV\r\n5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY\r\n1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4\r\nNeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG\r\nFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91\r\n8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe\r\npLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+Xb\r\nwjEz+5CipDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMY\r\niwdRd3Y39b/lcGpiuP2d23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99\r\nThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lReUnd1aNjRYVzPOoifgSx2fRyy1+pO1Uz\r\naMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUEDqQuBfBxReL5mXiu1O7WG\r\n0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA5fl6JB0Q\r\ngs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0s\r\nsRfFJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjh\r\nlxuoK2n5/2aVR3BMTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60\r\nN2oV7vQ17wjMN+LXa2rjj/b4ZlZgXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2C\r\nZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHjzwW/9FxGqry57i71c2cDAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVou6UwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF\r\n+rA2LUK5IOQOgcUSTGKSqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+\r\ncS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7RIAAUW6EzDflUoDHKv83zOiPfYGcpHc9s\r\nkxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5hwRlGhBJwps6fEVi1Bt0\r\ntrpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0GMXlHqThy\r\n8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/frross-terraform-test5-rg/providers/Microsoft.DocumentDB/cassandraClusters/test-cluster-10","name":"test-cluster-10","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2","tags":{},"systemData":null,"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"test-cluster-10","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/frross-terraform-test6-rg/providers/Microsoft.Network/virtualNetworks/target-vnet/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GK\r\nDnwygZdK6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5\r\ntq1WdKsPkitPws6V8MWa5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1M\r\nfsitAWVp6hiWANkWKINfRcdt3Z2A23hmMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgO\r\nbJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/zr2Wet5KEcUDtUBhA4dUU\r\noaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kxWkH6kgO5\r\ngTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02\r\nr5q5B/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB\r\n5nw0cJY1QHOr3nIvJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pC\r\nHeiXCNpv+fadwP0k8czaf2Vs19nYsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4H\r\nGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte/bsuAEF4ajkPEES3GHP9AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZSamgwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu\r\n+oZaKaIu7U3NidykFr994jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kO\r\nvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DLKTp2Ox0+jYBCPxla5FO252qpk7/6wt8S\r\nZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5FPzqKoSqN75byLjsIKJE\r\ndNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6TGu1moh4a\r\nE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyr\r\nRygnavXL7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6n\r\nl/jYvZnVeJXjtsKYcXIf/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdm\r\nGW/JI0C/7U/E7evXn9XDio8SYkGSM63aLO5BtLCv092+1d4GGBSQYolRq+7Pd1kR\r\nEkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVsiUeE7F5sY8Me96WVxQcb\r\nOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi9r5UrvYo\r\no19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO\r\n4bCk1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc4\r\n7IxyVccHHq1FzGygOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cj\r\nWGVGtMZHwzVvX1HvSFG771sskcEjJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpR\r\nGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g37Y72qHzidwtyW7rBetZJAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5ygHYwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBA\r\nWxKJoi8YYQafpMTkMqeuzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBs\r\nK9KcStQGGZRfmWU07hPXHnFz+5gTXqzCE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa\r\n+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8JGqMU/UjAdh1pFyTnnHEl\r\nY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDTjHaQcs2J\r\n+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra\r\n3VBo7QznC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPS\r\nu6D804ri0NFZ1SOP9IzjYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1d\r\nskMuVpT4z0MpgEMmxQnrSZ615rBQ25vnVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5\r\nxq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Qc34RgxQdZsLXMUrWuL1J\r\nLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVDiIiXWF0c\r\n9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHy\r\nis01zkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ\r\n/nV94l+hYp+GLW7jSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInP\r\noi1PqN4TudNv0GyBF5tRC/aBjUqply1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bn\r\nKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfLUFc4hYb3YyIIYGmqm2/3AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKliZ/0wHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfe\r\nZd7TR1837H6DSkFa/mGM1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGH\r\niyx5421+HpRxMQIRjligePtOtRGXwaNOQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ\r\n/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCquAV0PksZj7EC4nK6e/UV\r\nbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0EsO3MgjS3e\r\nDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT\r\nMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j\r\nb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG\r\n9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI\r\n2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx\r\n1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ\r\nq2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz\r\ntCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ\r\nvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV\r\n5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY\r\n1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4\r\nNeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG\r\nFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91\r\n8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe\r\npLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+Xb\r\nwjEz+5CipDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMY\r\niwdRd3Y39b/lcGpiuP2d23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99\r\nThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lReUnd1aNjRYVzPOoifgSx2fRyy1+pO1Uz\r\naMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUEDqQuBfBxReL5mXiu1O7WG\r\n0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA5fl6JB0Q\r\ngs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0s\r\nsRfFJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjh\r\nlxuoK2n5/2aVR3BMTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60\r\nN2oV7vQ17wjMN+LXa2rjj/b4ZlZgXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2C\r\nZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHjzwW/9FxGqry57i71c2cDAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVou6UwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF\r\n+rA2LUK5IOQOgcUSTGKSqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+\r\ncS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7RIAAUW6EzDflUoDHKv83zOiPfYGcpHc9s\r\nkxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5hwRlGhBJwps6fEVi1Bt0\r\ntrpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0GMXlHqThy\r\n8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":false,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/frross-monitor-test-rg/providers/Microsoft.DocumentDB/cassandraClusters/frross-monitor-cluster","name":"frross-monitor-cluster","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2","tags":{},"systemData":{"createdBy":"frross@microsoft.com","createdByType":"User","createdAt":"2021-09-23T21:08:09.5703812Z","lastModifiedBy":"frross@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-23T21:08:09.5703812Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"frross-monitor-cluster","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/frross-monitor-test-rg/providers/Microsoft.Network/virtualNetworks/monitor-vnet/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GK\r\nDnwygZdK6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5\r\ntq1WdKsPkitPws6V8MWa5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1M\r\nfsitAWVp6hiWANkWKINfRcdt3Z2A23hmMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgO\r\nbJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/zr2Wet5KEcUDtUBhA4dUU\r\noaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kxWkH6kgO5\r\ngTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02\r\nr5q5B/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB\r\n5nw0cJY1QHOr3nIvJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pC\r\nHeiXCNpv+fadwP0k8czaf2Vs19nYsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4H\r\nGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte/bsuAEF4ajkPEES3GHP9AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZSamgwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu\r\n+oZaKaIu7U3NidykFr994jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kO\r\nvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DLKTp2Ox0+jYBCPxla5FO252qpk7/6wt8S\r\nZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5FPzqKoSqN75byLjsIKJE\r\ndNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6TGu1moh4a\r\nE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyr\r\nRygnavXL7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6n\r\nl/jYvZnVeJXjtsKYcXIf/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdm\r\nGW/JI0C/7U/E7evXn9XDio8SYkGSM63aLO5BtLCv092+1d4GGBSQYolRq+7Pd1kR\r\nEkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVsiUeE7F5sY8Me96WVxQcb\r\nOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi9r5UrvYo\r\no19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO\r\n4bCk1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc4\r\n7IxyVccHHq1FzGygOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cj\r\nWGVGtMZHwzVvX1HvSFG771sskcEjJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpR\r\nGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g37Y72qHzidwtyW7rBetZJAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5ygHYwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBA\r\nWxKJoi8YYQafpMTkMqeuzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBs\r\nK9KcStQGGZRfmWU07hPXHnFz+5gTXqzCE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa\r\n+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8JGqMU/UjAdh1pFyTnnHEl\r\nY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDTjHaQcs2J\r\n+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra\r\n3VBo7QznC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPS\r\nu6D804ri0NFZ1SOP9IzjYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1d\r\nskMuVpT4z0MpgEMmxQnrSZ615rBQ25vnVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5\r\nxq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Qc34RgxQdZsLXMUrWuL1J\r\nLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVDiIiXWF0c\r\n9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHy\r\nis01zkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ\r\n/nV94l+hYp+GLW7jSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInP\r\noi1PqN4TudNv0GyBF5tRC/aBjUqply1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bn\r\nKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfLUFc4hYb3YyIIYGmqm2/3AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKliZ/0wHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfe\r\nZd7TR1837H6DSkFa/mGM1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGH\r\niyx5421+HpRxMQIRjligePtOtRGXwaNOQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ\r\n/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCquAV0PksZj7EC4nK6e/UV\r\nbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0EsO3MgjS3e\r\nDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT\r\nMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j\r\nb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG\r\n9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI\r\n2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx\r\n1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ\r\nq2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz\r\ntCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ\r\nvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV\r\n5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY\r\n1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4\r\nNeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG\r\nFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91\r\n8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe\r\npLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+Xb\r\nwjEz+5CipDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMY\r\niwdRd3Y39b/lcGpiuP2d23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99\r\nThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lReUnd1aNjRYVzPOoifgSx2fRyy1+pO1Uz\r\naMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUEDqQuBfBxReL5mXiu1O7WG\r\n0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA5fl6JB0Q\r\ngs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0s\r\nsRfFJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjh\r\nlxuoK2n5/2aVR3BMTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60\r\nN2oV7vQ17wjMN+LXa2rjj/b4ZlZgXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2C\r\nZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHjzwW/9FxGqry57i71c2cDAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVou6UwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF\r\n+rA2LUK5IOQOgcUSTGKSqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+\r\ncS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7RIAAUW6EzDflUoDHKv83zOiPfYGcpHc9s\r\nkxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5hwRlGhBJwps6fEVi1Bt0\r\ntrpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0GMXlHqThy\r\n8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wenting-monitor-test-rg/providers/Microsoft.DocumentDB/cassandraClusters/wenting-test-cluster","name":"wenting-test-cluster","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2","tags":{},"systemData":{"createdBy":"wentingwu@microsoft.com","createdByType":"User","createdAt":"2021-09-30T19:35:33.0289659Z","lastModifiedBy":"wentingwu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-30T19:35:33.0289659Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"wenting-test-cluster","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wenting-monitor-test-rg/providers/Microsoft.Network/virtualNetworks/wenting-monitor-vnet/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GK\r\nDnwygZdK6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5\r\ntq1WdKsPkitPws6V8MWa5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1M\r\nfsitAWVp6hiWANkWKINfRcdt3Z2A23hmMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgO\r\nbJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/zr2Wet5KEcUDtUBhA4dUU\r\noaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kxWkH6kgO5\r\ngTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02\r\nr5q5B/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB\r\n5nw0cJY1QHOr3nIvJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pC\r\nHeiXCNpv+fadwP0k8czaf2Vs19nYsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4H\r\nGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte/bsuAEF4ajkPEES3GHP9AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZSamgwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu\r\n+oZaKaIu7U3NidykFr994jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kO\r\nvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DLKTp2Ox0+jYBCPxla5FO252qpk7/6wt8S\r\nZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5FPzqKoSqN75byLjsIKJE\r\ndNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6TGu1moh4a\r\nE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyr\r\nRygnavXL7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6n\r\nl/jYvZnVeJXjtsKYcXIf/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdm\r\nGW/JI0C/7U/E7evXn9XDio8SYkGSM63aLO5BtLCv092+1d4GGBSQYolRq+7Pd1kR\r\nEkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVsiUeE7F5sY8Me96WVxQcb\r\nOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi9r5UrvYo\r\no19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO\r\n4bCk1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc4\r\n7IxyVccHHq1FzGygOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cj\r\nWGVGtMZHwzVvX1HvSFG771sskcEjJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpR\r\nGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g37Y72qHzidwtyW7rBetZJAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5ygHYwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBA\r\nWxKJoi8YYQafpMTkMqeuzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBs\r\nK9KcStQGGZRfmWU07hPXHnFz+5gTXqzCE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa\r\n+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8JGqMU/UjAdh1pFyTnnHEl\r\nY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDTjHaQcs2J\r\n+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra\r\n3VBo7QznC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPS\r\nu6D804ri0NFZ1SOP9IzjYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1d\r\nskMuVpT4z0MpgEMmxQnrSZ615rBQ25vnVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5\r\nxq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Qc34RgxQdZsLXMUrWuL1J\r\nLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVDiIiXWF0c\r\n9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHy\r\nis01zkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ\r\n/nV94l+hYp+GLW7jSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInP\r\noi1PqN4TudNv0GyBF5tRC/aBjUqply1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bn\r\nKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfLUFc4hYb3YyIIYGmqm2/3AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKliZ/0wHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfe\r\nZd7TR1837H6DSkFa/mGM1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGH\r\niyx5421+HpRxMQIRjligePtOtRGXwaNOQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ\r\n/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCquAV0PksZj7EC4nK6e/UV\r\nbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0EsO3MgjS3e\r\nDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT\r\nMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j\r\nb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG\r\n9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI\r\n2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx\r\n1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ\r\nq2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz\r\ntCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ\r\nvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV\r\n5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY\r\n1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4\r\nNeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG\r\nFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91\r\n8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe\r\npLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+Xb\r\nwjEz+5CipDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMY\r\niwdRd3Y39b/lcGpiuP2d23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99\r\nThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lReUnd1aNjRYVzPOoifgSx2fRyy1+pO1Uz\r\naMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUEDqQuBfBxReL5mXiu1O7WG\r\n0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA5fl6JB0Q\r\ngs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0s\r\nsRfFJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjh\r\nlxuoK2n5/2aVR3BMTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60\r\nN2oV7vQ17wjMN+LXa2rjj/b4ZlZgXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2C\r\nZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHjzwW/9FxGqry57i71c2cDAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVou6UwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF\r\n+rA2LUK5IOQOgcUSTGKSqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+\r\ncS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7RIAAUW6EzDflUoDHKv83zOiPfYGcpHc9s\r\nkxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5hwRlGhBJwps6fEVi1Bt0\r\ntrpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0GMXlHqThy\r\n8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pall-prod-oct14-rg/providers/Microsoft.DocumentDB/cassandraClusters/pall-oct14-eastus2-1","name":"pall-oct14-eastus2-1","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2","tags":{},"systemData":{"createdBy":"piyengar@microsoft.com","createdByType":"User","createdAt":"2021-10-14T22:03:31.1997504Z","lastModifiedBy":"piyengar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-14T22:03:31.1997504Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"pall-oct14-eastus2-1","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pall-prod-oct14-rg/providers/Microsoft.Network/virtualNetworks/pall-vnet-eastus2-1/subnets/pall-subnet-eastus2-1","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GK\r\nDnwygZdK6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5\r\ntq1WdKsPkitPws6V8MWa5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1M\r\nfsitAWVp6hiWANkWKINfRcdt3Z2A23hmMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgO\r\nbJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/zr2Wet5KEcUDtUBhA4dUU\r\noaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kxWkH6kgO5\r\ngTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02\r\nr5q5B/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB\r\n5nw0cJY1QHOr3nIvJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pC\r\nHeiXCNpv+fadwP0k8czaf2Vs19nYsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4H\r\nGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte/bsuAEF4ajkPEES3GHP9AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZSamgwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu\r\n+oZaKaIu7U3NidykFr994jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kO\r\nvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DLKTp2Ox0+jYBCPxla5FO252qpk7/6wt8S\r\nZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5FPzqKoSqN75byLjsIKJE\r\ndNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6TGu1moh4a\r\nE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyr\r\nRygnavXL7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6n\r\nl/jYvZnVeJXjtsKYcXIf/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdm\r\nGW/JI0C/7U/E7evXn9XDio8SYkGSM63aLO5BtLCv092+1d4GGBSQYolRq+7Pd1kR\r\nEkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVsiUeE7F5sY8Me96WVxQcb\r\nOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi9r5UrvYo\r\no19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO\r\n4bCk1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc4\r\n7IxyVccHHq1FzGygOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cj\r\nWGVGtMZHwzVvX1HvSFG771sskcEjJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpR\r\nGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g37Y72qHzidwtyW7rBetZJAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5ygHYwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBA\r\nWxKJoi8YYQafpMTkMqeuzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBs\r\nK9KcStQGGZRfmWU07hPXHnFz+5gTXqzCE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa\r\n+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8JGqMU/UjAdh1pFyTnnHEl\r\nY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDTjHaQcs2J\r\n+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra\r\n3VBo7QznC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPS\r\nu6D804ri0NFZ1SOP9IzjYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1d\r\nskMuVpT4z0MpgEMmxQnrSZ615rBQ25vnVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5\r\nxq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Qc34RgxQdZsLXMUrWuL1J\r\nLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVDiIiXWF0c\r\n9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHy\r\nis01zkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ\r\n/nV94l+hYp+GLW7jSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInP\r\noi1PqN4TudNv0GyBF5tRC/aBjUqply1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bn\r\nKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfLUFc4hYb3YyIIYGmqm2/3AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKliZ/0wHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfe\r\nZd7TR1837H6DSkFa/mGM1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGH\r\niyx5421+HpRxMQIRjligePtOtRGXwaNOQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ\r\n/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCquAV0PksZj7EC4nK6e/UV\r\nbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0EsO3MgjS3e\r\nDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT\r\nMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j\r\nb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG\r\n9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI\r\n2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx\r\n1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ\r\nq2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz\r\ntCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ\r\nvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV\r\n5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY\r\n1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4\r\nNeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG\r\nFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91\r\n8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe\r\npLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+Xb\r\nwjEz+5CipDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMY\r\niwdRd3Y39b/lcGpiuP2d23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99\r\nThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lReUnd1aNjRYVzPOoifgSx2fRyy1+pO1Uz\r\naMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUEDqQuBfBxReL5mXiu1O7WG\r\n0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA5fl6JB0Q\r\ngs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0s\r\nsRfFJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjh\r\nlxuoK2n5/2aVR3BMTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60\r\nN2oV7vQ17wjMN+LXa2rjj/b4ZlZgXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2C\r\nZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHjzwW/9FxGqry57i71c2cDAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVou6UwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF\r\n+rA2LUK5IOQOgcUSTGKSqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+\r\ncS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7RIAAUW6EzDflUoDHKv83zOiPfYGcpHc9s\r\nkxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5hwRlGhBJwps6fEVi1Bt0\r\ntrpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0GMXlHqThy\r\n8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wenting-audit-logging-test/providers/Microsoft.DocumentDB/cassandraClusters/wenting-test","name":"wenting-test","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2","tags":{},"systemData":{"createdBy":"wentingwu@microsoft.com","createdByType":"User","createdAt":"2021-10-20T22:21:36.2499688Z","lastModifiedBy":"wentingwu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-20T22:21:36.2499688Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"wenting-test","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wenting-audit-logging-test/providers/Microsoft.Network/virtualNetworks/wenting-test-Otc20-vnet/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GK\r\nDnwygZdK6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5\r\ntq1WdKsPkitPws6V8MWa5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1M\r\nfsitAWVp6hiWANkWKINfRcdt3Z2A23hmMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgO\r\nbJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/zr2Wet5KEcUDtUBhA4dUU\r\noaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kxWkH6kgO5\r\ngTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02\r\nr5q5B/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB\r\n5nw0cJY1QHOr3nIvJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pC\r\nHeiXCNpv+fadwP0k8czaf2Vs19nYsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4H\r\nGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte/bsuAEF4ajkPEES3GHP9AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZSamgwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu\r\n+oZaKaIu7U3NidykFr994jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kO\r\nvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DLKTp2Ox0+jYBCPxla5FO252qpk7/6wt8S\r\nZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5FPzqKoSqN75byLjsIKJE\r\ndNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6TGu1moh4a\r\nE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyr\r\nRygnavXL7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6n\r\nl/jYvZnVeJXjtsKYcXIf/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdm\r\nGW/JI0C/7U/E7evXn9XDio8SYkGSM63aLO5BtLCv092+1d4GGBSQYolRq+7Pd1kR\r\nEkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVsiUeE7F5sY8Me96WVxQcb\r\nOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi9r5UrvYo\r\no19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO\r\n4bCk1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc4\r\n7IxyVccHHq1FzGygOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cj\r\nWGVGtMZHwzVvX1HvSFG771sskcEjJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpR\r\nGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g37Y72qHzidwtyW7rBetZJAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5ygHYwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBA\r\nWxKJoi8YYQafpMTkMqeuzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBs\r\nK9KcStQGGZRfmWU07hPXHnFz+5gTXqzCE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa\r\n+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8JGqMU/UjAdh1pFyTnnHEl\r\nY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDTjHaQcs2J\r\n+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra\r\n3VBo7QznC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPS\r\nu6D804ri0NFZ1SOP9IzjYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1d\r\nskMuVpT4z0MpgEMmxQnrSZ615rBQ25vnVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5\r\nxq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Qc34RgxQdZsLXMUrWuL1J\r\nLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVDiIiXWF0c\r\n9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHy\r\nis01zkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ\r\n/nV94l+hYp+GLW7jSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInP\r\noi1PqN4TudNv0GyBF5tRC/aBjUqply1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bn\r\nKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfLUFc4hYb3YyIIYGmqm2/3AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKliZ/0wHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfe\r\nZd7TR1837H6DSkFa/mGM1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGH\r\niyx5421+HpRxMQIRjligePtOtRGXwaNOQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ\r\n/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCquAV0PksZj7EC4nK6e/UV\r\nbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0EsO3MgjS3e\r\nDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT\r\nMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j\r\nb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG\r\n9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI\r\n2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx\r\n1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ\r\nq2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz\r\ntCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ\r\nvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV\r\n5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY\r\n1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4\r\nNeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG\r\nFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91\r\n8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe\r\npLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+Xb\r\nwjEz+5CipDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMY\r\niwdRd3Y39b/lcGpiuP2d23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99\r\nThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lReUnd1aNjRYVzPOoifgSx2fRyy1+pO1Uz\r\naMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUEDqQuBfBxReL5mXiu1O7WG\r\n0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA5fl6JB0Q\r\ngs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0s\r\nsRfFJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjh\r\nlxuoK2n5/2aVR3BMTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60\r\nN2oV7vQ17wjMN+LXa2rjj/b4ZlZgXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2C\r\nZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHjzwW/9FxGqry57i71c2cDAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVou6UwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF\r\n+rA2LUK5IOQOgcUSTGKSqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+\r\ncS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7RIAAUW6EzDflUoDHKv83zOiPfYGcpHc9s\r\nkxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5hwRlGhBJwps6fEVi1Bt0\r\ntrpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0GMXlHqThy\r\n8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wenting-audit-logging-test/providers/Microsoft.DocumentDB/cassandraClusters/wenting-test2","name":"wenting-test2","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2","tags":{},"systemData":{"createdBy":"wentingwu@microsoft.com","createdByType":"User","createdAt":"2021-10-20T22:34:07.6959759Z","lastModifiedBy":"wentingwu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-20T22:34:07.6959759Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"wenting-test2","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wenting-audit-logging-test/providers/Microsoft.Network/virtualNetworks/wenting-oct20-2-vnet/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GK\r\nDnwygZdK6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5\r\ntq1WdKsPkitPws6V8MWa5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1M\r\nfsitAWVp6hiWANkWKINfRcdt3Z2A23hmMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgO\r\nbJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/zr2Wet5KEcUDtUBhA4dUU\r\noaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kxWkH6kgO5\r\ngTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02\r\nr5q5B/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB\r\n5nw0cJY1QHOr3nIvJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pC\r\nHeiXCNpv+fadwP0k8czaf2Vs19nYsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4H\r\nGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte/bsuAEF4ajkPEES3GHP9AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZSamgwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu\r\n+oZaKaIu7U3NidykFr994jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kO\r\nvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DLKTp2Ox0+jYBCPxla5FO252qpk7/6wt8S\r\nZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5FPzqKoSqN75byLjsIKJE\r\ndNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6TGu1moh4a\r\nE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyr\r\nRygnavXL7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6n\r\nl/jYvZnVeJXjtsKYcXIf/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdm\r\nGW/JI0C/7U/E7evXn9XDio8SYkGSM63aLO5BtLCv092+1d4GGBSQYolRq+7Pd1kR\r\nEkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVsiUeE7F5sY8Me96WVxQcb\r\nOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi9r5UrvYo\r\no19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO\r\n4bCk1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc4\r\n7IxyVccHHq1FzGygOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cj\r\nWGVGtMZHwzVvX1HvSFG771sskcEjJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpR\r\nGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g37Y72qHzidwtyW7rBetZJAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5ygHYwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBA\r\nWxKJoi8YYQafpMTkMqeuzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBs\r\nK9KcStQGGZRfmWU07hPXHnFz+5gTXqzCE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa\r\n+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8JGqMU/UjAdh1pFyTnnHEl\r\nY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDTjHaQcs2J\r\n+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra\r\n3VBo7QznC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPS\r\nu6D804ri0NFZ1SOP9IzjYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1d\r\nskMuVpT4z0MpgEMmxQnrSZ615rBQ25vnVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5\r\nxq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Qc34RgxQdZsLXMUrWuL1J\r\nLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVDiIiXWF0c\r\n9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHy\r\nis01zkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ\r\n/nV94l+hYp+GLW7jSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInP\r\noi1PqN4TudNv0GyBF5tRC/aBjUqply1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bn\r\nKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfLUFc4hYb3YyIIYGmqm2/3AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKliZ/0wHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfe\r\nZd7TR1837H6DSkFa/mGM1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGH\r\niyx5421+HpRxMQIRjligePtOtRGXwaNOQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ\r\n/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCquAV0PksZj7EC4nK6e/UV\r\nbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0EsO3MgjS3e\r\nDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT\r\nMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j\r\nb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG\r\n9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI\r\n2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx\r\n1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ\r\nq2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz\r\ntCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ\r\nvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV\r\n5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY\r\n1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4\r\nNeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG\r\nFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91\r\n8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe\r\npLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+Xb\r\nwjEz+5CipDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMY\r\niwdRd3Y39b/lcGpiuP2d23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99\r\nThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lReUnd1aNjRYVzPOoifgSx2fRyy1+pO1Uz\r\naMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUEDqQuBfBxReL5mXiu1O7WG\r\n0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA5fl6JB0Q\r\ngs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0s\r\nsRfFJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjh\r\nlxuoK2n5/2aVR3BMTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60\r\nN2oV7vQ17wjMN+LXa2rjj/b4ZlZgXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2C\r\nZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHjzwW/9FxGqry57i71c2cDAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVou6UwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF\r\n+rA2LUK5IOQOgcUSTGKSqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+\r\ncS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7RIAAUW6EzDflUoDHKv83zOiPfYGcpHc9s\r\nkxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5hwRlGhBJwps6fEVi1Bt0\r\ntrpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0GMXlHqThy\r\n8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wenting-audit-logging-test/providers/Microsoft.DocumentDB/cassandraClusters/wenting-uk","name":"wenting-uk","type":"Microsoft.DocumentDB/cassandraClusters","location":"UK + South","tags":{},"systemData":{"createdBy":"wentingwu@microsoft.com","createdByType":"User","createdAt":"2021-10-20T23:15:36.6516913Z","lastModifiedBy":"wentingwu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-20T23:15:36.6516913Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"wenting-uk","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wenting-audit-logging-test/providers/Microsoft.Network/virtualNetworks/wenting-uk-vnet/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GK\r\nDnwygZdK6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5\r\ntq1WdKsPkitPws6V8MWa5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1M\r\nfsitAWVp6hiWANkWKINfRcdt3Z2A23hmMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgO\r\nbJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/zr2Wet5KEcUDtUBhA4dUU\r\noaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kxWkH6kgO5\r\ngTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02\r\nr5q5B/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB\r\n5nw0cJY1QHOr3nIvJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pC\r\nHeiXCNpv+fadwP0k8czaf2Vs19nYsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4H\r\nGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte/bsuAEF4ajkPEES3GHP9AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZSamgwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu\r\n+oZaKaIu7U3NidykFr994jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kO\r\nvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DLKTp2Ox0+jYBCPxla5FO252qpk7/6wt8S\r\nZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5FPzqKoSqN75byLjsIKJE\r\ndNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6TGu1moh4a\r\nE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyr\r\nRygnavXL7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6n\r\nl/jYvZnVeJXjtsKYcXIf/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdm\r\nGW/JI0C/7U/E7evXn9XDio8SYkGSM63aLO5BtLCv092+1d4GGBSQYolRq+7Pd1kR\r\nEkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVsiUeE7F5sY8Me96WVxQcb\r\nOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi9r5UrvYo\r\no19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO\r\n4bCk1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc4\r\n7IxyVccHHq1FzGygOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cj\r\nWGVGtMZHwzVvX1HvSFG771sskcEjJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpR\r\nGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g37Y72qHzidwtyW7rBetZJAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5ygHYwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBA\r\nWxKJoi8YYQafpMTkMqeuzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBs\r\nK9KcStQGGZRfmWU07hPXHnFz+5gTXqzCE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa\r\n+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8JGqMU/UjAdh1pFyTnnHEl\r\nY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDTjHaQcs2J\r\n+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra\r\n3VBo7QznC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPS\r\nu6D804ri0NFZ1SOP9IzjYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1d\r\nskMuVpT4z0MpgEMmxQnrSZ615rBQ25vnVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5\r\nxq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Qc34RgxQdZsLXMUrWuL1J\r\nLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVDiIiXWF0c\r\n9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHy\r\nis01zkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ\r\n/nV94l+hYp+GLW7jSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInP\r\noi1PqN4TudNv0GyBF5tRC/aBjUqply1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bn\r\nKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfLUFc4hYb3YyIIYGmqm2/3AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKliZ/0wHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfe\r\nZd7TR1837H6DSkFa/mGM1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGH\r\niyx5421+HpRxMQIRjligePtOtRGXwaNOQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ\r\n/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCquAV0PksZj7EC4nK6e/UV\r\nbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0EsO3MgjS3e\r\nDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT\r\nMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j\r\nb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG\r\n9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI\r\n2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx\r\n1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ\r\nq2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz\r\ntCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ\r\nvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV\r\n5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY\r\n1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4\r\nNeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG\r\nFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91\r\n8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe\r\npLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+Xb\r\nwjEz+5CipDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMY\r\niwdRd3Y39b/lcGpiuP2d23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99\r\nThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lReUnd1aNjRYVzPOoifgSx2fRyy1+pO1Uz\r\naMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUEDqQuBfBxReL5mXiu1O7WG\r\n0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA5fl6JB0Q\r\ngs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0s\r\nsRfFJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjh\r\nlxuoK2n5/2aVR3BMTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60\r\nN2oV7vQ17wjMN+LXa2rjj/b4ZlZgXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2C\r\nZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHjzwW/9FxGqry57i71c2cDAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVou6UwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF\r\n+rA2LUK5IOQOgcUSTGKSqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+\r\ncS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7RIAAUW6EzDflUoDHKv83zOiPfYGcpHc9s\r\nkxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5hwRlGhBJwps6fEVi1Bt0\r\ntrpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0GMXlHqThy\r\n8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END - CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[]}}]}' + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wenting-monitor-test-rg/providers/Microsoft.DocumentDB/cassandraClusters/wenting-westus-test2","name":"wenting-westus-test2","type":"Microsoft.DocumentDB/cassandraClusters","location":"West + US","tags":{},"systemData":{"createdBy":"wentingwu@microsoft.com","createdByType":"User","createdAt":"2021-10-20T14:52:24.925311Z","lastModifiedBy":"wentingwu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-20T14:52:24.925311Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"wenting-westus-test2","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wenting-monitor-test-rg/providers/Microsoft.Network/virtualNetworks/wenting-westus-test2-vnet/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GK\r\nDnwygZdK6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5\r\ntq1WdKsPkitPws6V8MWa5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1M\r\nfsitAWVp6hiWANkWKINfRcdt3Z2A23hmMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgO\r\nbJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/zr2Wet5KEcUDtUBhA4dUU\r\noaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kxWkH6kgO5\r\ngTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02\r\nr5q5B/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB\r\n5nw0cJY1QHOr3nIvJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pC\r\nHeiXCNpv+fadwP0k8czaf2Vs19nYsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4H\r\nGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte/bsuAEF4ajkPEES3GHP9AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZSamgwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu\r\n+oZaKaIu7U3NidykFr994jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kO\r\nvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DLKTp2Ox0+jYBCPxla5FO252qpk7/6wt8S\r\nZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5FPzqKoSqN75byLjsIKJE\r\ndNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6TGu1moh4a\r\nE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyr\r\nRygnavXL7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6n\r\nl/jYvZnVeJXjtsKYcXIf/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdm\r\nGW/JI0C/7U/E7evXn9XDio8SYkGSM63aLO5BtLCv092+1d4GGBSQYolRq+7Pd1kR\r\nEkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVsiUeE7F5sY8Me96WVxQcb\r\nOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi9r5UrvYo\r\no19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO\r\n4bCk1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc4\r\n7IxyVccHHq1FzGygOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cj\r\nWGVGtMZHwzVvX1HvSFG771sskcEjJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpR\r\nGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g37Y72qHzidwtyW7rBetZJAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5ygHYwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBA\r\nWxKJoi8YYQafpMTkMqeuzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBs\r\nK9KcStQGGZRfmWU07hPXHnFz+5gTXqzCE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa\r\n+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8JGqMU/UjAdh1pFyTnnHEl\r\nY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDTjHaQcs2J\r\n+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra\r\n3VBo7QznC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPS\r\nu6D804ri0NFZ1SOP9IzjYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1d\r\nskMuVpT4z0MpgEMmxQnrSZ615rBQ25vnVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5\r\nxq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Qc34RgxQdZsLXMUrWuL1J\r\nLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVDiIiXWF0c\r\n9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHy\r\nis01zkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ\r\n/nV94l+hYp+GLW7jSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInP\r\noi1PqN4TudNv0GyBF5tRC/aBjUqply1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bn\r\nKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfLUFc4hYb3YyIIYGmqm2/3AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKliZ/0wHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfe\r\nZd7TR1837H6DSkFa/mGM1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGH\r\niyx5421+HpRxMQIRjligePtOtRGXwaNOQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ\r\n/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCquAV0PksZj7EC4nK6e/UV\r\nbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0EsO3MgjS3e\r\nDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT\r\nMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j\r\nb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG\r\n9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI\r\n2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx\r\n1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ\r\nq2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz\r\ntCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ\r\nvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV\r\n5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY\r\n1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4\r\nNeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG\r\nFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91\r\n8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe\r\npLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+Xb\r\nwjEz+5CipDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMY\r\niwdRd3Y39b/lcGpiuP2d23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99\r\nThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lReUnd1aNjRYVzPOoifgSx2fRyy1+pO1Uz\r\naMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUEDqQuBfBxReL5mXiu1O7WG\r\n0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA5fl6JB0Q\r\ngs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0s\r\nsRfFJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjh\r\nlxuoK2n5/2aVR3BMTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60\r\nN2oV7vQ17wjMN+LXa2rjj/b4ZlZgXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2C\r\nZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHjzwW/9FxGqry57i71c2cDAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVou6UwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF\r\n+rA2LUK5IOQOgcUSTGKSqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+\r\ncS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7RIAAUW6EzDflUoDHKv83zOiPfYGcpHc9s\r\nkxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5hwRlGhBJwps6fEVi1Bt0\r\ntrpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0GMXlHqThy\r\n8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wenting-audit-logging-test/providers/Microsoft.DocumentDB/cassandraClusters/wenting-oct20-westus","name":"wenting-oct20-westus","type":"Microsoft.DocumentDB/cassandraClusters","location":"West + US","tags":{},"systemData":{"createdBy":"wentingwu@microsoft.com","createdByType":"User","createdAt":"2021-10-21T02:27:18.5138383Z","lastModifiedBy":"wentingwu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-21T02:27:18.5138383Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"wenting-oct20-westus","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wenting-audit-logging-test/providers/Microsoft.Network/virtualNetworks/wenting-oct20-westus-vnet/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GK\r\nDnwygZdK6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5\r\ntq1WdKsPkitPws6V8MWa5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1M\r\nfsitAWVp6hiWANkWKINfRcdt3Z2A23hmMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgO\r\nbJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/zr2Wet5KEcUDtUBhA4dUU\r\noaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kxWkH6kgO5\r\ngTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02\r\nr5q5B/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB\r\n5nw0cJY1QHOr3nIvJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pC\r\nHeiXCNpv+fadwP0k8czaf2Vs19nYsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4H\r\nGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte/bsuAEF4ajkPEES3GHP9AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZSamgwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu\r\n+oZaKaIu7U3NidykFr994jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kO\r\nvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DLKTp2Ox0+jYBCPxla5FO252qpk7/6wt8S\r\nZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5FPzqKoSqN75byLjsIKJE\r\ndNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6TGu1moh4a\r\nE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyr\r\nRygnavXL7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6n\r\nl/jYvZnVeJXjtsKYcXIf/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdm\r\nGW/JI0C/7U/E7evXn9XDio8SYkGSM63aLO5BtLCv092+1d4GGBSQYolRq+7Pd1kR\r\nEkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVsiUeE7F5sY8Me96WVxQcb\r\nOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi9r5UrvYo\r\no19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO\r\n4bCk1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc4\r\n7IxyVccHHq1FzGygOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cj\r\nWGVGtMZHwzVvX1HvSFG771sskcEjJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpR\r\nGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g37Y72qHzidwtyW7rBetZJAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5ygHYwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBA\r\nWxKJoi8YYQafpMTkMqeuzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBs\r\nK9KcStQGGZRfmWU07hPXHnFz+5gTXqzCE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa\r\n+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8JGqMU/UjAdh1pFyTnnHEl\r\nY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDTjHaQcs2J\r\n+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra\r\n3VBo7QznC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPS\r\nu6D804ri0NFZ1SOP9IzjYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1d\r\nskMuVpT4z0MpgEMmxQnrSZ615rBQ25vnVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5\r\nxq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Qc34RgxQdZsLXMUrWuL1J\r\nLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVDiIiXWF0c\r\n9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHy\r\nis01zkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ\r\n/nV94l+hYp+GLW7jSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInP\r\noi1PqN4TudNv0GyBF5tRC/aBjUqply1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bn\r\nKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfLUFc4hYb3YyIIYGmqm2/3AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKliZ/0wHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfe\r\nZd7TR1837H6DSkFa/mGM1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGH\r\niyx5421+HpRxMQIRjligePtOtRGXwaNOQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ\r\n/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCquAV0PksZj7EC4nK6e/UV\r\nbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0EsO3MgjS3e\r\nDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT\r\nMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j\r\nb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG\r\n9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI\r\n2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx\r\n1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ\r\nq2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz\r\ntCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ\r\nvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV\r\n5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY\r\n1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4\r\nNeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG\r\nFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91\r\n8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe\r\npLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+Xb\r\nwjEz+5CipDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMY\r\niwdRd3Y39b/lcGpiuP2d23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99\r\nThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lReUnd1aNjRYVzPOoifgSx2fRyy1+pO1Uz\r\naMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUEDqQuBfBxReL5mXiu1O7WG\r\n0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA5fl6JB0Q\r\ngs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0s\r\nsRfFJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjh\r\nlxuoK2n5/2aVR3BMTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60\r\nN2oV7vQ17wjMN+LXa2rjj/b4ZlZgXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2C\r\nZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHjzwW/9FxGqry57i71c2cDAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVou6UwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF\r\n+rA2LUK5IOQOgcUSTGKSqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+\r\ncS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7RIAAUW6EzDflUoDHKv83zOiPfYGcpHc9s\r\nkxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5hwRlGhBJwps6fEVi1Bt0\r\ntrpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0GMXlHqThy\r\n8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/frross-debug-1445877-rg/providers/Microsoft.DocumentDB/cassandraClusters/frross-postman-canary2-cluster","name":"frross-postman-canary2-cluster","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US","tags":{},"systemData":{"createdBy":"frross@microsoft.com","createdByType":"User","createdAt":"2021-10-07T19:40:52.4089582Z","lastModifiedBy":"frross@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-07T19:40:52.4089582Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"frross-postman-canary2-cluster","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/frross-debug-1445877-rg/providers/Microsoft.Network/virtualNetworks/frross-eastus-vnet/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GK\r\nDnwygZdK6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5\r\ntq1WdKsPkitPws6V8MWa5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1M\r\nfsitAWVp6hiWANkWKINfRcdt3Z2A23hmMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgO\r\nbJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/zr2Wet5KEcUDtUBhA4dUU\r\noaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kxWkH6kgO5\r\ngTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02\r\nr5q5B/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB\r\n5nw0cJY1QHOr3nIvJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pC\r\nHeiXCNpv+fadwP0k8czaf2Vs19nYsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4H\r\nGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte/bsuAEF4ajkPEES3GHP9AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZSamgwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu\r\n+oZaKaIu7U3NidykFr994jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kO\r\nvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DLKTp2Ox0+jYBCPxla5FO252qpk7/6wt8S\r\nZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5FPzqKoSqN75byLjsIKJE\r\ndNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6TGu1moh4a\r\nE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyr\r\nRygnavXL7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6n\r\nl/jYvZnVeJXjtsKYcXIf/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdm\r\nGW/JI0C/7U/E7evXn9XDio8SYkGSM63aLO5BtLCv092+1d4GGBSQYolRq+7Pd1kR\r\nEkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVsiUeE7F5sY8Me96WVxQcb\r\nOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi9r5UrvYo\r\no19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO\r\n4bCk1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc4\r\n7IxyVccHHq1FzGygOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cj\r\nWGVGtMZHwzVvX1HvSFG771sskcEjJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpR\r\nGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g37Y72qHzidwtyW7rBetZJAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5ygHYwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBA\r\nWxKJoi8YYQafpMTkMqeuzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBs\r\nK9KcStQGGZRfmWU07hPXHnFz+5gTXqzCE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa\r\n+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8JGqMU/UjAdh1pFyTnnHEl\r\nY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDTjHaQcs2J\r\n+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra\r\n3VBo7QznC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPS\r\nu6D804ri0NFZ1SOP9IzjYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1d\r\nskMuVpT4z0MpgEMmxQnrSZ615rBQ25vnVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5\r\nxq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Qc34RgxQdZsLXMUrWuL1J\r\nLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVDiIiXWF0c\r\n9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHy\r\nis01zkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ\r\n/nV94l+hYp+GLW7jSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInP\r\noi1PqN4TudNv0GyBF5tRC/aBjUqply1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bn\r\nKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfLUFc4hYb3YyIIYGmqm2/3AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKliZ/0wHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfe\r\nZd7TR1837H6DSkFa/mGM1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGH\r\niyx5421+HpRxMQIRjligePtOtRGXwaNOQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ\r\n/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCquAV0PksZj7EC4nK6e/UV\r\nbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0EsO3MgjS3e\r\nDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT\r\nMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j\r\nb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG\r\n9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI\r\n2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx\r\n1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ\r\nq2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz\r\ntCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ\r\nvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV\r\n5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY\r\n1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4\r\nNeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG\r\nFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91\r\n8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe\r\npLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+Xb\r\nwjEz+5CipDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMY\r\niwdRd3Y39b/lcGpiuP2d23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99\r\nThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lReUnd1aNjRYVzPOoifgSx2fRyy1+pO1Uz\r\naMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUEDqQuBfBxReL5mXiu1O7WG\r\n0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA5fl6JB0Q\r\ngs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0s\r\nsRfFJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjh\r\nlxuoK2n5/2aVR3BMTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60\r\nN2oV7vQ17wjMN+LXa2rjj/b4ZlZgXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2C\r\nZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHjzwW/9FxGqry57i71c2cDAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVou6UwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF\r\n+rA2LUK5IOQOgcUSTGKSqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+\r\ncS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7RIAAUW6EzDflUoDHKv83zOiPfYGcpHc9s\r\nkxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5hwRlGhBJwps6fEVi1Bt0\r\ntrpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0GMXlHqThy\r\n8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/frross-template-test-rg/providers/Microsoft.DocumentDB/cassandraClusters/frross-test-cluster","name":"frross-test-cluster","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US","tags":{},"systemData":{"createdBy":"frross@microsoft.com","createdByType":"User","createdAt":"2021-10-20T18:57:27.0672773Z","lastModifiedBy":"frross@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-20T18:57:27.0672773Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"frross-test-cluster","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/frross-template-test-rg/providers/Microsoft.Network/virtualNetworks/cassandra-vnet/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GK\r\nDnwygZdK6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5\r\ntq1WdKsPkitPws6V8MWa5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1M\r\nfsitAWVp6hiWANkWKINfRcdt3Z2A23hmMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgO\r\nbJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/zr2Wet5KEcUDtUBhA4dUU\r\noaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kxWkH6kgO5\r\ngTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02\r\nr5q5B/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB\r\n5nw0cJY1QHOr3nIvJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pC\r\nHeiXCNpv+fadwP0k8czaf2Vs19nYsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4H\r\nGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte/bsuAEF4ajkPEES3GHP9AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZSamgwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu\r\n+oZaKaIu7U3NidykFr994jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kO\r\nvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DLKTp2Ox0+jYBCPxla5FO252qpk7/6wt8S\r\nZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5FPzqKoSqN75byLjsIKJE\r\ndNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6TGu1moh4a\r\nE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyr\r\nRygnavXL7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6n\r\nl/jYvZnVeJXjtsKYcXIf/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdm\r\nGW/JI0C/7U/E7evXn9XDio8SYkGSM63aLO5BtLCv092+1d4GGBSQYolRq+7Pd1kR\r\nEkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVsiUeE7F5sY8Me96WVxQcb\r\nOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi9r5UrvYo\r\no19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO\r\n4bCk1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc4\r\n7IxyVccHHq1FzGygOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cj\r\nWGVGtMZHwzVvX1HvSFG771sskcEjJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpR\r\nGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g37Y72qHzidwtyW7rBetZJAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5ygHYwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBA\r\nWxKJoi8YYQafpMTkMqeuzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBs\r\nK9KcStQGGZRfmWU07hPXHnFz+5gTXqzCE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa\r\n+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8JGqMU/UjAdh1pFyTnnHEl\r\nY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDTjHaQcs2J\r\n+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra\r\n3VBo7QznC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPS\r\nu6D804ri0NFZ1SOP9IzjYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1d\r\nskMuVpT4z0MpgEMmxQnrSZ615rBQ25vnVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5\r\nxq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Qc34RgxQdZsLXMUrWuL1J\r\nLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVDiIiXWF0c\r\n9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHy\r\nis01zkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ\r\n/nV94l+hYp+GLW7jSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInP\r\noi1PqN4TudNv0GyBF5tRC/aBjUqply1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bn\r\nKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfLUFc4hYb3YyIIYGmqm2/3AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKliZ/0wHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfe\r\nZd7TR1837H6DSkFa/mGM1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGH\r\niyx5421+HpRxMQIRjligePtOtRGXwaNOQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ\r\n/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCquAV0PksZj7EC4nK6e/UV\r\nbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0EsO3MgjS3e\r\nDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT\r\nMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j\r\nb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG\r\n9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI\r\n2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx\r\n1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ\r\nq2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz\r\ntCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ\r\nvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV\r\n5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY\r\n1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4\r\nNeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG\r\nFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91\r\n8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe\r\npLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+Xb\r\nwjEz+5CipDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMY\r\niwdRd3Y39b/lcGpiuP2d23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99\r\nThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lReUnd1aNjRYVzPOoifgSx2fRyy1+pO1Uz\r\naMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUEDqQuBfBxReL5mXiu1O7WG\r\n0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA5fl6JB0Q\r\ngs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0s\r\nsRfFJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjh\r\nlxuoK2n5/2aVR3BMTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60\r\nN2oV7vQ17wjMN+LXa2rjj/b4ZlZgXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2C\r\nZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHjzwW/9FxGqry57i71c2cDAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVou6UwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF\r\n+rA2LUK5IOQOgcUSTGKSqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+\r\ncS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7RIAAUW6EzDflUoDHKv83zOiPfYGcpHc9s\r\nkxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5hwRlGhBJwps6fEVi1Bt0\r\ntrpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0GMXlHqThy\r\n8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/frross-template-test4-rg/providers/Microsoft.DocumentDB/cassandraClusters/frross-test-cluster4","name":"frross-test-cluster4","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US","tags":{},"systemData":{"createdBy":"frross@microsoft.com","createdByType":"User","createdAt":"2021-10-20T19:30:38.104609Z","lastModifiedBy":"frross@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-20T19:30:38.104609Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"frross-test-cluster4","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/frross-template-test4-rg/providers/Microsoft.Network/virtualNetworks/cassandra-vnet/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDXvt6X2CCZZ6UmMbi90YvTANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAKplDTmQ9afwVPQelDuu+NkxNJ084CNKnrZ21ABewE+UU4GK\r\nDnwygZdK6agNSMs5UochUEDzz9CpdV5tdPzL14O/GeE2gO5/aUFTUMG9c6neyxk5\r\ntq1WdKsPkitPws6V8MWa5d1L/y4RFhZHUsgxxUySlYlGpNcHhhsyr7EvFecZGA1M\r\nfsitAWVp6hiWANkWKINfRcdt3Z2A23hmMH9MRSGBccHiPuzwrVsSmLwvt3WlRDgO\r\nbJkE40tFYvJ6GXAQiaGHCIWSVObgO3zj6xkdbEFMmJ/zr2Wet5KEcUDtUBhA4dUU\r\noaPVz69u46V56Vscy3lXu1Ylsk84j5lUPLdsAxtultP4OPQoOTpnY8kxWkH6kgO5\r\ngTKE3HRvoVIjU4xJ0JQ746zy/8GdQA36SaNiz4U3u10zFZg2Rkv2dL1Lv58EXL02\r\nr5q5B/nhVH/M1joTvpRvaeEpAJhkIA9NkpvbGEpSdcA0OrtOOeGtrsiOyMBYkjpB\r\n5nw0cJY1QHOr3nIvJ2OnY+OKJbDSrhFqWsk8/1q6Z1WNvONz7te1pAtHerdPi5pC\r\nHeiXCNpv+fadwP0k8czaf2Vs19nYsgWn5uIyLQL8EehdBzCbOKJy9sl86S4Fqe4H\r\nGyAtmqGlaWOsq2A6O/paMi3BSmWTDbgPLCPBbPte/bsuAEF4ajkPEES3GHP9AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUx7KcfxzjuFrv6WgaqF2UwSZSamgwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAe+G+G2RFdWtYxLIKMR5H/aVNFjNP7Jdeu\r\n+oZaKaIu7U3NidykFr994jSxMBMV768ukJ5/hLSKsuj/SLjmAfwRAZ+w0RGqi/kO\r\nvPYUlBr/sKOwr3tVkg9ccZBebnBVG+DLKTp2Ox0+jYBCPxla5FO252qpk7/6wt8S\r\nZk3diSU12Jm7if/jjkhkGB/e8UdfrKoLytDvqVeiwPA5FPzqKoSqN75byLjsIKJE\r\ndNi07SY45hN/RUnsmIoAf93qlaHR/SJWVRhrWt3JmeoBJ2RDK492zF6TGu1moh4a\r\nE6e00YkwTPWreuwvaLB220vWmtgZPs+DSIb2d9hPBdCJgvcho1c7\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQCq+mxcpjxFFB6jvh98dTFzANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMTCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAMedcDrkXufP7pxVm1FHLDNA9IjwHaMoaY8arqqZ4Gff4xyr\r\nRygnavXL7g12MPAx8Q6Dd9hfBzrfWxkF0Br2wIvlvkzW01naNVSkHp+OS3hL3W6n\r\nl/jYvZnVeJXjtsKYcXIf/6WtspcF5awlQ9LZJcjwaH7KoZuK+THpXCMtzD8XNVdm\r\nGW/JI0C/7U/E7evXn9XDio8SYkGSM63aLO5BtLCv092+1d4GGBSQYolRq+7Pd1kR\r\nEkWBPm0ywZ2Vb8GIS5DLrjelEkBnKCyy3B0yQud9dpVsiUeE7F5sY8Me96WVxQcb\r\nOyYdEY/j/9UpDlOG+vA+YgOvBhkKEjiqygVpP8EZoMMijephzg43b5Qi9r5UrvYo\r\no19oR/8pf4HJNDPF0/FJwFVMW8PmCBLGstin3NE1+NeWTkGt0TzpHjgKyfaDP2tO\r\n4bCk1G7pP2kDFT7SYfc8xbgCkFQ2UCEXsaH/f5YmpLn4YPiNFCeeIida7xnfTvc4\r\n7IxyVccHHq1FzGygOqemrxEETKh8hvDR6eBdrBwmCHVgZrnAqnn93JtGyPLi6+cj\r\nWGVGtMZHwzVvX1HvSFG771sskcEjJxiQNQDQRWHEh3NxvNb7kFlAXnVdRkkvhjpR\r\nGchFhTAzqmwltdWhWDEyCMKC2x/mSZvZtlZGY+g37Y72qHzidwtyW7rBetZJAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUDyBd16FXlduSzyvQx8J3BM5ygHYwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAlFvNh7QgXVLAZSsNR2XRmIn9iS8OHFCBA\r\nWxKJoi8YYQafpMTkMqeuzoL3HWb1pYEipsDkhiMnrpfeYZEA7Lz7yqEEtfgHcEBs\r\nK9KcStQGGZRfmWU07hPXHnFz+5gTXqzCE2PBMlRgVUYJiA25mJPXfB00gDvGhtYa\r\n+mENwM9Bq1B9YYLyLjRtUz8cyGsdyTIG/bBM/Q9jcV8JGqMU/UjAdh1pFyTnnHEl\r\nY59Npi7F87ZqYYJEHJM2LGD+le8VsHjgeWX2CJQko7klXvcizuZvUEDTjHaQcs2J\r\n+kPgfyMIOY1DMJ21NxOJ2xPRC/wAh/hzSBRVtoAnyuxtkZ4VjIOh\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQDGrpfM7VmYOGkKAKnqUyFDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwMjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBAOBiO1K6Fk4fHI6t3mJkpg7lxoeUgL8tz9wuI2z0UgY8vFra\r\n3VBo7QznC4K3s9jqKWEyIQY11Le0108bSYa/TK0aioO6itpGiigEG+vH/iqtQXPS\r\nu6D804ri0NFZ1SOP9IzjYuQiK6AWntCqP4WAcZAPtpNrNLPBIyiqmiTDS4dlFg1d\r\nskMuVpT4z0MpgEMmxQnrSZ615rBQ25vnVbBNig04FCsh1V3S8ve5Gzh08oIrL/g5\r\nxq95oRrgEeOBIeiegQpoKrLYyo3R1Tt48HmSJCBYQ52Qc34RgxQdZsLXMUrWuL1J\r\nLAZP6yeo47ySSxKCjhq5/AUWvQBP3N/cP/iJzKKKw23qJ/kkVrE0DSVDiIiXWF0c\r\n9abSGhYl9SPl86IHcIAIzwelJ4SKpHrVbh0/w4YHdFi5QbdAp7O5KxfxBYhQOeHy\r\nis01zkpYn6SqUFGvbK8eZ8y9Aclt8PIUftMG6q5BhdlBZkDDV3n70RlXwYvllzfZ\r\n/nV94l+hYp+GLW7jSmpxZLG/XEz4OXtTtWwLV+IkIOe/EDF79KCazW2SXOIvVInP\r\noi1PqN4TudNv0GyBF5tRC/aBjUqply1YYfeKwgRVs83z5kuiOicmdGZKH9SqU5bn\r\nKse7IlyfZLg6yAxYyTNe7A9acJ3/pGmCIkJ/9dfLUFc4hYb3YyIIYGmqm2/3AgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQUAKuR/CFiJpeaqHkbYUGQYKliZ/0wHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQAzo/KdmWPPTaYLQW7J5DqxEiBT9QyYGUfe\r\nZd7TR1837H6DSkFa/mGM1kLwi5y9miZKA9k6T9OwTx8CflcvbNO2UkFW0VCldEGH\r\niyx5421+HpRxMQIRjligePtOtRGXwaNOQ7ySWfJhRhKcPKe2PGFHQI7/3n+T3kXQ\r\n/SLu2lk9Qs5YgSJ3VhxBUznYn1KVKJWPE07M55kuUgCquAV0PksZj7EC4nK6e/UV\r\nbPumlj1nyjlxhvNud4WYmr4ntbBev6cSbK78dpI/3cr7P/WJPYJuL0EsO3MgjS3e\r\nDCX7NXp5ylue3TcpQfRU8BL+yZC1wqX98R4ndw7X4qfGaE7SlF7I\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT\r\nMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j\r\nb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG\r\n9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI\r\n2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx\r\n1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ\r\nq2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz\r\ntCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ\r\nvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP\r\nBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV\r\n5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY\r\n1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4\r\nNeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG\r\nFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91\r\n8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe\r\npLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl\r\nMrY=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIF8zCCBNugAwIBAgIQAueRcfuAIek/4tmDg0xQwDANBgkqhkiG9w0BAQwFADBh\r\nMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\r\nd3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH\r\nMjAeFw0yMDA3MjkxMjMwMDBaFw0yNDA2MjcyMzU5NTlaMFkxCzAJBgNVBAYTAlVT\r\nMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKjAoBgNVBAMTIU1pY3Jv\r\nc29mdCBBenVyZSBUTFMgSXNzdWluZyBDQSAwNjCCAiIwDQYJKoZIhvcNAQEBBQAD\r\nggIPADCCAgoCggIBALVGARl56bx3KBUSGuPc4H5uoNFkFH4e7pvTCxRi4j/+z+Xb\r\nwjEz+5CipDOqjx9/jWjskL5dk7PaQkzItidsAAnDCW1leZBOIi68Lff1bjTeZgMY\r\niwdRd3Y39b/lcGpiuP2d23W95YHkMMT8IlWosYIX0f4kYb62rphyfnAjYb/4Od99\r\nThnhlAxGtfvSbXcBVIKCYfZgqRvV+5lReUnd1aNjRYVzPOoifgSx2fRyy1+pO1Uz\r\naMMNnIOE71bVYW0A1hr19w7kOb0KkJXoALTDDj1ukUEDqQuBfBxReL5mXiu1O7WG\r\n0vltg0VZ/SZzctBsdBlx1BkmWYBW261KZgBivrql5ELTKKd8qgtHcLQA5fl6JB0Q\r\ngs5XDaWehN86Gps5JW8ArjGtjcWAIP+X8CQaWfaCnuRm6Bk/03PQWhgdi84qwA0s\r\nsRfFJwHUPTNSnE8EiGVk2frt0u8PG1pwSQsFuNJfcYIHEv1vOzP7uEOuDydsmCjh\r\nlxuoK2n5/2aVR3BMTu+p4+gl8alXoBycyLmj3J/PUgqD8SL5fTCUegGsdia/Sa60\r\nN2oV7vQ17wjMN+LXa2rjj/b4ZlZgXVojDmAjDwIRdDUujQu0RVsJqFLMzSIHpp2C\r\nZp7mIoLrySay2YYBu7SiNwL95X6He2kS8eefBBHjzwW/9FxGqry57i71c2cDAgMB\r\nAAGjggGtMIIBqTAdBgNVHQ4EFgQU1cFnOsKjnfR3UltZEjgp5lVou6UwHwYDVR0j\r\nBBgwFoAUTiJUIBiV5uNu5g/6+rkS7QYXjzkwDgYDVR0PAQH/BAQDAgGGMB0GA1Ud\r\nJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH/AgEAMHYG\r\nCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQu\r\nY29tMEAGCCsGAQUFBzAChjRodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGln\r\naUNlcnRHbG9iYWxSb290RzIuY3J0MHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6Ly9j\r\ncmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5jcmwwN6A1oDOG\r\nMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RHMi5j\r\ncmwwHQYDVR0gBBYwFDAIBgZngQwBAgEwCAYGZ4EMAQICMBAGCSsGAQQBgjcVAQQD\r\nAgEAMA0GCSqGSIb3DQEBDAUAA4IBAQB2oWc93fB8esci/8esixj++N22meiGDjgF\r\n+rA2LUK5IOQOgcUSTGKSqF9lYfAxPjrqPjDCUPHCURv+26ad5P/BYtXtbmtxJWu+\r\ncS5BhMDPPeG3oPZwXRHBJFAkY4O4AF7RIAAUW6EzDflUoDHKv83zOiPfYGcpHc9s\r\nkxAInCedk7QSgXvMARjjOqdakor21DTmNIUotxo8kHv5hwRlGhBJwps6fEVi1Bt0\r\ntrpM/3wYxlr473WSPUFZPgP1j519kLpWOJ8z09wxay+Br29irPcBYv0GMXlHqThy\r\n8y4m/HyTQeI2IMvMrQnwqPpY+rLIXyviI2vLoI+4xKE4Rn38ZZ8m\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guanzhou-test111-rg/providers/Microsoft.DocumentDB/cassandraClusters/guanzhou-test-cluster-1","name":"guanzhou-test-cluster-1","type":"Microsoft.DocumentDB/cassandraClusters","location":"Central + US EUAP","tags":{},"systemData":{"createdBy":"guanzhousong@microsoft.com","createdByType":"User","createdAt":"2021-10-05T02:24:34.4371255Z","lastModifiedBy":"guanzhousong@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-05T02:24:34.4371255Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"guanzhou-test-cluster-1","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/guanzhou-test111-rg/providers/Microsoft.Network/virtualNetworks/nova-vnet/subnets/nove-subnet","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Failed","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/frross-debug-1445877-rg/providers/Microsoft.DocumentDB/cassandraClusters/frross-debug-1445877-cluster","name":"frross-debug-1445877-cluster","type":"Microsoft.DocumentDB/cassandraClusters","location":"Central + US EUAP","tags":{},"systemData":{"createdBy":"frross@microsoft.com","createdByType":"User","createdAt":"2021-10-07T17:12:26.1163258Z","lastModifiedBy":"frross@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-07T17:12:26.1163258Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"frross-debug-1445877-cluster","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/frross-debug-1445877-rg/providers/Microsoft.Network/virtualNetworks/frross-debug-1445877-vnet/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAE5Hd9yskSH1BgAAAAAATjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDU1OVoXDTI1MDkxNTAzMTU1OVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA5UFGOQgmohqJHkbMMcN4cnK+mAoScYUAR/njrD0x/GyFeTko+QXMU1JJ\r\nIePmVcugmyO4xX5ITShZWy+/qPAWy3vwT6HzBdFq5eTGbkbFCrQdh5w1+jwOApMe\r\n9ZDlMDO+RUtJe1XxWqi3KRY0e/pJmpOk4IUEjx6wxvv5MnSWhMa7aepnkuCS8lvF\r\nNl9D5oUGIYvoDUgVMQSBazQP2zjRunMT9JOopFKnZE+L7NY+XDtla3I1uZeMeakA\r\nfqkNjx6lkUIgcHPhSMy5XHBpOeFdSDjBA8dNk6E3VSlLzvPcHdaHI7QrmK/43wzf\r\n+kHpDdTXx8EdOqm+pLHoKLWcjw/P8O9RAMiXefxGnQKNuP8T+/prskR5esucJQkj\r\nrWSu7W7YycmIg1rPCd7Qw005/sc58eLPN+Xrj/Aw7RSR0A719CPZMjoSfKTphSEK\r\np+ZB+5j/V3VEzjGbL6XFUezFfaIZ+A7ZtkaEQYDH0fVVziPnhQhJB+Uym7a5arB3\r\nqiMMw7Yjos6iWkkOaqhaCHuN1zC374xsBec9mrJ7bfuLTNtBEKC1PhdZrJM3UDCo\r\n76v+3mnKouN/7vyVkbiLNb27MXRigXFbO02opR8prTkvv3af+iq6+xjmVWZhsILI\r\n0HIBk9/HoMZCCb9e95RQVmVwVNrwa24neVWl+JEw50sqLMapsGkCAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUOsfDysjeDdOSwCeJyL6X\r\nR09FaWAwHQYDVR0OBBYEFEKY1e9GMTrmL0fNVVel5jUfu/yRMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAuaX699r+ayL7JphKgdiDuy4iPTwf7fTkUsLx\r\n7ixBzvnUrUASdS9GJEkpsewdipRfMycn3UXatnQ6rudCqBgsExJzHBGlokhvVaZK\r\nue0oIlJstnKQDOJCpJem9NkvwALP5z3WZoqYf4EaaQXUkMAJJ2qxw+mksSBEu+MJ\r\noxgbStKv98q28ypOVLjaFNH/VbtAG/rIcqNyOdjAPcgMcohe7lGO1WQtFxPxtzvS\r\nZfgao/ZjWeNDFzy8FSInim1q69Syl3Y4dzeAlG6PiC8t7upDQzo2AJxI1tW0AkKV\r\naJIS9rGZquLN5MTbYozjEyzMvSEYFEpx+7YKQGayHz3eCGH4BzD43YPt20Cm4BMN\r\neyV64+d9PufCA2tzrIQ+VJhsZKb6qRgV+Bp6AfpgeyU6oRkqsWKJyKyzp6o0D+Si\r\nq3gYJdD3W0+X1jUJcQuywYLRg78rVE3A6VJ7RIEjXARQV19hJvxchCoqfbny/0bX\r\n9Bb3Rtr1OAYhUml6Z6JdfnH33KfEJvFa4wlKRBxpuw9gMG5ydOsbZ3YIJDWccTLH\r\nQZWJk/Lakd/+uLPWOzzWQCf7nPapwSRjtfRRLZoX49PIQkrGM3dpLLGktC+sg8bc\r\nvQ2bO79bKJazcsKuNK0dOpepIBA1mMD81DphYmc/RMF9KXKdKz4Ugh4HNqkltIsG\r\nEtaYPCM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAE2e+Zx9LtWjEwAAAAAATTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDUwOFoXDTI1MDkxNTAzMTUwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1RZFKUUXNWXgbh7dm52Irso1hGPDEL9ZZXYz0civ0AAlDu9P/1okXVpc\r\nOPQnRxE7e7O8roTSctA4MTBGFIjrCythVzk6MJC1bgGv7qwCV6o5P4zVSxQrHPx+\r\n2DPDIZlt3UV4RNLuKVvSZdzQt1UsxUOxvTZ/0mO22d6mcspf3I5Xt5h+7WlTgHAy\r\nWvvlpuX7LR8yTK/um4526bdhUG98I2nEURH2vnNSt3/Dbt1R6qoPMja0HhghuOtY\r\nt7Z77nyI2gOY2fRu3oM15Xqe8b3Qwx5IsSV/pTWJ34VPz24TfUmCQOVtu/m84ayA\r\nwSZ754d+JvkyPSdINV3tuLtbo/QVewIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBQbRewlXgZoN1BD7V/nign/FlWETTAdBgNVHQ4EFgQU\r\nvZx3N/n1PWYwyjVonISvG5ZVEL4wgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQBFtFQSE7TjElKEmwHyydrA/UEAzho7rEMy2lvNr2tgX/7WVWDqmDrTK4La\r\nm6/MGOUBYbF334Ywvprij/UoSpyMEq5HgXiCBxOgyUPSZx8x+XyINgCujVXRk9za\r\nPh1lXpYCV2qhIYAhazeprDYzX2im0Jwe8X/Xsl0kzgs3TE7medDW9CVEYS+T7SqG\r\ntmXhOg1FW04yUM0+Z73ZQGF5oqnE76kzpLvfn+YWA6KbLfH84yTpqylAD5UFvfeW\r\nMRoNUUckpsteddNba90soUzxeRwU0Loxj5Qsds2gB0tSIpVh330BxEDTIJ73FZIv\r\nvURqyoDor+Eu1NOVk3sdCM5nXuN38dc0a9fsSRoJkbQYTP9UNJPcUDO3kZoYWNxD\r\nWrn5J/ltaxPc1o7+USSm02C023HIrWBJkfnepIZKV8m7wkddcygJ6FQkxFU+NQUW\r\n+a91tIw3HTEHvmNlJddPmjgnE3k6GS1NLOC5IV/s1s4sSME3QYQAt+zr5TKRdZ06\r\ndBOSXrz66pVpkR2wuAvlCEuFk7gaBrKz4j+3wJ9CPhETezARvgpzQCw9es9y2qde\r\nO1rHPYa6IRtmjcVDvxfmjei66bQwoapDH/OMS6sPqqqn53l9g4HDDgWywWn9ad51\r\nL5NAvQYhHwSCG0E2Os5mUFYM56ZVA4WHVUn7NZsAXGnDtIwlPw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAACbGTID3uXpE1wAAAAAAJjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE4MDMxOTE4MjcwOFoXDTIzMDMxOTE4MzcwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAvBsRcCD4Z38LQPG73ci9jIpQv5tVQh8lLrcQ9lO2lH6pUVWi7T7jCyX/\r\naCSmit7fT6seN/kf6LP0hpgsU/wxMMv4c4+w1M16EiRc6GPJtSPNszl8ZNAzZj39\r\nxeJnAMhPzeABRLgzYgLH+9R3k8sIJMhSjcUfp63GAhKtdqhQeTOs7m87REtmAdo7\r\neZh/Ubn4HR1ZxAswmoWmMxMZw1KZj87395IxE3Ybj0m/V8dyskpxWdAzkvGeO//l\r\nb4FfAHVCCix9wsijqomj+jeJPHR/AF/5+MZXjoNDs6/+UMdSrEqa2fi8910J6ogL\r\nSMdL7NdV77U5551wZxeUwSEHUc4qkQr9cFAdHcdYiMnIrU28zk7O3yQdsyWdrTqx\r\nTbkoYn36Ji+aSyzs/u/Zh3pAWw9IvLaoq254Rpf1SWsvufE2YXaP6kUmvOE9Qrnt\r\nQ138fwe9CmPUT9I/cM0v16BDvELEH3KGsWez8WRFA5RAB5pPDKjMyZ7mNl+0+EDv\r\nMq+KYjtc9uWJoRsRe8mDnVt2JGRBazTCFd/m5HGywdUvg/fZyVfBrvsRhcahMXn+\r\nb+a6kw+gMY29dcNutHNl1ZuKbwUuvp0ShWnauFVqMSRP6kSgXjzM0Oez2CHEtnX7\r\nNTKy9+eXsqxkzVXop81HCR7QCDlKPkc78IRETKfQA/nHdu2iOd8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQonG1RafqmxKhDxP+NNvoz\r\n3/1FMDCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAJFaZ9bHSEXBMKUi\r\nxLJgRr0yPOBbkZAHGsXGsAAdXnsAcmRZnoMsJZwHJY9qa2SDdjWzCnEuk50KJ0Rm\r\nvePgWmDtQWwyfFT//JIccaFgxYsU2SjdHEi0DmRElJtLkYQorDjkqn8s2T8y95f0\r\nmdcNme7cQ8PsjawgV1hb7r1I0bRh93M4pDzRt0g08RoFtMGuqRdU3roMDbuid5Hj\r\nBnoT5MdJlYzklABw+JPOIFeqZ0LMq/RPyk8Dpzo7m2dSc78GitdNnWxj4Ku6l8lb\r\n0OHX3BL1eVKyKi8Vta3BjpzWuMQompgdzp1Eh+mDyfKV/+dlfIEPJI1stEHIEKWR\r\nR5yt35+RGXrmsmAwTZT5mcJk4JdAMhVnRnyWvxPzieYCR9DcIaT6+NBBYzQegOG+\r\nIMnLpnZp6qhbG7Nq9MXCqRY2ooojLCTLTCx8R2cqdYonJpB4lSkYMFYbuV7HoiNr\r\nXdZm0gMRi2DmIaZ7cxXUn0BmZd/lXSXNKdxwHKecu0F8ByT1Zlg3NgIhCb+6SDYB\r\nlOv5YhnwSd00aUaSSYc2dKJmR2yfCKT5Li9wdtjlB6rYIb7vHRl3x98OIVE+O20S\r\n1jQEqRLzkaDIWOA8D9VeuuIW05tahms61dDi5gx7M/ALhFa/QsbkCJXRf07Pe4ki\r\nHE/1Nk3cohSibWYZqHssdutHBd+Q\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAEnEBGqOfE69FwAAAAAASTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDA1MVoXDTI1MDkxNTAzMTA1MVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAw9b7oiITgLVh8Yry44fRHl/xMuYtsI0Cg944jlh0S5ljKgUEMvt8/S63\r\nRH9+9eXvbFN4L9EL2+RDhWd5hGyg4gQeKtxO7D/+JUoTIamIl4pXTxhO5oORnS9k\r\ntWp6lc1OfpYnkgzrkFHICKggDtCpQxp7cMtM8evEvY/7WvmJDbAsgSRlBIeyVZqU\r\ndfw4ahzvsNmMfDGx2JBKgB5mndVGyg96yCHy5+7XKOkkcr+NKHdnBM3k546rGlCV\r\nErgPVuUkRxrwIa3xD9BRewoihWG7sbuxny49CrdbDi3WqK0VPSJGZ2y5ipUTwndi\r\n/+QhiK5expoHO0hl20DwRgq74qB5zSs379PcTQz59OvUDMi2fiErDYnCT75X3w1b\r\nh2uGBFIwonYXGHU1s/SaxQlXErGplgkLv/tBPAXu8sk+qANHaY1EfPwpPfOXjIxl\r\nRT95moW0IP+CPmhV0g2ZPKNn0mIRPpf8IzI5O4pLe6xfXDekQnNcGaBY9nN9LBO3\r\noi7pBBNObi17J/ebVg2rScg+KAWVVf09iLF2inpoFxKOJQz//poXo2fAvYVXnXJm\r\n99qJvY8gFyOyg2Cr2x/Wp8yw/u7H4DztXuFMYuPEVpR9/EeLP2bzrpdbJpj+SPT4\r\nU0OmtjVtKNR4aOBNBVWmzxV+WKRBfpkq+pjpRMkgFapXWtjlXV0CAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUluoFkm4uQswgfjWGaL4s\r\nMWhX+14wHQYDVR0OBBYEFBxS0IHKkOkG4KzpGA07z01trd55MIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAa08V3/BsJsIOjn2Qu6zUb0GosfdvggVX36PY\r\n9OZyOn5d2+tPPjG2re+uovdpuLKx1YH0iBX4kIL05yObqKMAv+YO3Ihj4MkcYy6A\r\nk9DbHyQTYoeSfaryn6yo7kLYCz6E+li6HJ4FVx13PxpwqDXWUu+Yf5Kszj56IqHx\r\nTI9LV1ZbqmZYk7fQIPETYENkE23ypgh5snRtqSZYTw6HASkHI4E7NgFkOATnIcs2\r\npLGzcc9vc/QYlj3PT3ciGdpGkz8l/A2MMqC4eleYFTBSX9rNNG0tf0M+5fVF417D\r\nmtqDlglm9bWpgrdLpmcj28f3766EBJBq9zza4M9dAGBWBQx0c8BR9saGATd/U8lY\r\nmlTDhnRdqJvvTbtPzFFmTF5jrANky12jKlaHHTyLETDu6OeDbVEyJNuhj0a+cQ6r\r\nZwYCG/k0WCzUx3MMq1A11uxvseoOmpIqLOGfkEdmBPQXkKC02vyjZkxF0pGPNNcy\r\nBSCIlZ11UtC5ghcZ2Wg/U4bAogTv/XAnjwzLpp5V7mcepzcBagiFlQkdnvUKNI/I\r\nLkerOmrgKe0rgT+ICALZiq7hIyeuM2uthyD3FaBFf62WOtDD6Jfwkg/3LI7of+HC\r\nGZ99J/xaocq6NFYqzD/9H6n0+biogXUJtm7mKhQO3PeLz/1aDIwLfKqZFr3PCStN\r\nvTWqAdQ=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFYLVFiDd8BlgAAAAAAAVjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4Mzg0OFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAxIoR15PqTSSMns55DdeR97gCwVWRoA6zCYbU66RoYrXuHSpcJM+1tnHN\r\n6B2gITXD0iDoTLpuOvRlM+12v0c8cWdzVoHuRuG0k1ViNgSELeNw8SXSQ6jmvgPy\r\nH6fg+NiKLkjYrJuIp5me3/asqMTeO6MOkeimS67PYerzkMYoC7BUEUacludZswsM\r\nFZnsM/vHCjIpzQMGWyUzju2ANT+J41Wz9AmukpPQFNzyq9566BEU/4MJh9Yg5aSR\r\npzI1gU8r4Y9ABdOgjsFnEm8BSSdlWLgalKevYPMLX/FO2rFufFgcNJq3Y8rnAtJD\r\n0k9jt7isXmJgS+JNfANvY7+jXQaCkwIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUOLjGDtr98qbFC/XuACeceItvo7EwHQYD\r\nVR0OBBYEFOXZm2f8+Oy6u/DAqJ2KV4i53z5jMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAYI9s0aXNjS8k6w/pyYwcd8HBPAjpWHJp7vBNsa9rDbau6raD\r\n+QWjj+hO5OKUkNchKIkK3xUc/iDAMNALDLFqUOaVTeMh5fu/e8Pr1AX1R1c5U1Yd\r\nxExItrFARqTCCIQpLz3cTu/9KA5QgUQlnFlrxA9IHq9G6k3TvTB2AngUzXBhNhl5\r\nb8ya7LK3dhfqf2BQHJ7k1XReCJLYMxI6PaG0F6mWTCFNBbBxgjsXeXfjYv2li33v\r\n48ALT/NXFoOTbAOP4EFfLhMDnx2O6cFOKrYT9O+EU64oJ/0MQDQSq9PVos5J+RW8\r\nvD/h2ycPqMnmsjvpJ4pWJZP+YSxy/HWMwbZt/Dv/UobeQqLCIXGnODv87K+1JVo0\r\nO3c1NtGJu61JyXwW8id8VSQuc2NzEr58rOOGMfU3gHZMSNY2gsFs1gqXC6MjtX9O\r\nipJ+dqr7lgRvpDN9bD2kd9CdOWsxz6PRPxOmbUittmpHdABMZuaeKB/5MnxVrpNw\r\nlYtJYXvKRY1V30kjFSsyLv02YYKb8MI/NfWcjMLw4eaEn//ST+sf+LjB9KF8TxBX\r\nxuBUpQVA/TJX9GEqYMZt557A5u5odSVcac+w0/Nn4E6WzFLfxMr1O8OOOQjzlG3u\r\n5BPqprm+utwEHBCU4iVcZOdnSgk1dm7C5xmmTylFRYOlwVrFSPcyKy0+6H8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAEso8JmcB0l1ZwAAAAAASzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDMxN1oXDTI1MDkxNTAzMTMxN1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1FFhjk/dgVlthN00OKObtbEisXfH40OyapM9KcVlUPnMElPROdKi7XPQ\r\nagq+Ry3QLSSZgNWnkahCSxE81oyudrvlhpR7NpcDPZHsYFw6qsEiirml0hc5awSq\r\n+MtFo9pfnr/zQstb7xg8wjduWjANvO3E34jZbfmCyw4gU4TRPIa9rpaV0N14hQTk\r\nKcBv+S12udS181oWcTc66zxVXUHNK15PRv31jElEYQKX8EJWCe6ccJA/cJD282sR\r\noEhfuUvzXHOeWD1jXH+Eh+mKuhLqiQHPJH7TJRMsN77ndtHH9us3Ak4l9AmGNZZf\r\nwNquVrHAiTw9Ai90btckoeMRn8eogQIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBTX/nF7X/NZN2T02QZU2G6DYuwmyDAdBgNVHQ4EFgQU\r\nlUWMsJMswORfcQ0UpecnwcNjm/cwgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQCb7VpPdQaBSKQdwDpgFquVkVtcKzEAwsVlzIENIrlRsOcBgvZlW9QKwgCd\r\n6xvrF9smidaMzlYuxYQypQ0RQEHDKJ1SJQLc1ZtR7fWf0xHqU0cgX3hktDNyN5t4\r\n7rMtYOUhygcZIxVQ2cpkyLoilwnb/q0Y0jOnA7eo0r9K67TJ9CP2m3ZUApzRaCwv\r\nqQE8eNZvngy+613PU11A2EFuTPXoVNb7S3w8amz+mYYnJCBhxf4PdYA/3DZ0q3FP\r\nfFxqKAbuNtXXHFmYn3BBMGSn082Uq8RsAvj5XEkI/xylDlwG3zT+QaIOrJ/06Toz\r\ncT0ewSlyNAB6LzGp/HLTIffhSNBVX8ILs558r6VcnTE21awdkWqnd3PiPkWADD78\r\nDVSb/7QOsBdZp6BKkcDzTc/uaDGahR55UcapkOMBSbngkomK986ITx3yUITn0aV4\r\nBEVbYQQ6b9l/eNHRosiwL52QPnYl6fJRsl0JuUzy9T5DrwGGnRgKQAOmSWPRTdt2\r\n14MWrxbLFRRwvqt2COK82jPTAiZ3XqYSZzZce9bSDsGSm5VpwWz5+xyBYc3djzKR\r\nThctXJrwftNyZD+LBc/4oLOTYLpDB23eI8rvb6Xfm3A8ANucIq2muavxi1A+eyYM\r\nQXwyB2foIV9yhDIA5I1psyJo+CwM9CcibRTjjNL5ghEkoSDjyA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFSoP4knG2YAHAAAAAAAVDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzczNFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApuAstd+jxOmcAhw1KNXa7fDE4SFe/7SdG4avz6VQqep4ofwJwZTxQJNQ\r\nBC7dybKZO2RBiDzzayV9PCxmK9HPRMRmuj68x9BRyoEbVU1tX4HtiBK+hAGiRNQu\r\nPRTYcSs24CgjI3JrxOjNesp8iE8HUVntN8ueXnpTQLSYOR2TmTGM835tkTplflX/\r\n/zPtZvsXSZz+JssQ9SRcXS2t/fPDpKfNVatOmq4iwtX7Q6IO/WCzAyEzacjAFqml\r\n0/PRYT5O+jiRO+TImZ2RD0CB9rP5CYwN2T504drkKteNaT+FT/teBLC+JraDjh27\r\nv24yknl1t8dXCSS6l/UBGBGVk+gr0wIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUVSrR7NlDI9ZN5GcKVaV9JEKwIbEwHQYD\r\nVR0OBBYEFK55wmtdJYgTBvYHCcOXfHuXjx1VMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAbgp2LNvP1OVFkH9JTg9rTMksjvLIpzaqJehSp5+3YNzGl/TH\r\ni3Kg/rbtQaKErwipeLMhmqWFuT9kB22eeyoBSxx3JTzRmKtcJO47IX0qymW04v2i\r\nI2tVWQigwJWtE08Z16Q3NVdgAox6DDnAvmV8QDlPhWdW0gGcszZqFD47SJltU8JJ\r\n6D+xuDl+xUIA5wQ0987HRo4dSx3Vny1cd98GdMepsOnCpfm7ZQDWJUggp8m8T/jv\r\ngj28G4JNV9nsx3TT5D4xFZ0rXUlQNmhJFesprLt8NqOoKqmP40WdqrpVIxlu5pdH\r\naf/uT89gHO3Zy+iqNbCDRB7zSBtaalaqLvGpE0xV3p+xpjY1CujjvKp+rUrGwA1t\r\n7aNRowd45Dn+kESi95bE16V2k54YbRvgkwQgqyFUiissogOtaOwQIjuv5NUMkKnj\r\nWz1S1nsMTwZWQ20pT+SG9IMWxAP+63fLIMxWXSbwkTo1Q7JVbr7ZnbNjPrzwerrq\r\nTx+CgfCjU2TZ2WaqYnKoGlgjiZkVraQ1JYJkEr5N5+12CnAuVNzn7pMs6HUSxc8Y\r\numBjy+KA0I1XMvFerh+fhEVad7kOgOxqE1uLdXZxkOXHC1N4FQlkI65Padcd8dyM\r\n3g+er8suC1gf9/fWU0AlgIqls48Wis2JISOeSsMAi3BDvCIpp5PHbuNfj7A=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFr7ZWQR1r6OSQAAAAAAWjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzN1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEArMu8k7Kq5y6uDXZk0QxV9Ya5K3Mb0/sCyV4fs48XfAgL3YOHYTZ5o1uB\r\n97VZ/oXuenXaDcoDE18WhOavpqjWHc4eb1QeGGCaB0MoijTLGPzqwWRdByW6l2U2\r\ngFzjKWKtFncIj/VW5S98uCDD8b0SX278XKubkKv0Zn3m1E2wVrTvG8Jc/MuXF0WX\r\ntjFRRJPY3keED1zFNEKjckE4ywTV1atTqnKbmj2rcQucHJ4ufZ89Hel/xLL0bFxc\r\nJnW4Ky8lZ4Q+G9brYexh/iEBcSpNQlfLVJrKZMlAwGPcp1SBGxU9GlSV7kE1LLCS\r\njpS5d6/qw4VA+z5y9HsHN225oBhpAQIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFHrWGYUoeWxxdh5g+PNL76IFQhYdMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAU2IUk2qTwWTtRBKzMTaRxYKvTyvU1nyQLxko\r\nA3304lciVsdA86+jhEkvnCwZeAHoOtYuPeQJdeyhYUhVRDAhhJauvE87FB69gM6h\r\nYUnRqiy+vekLrHB/1x8njoLHmcppjOvBzziOPSqvf8s6O8tJ5AjY3398sm5ckH37\r\nVYHa/+bAYCvEsYmgDGN8L25QvXScTmTthSXHlzsCItPpKFs385dsGJnFD0KcQ5c1\r\ngLmV1bdHnrWyy2mqB819CFWtzhnojtzXxZLuEfTBS18u0qoLdN8KvgB2BvfgZtY7\r\nx+fbkiyoZfnZak0Oj45Z9Z/6AQ1uHGSRadAh19mkcrkPwHktc/3M1PJ69dwZn8Ez\r\nASzYFf8QH58i5uxdou73v+5Bd1m5nmtFCyLC6QDtFYH0pkvmafBx7PwyrgTjq2Xv\r\n7eWL0wXESxzY4HpjMDO36ncsLvzI6j4CyG4cpA8F8+9jwizWqmKMQUWt+VMICsP7\r\nRrzCJ35ogFGWF/dC2hjdjBXjcyLaliR5nE+sDx1PVDdIu7y8oBi60+Vzl0+BSf8P\r\nOdssgwciUpWVP+9xf6SZ7D9BPmLwgIJZ4oPc5K7cTOR6ksQQg8fO44fmOCRfVD/T\r\nDj1e39ijjkmcXUvrcu1sh93vbupLKp4Guruj3Le6iQ4Hla6Pr4znFKCzKk1+RrcQ\r\nVnsaqio=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFOufo2CImJDvAAAAAAAUzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzYxMFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAz2IfhGnsNWpW1cYZrm7f0KG7FjkmtAufsz6xSPNM86b5+jPDUpkOb7U7\r\nj4cWGBVdrYYqWUkziZmWPyl9WLw43KGzaMT3xTnm1xWyok8Z1D/ytHfxFI5t+Xzk\r\n+pcWwIZzuElzEzAQYnVMyfdxD6sM2winZ1ehDpvJeLTPcuTPf5fDYpcrnebODQ+r\r\nnsvq7oU7bHp/jTkGP/2hNzNLR7QJq+rOaHTHDky5yWrsMdgGj0dJXmId6RIfgbeq\r\nJyz7pK0OnoqopPXzZcEQJGNdh9tTh0DWpPGkCWvp4yC2Sd6VSDIApnIpXRn5WNGc\r\n79eeuL9eKvQ5W1zq3/j5HlmwZvPOE+3kPe9r1+WMazNqbhmVk0gUfZX+cnJcy8ZH\r\nqZhjCnW1ihCHzNxMQypQLrnOgVCBkkkRj466iLGDMGL5IyTji2AAp50wMiZuVQX6\r\nwY4kcKqLsjSPpDpHGIie+58/dh9xFgqJzV0kNbAvehRlbwzQnRJWzr1UgZJgjluN\r\nlLpJwTmUIe3I4FzbwrzGMOltYu8XbdFAfyPM4fcfqJwFTF2xI5OYNC3Rcou9OSQT\r\no+ce9/rON//vZNZmQ+TPQ3nkPoKus+JX3EFJbevLeG0IvvC8c2ABwv6cNcvbSSoV\r\nXP+XaBLuXe5A3G+Tdr33bVhKKnbKiravs7sEeKvXVrpDgilOuG8CAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFJbqBZJuLkLM\r\nIH41hmi+LDFoV/teMB0GA1UdDgQWBBRIo61gdWpv7GDzaVXRALEyV/xs5DCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAArPH6tJjsM3VsG3zdh/1Rh3LDz4\r\nDqyUEJEXiM+Sa1kCncVvIqI5GkFKGM3Ur3hdx6xxe5F9gPvUdL22Qf0DLaOclksk\r\nO2FABXqDRv0P7k5yyryzTM/RmLhleut3Fc8BUdfrkmif8Znyxp12sRxK0UgEf6iI\r\n+dEZugVpwAl8IRUk9O201Q87q3zI30NgPT2BJiDycKaKQJF634qatubvL28JaiOd\r\nk3uxWfcqKjO0oeSJ7pxgAiH1rCah7UN5T2d3V4AmDQGLPo7lwX1SKZewa10PnF0X\r\npjE+8welxOK+4pEPl2kRdMDpr9/XPXWpAPt2h67Z0j7x5c7nDU/eZ3UjRkJePoIQ\r\n5aGZuxZ2diziI4JWhbW+kF9M8T0CM1EUIcQV+8wvvualM1q0IN+SJ1X49tt8n3y5\r\nfEAur2599a16z7zg4uF1xI/SafWXMjC8MObCHjR5xodSQ7IxvGyl+6uIkENsiQBF\r\ncuM55MMUELl0VM0+n7Kv5K2Ur+heLzNlTTy2eoiU048g8iQmZzP5C9y4hUE3rYgJ\r\nRxP9ovHl2km91RDTei9aANUGIB8U2uFA7pxe0G8Kp8WSF0a2DtZu7sf2lGjKvP+7\r\nJGaMrJn2bJW6cDEPgfyKCio8kCVtFg7QTtkaZjF5J6AIB0B7aHNPKlAE2T8O2/Z7\r\nJIvM+ijPG5W96tZP\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFjSjQKPPAEB6wAAAAAAWDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4NDAwOVoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA3Pi3nd+o2ItxXWvhyaIDXRbrxgB1wqI0wK/wgC3vs2vSbIHdSuOrtac+\r\nmR6Ag8rE69QQOykN2KJIQI53O0egLWUqjDMa43Fkh1EWTAD0B6snyV91Lt24YPPq\r\nOyJZLhGCtYJoQfPQxZjgW0PknDvWCGIBPFacj86c84QzQdmNBMPrObC21S/ilK+H\r\nGjwcYx9Z3dSeK2CPLLkb3C0HzWWLBL5lFHrdM7qphSAJ07g8/ggis/b4aHdWOlN3\r\nfyySWbuTLQnX8J1XZdWGc+7Z60gzt2jwUc2kgpjcpHvV7QYmy141rjiQyFDNUf7x\r\nFBeFIpLDPoxcfAsOo/dtVfxp/dNMqfAEC27QrUogtIUOcCaSZ5r09ECOuBW6Mood\r\nDIx4bUEhXOJmZBtpzRXhVVKTC7Aqs3PTrPehspCxOclx7c8aESASwj6SSWpDQi+x\r\nrKm2DgTIgvVIdyBNdKhxhGNyl1t9jTEMAdwDmY6pN0kMLCEdM6v9fG0nvtFFLU/m\r\nj9Ojh8Rtf3YWiUPd2cI62tVoXckaP3TbdCNmGysT8ShFNEypEINWIl49U7V00Iec\r\nOveCbkfsnKnT/o69znrWUH+Pt65GxrqO5A+To6WU83OqLxljS/cyBTQmrDh70Dgz\r\nKXDXN3JVW93RLoXuNyAhd1nUOjKOI2tmPhEC4Cz7lqmVxDsQaZMCAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFDrHw8rI3g3T\r\nksAnici+l0dPRWlgMB0GA1UdDgQWBBQ5cV2pFRAtxN9+L1luQE3A3+82mjCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAI68ze1N9ZqKBI7Q7BXGlc0k99wW\r\nCoCZu0m02crvYeITKUC/eizH7s6Sx2Kk5Hnzz0Rzc8G8NpiWEfp7ppKeP1jOMv11\r\n7P1KB6IHyRLdW7vAIBiJy1qhbLAxseR7xkvDKv9yjZYL9Q7XtlSgrd9NuEiuFsfj\r\n0ANzVf/Ea4br00gGc8ALfnvgGE7eUdBNqWKTzHcQREdjJPRMUqTYqcvd4qQbRXZt\r\ncXLt4Fr3pXcwG1UExrz3TP4ueyrqGot/OFDvMihs6Tak0qjYygT2dC3bEOBg3GSQ\r\nDdQVzBFO98f62/l51TBlWizuw3D4/dKIPfQU1Qt7sr9e7CLbecoO8EVtyt/yGRr1\r\nD4BPBGyEzC6QoqCo5Nh27yG+DxFtAGdm/vLaFeJOVM3q2d6nL1FvNzlHTHfOYPJ3\r\nNwHB30X9TpdRqoBLM5UC0m/ybKj4ygXAZBlkJXMO/bjtpqyidJ0SaFuE8EdV9YoJ\r\nKUmBw1ZuZd5GHbc+Ilz82WX+JWZ0efU/f+75Ywvntu/3s0OsnpVoqrqM7TDdzE0d\r\nwRiZ+mvtgIwp85+et1iEdaWPj+d6LfJxpDDCPhaqh9hnNIkZFptndwDwRE2MV9Wr\r\nlUCSA96/2ubHsKt4E2D96KvNog6MKdyEGz1sZep1yZKqE4cnNzGNBGRel0BRa2MK\r\nyTOQsCbnpQGhEz0m\r\n-----END + CERTIFICATE-----"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFlFSsCTnaMEFgAAAAAAWTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzM1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA0E8VPmTCi+s/ukALr8kiz9n0QMveOlaFztd/3QikdEPvOujCuE/CXDKt\r\n0KhyGBUshmHGEC580aoe2Ze2gBJ/Dhs8FjdCjH4IyWU22QOervNkIc2Xd3EMxVZL\r\nYmWmDp5yfa0DwHqsqLq1PLwyk9BfYhh2gp9Dp+vECu4FzvVoZd73UaTpvcQKDsXA\r\nTVR43QC8AiL2AiHgOB3xE75MR/kI1OA7mTaOK8uZbQZCtyG1VMtNL+Q4Di0nB9cD\r\ntqfQj1/UCA76Nr9a7p/TUnck94zlsHE5RVGvDy3GKpa4cmCb+nRpF+ybZjuw8fPT\r\nCY5JGTLZreJMgk+Tej7iN+BYyn4Q2QIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFPFGaMbxw/ArLX2LauGy+b41/NFBMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAD6YslCi5IxgKWQYVzHClxGTpTXEarOPDACuQ\r\nnZIgM4hbk0rMqW4aHFd+paZmMUvNU0HWtIq7aAbNZGCdTrb6g9xjQKrdivWr24BZ\r\nBDxlYkU1tNvdQmafd/RESZ+TpElbuBw2EW0qtK2K+BfL1fTcwpIWRoqWcZUc/CzX\r\n43yuA3vE9sw7/HCDOEQF+QW12B6LDt2Y6DR2y8ZjYsIM0X99mgCE8/HYL4AR3+mA\r\nHjlncC3qlXWRUk46kz2yU4gu0k4P5vexNuGvU9uHvmqQERhhHYkAiW5pwCNFdZDw\r\n95vcnWocRk5TaOPp74v06msx58qS9Re9Fz5xwp6dGGqvWgcF9UJtVVyXMGYB1/1+\r\nyd5n8VpvHVWlrPNpcT0p9YLeou/HKZIiekolUKL6SqCbDFwSUMPM1xWSK6RbphmT\r\nJZdAoKKLq7c/4bFPOxeKvBjT6PrWP64ktWN1Z+AYQlBp1rK7A/ZkAOh8l+17K4VJ\r\neb1whd4SmNSnZbv9jhOeWhrbRsxmFJ1SFHhoBhS3Q/WZWMJtLu2Hv1RHnqRgLD3y\r\nlaC9qyj44pXka/MiLauGl0qjRsO6i0ZV/nU43/eZt4EhWewfmXRnfNlXA/u6abVS\r\n3lkNTlQaJAmTijbKk4JI0qQl4e+xZloOXJVNiqKgYSh3N93Bi+8ROZCLqqpwrO+C\r\n8C5Y9Bk=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIFVjCCAz6gAwIBAgIQJdrLVcnGd4FAnlaUgt5N/jANBgkqhkiG9w0BAQsFADA8\r\nMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAwDgYD\r\nVQQDEwdhbWVyb290MB4XDTE2MDUyNDIyNTI1NFoXDTI2MDUyNDIyNTcwM1owPDET\r\nMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEQMA4GA1UE\r\nAxMHYW1lcm9vdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALv4uChY\r\noVuO+bxBOcn8v4FajoGkxo0YgVwEqEPDVPI6vzmnEqHVhQ1GMVeDyiRrgQT1vCk1\r\nHMMzo9LlWowPrzbXOwjOTFbXc36+UU41yNN2GeNa49RXbAkfbzKE/SYLfbqOD0dN\r\nZLwvOhgIb25oA1eAxW/DI/hvJLLKh2SscvkIyd3o2BUeFm7NtyYG/buCKJh8lOq8\r\n0iBwRoEoInb0vhorHaswSMmqY1g+AJndY/M7uGUqkhDGBhLu53bU9wbUPHsEI+wa\r\nq6WypCijZYT+C4BS5GJrEPZ2O92pztd+ULqhzNRoPj5RuElUww7+z5RnbCaupyBY\r\nOmmJMH30EiRSq8dK/irixXXwJraSywR5kyfmAkv6GYWlRlxFUiK3/co47JLA3TDK\r\nN0wfutbpqxdZQYyGfO2nZrr5JbKfSU0sMtOZDkK6hlafV++hfkVSvFfNHE5B5uN1\r\nMK6agl1dzi28HfJT9aO7cmjGxl1SJ5qoCvcwZNQ2SPHFdrslcwXEFOMDaEzVOA3V\r\n7j3+6lrT8sHXg0sErkcd8lrBImfzhLxM/Wh8CgOUNeUu3flUoxmFv3el+QWalSNy\r\n2SXs2NgWuYE5Iog7CHD/xCnoEnZwwjqLkrro4hYWE4Xj3VlA2Eq+VxqJOgdyFl3m\r\nckSZ08OcwLeprY4+2GEvCXNGNdXUmNNgk2PvAgMBAAGjVDBSMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEBMB0GA1UdDgQWBBQpXlFeZK40ueusnA2njHUB\r\n0QkLKDAQBgkrBgEEAYI3FQEEAwIBADANBgkqhkiG9w0BAQsFAAOCAgEAcznFDnJx\r\nsXaazFY1DuIPvUaiWS7ELxAVXMGZ7ROjLrDq1FNYVewL4emDqyEIEMFncec8rqyk\r\nVBvLQA5YqMCxQWJpL0SlgRSknzLh9ZVcQw1TshC49/XV2N/CLOuyInEQwS//46so\r\nT20Cf8UGUiOK472LZlvM4KchyDR3FTNtmMg0B/LKVjevpX9sk5MiyjjLUj3jtPIP\r\n7jpsfZDd/BNsg/89kpsIF5O64I7iYFj3MHu9o4UJcEX0hRt7OzUxqa9THTssvzE5\r\nVkWo8Rtou2T5TobKV6Rr5Ob9wchLXqVtCyZF16voEKheBnalhGUvErI/6VtBwLb7\r\n13C0JkKLBNMen+HClNliicVIaubnpY2g+AqxOgKBHiZnzq2HhE1qqEUf4VfqahNU\r\niaXtbtyo54f2dCf9UL9uG9dllN3nxBE/Y/aWF6E1M8Bslj1aYAtfUQ/xlhEXCly6\r\nzohw697i3XFUt76RwvfW8quvqdH9Mx0PBpYo4wJJRwAecSJQNy6wIJhAuDgOemXJ\r\nYViBi/bDnhPcFEVQxsypQSw91BUw7Mxh+W59H5MC25SAIw9fLMT9LRqSYpPyasNp\r\n4nACjR+bv/6cI+ICOrGmD2mrk2c4dNnYpDx96FfX/Y158RV0wotqIglACk6m1qyo\r\nyTra6P0Kvo6xz4KaVm8F7VDzUP+heAAhPAs=\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/frross-debug-1445877-rg/providers/Microsoft.DocumentDB/cassandraClusters/frross-postman-canary-cluster","name":"frross-postman-canary-cluster","type":"Microsoft.DocumentDB/cassandraClusters","location":"Central + US EUAP","tags":{},"systemData":{"createdBy":"frross@microsoft.com","createdByType":"User","createdAt":"2021-10-07T19:33:18.8981899Z","lastModifiedBy":"frross@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-07T19:33:18.8981899Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"frross-postman-canary-cluster","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/frross-debug-1445877-rg/providers/Microsoft.Network/virtualNetworks/frross-debug-1445877-vnet/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAE5Hd9yskSH1BgAAAAAATjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDU1OVoXDTI1MDkxNTAzMTU1OVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA5UFGOQgmohqJHkbMMcN4cnK+mAoScYUAR/njrD0x/GyFeTko+QXMU1JJ\r\nIePmVcugmyO4xX5ITShZWy+/qPAWy3vwT6HzBdFq5eTGbkbFCrQdh5w1+jwOApMe\r\n9ZDlMDO+RUtJe1XxWqi3KRY0e/pJmpOk4IUEjx6wxvv5MnSWhMa7aepnkuCS8lvF\r\nNl9D5oUGIYvoDUgVMQSBazQP2zjRunMT9JOopFKnZE+L7NY+XDtla3I1uZeMeakA\r\nfqkNjx6lkUIgcHPhSMy5XHBpOeFdSDjBA8dNk6E3VSlLzvPcHdaHI7QrmK/43wzf\r\n+kHpDdTXx8EdOqm+pLHoKLWcjw/P8O9RAMiXefxGnQKNuP8T+/prskR5esucJQkj\r\nrWSu7W7YycmIg1rPCd7Qw005/sc58eLPN+Xrj/Aw7RSR0A719CPZMjoSfKTphSEK\r\np+ZB+5j/V3VEzjGbL6XFUezFfaIZ+A7ZtkaEQYDH0fVVziPnhQhJB+Uym7a5arB3\r\nqiMMw7Yjos6iWkkOaqhaCHuN1zC374xsBec9mrJ7bfuLTNtBEKC1PhdZrJM3UDCo\r\n76v+3mnKouN/7vyVkbiLNb27MXRigXFbO02opR8prTkvv3af+iq6+xjmVWZhsILI\r\n0HIBk9/HoMZCCb9e95RQVmVwVNrwa24neVWl+JEw50sqLMapsGkCAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUOsfDysjeDdOSwCeJyL6X\r\nR09FaWAwHQYDVR0OBBYEFEKY1e9GMTrmL0fNVVel5jUfu/yRMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAuaX699r+ayL7JphKgdiDuy4iPTwf7fTkUsLx\r\n7ixBzvnUrUASdS9GJEkpsewdipRfMycn3UXatnQ6rudCqBgsExJzHBGlokhvVaZK\r\nue0oIlJstnKQDOJCpJem9NkvwALP5z3WZoqYf4EaaQXUkMAJJ2qxw+mksSBEu+MJ\r\noxgbStKv98q28ypOVLjaFNH/VbtAG/rIcqNyOdjAPcgMcohe7lGO1WQtFxPxtzvS\r\nZfgao/ZjWeNDFzy8FSInim1q69Syl3Y4dzeAlG6PiC8t7upDQzo2AJxI1tW0AkKV\r\naJIS9rGZquLN5MTbYozjEyzMvSEYFEpx+7YKQGayHz3eCGH4BzD43YPt20Cm4BMN\r\neyV64+d9PufCA2tzrIQ+VJhsZKb6qRgV+Bp6AfpgeyU6oRkqsWKJyKyzp6o0D+Si\r\nq3gYJdD3W0+X1jUJcQuywYLRg78rVE3A6VJ7RIEjXARQV19hJvxchCoqfbny/0bX\r\n9Bb3Rtr1OAYhUml6Z6JdfnH33KfEJvFa4wlKRBxpuw9gMG5ydOsbZ3YIJDWccTLH\r\nQZWJk/Lakd/+uLPWOzzWQCf7nPapwSRjtfRRLZoX49PIQkrGM3dpLLGktC+sg8bc\r\nvQ2bO79bKJazcsKuNK0dOpepIBA1mMD81DphYmc/RMF9KXKdKz4Ugh4HNqkltIsG\r\nEtaYPCM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAE2e+Zx9LtWjEwAAAAAATTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDUwOFoXDTI1MDkxNTAzMTUwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1RZFKUUXNWXgbh7dm52Irso1hGPDEL9ZZXYz0civ0AAlDu9P/1okXVpc\r\nOPQnRxE7e7O8roTSctA4MTBGFIjrCythVzk6MJC1bgGv7qwCV6o5P4zVSxQrHPx+\r\n2DPDIZlt3UV4RNLuKVvSZdzQt1UsxUOxvTZ/0mO22d6mcspf3I5Xt5h+7WlTgHAy\r\nWvvlpuX7LR8yTK/um4526bdhUG98I2nEURH2vnNSt3/Dbt1R6qoPMja0HhghuOtY\r\nt7Z77nyI2gOY2fRu3oM15Xqe8b3Qwx5IsSV/pTWJ34VPz24TfUmCQOVtu/m84ayA\r\nwSZ754d+JvkyPSdINV3tuLtbo/QVewIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBQbRewlXgZoN1BD7V/nign/FlWETTAdBgNVHQ4EFgQU\r\nvZx3N/n1PWYwyjVonISvG5ZVEL4wgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQBFtFQSE7TjElKEmwHyydrA/UEAzho7rEMy2lvNr2tgX/7WVWDqmDrTK4La\r\nm6/MGOUBYbF334Ywvprij/UoSpyMEq5HgXiCBxOgyUPSZx8x+XyINgCujVXRk9za\r\nPh1lXpYCV2qhIYAhazeprDYzX2im0Jwe8X/Xsl0kzgs3TE7medDW9CVEYS+T7SqG\r\ntmXhOg1FW04yUM0+Z73ZQGF5oqnE76kzpLvfn+YWA6KbLfH84yTpqylAD5UFvfeW\r\nMRoNUUckpsteddNba90soUzxeRwU0Loxj5Qsds2gB0tSIpVh330BxEDTIJ73FZIv\r\nvURqyoDor+Eu1NOVk3sdCM5nXuN38dc0a9fsSRoJkbQYTP9UNJPcUDO3kZoYWNxD\r\nWrn5J/ltaxPc1o7+USSm02C023HIrWBJkfnepIZKV8m7wkddcygJ6FQkxFU+NQUW\r\n+a91tIw3HTEHvmNlJddPmjgnE3k6GS1NLOC5IV/s1s4sSME3QYQAt+zr5TKRdZ06\r\ndBOSXrz66pVpkR2wuAvlCEuFk7gaBrKz4j+3wJ9CPhETezARvgpzQCw9es9y2qde\r\nO1rHPYa6IRtmjcVDvxfmjei66bQwoapDH/OMS6sPqqqn53l9g4HDDgWywWn9ad51\r\nL5NAvQYhHwSCG0E2Os5mUFYM56ZVA4WHVUn7NZsAXGnDtIwlPw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAACbGTID3uXpE1wAAAAAAJjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE4MDMxOTE4MjcwOFoXDTIzMDMxOTE4MzcwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAvBsRcCD4Z38LQPG73ci9jIpQv5tVQh8lLrcQ9lO2lH6pUVWi7T7jCyX/\r\naCSmit7fT6seN/kf6LP0hpgsU/wxMMv4c4+w1M16EiRc6GPJtSPNszl8ZNAzZj39\r\nxeJnAMhPzeABRLgzYgLH+9R3k8sIJMhSjcUfp63GAhKtdqhQeTOs7m87REtmAdo7\r\neZh/Ubn4HR1ZxAswmoWmMxMZw1KZj87395IxE3Ybj0m/V8dyskpxWdAzkvGeO//l\r\nb4FfAHVCCix9wsijqomj+jeJPHR/AF/5+MZXjoNDs6/+UMdSrEqa2fi8910J6ogL\r\nSMdL7NdV77U5551wZxeUwSEHUc4qkQr9cFAdHcdYiMnIrU28zk7O3yQdsyWdrTqx\r\nTbkoYn36Ji+aSyzs/u/Zh3pAWw9IvLaoq254Rpf1SWsvufE2YXaP6kUmvOE9Qrnt\r\nQ138fwe9CmPUT9I/cM0v16BDvELEH3KGsWez8WRFA5RAB5pPDKjMyZ7mNl+0+EDv\r\nMq+KYjtc9uWJoRsRe8mDnVt2JGRBazTCFd/m5HGywdUvg/fZyVfBrvsRhcahMXn+\r\nb+a6kw+gMY29dcNutHNl1ZuKbwUuvp0ShWnauFVqMSRP6kSgXjzM0Oez2CHEtnX7\r\nNTKy9+eXsqxkzVXop81HCR7QCDlKPkc78IRETKfQA/nHdu2iOd8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQonG1RafqmxKhDxP+NNvoz\r\n3/1FMDCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAJFaZ9bHSEXBMKUi\r\nxLJgRr0yPOBbkZAHGsXGsAAdXnsAcmRZnoMsJZwHJY9qa2SDdjWzCnEuk50KJ0Rm\r\nvePgWmDtQWwyfFT//JIccaFgxYsU2SjdHEi0DmRElJtLkYQorDjkqn8s2T8y95f0\r\nmdcNme7cQ8PsjawgV1hb7r1I0bRh93M4pDzRt0g08RoFtMGuqRdU3roMDbuid5Hj\r\nBnoT5MdJlYzklABw+JPOIFeqZ0LMq/RPyk8Dpzo7m2dSc78GitdNnWxj4Ku6l8lb\r\n0OHX3BL1eVKyKi8Vta3BjpzWuMQompgdzp1Eh+mDyfKV/+dlfIEPJI1stEHIEKWR\r\nR5yt35+RGXrmsmAwTZT5mcJk4JdAMhVnRnyWvxPzieYCR9DcIaT6+NBBYzQegOG+\r\nIMnLpnZp6qhbG7Nq9MXCqRY2ooojLCTLTCx8R2cqdYonJpB4lSkYMFYbuV7HoiNr\r\nXdZm0gMRi2DmIaZ7cxXUn0BmZd/lXSXNKdxwHKecu0F8ByT1Zlg3NgIhCb+6SDYB\r\nlOv5YhnwSd00aUaSSYc2dKJmR2yfCKT5Li9wdtjlB6rYIb7vHRl3x98OIVE+O20S\r\n1jQEqRLzkaDIWOA8D9VeuuIW05tahms61dDi5gx7M/ALhFa/QsbkCJXRf07Pe4ki\r\nHE/1Nk3cohSibWYZqHssdutHBd+Q\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAEnEBGqOfE69FwAAAAAASTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDA1MVoXDTI1MDkxNTAzMTA1MVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAw9b7oiITgLVh8Yry44fRHl/xMuYtsI0Cg944jlh0S5ljKgUEMvt8/S63\r\nRH9+9eXvbFN4L9EL2+RDhWd5hGyg4gQeKtxO7D/+JUoTIamIl4pXTxhO5oORnS9k\r\ntWp6lc1OfpYnkgzrkFHICKggDtCpQxp7cMtM8evEvY/7WvmJDbAsgSRlBIeyVZqU\r\ndfw4ahzvsNmMfDGx2JBKgB5mndVGyg96yCHy5+7XKOkkcr+NKHdnBM3k546rGlCV\r\nErgPVuUkRxrwIa3xD9BRewoihWG7sbuxny49CrdbDi3WqK0VPSJGZ2y5ipUTwndi\r\n/+QhiK5expoHO0hl20DwRgq74qB5zSs379PcTQz59OvUDMi2fiErDYnCT75X3w1b\r\nh2uGBFIwonYXGHU1s/SaxQlXErGplgkLv/tBPAXu8sk+qANHaY1EfPwpPfOXjIxl\r\nRT95moW0IP+CPmhV0g2ZPKNn0mIRPpf8IzI5O4pLe6xfXDekQnNcGaBY9nN9LBO3\r\noi7pBBNObi17J/ebVg2rScg+KAWVVf09iLF2inpoFxKOJQz//poXo2fAvYVXnXJm\r\n99qJvY8gFyOyg2Cr2x/Wp8yw/u7H4DztXuFMYuPEVpR9/EeLP2bzrpdbJpj+SPT4\r\nU0OmtjVtKNR4aOBNBVWmzxV+WKRBfpkq+pjpRMkgFapXWtjlXV0CAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUluoFkm4uQswgfjWGaL4s\r\nMWhX+14wHQYDVR0OBBYEFBxS0IHKkOkG4KzpGA07z01trd55MIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAa08V3/BsJsIOjn2Qu6zUb0GosfdvggVX36PY\r\n9OZyOn5d2+tPPjG2re+uovdpuLKx1YH0iBX4kIL05yObqKMAv+YO3Ihj4MkcYy6A\r\nk9DbHyQTYoeSfaryn6yo7kLYCz6E+li6HJ4FVx13PxpwqDXWUu+Yf5Kszj56IqHx\r\nTI9LV1ZbqmZYk7fQIPETYENkE23ypgh5snRtqSZYTw6HASkHI4E7NgFkOATnIcs2\r\npLGzcc9vc/QYlj3PT3ciGdpGkz8l/A2MMqC4eleYFTBSX9rNNG0tf0M+5fVF417D\r\nmtqDlglm9bWpgrdLpmcj28f3766EBJBq9zza4M9dAGBWBQx0c8BR9saGATd/U8lY\r\nmlTDhnRdqJvvTbtPzFFmTF5jrANky12jKlaHHTyLETDu6OeDbVEyJNuhj0a+cQ6r\r\nZwYCG/k0WCzUx3MMq1A11uxvseoOmpIqLOGfkEdmBPQXkKC02vyjZkxF0pGPNNcy\r\nBSCIlZ11UtC5ghcZ2Wg/U4bAogTv/XAnjwzLpp5V7mcepzcBagiFlQkdnvUKNI/I\r\nLkerOmrgKe0rgT+ICALZiq7hIyeuM2uthyD3FaBFf62WOtDD6Jfwkg/3LI7of+HC\r\nGZ99J/xaocq6NFYqzD/9H6n0+biogXUJtm7mKhQO3PeLz/1aDIwLfKqZFr3PCStN\r\nvTWqAdQ=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFYLVFiDd8BlgAAAAAAAVjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4Mzg0OFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAxIoR15PqTSSMns55DdeR97gCwVWRoA6zCYbU66RoYrXuHSpcJM+1tnHN\r\n6B2gITXD0iDoTLpuOvRlM+12v0c8cWdzVoHuRuG0k1ViNgSELeNw8SXSQ6jmvgPy\r\nH6fg+NiKLkjYrJuIp5me3/asqMTeO6MOkeimS67PYerzkMYoC7BUEUacludZswsM\r\nFZnsM/vHCjIpzQMGWyUzju2ANT+J41Wz9AmukpPQFNzyq9566BEU/4MJh9Yg5aSR\r\npzI1gU8r4Y9ABdOgjsFnEm8BSSdlWLgalKevYPMLX/FO2rFufFgcNJq3Y8rnAtJD\r\n0k9jt7isXmJgS+JNfANvY7+jXQaCkwIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUOLjGDtr98qbFC/XuACeceItvo7EwHQYD\r\nVR0OBBYEFOXZm2f8+Oy6u/DAqJ2KV4i53z5jMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAYI9s0aXNjS8k6w/pyYwcd8HBPAjpWHJp7vBNsa9rDbau6raD\r\n+QWjj+hO5OKUkNchKIkK3xUc/iDAMNALDLFqUOaVTeMh5fu/e8Pr1AX1R1c5U1Yd\r\nxExItrFARqTCCIQpLz3cTu/9KA5QgUQlnFlrxA9IHq9G6k3TvTB2AngUzXBhNhl5\r\nb8ya7LK3dhfqf2BQHJ7k1XReCJLYMxI6PaG0F6mWTCFNBbBxgjsXeXfjYv2li33v\r\n48ALT/NXFoOTbAOP4EFfLhMDnx2O6cFOKrYT9O+EU64oJ/0MQDQSq9PVos5J+RW8\r\nvD/h2ycPqMnmsjvpJ4pWJZP+YSxy/HWMwbZt/Dv/UobeQqLCIXGnODv87K+1JVo0\r\nO3c1NtGJu61JyXwW8id8VSQuc2NzEr58rOOGMfU3gHZMSNY2gsFs1gqXC6MjtX9O\r\nipJ+dqr7lgRvpDN9bD2kd9CdOWsxz6PRPxOmbUittmpHdABMZuaeKB/5MnxVrpNw\r\nlYtJYXvKRY1V30kjFSsyLv02YYKb8MI/NfWcjMLw4eaEn//ST+sf+LjB9KF8TxBX\r\nxuBUpQVA/TJX9GEqYMZt557A5u5odSVcac+w0/Nn4E6WzFLfxMr1O8OOOQjzlG3u\r\n5BPqprm+utwEHBCU4iVcZOdnSgk1dm7C5xmmTylFRYOlwVrFSPcyKy0+6H8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAEso8JmcB0l1ZwAAAAAASzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDMxN1oXDTI1MDkxNTAzMTMxN1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1FFhjk/dgVlthN00OKObtbEisXfH40OyapM9KcVlUPnMElPROdKi7XPQ\r\nagq+Ry3QLSSZgNWnkahCSxE81oyudrvlhpR7NpcDPZHsYFw6qsEiirml0hc5awSq\r\n+MtFo9pfnr/zQstb7xg8wjduWjANvO3E34jZbfmCyw4gU4TRPIa9rpaV0N14hQTk\r\nKcBv+S12udS181oWcTc66zxVXUHNK15PRv31jElEYQKX8EJWCe6ccJA/cJD282sR\r\noEhfuUvzXHOeWD1jXH+Eh+mKuhLqiQHPJH7TJRMsN77ndtHH9us3Ak4l9AmGNZZf\r\nwNquVrHAiTw9Ai90btckoeMRn8eogQIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBTX/nF7X/NZN2T02QZU2G6DYuwmyDAdBgNVHQ4EFgQU\r\nlUWMsJMswORfcQ0UpecnwcNjm/cwgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQCb7VpPdQaBSKQdwDpgFquVkVtcKzEAwsVlzIENIrlRsOcBgvZlW9QKwgCd\r\n6xvrF9smidaMzlYuxYQypQ0RQEHDKJ1SJQLc1ZtR7fWf0xHqU0cgX3hktDNyN5t4\r\n7rMtYOUhygcZIxVQ2cpkyLoilwnb/q0Y0jOnA7eo0r9K67TJ9CP2m3ZUApzRaCwv\r\nqQE8eNZvngy+613PU11A2EFuTPXoVNb7S3w8amz+mYYnJCBhxf4PdYA/3DZ0q3FP\r\nfFxqKAbuNtXXHFmYn3BBMGSn082Uq8RsAvj5XEkI/xylDlwG3zT+QaIOrJ/06Toz\r\ncT0ewSlyNAB6LzGp/HLTIffhSNBVX8ILs558r6VcnTE21awdkWqnd3PiPkWADD78\r\nDVSb/7QOsBdZp6BKkcDzTc/uaDGahR55UcapkOMBSbngkomK986ITx3yUITn0aV4\r\nBEVbYQQ6b9l/eNHRosiwL52QPnYl6fJRsl0JuUzy9T5DrwGGnRgKQAOmSWPRTdt2\r\n14MWrxbLFRRwvqt2COK82jPTAiZ3XqYSZzZce9bSDsGSm5VpwWz5+xyBYc3djzKR\r\nThctXJrwftNyZD+LBc/4oLOTYLpDB23eI8rvb6Xfm3A8ANucIq2muavxi1A+eyYM\r\nQXwyB2foIV9yhDIA5I1psyJo+CwM9CcibRTjjNL5ghEkoSDjyA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFSoP4knG2YAHAAAAAAAVDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzczNFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApuAstd+jxOmcAhw1KNXa7fDE4SFe/7SdG4avz6VQqep4ofwJwZTxQJNQ\r\nBC7dybKZO2RBiDzzayV9PCxmK9HPRMRmuj68x9BRyoEbVU1tX4HtiBK+hAGiRNQu\r\nPRTYcSs24CgjI3JrxOjNesp8iE8HUVntN8ueXnpTQLSYOR2TmTGM835tkTplflX/\r\n/zPtZvsXSZz+JssQ9SRcXS2t/fPDpKfNVatOmq4iwtX7Q6IO/WCzAyEzacjAFqml\r\n0/PRYT5O+jiRO+TImZ2RD0CB9rP5CYwN2T504drkKteNaT+FT/teBLC+JraDjh27\r\nv24yknl1t8dXCSS6l/UBGBGVk+gr0wIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUVSrR7NlDI9ZN5GcKVaV9JEKwIbEwHQYD\r\nVR0OBBYEFK55wmtdJYgTBvYHCcOXfHuXjx1VMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAbgp2LNvP1OVFkH9JTg9rTMksjvLIpzaqJehSp5+3YNzGl/TH\r\ni3Kg/rbtQaKErwipeLMhmqWFuT9kB22eeyoBSxx3JTzRmKtcJO47IX0qymW04v2i\r\nI2tVWQigwJWtE08Z16Q3NVdgAox6DDnAvmV8QDlPhWdW0gGcszZqFD47SJltU8JJ\r\n6D+xuDl+xUIA5wQ0987HRo4dSx3Vny1cd98GdMepsOnCpfm7ZQDWJUggp8m8T/jv\r\ngj28G4JNV9nsx3TT5D4xFZ0rXUlQNmhJFesprLt8NqOoKqmP40WdqrpVIxlu5pdH\r\naf/uT89gHO3Zy+iqNbCDRB7zSBtaalaqLvGpE0xV3p+xpjY1CujjvKp+rUrGwA1t\r\n7aNRowd45Dn+kESi95bE16V2k54YbRvgkwQgqyFUiissogOtaOwQIjuv5NUMkKnj\r\nWz1S1nsMTwZWQ20pT+SG9IMWxAP+63fLIMxWXSbwkTo1Q7JVbr7ZnbNjPrzwerrq\r\nTx+CgfCjU2TZ2WaqYnKoGlgjiZkVraQ1JYJkEr5N5+12CnAuVNzn7pMs6HUSxc8Y\r\numBjy+KA0I1XMvFerh+fhEVad7kOgOxqE1uLdXZxkOXHC1N4FQlkI65Padcd8dyM\r\n3g+er8suC1gf9/fWU0AlgIqls48Wis2JISOeSsMAi3BDvCIpp5PHbuNfj7A=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFr7ZWQR1r6OSQAAAAAAWjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzN1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEArMu8k7Kq5y6uDXZk0QxV9Ya5K3Mb0/sCyV4fs48XfAgL3YOHYTZ5o1uB\r\n97VZ/oXuenXaDcoDE18WhOavpqjWHc4eb1QeGGCaB0MoijTLGPzqwWRdByW6l2U2\r\ngFzjKWKtFncIj/VW5S98uCDD8b0SX278XKubkKv0Zn3m1E2wVrTvG8Jc/MuXF0WX\r\ntjFRRJPY3keED1zFNEKjckE4ywTV1atTqnKbmj2rcQucHJ4ufZ89Hel/xLL0bFxc\r\nJnW4Ky8lZ4Q+G9brYexh/iEBcSpNQlfLVJrKZMlAwGPcp1SBGxU9GlSV7kE1LLCS\r\njpS5d6/qw4VA+z5y9HsHN225oBhpAQIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFHrWGYUoeWxxdh5g+PNL76IFQhYdMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAU2IUk2qTwWTtRBKzMTaRxYKvTyvU1nyQLxko\r\nA3304lciVsdA86+jhEkvnCwZeAHoOtYuPeQJdeyhYUhVRDAhhJauvE87FB69gM6h\r\nYUnRqiy+vekLrHB/1x8njoLHmcppjOvBzziOPSqvf8s6O8tJ5AjY3398sm5ckH37\r\nVYHa/+bAYCvEsYmgDGN8L25QvXScTmTthSXHlzsCItPpKFs385dsGJnFD0KcQ5c1\r\ngLmV1bdHnrWyy2mqB819CFWtzhnojtzXxZLuEfTBS18u0qoLdN8KvgB2BvfgZtY7\r\nx+fbkiyoZfnZak0Oj45Z9Z/6AQ1uHGSRadAh19mkcrkPwHktc/3M1PJ69dwZn8Ez\r\nASzYFf8QH58i5uxdou73v+5Bd1m5nmtFCyLC6QDtFYH0pkvmafBx7PwyrgTjq2Xv\r\n7eWL0wXESxzY4HpjMDO36ncsLvzI6j4CyG4cpA8F8+9jwizWqmKMQUWt+VMICsP7\r\nRrzCJ35ogFGWF/dC2hjdjBXjcyLaliR5nE+sDx1PVDdIu7y8oBi60+Vzl0+BSf8P\r\nOdssgwciUpWVP+9xf6SZ7D9BPmLwgIJZ4oPc5K7cTOR6ksQQg8fO44fmOCRfVD/T\r\nDj1e39ijjkmcXUvrcu1sh93vbupLKp4Guruj3Le6iQ4Hla6Pr4znFKCzKk1+RrcQ\r\nVnsaqio=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFOufo2CImJDvAAAAAAAUzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzYxMFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAz2IfhGnsNWpW1cYZrm7f0KG7FjkmtAufsz6xSPNM86b5+jPDUpkOb7U7\r\nj4cWGBVdrYYqWUkziZmWPyl9WLw43KGzaMT3xTnm1xWyok8Z1D/ytHfxFI5t+Xzk\r\n+pcWwIZzuElzEzAQYnVMyfdxD6sM2winZ1ehDpvJeLTPcuTPf5fDYpcrnebODQ+r\r\nnsvq7oU7bHp/jTkGP/2hNzNLR7QJq+rOaHTHDky5yWrsMdgGj0dJXmId6RIfgbeq\r\nJyz7pK0OnoqopPXzZcEQJGNdh9tTh0DWpPGkCWvp4yC2Sd6VSDIApnIpXRn5WNGc\r\n79eeuL9eKvQ5W1zq3/j5HlmwZvPOE+3kPe9r1+WMazNqbhmVk0gUfZX+cnJcy8ZH\r\nqZhjCnW1ihCHzNxMQypQLrnOgVCBkkkRj466iLGDMGL5IyTji2AAp50wMiZuVQX6\r\nwY4kcKqLsjSPpDpHGIie+58/dh9xFgqJzV0kNbAvehRlbwzQnRJWzr1UgZJgjluN\r\nlLpJwTmUIe3I4FzbwrzGMOltYu8XbdFAfyPM4fcfqJwFTF2xI5OYNC3Rcou9OSQT\r\no+ce9/rON//vZNZmQ+TPQ3nkPoKus+JX3EFJbevLeG0IvvC8c2ABwv6cNcvbSSoV\r\nXP+XaBLuXe5A3G+Tdr33bVhKKnbKiravs7sEeKvXVrpDgilOuG8CAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFJbqBZJuLkLM\r\nIH41hmi+LDFoV/teMB0GA1UdDgQWBBRIo61gdWpv7GDzaVXRALEyV/xs5DCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAArPH6tJjsM3VsG3zdh/1Rh3LDz4\r\nDqyUEJEXiM+Sa1kCncVvIqI5GkFKGM3Ur3hdx6xxe5F9gPvUdL22Qf0DLaOclksk\r\nO2FABXqDRv0P7k5yyryzTM/RmLhleut3Fc8BUdfrkmif8Znyxp12sRxK0UgEf6iI\r\n+dEZugVpwAl8IRUk9O201Q87q3zI30NgPT2BJiDycKaKQJF634qatubvL28JaiOd\r\nk3uxWfcqKjO0oeSJ7pxgAiH1rCah7UN5T2d3V4AmDQGLPo7lwX1SKZewa10PnF0X\r\npjE+8welxOK+4pEPl2kRdMDpr9/XPXWpAPt2h67Z0j7x5c7nDU/eZ3UjRkJePoIQ\r\n5aGZuxZ2diziI4JWhbW+kF9M8T0CM1EUIcQV+8wvvualM1q0IN+SJ1X49tt8n3y5\r\nfEAur2599a16z7zg4uF1xI/SafWXMjC8MObCHjR5xodSQ7IxvGyl+6uIkENsiQBF\r\ncuM55MMUELl0VM0+n7Kv5K2Ur+heLzNlTTy2eoiU048g8iQmZzP5C9y4hUE3rYgJ\r\nRxP9ovHl2km91RDTei9aANUGIB8U2uFA7pxe0G8Kp8WSF0a2DtZu7sf2lGjKvP+7\r\nJGaMrJn2bJW6cDEPgfyKCio8kCVtFg7QTtkaZjF5J6AIB0B7aHNPKlAE2T8O2/Z7\r\nJIvM+ijPG5W96tZP\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFjSjQKPPAEB6wAAAAAAWDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4NDAwOVoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA3Pi3nd+o2ItxXWvhyaIDXRbrxgB1wqI0wK/wgC3vs2vSbIHdSuOrtac+\r\nmR6Ag8rE69QQOykN2KJIQI53O0egLWUqjDMa43Fkh1EWTAD0B6snyV91Lt24YPPq\r\nOyJZLhGCtYJoQfPQxZjgW0PknDvWCGIBPFacj86c84QzQdmNBMPrObC21S/ilK+H\r\nGjwcYx9Z3dSeK2CPLLkb3C0HzWWLBL5lFHrdM7qphSAJ07g8/ggis/b4aHdWOlN3\r\nfyySWbuTLQnX8J1XZdWGc+7Z60gzt2jwUc2kgpjcpHvV7QYmy141rjiQyFDNUf7x\r\nFBeFIpLDPoxcfAsOo/dtVfxp/dNMqfAEC27QrUogtIUOcCaSZ5r09ECOuBW6Mood\r\nDIx4bUEhXOJmZBtpzRXhVVKTC7Aqs3PTrPehspCxOclx7c8aESASwj6SSWpDQi+x\r\nrKm2DgTIgvVIdyBNdKhxhGNyl1t9jTEMAdwDmY6pN0kMLCEdM6v9fG0nvtFFLU/m\r\nj9Ojh8Rtf3YWiUPd2cI62tVoXckaP3TbdCNmGysT8ShFNEypEINWIl49U7V00Iec\r\nOveCbkfsnKnT/o69znrWUH+Pt65GxrqO5A+To6WU83OqLxljS/cyBTQmrDh70Dgz\r\nKXDXN3JVW93RLoXuNyAhd1nUOjKOI2tmPhEC4Cz7lqmVxDsQaZMCAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFDrHw8rI3g3T\r\nksAnici+l0dPRWlgMB0GA1UdDgQWBBQ5cV2pFRAtxN9+L1luQE3A3+82mjCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAI68ze1N9ZqKBI7Q7BXGlc0k99wW\r\nCoCZu0m02crvYeITKUC/eizH7s6Sx2Kk5Hnzz0Rzc8G8NpiWEfp7ppKeP1jOMv11\r\n7P1KB6IHyRLdW7vAIBiJy1qhbLAxseR7xkvDKv9yjZYL9Q7XtlSgrd9NuEiuFsfj\r\n0ANzVf/Ea4br00gGc8ALfnvgGE7eUdBNqWKTzHcQREdjJPRMUqTYqcvd4qQbRXZt\r\ncXLt4Fr3pXcwG1UExrz3TP4ueyrqGot/OFDvMihs6Tak0qjYygT2dC3bEOBg3GSQ\r\nDdQVzBFO98f62/l51TBlWizuw3D4/dKIPfQU1Qt7sr9e7CLbecoO8EVtyt/yGRr1\r\nD4BPBGyEzC6QoqCo5Nh27yG+DxFtAGdm/vLaFeJOVM3q2d6nL1FvNzlHTHfOYPJ3\r\nNwHB30X9TpdRqoBLM5UC0m/ybKj4ygXAZBlkJXMO/bjtpqyidJ0SaFuE8EdV9YoJ\r\nKUmBw1ZuZd5GHbc+Ilz82WX+JWZ0efU/f+75Ywvntu/3s0OsnpVoqrqM7TDdzE0d\r\nwRiZ+mvtgIwp85+et1iEdaWPj+d6LfJxpDDCPhaqh9hnNIkZFptndwDwRE2MV9Wr\r\nlUCSA96/2ubHsKt4E2D96KvNog6MKdyEGz1sZep1yZKqE4cnNzGNBGRel0BRa2MK\r\nyTOQsCbnpQGhEz0m\r\n-----END + CERTIFICATE-----"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFlFSsCTnaMEFgAAAAAAWTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzM1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA0E8VPmTCi+s/ukALr8kiz9n0QMveOlaFztd/3QikdEPvOujCuE/CXDKt\r\n0KhyGBUshmHGEC580aoe2Ze2gBJ/Dhs8FjdCjH4IyWU22QOervNkIc2Xd3EMxVZL\r\nYmWmDp5yfa0DwHqsqLq1PLwyk9BfYhh2gp9Dp+vECu4FzvVoZd73UaTpvcQKDsXA\r\nTVR43QC8AiL2AiHgOB3xE75MR/kI1OA7mTaOK8uZbQZCtyG1VMtNL+Q4Di0nB9cD\r\ntqfQj1/UCA76Nr9a7p/TUnck94zlsHE5RVGvDy3GKpa4cmCb+nRpF+ybZjuw8fPT\r\nCY5JGTLZreJMgk+Tej7iN+BYyn4Q2QIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFPFGaMbxw/ArLX2LauGy+b41/NFBMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAD6YslCi5IxgKWQYVzHClxGTpTXEarOPDACuQ\r\nnZIgM4hbk0rMqW4aHFd+paZmMUvNU0HWtIq7aAbNZGCdTrb6g9xjQKrdivWr24BZ\r\nBDxlYkU1tNvdQmafd/RESZ+TpElbuBw2EW0qtK2K+BfL1fTcwpIWRoqWcZUc/CzX\r\n43yuA3vE9sw7/HCDOEQF+QW12B6LDt2Y6DR2y8ZjYsIM0X99mgCE8/HYL4AR3+mA\r\nHjlncC3qlXWRUk46kz2yU4gu0k4P5vexNuGvU9uHvmqQERhhHYkAiW5pwCNFdZDw\r\n95vcnWocRk5TaOPp74v06msx58qS9Re9Fz5xwp6dGGqvWgcF9UJtVVyXMGYB1/1+\r\nyd5n8VpvHVWlrPNpcT0p9YLeou/HKZIiekolUKL6SqCbDFwSUMPM1xWSK6RbphmT\r\nJZdAoKKLq7c/4bFPOxeKvBjT6PrWP64ktWN1Z+AYQlBp1rK7A/ZkAOh8l+17K4VJ\r\neb1whd4SmNSnZbv9jhOeWhrbRsxmFJ1SFHhoBhS3Q/WZWMJtLu2Hv1RHnqRgLD3y\r\nlaC9qyj44pXka/MiLauGl0qjRsO6i0ZV/nU43/eZt4EhWewfmXRnfNlXA/u6abVS\r\n3lkNTlQaJAmTijbKk4JI0qQl4e+xZloOXJVNiqKgYSh3N93Bi+8ROZCLqqpwrO+C\r\n8C5Y9Bk=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIFVjCCAz6gAwIBAgIQJdrLVcnGd4FAnlaUgt5N/jANBgkqhkiG9w0BAQsFADA8\r\nMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAwDgYD\r\nVQQDEwdhbWVyb290MB4XDTE2MDUyNDIyNTI1NFoXDTI2MDUyNDIyNTcwM1owPDET\r\nMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEQMA4GA1UE\r\nAxMHYW1lcm9vdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALv4uChY\r\noVuO+bxBOcn8v4FajoGkxo0YgVwEqEPDVPI6vzmnEqHVhQ1GMVeDyiRrgQT1vCk1\r\nHMMzo9LlWowPrzbXOwjOTFbXc36+UU41yNN2GeNa49RXbAkfbzKE/SYLfbqOD0dN\r\nZLwvOhgIb25oA1eAxW/DI/hvJLLKh2SscvkIyd3o2BUeFm7NtyYG/buCKJh8lOq8\r\n0iBwRoEoInb0vhorHaswSMmqY1g+AJndY/M7uGUqkhDGBhLu53bU9wbUPHsEI+wa\r\nq6WypCijZYT+C4BS5GJrEPZ2O92pztd+ULqhzNRoPj5RuElUww7+z5RnbCaupyBY\r\nOmmJMH30EiRSq8dK/irixXXwJraSywR5kyfmAkv6GYWlRlxFUiK3/co47JLA3TDK\r\nN0wfutbpqxdZQYyGfO2nZrr5JbKfSU0sMtOZDkK6hlafV++hfkVSvFfNHE5B5uN1\r\nMK6agl1dzi28HfJT9aO7cmjGxl1SJ5qoCvcwZNQ2SPHFdrslcwXEFOMDaEzVOA3V\r\n7j3+6lrT8sHXg0sErkcd8lrBImfzhLxM/Wh8CgOUNeUu3flUoxmFv3el+QWalSNy\r\n2SXs2NgWuYE5Iog7CHD/xCnoEnZwwjqLkrro4hYWE4Xj3VlA2Eq+VxqJOgdyFl3m\r\nckSZ08OcwLeprY4+2GEvCXNGNdXUmNNgk2PvAgMBAAGjVDBSMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEBMB0GA1UdDgQWBBQpXlFeZK40ueusnA2njHUB\r\n0QkLKDAQBgkrBgEEAYI3FQEEAwIBADANBgkqhkiG9w0BAQsFAAOCAgEAcznFDnJx\r\nsXaazFY1DuIPvUaiWS7ELxAVXMGZ7ROjLrDq1FNYVewL4emDqyEIEMFncec8rqyk\r\nVBvLQA5YqMCxQWJpL0SlgRSknzLh9ZVcQw1TshC49/XV2N/CLOuyInEQwS//46so\r\nT20Cf8UGUiOK472LZlvM4KchyDR3FTNtmMg0B/LKVjevpX9sk5MiyjjLUj3jtPIP\r\n7jpsfZDd/BNsg/89kpsIF5O64I7iYFj3MHu9o4UJcEX0hRt7OzUxqa9THTssvzE5\r\nVkWo8Rtou2T5TobKV6Rr5Ob9wchLXqVtCyZF16voEKheBnalhGUvErI/6VtBwLb7\r\n13C0JkKLBNMen+HClNliicVIaubnpY2g+AqxOgKBHiZnzq2HhE1qqEUf4VfqahNU\r\niaXtbtyo54f2dCf9UL9uG9dllN3nxBE/Y/aWF6E1M8Bslj1aYAtfUQ/xlhEXCly6\r\nzohw697i3XFUt76RwvfW8quvqdH9Mx0PBpYo4wJJRwAecSJQNy6wIJhAuDgOemXJ\r\nYViBi/bDnhPcFEVQxsypQSw91BUw7Mxh+W59H5MC25SAIw9fLMT9LRqSYpPyasNp\r\n4nACjR+bv/6cI+ICOrGmD2mrk2c4dNnYpDx96FfX/Y158RV0wotqIglACk6m1qyo\r\nyTra6P0Kvo6xz4KaVm8F7VDzUP+heAAhPAs=\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thvankra-nova-billing-sku-Standard_DS13_v2/providers/Microsoft.DocumentDB/cassandraClusters/testBillingskuStandardDS13v2","name":"testBillingskuStandardDS13v2","type":"Microsoft.DocumentDB/cassandraClusters","location":"Central + US EUAP","tags":{},"systemData":{"createdBy":"thvankra@microsoft.com","createdByType":"User","createdAt":"2021-10-08T20:15:59.9107848Z","lastModifiedBy":"thvankra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-08T20:15:59.9107848Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"testBillingskuStandardDS13v2","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thvankra-nova-billing-sku-Standard_DS13_v2/providers/Microsoft.Network/virtualNetworks/vnet-canary/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAE5Hd9yskSH1BgAAAAAATjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDU1OVoXDTI1MDkxNTAzMTU1OVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA5UFGOQgmohqJHkbMMcN4cnK+mAoScYUAR/njrD0x/GyFeTko+QXMU1JJ\r\nIePmVcugmyO4xX5ITShZWy+/qPAWy3vwT6HzBdFq5eTGbkbFCrQdh5w1+jwOApMe\r\n9ZDlMDO+RUtJe1XxWqi3KRY0e/pJmpOk4IUEjx6wxvv5MnSWhMa7aepnkuCS8lvF\r\nNl9D5oUGIYvoDUgVMQSBazQP2zjRunMT9JOopFKnZE+L7NY+XDtla3I1uZeMeakA\r\nfqkNjx6lkUIgcHPhSMy5XHBpOeFdSDjBA8dNk6E3VSlLzvPcHdaHI7QrmK/43wzf\r\n+kHpDdTXx8EdOqm+pLHoKLWcjw/P8O9RAMiXefxGnQKNuP8T+/prskR5esucJQkj\r\nrWSu7W7YycmIg1rPCd7Qw005/sc58eLPN+Xrj/Aw7RSR0A719CPZMjoSfKTphSEK\r\np+ZB+5j/V3VEzjGbL6XFUezFfaIZ+A7ZtkaEQYDH0fVVziPnhQhJB+Uym7a5arB3\r\nqiMMw7Yjos6iWkkOaqhaCHuN1zC374xsBec9mrJ7bfuLTNtBEKC1PhdZrJM3UDCo\r\n76v+3mnKouN/7vyVkbiLNb27MXRigXFbO02opR8prTkvv3af+iq6+xjmVWZhsILI\r\n0HIBk9/HoMZCCb9e95RQVmVwVNrwa24neVWl+JEw50sqLMapsGkCAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUOsfDysjeDdOSwCeJyL6X\r\nR09FaWAwHQYDVR0OBBYEFEKY1e9GMTrmL0fNVVel5jUfu/yRMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAuaX699r+ayL7JphKgdiDuy4iPTwf7fTkUsLx\r\n7ixBzvnUrUASdS9GJEkpsewdipRfMycn3UXatnQ6rudCqBgsExJzHBGlokhvVaZK\r\nue0oIlJstnKQDOJCpJem9NkvwALP5z3WZoqYf4EaaQXUkMAJJ2qxw+mksSBEu+MJ\r\noxgbStKv98q28ypOVLjaFNH/VbtAG/rIcqNyOdjAPcgMcohe7lGO1WQtFxPxtzvS\r\nZfgao/ZjWeNDFzy8FSInim1q69Syl3Y4dzeAlG6PiC8t7upDQzo2AJxI1tW0AkKV\r\naJIS9rGZquLN5MTbYozjEyzMvSEYFEpx+7YKQGayHz3eCGH4BzD43YPt20Cm4BMN\r\neyV64+d9PufCA2tzrIQ+VJhsZKb6qRgV+Bp6AfpgeyU6oRkqsWKJyKyzp6o0D+Si\r\nq3gYJdD3W0+X1jUJcQuywYLRg78rVE3A6VJ7RIEjXARQV19hJvxchCoqfbny/0bX\r\n9Bb3Rtr1OAYhUml6Z6JdfnH33KfEJvFa4wlKRBxpuw9gMG5ydOsbZ3YIJDWccTLH\r\nQZWJk/Lakd/+uLPWOzzWQCf7nPapwSRjtfRRLZoX49PIQkrGM3dpLLGktC+sg8bc\r\nvQ2bO79bKJazcsKuNK0dOpepIBA1mMD81DphYmc/RMF9KXKdKz4Ugh4HNqkltIsG\r\nEtaYPCM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAE2e+Zx9LtWjEwAAAAAATTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDUwOFoXDTI1MDkxNTAzMTUwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1RZFKUUXNWXgbh7dm52Irso1hGPDEL9ZZXYz0civ0AAlDu9P/1okXVpc\r\nOPQnRxE7e7O8roTSctA4MTBGFIjrCythVzk6MJC1bgGv7qwCV6o5P4zVSxQrHPx+\r\n2DPDIZlt3UV4RNLuKVvSZdzQt1UsxUOxvTZ/0mO22d6mcspf3I5Xt5h+7WlTgHAy\r\nWvvlpuX7LR8yTK/um4526bdhUG98I2nEURH2vnNSt3/Dbt1R6qoPMja0HhghuOtY\r\nt7Z77nyI2gOY2fRu3oM15Xqe8b3Qwx5IsSV/pTWJ34VPz24TfUmCQOVtu/m84ayA\r\nwSZ754d+JvkyPSdINV3tuLtbo/QVewIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBQbRewlXgZoN1BD7V/nign/FlWETTAdBgNVHQ4EFgQU\r\nvZx3N/n1PWYwyjVonISvG5ZVEL4wgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQBFtFQSE7TjElKEmwHyydrA/UEAzho7rEMy2lvNr2tgX/7WVWDqmDrTK4La\r\nm6/MGOUBYbF334Ywvprij/UoSpyMEq5HgXiCBxOgyUPSZx8x+XyINgCujVXRk9za\r\nPh1lXpYCV2qhIYAhazeprDYzX2im0Jwe8X/Xsl0kzgs3TE7medDW9CVEYS+T7SqG\r\ntmXhOg1FW04yUM0+Z73ZQGF5oqnE76kzpLvfn+YWA6KbLfH84yTpqylAD5UFvfeW\r\nMRoNUUckpsteddNba90soUzxeRwU0Loxj5Qsds2gB0tSIpVh330BxEDTIJ73FZIv\r\nvURqyoDor+Eu1NOVk3sdCM5nXuN38dc0a9fsSRoJkbQYTP9UNJPcUDO3kZoYWNxD\r\nWrn5J/ltaxPc1o7+USSm02C023HIrWBJkfnepIZKV8m7wkddcygJ6FQkxFU+NQUW\r\n+a91tIw3HTEHvmNlJddPmjgnE3k6GS1NLOC5IV/s1s4sSME3QYQAt+zr5TKRdZ06\r\ndBOSXrz66pVpkR2wuAvlCEuFk7gaBrKz4j+3wJ9CPhETezARvgpzQCw9es9y2qde\r\nO1rHPYa6IRtmjcVDvxfmjei66bQwoapDH/OMS6sPqqqn53l9g4HDDgWywWn9ad51\r\nL5NAvQYhHwSCG0E2Os5mUFYM56ZVA4WHVUn7NZsAXGnDtIwlPw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAACbGTID3uXpE1wAAAAAAJjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE4MDMxOTE4MjcwOFoXDTIzMDMxOTE4MzcwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAvBsRcCD4Z38LQPG73ci9jIpQv5tVQh8lLrcQ9lO2lH6pUVWi7T7jCyX/\r\naCSmit7fT6seN/kf6LP0hpgsU/wxMMv4c4+w1M16EiRc6GPJtSPNszl8ZNAzZj39\r\nxeJnAMhPzeABRLgzYgLH+9R3k8sIJMhSjcUfp63GAhKtdqhQeTOs7m87REtmAdo7\r\neZh/Ubn4HR1ZxAswmoWmMxMZw1KZj87395IxE3Ybj0m/V8dyskpxWdAzkvGeO//l\r\nb4FfAHVCCix9wsijqomj+jeJPHR/AF/5+MZXjoNDs6/+UMdSrEqa2fi8910J6ogL\r\nSMdL7NdV77U5551wZxeUwSEHUc4qkQr9cFAdHcdYiMnIrU28zk7O3yQdsyWdrTqx\r\nTbkoYn36Ji+aSyzs/u/Zh3pAWw9IvLaoq254Rpf1SWsvufE2YXaP6kUmvOE9Qrnt\r\nQ138fwe9CmPUT9I/cM0v16BDvELEH3KGsWez8WRFA5RAB5pPDKjMyZ7mNl+0+EDv\r\nMq+KYjtc9uWJoRsRe8mDnVt2JGRBazTCFd/m5HGywdUvg/fZyVfBrvsRhcahMXn+\r\nb+a6kw+gMY29dcNutHNl1ZuKbwUuvp0ShWnauFVqMSRP6kSgXjzM0Oez2CHEtnX7\r\nNTKy9+eXsqxkzVXop81HCR7QCDlKPkc78IRETKfQA/nHdu2iOd8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQonG1RafqmxKhDxP+NNvoz\r\n3/1FMDCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAJFaZ9bHSEXBMKUi\r\nxLJgRr0yPOBbkZAHGsXGsAAdXnsAcmRZnoMsJZwHJY9qa2SDdjWzCnEuk50KJ0Rm\r\nvePgWmDtQWwyfFT//JIccaFgxYsU2SjdHEi0DmRElJtLkYQorDjkqn8s2T8y95f0\r\nmdcNme7cQ8PsjawgV1hb7r1I0bRh93M4pDzRt0g08RoFtMGuqRdU3roMDbuid5Hj\r\nBnoT5MdJlYzklABw+JPOIFeqZ0LMq/RPyk8Dpzo7m2dSc78GitdNnWxj4Ku6l8lb\r\n0OHX3BL1eVKyKi8Vta3BjpzWuMQompgdzp1Eh+mDyfKV/+dlfIEPJI1stEHIEKWR\r\nR5yt35+RGXrmsmAwTZT5mcJk4JdAMhVnRnyWvxPzieYCR9DcIaT6+NBBYzQegOG+\r\nIMnLpnZp6qhbG7Nq9MXCqRY2ooojLCTLTCx8R2cqdYonJpB4lSkYMFYbuV7HoiNr\r\nXdZm0gMRi2DmIaZ7cxXUn0BmZd/lXSXNKdxwHKecu0F8ByT1Zlg3NgIhCb+6SDYB\r\nlOv5YhnwSd00aUaSSYc2dKJmR2yfCKT5Li9wdtjlB6rYIb7vHRl3x98OIVE+O20S\r\n1jQEqRLzkaDIWOA8D9VeuuIW05tahms61dDi5gx7M/ALhFa/QsbkCJXRf07Pe4ki\r\nHE/1Nk3cohSibWYZqHssdutHBd+Q\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAEnEBGqOfE69FwAAAAAASTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDA1MVoXDTI1MDkxNTAzMTA1MVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAw9b7oiITgLVh8Yry44fRHl/xMuYtsI0Cg944jlh0S5ljKgUEMvt8/S63\r\nRH9+9eXvbFN4L9EL2+RDhWd5hGyg4gQeKtxO7D/+JUoTIamIl4pXTxhO5oORnS9k\r\ntWp6lc1OfpYnkgzrkFHICKggDtCpQxp7cMtM8evEvY/7WvmJDbAsgSRlBIeyVZqU\r\ndfw4ahzvsNmMfDGx2JBKgB5mndVGyg96yCHy5+7XKOkkcr+NKHdnBM3k546rGlCV\r\nErgPVuUkRxrwIa3xD9BRewoihWG7sbuxny49CrdbDi3WqK0VPSJGZ2y5ipUTwndi\r\n/+QhiK5expoHO0hl20DwRgq74qB5zSs379PcTQz59OvUDMi2fiErDYnCT75X3w1b\r\nh2uGBFIwonYXGHU1s/SaxQlXErGplgkLv/tBPAXu8sk+qANHaY1EfPwpPfOXjIxl\r\nRT95moW0IP+CPmhV0g2ZPKNn0mIRPpf8IzI5O4pLe6xfXDekQnNcGaBY9nN9LBO3\r\noi7pBBNObi17J/ebVg2rScg+KAWVVf09iLF2inpoFxKOJQz//poXo2fAvYVXnXJm\r\n99qJvY8gFyOyg2Cr2x/Wp8yw/u7H4DztXuFMYuPEVpR9/EeLP2bzrpdbJpj+SPT4\r\nU0OmtjVtKNR4aOBNBVWmzxV+WKRBfpkq+pjpRMkgFapXWtjlXV0CAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUluoFkm4uQswgfjWGaL4s\r\nMWhX+14wHQYDVR0OBBYEFBxS0IHKkOkG4KzpGA07z01trd55MIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAa08V3/BsJsIOjn2Qu6zUb0GosfdvggVX36PY\r\n9OZyOn5d2+tPPjG2re+uovdpuLKx1YH0iBX4kIL05yObqKMAv+YO3Ihj4MkcYy6A\r\nk9DbHyQTYoeSfaryn6yo7kLYCz6E+li6HJ4FVx13PxpwqDXWUu+Yf5Kszj56IqHx\r\nTI9LV1ZbqmZYk7fQIPETYENkE23ypgh5snRtqSZYTw6HASkHI4E7NgFkOATnIcs2\r\npLGzcc9vc/QYlj3PT3ciGdpGkz8l/A2MMqC4eleYFTBSX9rNNG0tf0M+5fVF417D\r\nmtqDlglm9bWpgrdLpmcj28f3766EBJBq9zza4M9dAGBWBQx0c8BR9saGATd/U8lY\r\nmlTDhnRdqJvvTbtPzFFmTF5jrANky12jKlaHHTyLETDu6OeDbVEyJNuhj0a+cQ6r\r\nZwYCG/k0WCzUx3MMq1A11uxvseoOmpIqLOGfkEdmBPQXkKC02vyjZkxF0pGPNNcy\r\nBSCIlZ11UtC5ghcZ2Wg/U4bAogTv/XAnjwzLpp5V7mcepzcBagiFlQkdnvUKNI/I\r\nLkerOmrgKe0rgT+ICALZiq7hIyeuM2uthyD3FaBFf62WOtDD6Jfwkg/3LI7of+HC\r\nGZ99J/xaocq6NFYqzD/9H6n0+biogXUJtm7mKhQO3PeLz/1aDIwLfKqZFr3PCStN\r\nvTWqAdQ=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFYLVFiDd8BlgAAAAAAAVjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4Mzg0OFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAxIoR15PqTSSMns55DdeR97gCwVWRoA6zCYbU66RoYrXuHSpcJM+1tnHN\r\n6B2gITXD0iDoTLpuOvRlM+12v0c8cWdzVoHuRuG0k1ViNgSELeNw8SXSQ6jmvgPy\r\nH6fg+NiKLkjYrJuIp5me3/asqMTeO6MOkeimS67PYerzkMYoC7BUEUacludZswsM\r\nFZnsM/vHCjIpzQMGWyUzju2ANT+J41Wz9AmukpPQFNzyq9566BEU/4MJh9Yg5aSR\r\npzI1gU8r4Y9ABdOgjsFnEm8BSSdlWLgalKevYPMLX/FO2rFufFgcNJq3Y8rnAtJD\r\n0k9jt7isXmJgS+JNfANvY7+jXQaCkwIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUOLjGDtr98qbFC/XuACeceItvo7EwHQYD\r\nVR0OBBYEFOXZm2f8+Oy6u/DAqJ2KV4i53z5jMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAYI9s0aXNjS8k6w/pyYwcd8HBPAjpWHJp7vBNsa9rDbau6raD\r\n+QWjj+hO5OKUkNchKIkK3xUc/iDAMNALDLFqUOaVTeMh5fu/e8Pr1AX1R1c5U1Yd\r\nxExItrFARqTCCIQpLz3cTu/9KA5QgUQlnFlrxA9IHq9G6k3TvTB2AngUzXBhNhl5\r\nb8ya7LK3dhfqf2BQHJ7k1XReCJLYMxI6PaG0F6mWTCFNBbBxgjsXeXfjYv2li33v\r\n48ALT/NXFoOTbAOP4EFfLhMDnx2O6cFOKrYT9O+EU64oJ/0MQDQSq9PVos5J+RW8\r\nvD/h2ycPqMnmsjvpJ4pWJZP+YSxy/HWMwbZt/Dv/UobeQqLCIXGnODv87K+1JVo0\r\nO3c1NtGJu61JyXwW8id8VSQuc2NzEr58rOOGMfU3gHZMSNY2gsFs1gqXC6MjtX9O\r\nipJ+dqr7lgRvpDN9bD2kd9CdOWsxz6PRPxOmbUittmpHdABMZuaeKB/5MnxVrpNw\r\nlYtJYXvKRY1V30kjFSsyLv02YYKb8MI/NfWcjMLw4eaEn//ST+sf+LjB9KF8TxBX\r\nxuBUpQVA/TJX9GEqYMZt557A5u5odSVcac+w0/Nn4E6WzFLfxMr1O8OOOQjzlG3u\r\n5BPqprm+utwEHBCU4iVcZOdnSgk1dm7C5xmmTylFRYOlwVrFSPcyKy0+6H8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAEso8JmcB0l1ZwAAAAAASzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDMxN1oXDTI1MDkxNTAzMTMxN1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1FFhjk/dgVlthN00OKObtbEisXfH40OyapM9KcVlUPnMElPROdKi7XPQ\r\nagq+Ry3QLSSZgNWnkahCSxE81oyudrvlhpR7NpcDPZHsYFw6qsEiirml0hc5awSq\r\n+MtFo9pfnr/zQstb7xg8wjduWjANvO3E34jZbfmCyw4gU4TRPIa9rpaV0N14hQTk\r\nKcBv+S12udS181oWcTc66zxVXUHNK15PRv31jElEYQKX8EJWCe6ccJA/cJD282sR\r\noEhfuUvzXHOeWD1jXH+Eh+mKuhLqiQHPJH7TJRMsN77ndtHH9us3Ak4l9AmGNZZf\r\nwNquVrHAiTw9Ai90btckoeMRn8eogQIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBTX/nF7X/NZN2T02QZU2G6DYuwmyDAdBgNVHQ4EFgQU\r\nlUWMsJMswORfcQ0UpecnwcNjm/cwgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQCb7VpPdQaBSKQdwDpgFquVkVtcKzEAwsVlzIENIrlRsOcBgvZlW9QKwgCd\r\n6xvrF9smidaMzlYuxYQypQ0RQEHDKJ1SJQLc1ZtR7fWf0xHqU0cgX3hktDNyN5t4\r\n7rMtYOUhygcZIxVQ2cpkyLoilwnb/q0Y0jOnA7eo0r9K67TJ9CP2m3ZUApzRaCwv\r\nqQE8eNZvngy+613PU11A2EFuTPXoVNb7S3w8amz+mYYnJCBhxf4PdYA/3DZ0q3FP\r\nfFxqKAbuNtXXHFmYn3BBMGSn082Uq8RsAvj5XEkI/xylDlwG3zT+QaIOrJ/06Toz\r\ncT0ewSlyNAB6LzGp/HLTIffhSNBVX8ILs558r6VcnTE21awdkWqnd3PiPkWADD78\r\nDVSb/7QOsBdZp6BKkcDzTc/uaDGahR55UcapkOMBSbngkomK986ITx3yUITn0aV4\r\nBEVbYQQ6b9l/eNHRosiwL52QPnYl6fJRsl0JuUzy9T5DrwGGnRgKQAOmSWPRTdt2\r\n14MWrxbLFRRwvqt2COK82jPTAiZ3XqYSZzZce9bSDsGSm5VpwWz5+xyBYc3djzKR\r\nThctXJrwftNyZD+LBc/4oLOTYLpDB23eI8rvb6Xfm3A8ANucIq2muavxi1A+eyYM\r\nQXwyB2foIV9yhDIA5I1psyJo+CwM9CcibRTjjNL5ghEkoSDjyA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFSoP4knG2YAHAAAAAAAVDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzczNFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApuAstd+jxOmcAhw1KNXa7fDE4SFe/7SdG4avz6VQqep4ofwJwZTxQJNQ\r\nBC7dybKZO2RBiDzzayV9PCxmK9HPRMRmuj68x9BRyoEbVU1tX4HtiBK+hAGiRNQu\r\nPRTYcSs24CgjI3JrxOjNesp8iE8HUVntN8ueXnpTQLSYOR2TmTGM835tkTplflX/\r\n/zPtZvsXSZz+JssQ9SRcXS2t/fPDpKfNVatOmq4iwtX7Q6IO/WCzAyEzacjAFqml\r\n0/PRYT5O+jiRO+TImZ2RD0CB9rP5CYwN2T504drkKteNaT+FT/teBLC+JraDjh27\r\nv24yknl1t8dXCSS6l/UBGBGVk+gr0wIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUVSrR7NlDI9ZN5GcKVaV9JEKwIbEwHQYD\r\nVR0OBBYEFK55wmtdJYgTBvYHCcOXfHuXjx1VMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAbgp2LNvP1OVFkH9JTg9rTMksjvLIpzaqJehSp5+3YNzGl/TH\r\ni3Kg/rbtQaKErwipeLMhmqWFuT9kB22eeyoBSxx3JTzRmKtcJO47IX0qymW04v2i\r\nI2tVWQigwJWtE08Z16Q3NVdgAox6DDnAvmV8QDlPhWdW0gGcszZqFD47SJltU8JJ\r\n6D+xuDl+xUIA5wQ0987HRo4dSx3Vny1cd98GdMepsOnCpfm7ZQDWJUggp8m8T/jv\r\ngj28G4JNV9nsx3TT5D4xFZ0rXUlQNmhJFesprLt8NqOoKqmP40WdqrpVIxlu5pdH\r\naf/uT89gHO3Zy+iqNbCDRB7zSBtaalaqLvGpE0xV3p+xpjY1CujjvKp+rUrGwA1t\r\n7aNRowd45Dn+kESi95bE16V2k54YbRvgkwQgqyFUiissogOtaOwQIjuv5NUMkKnj\r\nWz1S1nsMTwZWQ20pT+SG9IMWxAP+63fLIMxWXSbwkTo1Q7JVbr7ZnbNjPrzwerrq\r\nTx+CgfCjU2TZ2WaqYnKoGlgjiZkVraQ1JYJkEr5N5+12CnAuVNzn7pMs6HUSxc8Y\r\numBjy+KA0I1XMvFerh+fhEVad7kOgOxqE1uLdXZxkOXHC1N4FQlkI65Padcd8dyM\r\n3g+er8suC1gf9/fWU0AlgIqls48Wis2JISOeSsMAi3BDvCIpp5PHbuNfj7A=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFr7ZWQR1r6OSQAAAAAAWjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzN1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEArMu8k7Kq5y6uDXZk0QxV9Ya5K3Mb0/sCyV4fs48XfAgL3YOHYTZ5o1uB\r\n97VZ/oXuenXaDcoDE18WhOavpqjWHc4eb1QeGGCaB0MoijTLGPzqwWRdByW6l2U2\r\ngFzjKWKtFncIj/VW5S98uCDD8b0SX278XKubkKv0Zn3m1E2wVrTvG8Jc/MuXF0WX\r\ntjFRRJPY3keED1zFNEKjckE4ywTV1atTqnKbmj2rcQucHJ4ufZ89Hel/xLL0bFxc\r\nJnW4Ky8lZ4Q+G9brYexh/iEBcSpNQlfLVJrKZMlAwGPcp1SBGxU9GlSV7kE1LLCS\r\njpS5d6/qw4VA+z5y9HsHN225oBhpAQIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFHrWGYUoeWxxdh5g+PNL76IFQhYdMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAU2IUk2qTwWTtRBKzMTaRxYKvTyvU1nyQLxko\r\nA3304lciVsdA86+jhEkvnCwZeAHoOtYuPeQJdeyhYUhVRDAhhJauvE87FB69gM6h\r\nYUnRqiy+vekLrHB/1x8njoLHmcppjOvBzziOPSqvf8s6O8tJ5AjY3398sm5ckH37\r\nVYHa/+bAYCvEsYmgDGN8L25QvXScTmTthSXHlzsCItPpKFs385dsGJnFD0KcQ5c1\r\ngLmV1bdHnrWyy2mqB819CFWtzhnojtzXxZLuEfTBS18u0qoLdN8KvgB2BvfgZtY7\r\nx+fbkiyoZfnZak0Oj45Z9Z/6AQ1uHGSRadAh19mkcrkPwHktc/3M1PJ69dwZn8Ez\r\nASzYFf8QH58i5uxdou73v+5Bd1m5nmtFCyLC6QDtFYH0pkvmafBx7PwyrgTjq2Xv\r\n7eWL0wXESxzY4HpjMDO36ncsLvzI6j4CyG4cpA8F8+9jwizWqmKMQUWt+VMICsP7\r\nRrzCJ35ogFGWF/dC2hjdjBXjcyLaliR5nE+sDx1PVDdIu7y8oBi60+Vzl0+BSf8P\r\nOdssgwciUpWVP+9xf6SZ7D9BPmLwgIJZ4oPc5K7cTOR6ksQQg8fO44fmOCRfVD/T\r\nDj1e39ijjkmcXUvrcu1sh93vbupLKp4Guruj3Le6iQ4Hla6Pr4znFKCzKk1+RrcQ\r\nVnsaqio=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFOufo2CImJDvAAAAAAAUzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzYxMFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAz2IfhGnsNWpW1cYZrm7f0KG7FjkmtAufsz6xSPNM86b5+jPDUpkOb7U7\r\nj4cWGBVdrYYqWUkziZmWPyl9WLw43KGzaMT3xTnm1xWyok8Z1D/ytHfxFI5t+Xzk\r\n+pcWwIZzuElzEzAQYnVMyfdxD6sM2winZ1ehDpvJeLTPcuTPf5fDYpcrnebODQ+r\r\nnsvq7oU7bHp/jTkGP/2hNzNLR7QJq+rOaHTHDky5yWrsMdgGj0dJXmId6RIfgbeq\r\nJyz7pK0OnoqopPXzZcEQJGNdh9tTh0DWpPGkCWvp4yC2Sd6VSDIApnIpXRn5WNGc\r\n79eeuL9eKvQ5W1zq3/j5HlmwZvPOE+3kPe9r1+WMazNqbhmVk0gUfZX+cnJcy8ZH\r\nqZhjCnW1ihCHzNxMQypQLrnOgVCBkkkRj466iLGDMGL5IyTji2AAp50wMiZuVQX6\r\nwY4kcKqLsjSPpDpHGIie+58/dh9xFgqJzV0kNbAvehRlbwzQnRJWzr1UgZJgjluN\r\nlLpJwTmUIe3I4FzbwrzGMOltYu8XbdFAfyPM4fcfqJwFTF2xI5OYNC3Rcou9OSQT\r\no+ce9/rON//vZNZmQ+TPQ3nkPoKus+JX3EFJbevLeG0IvvC8c2ABwv6cNcvbSSoV\r\nXP+XaBLuXe5A3G+Tdr33bVhKKnbKiravs7sEeKvXVrpDgilOuG8CAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFJbqBZJuLkLM\r\nIH41hmi+LDFoV/teMB0GA1UdDgQWBBRIo61gdWpv7GDzaVXRALEyV/xs5DCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAArPH6tJjsM3VsG3zdh/1Rh3LDz4\r\nDqyUEJEXiM+Sa1kCncVvIqI5GkFKGM3Ur3hdx6xxe5F9gPvUdL22Qf0DLaOclksk\r\nO2FABXqDRv0P7k5yyryzTM/RmLhleut3Fc8BUdfrkmif8Znyxp12sRxK0UgEf6iI\r\n+dEZugVpwAl8IRUk9O201Q87q3zI30NgPT2BJiDycKaKQJF634qatubvL28JaiOd\r\nk3uxWfcqKjO0oeSJ7pxgAiH1rCah7UN5T2d3V4AmDQGLPo7lwX1SKZewa10PnF0X\r\npjE+8welxOK+4pEPl2kRdMDpr9/XPXWpAPt2h67Z0j7x5c7nDU/eZ3UjRkJePoIQ\r\n5aGZuxZ2diziI4JWhbW+kF9M8T0CM1EUIcQV+8wvvualM1q0IN+SJ1X49tt8n3y5\r\nfEAur2599a16z7zg4uF1xI/SafWXMjC8MObCHjR5xodSQ7IxvGyl+6uIkENsiQBF\r\ncuM55MMUELl0VM0+n7Kv5K2Ur+heLzNlTTy2eoiU048g8iQmZzP5C9y4hUE3rYgJ\r\nRxP9ovHl2km91RDTei9aANUGIB8U2uFA7pxe0G8Kp8WSF0a2DtZu7sf2lGjKvP+7\r\nJGaMrJn2bJW6cDEPgfyKCio8kCVtFg7QTtkaZjF5J6AIB0B7aHNPKlAE2T8O2/Z7\r\nJIvM+ijPG5W96tZP\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFjSjQKPPAEB6wAAAAAAWDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4NDAwOVoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA3Pi3nd+o2ItxXWvhyaIDXRbrxgB1wqI0wK/wgC3vs2vSbIHdSuOrtac+\r\nmR6Ag8rE69QQOykN2KJIQI53O0egLWUqjDMa43Fkh1EWTAD0B6snyV91Lt24YPPq\r\nOyJZLhGCtYJoQfPQxZjgW0PknDvWCGIBPFacj86c84QzQdmNBMPrObC21S/ilK+H\r\nGjwcYx9Z3dSeK2CPLLkb3C0HzWWLBL5lFHrdM7qphSAJ07g8/ggis/b4aHdWOlN3\r\nfyySWbuTLQnX8J1XZdWGc+7Z60gzt2jwUc2kgpjcpHvV7QYmy141rjiQyFDNUf7x\r\nFBeFIpLDPoxcfAsOo/dtVfxp/dNMqfAEC27QrUogtIUOcCaSZ5r09ECOuBW6Mood\r\nDIx4bUEhXOJmZBtpzRXhVVKTC7Aqs3PTrPehspCxOclx7c8aESASwj6SSWpDQi+x\r\nrKm2DgTIgvVIdyBNdKhxhGNyl1t9jTEMAdwDmY6pN0kMLCEdM6v9fG0nvtFFLU/m\r\nj9Ojh8Rtf3YWiUPd2cI62tVoXckaP3TbdCNmGysT8ShFNEypEINWIl49U7V00Iec\r\nOveCbkfsnKnT/o69znrWUH+Pt65GxrqO5A+To6WU83OqLxljS/cyBTQmrDh70Dgz\r\nKXDXN3JVW93RLoXuNyAhd1nUOjKOI2tmPhEC4Cz7lqmVxDsQaZMCAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFDrHw8rI3g3T\r\nksAnici+l0dPRWlgMB0GA1UdDgQWBBQ5cV2pFRAtxN9+L1luQE3A3+82mjCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAI68ze1N9ZqKBI7Q7BXGlc0k99wW\r\nCoCZu0m02crvYeITKUC/eizH7s6Sx2Kk5Hnzz0Rzc8G8NpiWEfp7ppKeP1jOMv11\r\n7P1KB6IHyRLdW7vAIBiJy1qhbLAxseR7xkvDKv9yjZYL9Q7XtlSgrd9NuEiuFsfj\r\n0ANzVf/Ea4br00gGc8ALfnvgGE7eUdBNqWKTzHcQREdjJPRMUqTYqcvd4qQbRXZt\r\ncXLt4Fr3pXcwG1UExrz3TP4ueyrqGot/OFDvMihs6Tak0qjYygT2dC3bEOBg3GSQ\r\nDdQVzBFO98f62/l51TBlWizuw3D4/dKIPfQU1Qt7sr9e7CLbecoO8EVtyt/yGRr1\r\nD4BPBGyEzC6QoqCo5Nh27yG+DxFtAGdm/vLaFeJOVM3q2d6nL1FvNzlHTHfOYPJ3\r\nNwHB30X9TpdRqoBLM5UC0m/ybKj4ygXAZBlkJXMO/bjtpqyidJ0SaFuE8EdV9YoJ\r\nKUmBw1ZuZd5GHbc+Ilz82WX+JWZ0efU/f+75Ywvntu/3s0OsnpVoqrqM7TDdzE0d\r\nwRiZ+mvtgIwp85+et1iEdaWPj+d6LfJxpDDCPhaqh9hnNIkZFptndwDwRE2MV9Wr\r\nlUCSA96/2ubHsKt4E2D96KvNog6MKdyEGz1sZep1yZKqE4cnNzGNBGRel0BRa2MK\r\nyTOQsCbnpQGhEz0m\r\n-----END + CERTIFICATE-----"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFlFSsCTnaMEFgAAAAAAWTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzM1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA0E8VPmTCi+s/ukALr8kiz9n0QMveOlaFztd/3QikdEPvOujCuE/CXDKt\r\n0KhyGBUshmHGEC580aoe2Ze2gBJ/Dhs8FjdCjH4IyWU22QOervNkIc2Xd3EMxVZL\r\nYmWmDp5yfa0DwHqsqLq1PLwyk9BfYhh2gp9Dp+vECu4FzvVoZd73UaTpvcQKDsXA\r\nTVR43QC8AiL2AiHgOB3xE75MR/kI1OA7mTaOK8uZbQZCtyG1VMtNL+Q4Di0nB9cD\r\ntqfQj1/UCA76Nr9a7p/TUnck94zlsHE5RVGvDy3GKpa4cmCb+nRpF+ybZjuw8fPT\r\nCY5JGTLZreJMgk+Tej7iN+BYyn4Q2QIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFPFGaMbxw/ArLX2LauGy+b41/NFBMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAD6YslCi5IxgKWQYVzHClxGTpTXEarOPDACuQ\r\nnZIgM4hbk0rMqW4aHFd+paZmMUvNU0HWtIq7aAbNZGCdTrb6g9xjQKrdivWr24BZ\r\nBDxlYkU1tNvdQmafd/RESZ+TpElbuBw2EW0qtK2K+BfL1fTcwpIWRoqWcZUc/CzX\r\n43yuA3vE9sw7/HCDOEQF+QW12B6LDt2Y6DR2y8ZjYsIM0X99mgCE8/HYL4AR3+mA\r\nHjlncC3qlXWRUk46kz2yU4gu0k4P5vexNuGvU9uHvmqQERhhHYkAiW5pwCNFdZDw\r\n95vcnWocRk5TaOPp74v06msx58qS9Re9Fz5xwp6dGGqvWgcF9UJtVVyXMGYB1/1+\r\nyd5n8VpvHVWlrPNpcT0p9YLeou/HKZIiekolUKL6SqCbDFwSUMPM1xWSK6RbphmT\r\nJZdAoKKLq7c/4bFPOxeKvBjT6PrWP64ktWN1Z+AYQlBp1rK7A/ZkAOh8l+17K4VJ\r\neb1whd4SmNSnZbv9jhOeWhrbRsxmFJ1SFHhoBhS3Q/WZWMJtLu2Hv1RHnqRgLD3y\r\nlaC9qyj44pXka/MiLauGl0qjRsO6i0ZV/nU43/eZt4EhWewfmXRnfNlXA/u6abVS\r\n3lkNTlQaJAmTijbKk4JI0qQl4e+xZloOXJVNiqKgYSh3N93Bi+8ROZCLqqpwrO+C\r\n8C5Y9Bk=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIFVjCCAz6gAwIBAgIQJdrLVcnGd4FAnlaUgt5N/jANBgkqhkiG9w0BAQsFADA8\r\nMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAwDgYD\r\nVQQDEwdhbWVyb290MB4XDTE2MDUyNDIyNTI1NFoXDTI2MDUyNDIyNTcwM1owPDET\r\nMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEQMA4GA1UE\r\nAxMHYW1lcm9vdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALv4uChY\r\noVuO+bxBOcn8v4FajoGkxo0YgVwEqEPDVPI6vzmnEqHVhQ1GMVeDyiRrgQT1vCk1\r\nHMMzo9LlWowPrzbXOwjOTFbXc36+UU41yNN2GeNa49RXbAkfbzKE/SYLfbqOD0dN\r\nZLwvOhgIb25oA1eAxW/DI/hvJLLKh2SscvkIyd3o2BUeFm7NtyYG/buCKJh8lOq8\r\n0iBwRoEoInb0vhorHaswSMmqY1g+AJndY/M7uGUqkhDGBhLu53bU9wbUPHsEI+wa\r\nq6WypCijZYT+C4BS5GJrEPZ2O92pztd+ULqhzNRoPj5RuElUww7+z5RnbCaupyBY\r\nOmmJMH30EiRSq8dK/irixXXwJraSywR5kyfmAkv6GYWlRlxFUiK3/co47JLA3TDK\r\nN0wfutbpqxdZQYyGfO2nZrr5JbKfSU0sMtOZDkK6hlafV++hfkVSvFfNHE5B5uN1\r\nMK6agl1dzi28HfJT9aO7cmjGxl1SJ5qoCvcwZNQ2SPHFdrslcwXEFOMDaEzVOA3V\r\n7j3+6lrT8sHXg0sErkcd8lrBImfzhLxM/Wh8CgOUNeUu3flUoxmFv3el+QWalSNy\r\n2SXs2NgWuYE5Iog7CHD/xCnoEnZwwjqLkrro4hYWE4Xj3VlA2Eq+VxqJOgdyFl3m\r\nckSZ08OcwLeprY4+2GEvCXNGNdXUmNNgk2PvAgMBAAGjVDBSMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEBMB0GA1UdDgQWBBQpXlFeZK40ueusnA2njHUB\r\n0QkLKDAQBgkrBgEEAYI3FQEEAwIBADANBgkqhkiG9w0BAQsFAAOCAgEAcznFDnJx\r\nsXaazFY1DuIPvUaiWS7ELxAVXMGZ7ROjLrDq1FNYVewL4emDqyEIEMFncec8rqyk\r\nVBvLQA5YqMCxQWJpL0SlgRSknzLh9ZVcQw1TshC49/XV2N/CLOuyInEQwS//46so\r\nT20Cf8UGUiOK472LZlvM4KchyDR3FTNtmMg0B/LKVjevpX9sk5MiyjjLUj3jtPIP\r\n7jpsfZDd/BNsg/89kpsIF5O64I7iYFj3MHu9o4UJcEX0hRt7OzUxqa9THTssvzE5\r\nVkWo8Rtou2T5TobKV6Rr5Ob9wchLXqVtCyZF16voEKheBnalhGUvErI/6VtBwLb7\r\n13C0JkKLBNMen+HClNliicVIaubnpY2g+AqxOgKBHiZnzq2HhE1qqEUf4VfqahNU\r\niaXtbtyo54f2dCf9UL9uG9dllN3nxBE/Y/aWF6E1M8Bslj1aYAtfUQ/xlhEXCly6\r\nzohw697i3XFUt76RwvfW8quvqdH9Mx0PBpYo4wJJRwAecSJQNy6wIJhAuDgOemXJ\r\nYViBi/bDnhPcFEVQxsypQSw91BUw7Mxh+W59H5MC25SAIw9fLMT9LRqSYpPyasNp\r\n4nACjR+bv/6cI+ICOrGmD2mrk2c4dNnYpDx96FfX/Y158RV0wotqIglACk6m1qyo\r\nyTra6P0Kvo6xz4KaVm8F7VDzUP+heAAhPAs=\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thvankra-nova-billing-sku-Standard_E32s_v4/providers/Microsoft.DocumentDB/cassandraClusters/testBillingskuStandardE32sv4","name":"testBillingskuStandardE32sv4","type":"Microsoft.DocumentDB/cassandraClusters","location":"Central + US EUAP","tags":{},"systemData":{"createdBy":"thvankra@microsoft.com","createdByType":"User","createdAt":"2021-10-12T14:55:50.5022382Z","lastModifiedBy":"thvankra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-12T14:55:50.5022382Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"testBillingskuStandardE32sv4","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thvankra-nova-billing-sku-Standard_E32s_v4/providers/Microsoft.Network/virtualNetworks/vnet-canary/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAE5Hd9yskSH1BgAAAAAATjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDU1OVoXDTI1MDkxNTAzMTU1OVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA5UFGOQgmohqJHkbMMcN4cnK+mAoScYUAR/njrD0x/GyFeTko+QXMU1JJ\r\nIePmVcugmyO4xX5ITShZWy+/qPAWy3vwT6HzBdFq5eTGbkbFCrQdh5w1+jwOApMe\r\n9ZDlMDO+RUtJe1XxWqi3KRY0e/pJmpOk4IUEjx6wxvv5MnSWhMa7aepnkuCS8lvF\r\nNl9D5oUGIYvoDUgVMQSBazQP2zjRunMT9JOopFKnZE+L7NY+XDtla3I1uZeMeakA\r\nfqkNjx6lkUIgcHPhSMy5XHBpOeFdSDjBA8dNk6E3VSlLzvPcHdaHI7QrmK/43wzf\r\n+kHpDdTXx8EdOqm+pLHoKLWcjw/P8O9RAMiXefxGnQKNuP8T+/prskR5esucJQkj\r\nrWSu7W7YycmIg1rPCd7Qw005/sc58eLPN+Xrj/Aw7RSR0A719CPZMjoSfKTphSEK\r\np+ZB+5j/V3VEzjGbL6XFUezFfaIZ+A7ZtkaEQYDH0fVVziPnhQhJB+Uym7a5arB3\r\nqiMMw7Yjos6iWkkOaqhaCHuN1zC374xsBec9mrJ7bfuLTNtBEKC1PhdZrJM3UDCo\r\n76v+3mnKouN/7vyVkbiLNb27MXRigXFbO02opR8prTkvv3af+iq6+xjmVWZhsILI\r\n0HIBk9/HoMZCCb9e95RQVmVwVNrwa24neVWl+JEw50sqLMapsGkCAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUOsfDysjeDdOSwCeJyL6X\r\nR09FaWAwHQYDVR0OBBYEFEKY1e9GMTrmL0fNVVel5jUfu/yRMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAuaX699r+ayL7JphKgdiDuy4iPTwf7fTkUsLx\r\n7ixBzvnUrUASdS9GJEkpsewdipRfMycn3UXatnQ6rudCqBgsExJzHBGlokhvVaZK\r\nue0oIlJstnKQDOJCpJem9NkvwALP5z3WZoqYf4EaaQXUkMAJJ2qxw+mksSBEu+MJ\r\noxgbStKv98q28ypOVLjaFNH/VbtAG/rIcqNyOdjAPcgMcohe7lGO1WQtFxPxtzvS\r\nZfgao/ZjWeNDFzy8FSInim1q69Syl3Y4dzeAlG6PiC8t7upDQzo2AJxI1tW0AkKV\r\naJIS9rGZquLN5MTbYozjEyzMvSEYFEpx+7YKQGayHz3eCGH4BzD43YPt20Cm4BMN\r\neyV64+d9PufCA2tzrIQ+VJhsZKb6qRgV+Bp6AfpgeyU6oRkqsWKJyKyzp6o0D+Si\r\nq3gYJdD3W0+X1jUJcQuywYLRg78rVE3A6VJ7RIEjXARQV19hJvxchCoqfbny/0bX\r\n9Bb3Rtr1OAYhUml6Z6JdfnH33KfEJvFa4wlKRBxpuw9gMG5ydOsbZ3YIJDWccTLH\r\nQZWJk/Lakd/+uLPWOzzWQCf7nPapwSRjtfRRLZoX49PIQkrGM3dpLLGktC+sg8bc\r\nvQ2bO79bKJazcsKuNK0dOpepIBA1mMD81DphYmc/RMF9KXKdKz4Ugh4HNqkltIsG\r\nEtaYPCM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAE2e+Zx9LtWjEwAAAAAATTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDUwOFoXDTI1MDkxNTAzMTUwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1RZFKUUXNWXgbh7dm52Irso1hGPDEL9ZZXYz0civ0AAlDu9P/1okXVpc\r\nOPQnRxE7e7O8roTSctA4MTBGFIjrCythVzk6MJC1bgGv7qwCV6o5P4zVSxQrHPx+\r\n2DPDIZlt3UV4RNLuKVvSZdzQt1UsxUOxvTZ/0mO22d6mcspf3I5Xt5h+7WlTgHAy\r\nWvvlpuX7LR8yTK/um4526bdhUG98I2nEURH2vnNSt3/Dbt1R6qoPMja0HhghuOtY\r\nt7Z77nyI2gOY2fRu3oM15Xqe8b3Qwx5IsSV/pTWJ34VPz24TfUmCQOVtu/m84ayA\r\nwSZ754d+JvkyPSdINV3tuLtbo/QVewIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBQbRewlXgZoN1BD7V/nign/FlWETTAdBgNVHQ4EFgQU\r\nvZx3N/n1PWYwyjVonISvG5ZVEL4wgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQBFtFQSE7TjElKEmwHyydrA/UEAzho7rEMy2lvNr2tgX/7WVWDqmDrTK4La\r\nm6/MGOUBYbF334Ywvprij/UoSpyMEq5HgXiCBxOgyUPSZx8x+XyINgCujVXRk9za\r\nPh1lXpYCV2qhIYAhazeprDYzX2im0Jwe8X/Xsl0kzgs3TE7medDW9CVEYS+T7SqG\r\ntmXhOg1FW04yUM0+Z73ZQGF5oqnE76kzpLvfn+YWA6KbLfH84yTpqylAD5UFvfeW\r\nMRoNUUckpsteddNba90soUzxeRwU0Loxj5Qsds2gB0tSIpVh330BxEDTIJ73FZIv\r\nvURqyoDor+Eu1NOVk3sdCM5nXuN38dc0a9fsSRoJkbQYTP9UNJPcUDO3kZoYWNxD\r\nWrn5J/ltaxPc1o7+USSm02C023HIrWBJkfnepIZKV8m7wkddcygJ6FQkxFU+NQUW\r\n+a91tIw3HTEHvmNlJddPmjgnE3k6GS1NLOC5IV/s1s4sSME3QYQAt+zr5TKRdZ06\r\ndBOSXrz66pVpkR2wuAvlCEuFk7gaBrKz4j+3wJ9CPhETezARvgpzQCw9es9y2qde\r\nO1rHPYa6IRtmjcVDvxfmjei66bQwoapDH/OMS6sPqqqn53l9g4HDDgWywWn9ad51\r\nL5NAvQYhHwSCG0E2Os5mUFYM56ZVA4WHVUn7NZsAXGnDtIwlPw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAACbGTID3uXpE1wAAAAAAJjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE4MDMxOTE4MjcwOFoXDTIzMDMxOTE4MzcwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAvBsRcCD4Z38LQPG73ci9jIpQv5tVQh8lLrcQ9lO2lH6pUVWi7T7jCyX/\r\naCSmit7fT6seN/kf6LP0hpgsU/wxMMv4c4+w1M16EiRc6GPJtSPNszl8ZNAzZj39\r\nxeJnAMhPzeABRLgzYgLH+9R3k8sIJMhSjcUfp63GAhKtdqhQeTOs7m87REtmAdo7\r\neZh/Ubn4HR1ZxAswmoWmMxMZw1KZj87395IxE3Ybj0m/V8dyskpxWdAzkvGeO//l\r\nb4FfAHVCCix9wsijqomj+jeJPHR/AF/5+MZXjoNDs6/+UMdSrEqa2fi8910J6ogL\r\nSMdL7NdV77U5551wZxeUwSEHUc4qkQr9cFAdHcdYiMnIrU28zk7O3yQdsyWdrTqx\r\nTbkoYn36Ji+aSyzs/u/Zh3pAWw9IvLaoq254Rpf1SWsvufE2YXaP6kUmvOE9Qrnt\r\nQ138fwe9CmPUT9I/cM0v16BDvELEH3KGsWez8WRFA5RAB5pPDKjMyZ7mNl+0+EDv\r\nMq+KYjtc9uWJoRsRe8mDnVt2JGRBazTCFd/m5HGywdUvg/fZyVfBrvsRhcahMXn+\r\nb+a6kw+gMY29dcNutHNl1ZuKbwUuvp0ShWnauFVqMSRP6kSgXjzM0Oez2CHEtnX7\r\nNTKy9+eXsqxkzVXop81HCR7QCDlKPkc78IRETKfQA/nHdu2iOd8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQonG1RafqmxKhDxP+NNvoz\r\n3/1FMDCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAJFaZ9bHSEXBMKUi\r\nxLJgRr0yPOBbkZAHGsXGsAAdXnsAcmRZnoMsJZwHJY9qa2SDdjWzCnEuk50KJ0Rm\r\nvePgWmDtQWwyfFT//JIccaFgxYsU2SjdHEi0DmRElJtLkYQorDjkqn8s2T8y95f0\r\nmdcNme7cQ8PsjawgV1hb7r1I0bRh93M4pDzRt0g08RoFtMGuqRdU3roMDbuid5Hj\r\nBnoT5MdJlYzklABw+JPOIFeqZ0LMq/RPyk8Dpzo7m2dSc78GitdNnWxj4Ku6l8lb\r\n0OHX3BL1eVKyKi8Vta3BjpzWuMQompgdzp1Eh+mDyfKV/+dlfIEPJI1stEHIEKWR\r\nR5yt35+RGXrmsmAwTZT5mcJk4JdAMhVnRnyWvxPzieYCR9DcIaT6+NBBYzQegOG+\r\nIMnLpnZp6qhbG7Nq9MXCqRY2ooojLCTLTCx8R2cqdYonJpB4lSkYMFYbuV7HoiNr\r\nXdZm0gMRi2DmIaZ7cxXUn0BmZd/lXSXNKdxwHKecu0F8ByT1Zlg3NgIhCb+6SDYB\r\nlOv5YhnwSd00aUaSSYc2dKJmR2yfCKT5Li9wdtjlB6rYIb7vHRl3x98OIVE+O20S\r\n1jQEqRLzkaDIWOA8D9VeuuIW05tahms61dDi5gx7M/ALhFa/QsbkCJXRf07Pe4ki\r\nHE/1Nk3cohSibWYZqHssdutHBd+Q\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAEnEBGqOfE69FwAAAAAASTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDA1MVoXDTI1MDkxNTAzMTA1MVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAw9b7oiITgLVh8Yry44fRHl/xMuYtsI0Cg944jlh0S5ljKgUEMvt8/S63\r\nRH9+9eXvbFN4L9EL2+RDhWd5hGyg4gQeKtxO7D/+JUoTIamIl4pXTxhO5oORnS9k\r\ntWp6lc1OfpYnkgzrkFHICKggDtCpQxp7cMtM8evEvY/7WvmJDbAsgSRlBIeyVZqU\r\ndfw4ahzvsNmMfDGx2JBKgB5mndVGyg96yCHy5+7XKOkkcr+NKHdnBM3k546rGlCV\r\nErgPVuUkRxrwIa3xD9BRewoihWG7sbuxny49CrdbDi3WqK0VPSJGZ2y5ipUTwndi\r\n/+QhiK5expoHO0hl20DwRgq74qB5zSs379PcTQz59OvUDMi2fiErDYnCT75X3w1b\r\nh2uGBFIwonYXGHU1s/SaxQlXErGplgkLv/tBPAXu8sk+qANHaY1EfPwpPfOXjIxl\r\nRT95moW0IP+CPmhV0g2ZPKNn0mIRPpf8IzI5O4pLe6xfXDekQnNcGaBY9nN9LBO3\r\noi7pBBNObi17J/ebVg2rScg+KAWVVf09iLF2inpoFxKOJQz//poXo2fAvYVXnXJm\r\n99qJvY8gFyOyg2Cr2x/Wp8yw/u7H4DztXuFMYuPEVpR9/EeLP2bzrpdbJpj+SPT4\r\nU0OmtjVtKNR4aOBNBVWmzxV+WKRBfpkq+pjpRMkgFapXWtjlXV0CAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUluoFkm4uQswgfjWGaL4s\r\nMWhX+14wHQYDVR0OBBYEFBxS0IHKkOkG4KzpGA07z01trd55MIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAa08V3/BsJsIOjn2Qu6zUb0GosfdvggVX36PY\r\n9OZyOn5d2+tPPjG2re+uovdpuLKx1YH0iBX4kIL05yObqKMAv+YO3Ihj4MkcYy6A\r\nk9DbHyQTYoeSfaryn6yo7kLYCz6E+li6HJ4FVx13PxpwqDXWUu+Yf5Kszj56IqHx\r\nTI9LV1ZbqmZYk7fQIPETYENkE23ypgh5snRtqSZYTw6HASkHI4E7NgFkOATnIcs2\r\npLGzcc9vc/QYlj3PT3ciGdpGkz8l/A2MMqC4eleYFTBSX9rNNG0tf0M+5fVF417D\r\nmtqDlglm9bWpgrdLpmcj28f3766EBJBq9zza4M9dAGBWBQx0c8BR9saGATd/U8lY\r\nmlTDhnRdqJvvTbtPzFFmTF5jrANky12jKlaHHTyLETDu6OeDbVEyJNuhj0a+cQ6r\r\nZwYCG/k0WCzUx3MMq1A11uxvseoOmpIqLOGfkEdmBPQXkKC02vyjZkxF0pGPNNcy\r\nBSCIlZ11UtC5ghcZ2Wg/U4bAogTv/XAnjwzLpp5V7mcepzcBagiFlQkdnvUKNI/I\r\nLkerOmrgKe0rgT+ICALZiq7hIyeuM2uthyD3FaBFf62WOtDD6Jfwkg/3LI7of+HC\r\nGZ99J/xaocq6NFYqzD/9H6n0+biogXUJtm7mKhQO3PeLz/1aDIwLfKqZFr3PCStN\r\nvTWqAdQ=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFYLVFiDd8BlgAAAAAAAVjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4Mzg0OFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAxIoR15PqTSSMns55DdeR97gCwVWRoA6zCYbU66RoYrXuHSpcJM+1tnHN\r\n6B2gITXD0iDoTLpuOvRlM+12v0c8cWdzVoHuRuG0k1ViNgSELeNw8SXSQ6jmvgPy\r\nH6fg+NiKLkjYrJuIp5me3/asqMTeO6MOkeimS67PYerzkMYoC7BUEUacludZswsM\r\nFZnsM/vHCjIpzQMGWyUzju2ANT+J41Wz9AmukpPQFNzyq9566BEU/4MJh9Yg5aSR\r\npzI1gU8r4Y9ABdOgjsFnEm8BSSdlWLgalKevYPMLX/FO2rFufFgcNJq3Y8rnAtJD\r\n0k9jt7isXmJgS+JNfANvY7+jXQaCkwIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUOLjGDtr98qbFC/XuACeceItvo7EwHQYD\r\nVR0OBBYEFOXZm2f8+Oy6u/DAqJ2KV4i53z5jMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAYI9s0aXNjS8k6w/pyYwcd8HBPAjpWHJp7vBNsa9rDbau6raD\r\n+QWjj+hO5OKUkNchKIkK3xUc/iDAMNALDLFqUOaVTeMh5fu/e8Pr1AX1R1c5U1Yd\r\nxExItrFARqTCCIQpLz3cTu/9KA5QgUQlnFlrxA9IHq9G6k3TvTB2AngUzXBhNhl5\r\nb8ya7LK3dhfqf2BQHJ7k1XReCJLYMxI6PaG0F6mWTCFNBbBxgjsXeXfjYv2li33v\r\n48ALT/NXFoOTbAOP4EFfLhMDnx2O6cFOKrYT9O+EU64oJ/0MQDQSq9PVos5J+RW8\r\nvD/h2ycPqMnmsjvpJ4pWJZP+YSxy/HWMwbZt/Dv/UobeQqLCIXGnODv87K+1JVo0\r\nO3c1NtGJu61JyXwW8id8VSQuc2NzEr58rOOGMfU3gHZMSNY2gsFs1gqXC6MjtX9O\r\nipJ+dqr7lgRvpDN9bD2kd9CdOWsxz6PRPxOmbUittmpHdABMZuaeKB/5MnxVrpNw\r\nlYtJYXvKRY1V30kjFSsyLv02YYKb8MI/NfWcjMLw4eaEn//ST+sf+LjB9KF8TxBX\r\nxuBUpQVA/TJX9GEqYMZt557A5u5odSVcac+w0/Nn4E6WzFLfxMr1O8OOOQjzlG3u\r\n5BPqprm+utwEHBCU4iVcZOdnSgk1dm7C5xmmTylFRYOlwVrFSPcyKy0+6H8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAEso8JmcB0l1ZwAAAAAASzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDMxN1oXDTI1MDkxNTAzMTMxN1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1FFhjk/dgVlthN00OKObtbEisXfH40OyapM9KcVlUPnMElPROdKi7XPQ\r\nagq+Ry3QLSSZgNWnkahCSxE81oyudrvlhpR7NpcDPZHsYFw6qsEiirml0hc5awSq\r\n+MtFo9pfnr/zQstb7xg8wjduWjANvO3E34jZbfmCyw4gU4TRPIa9rpaV0N14hQTk\r\nKcBv+S12udS181oWcTc66zxVXUHNK15PRv31jElEYQKX8EJWCe6ccJA/cJD282sR\r\noEhfuUvzXHOeWD1jXH+Eh+mKuhLqiQHPJH7TJRMsN77ndtHH9us3Ak4l9AmGNZZf\r\nwNquVrHAiTw9Ai90btckoeMRn8eogQIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBTX/nF7X/NZN2T02QZU2G6DYuwmyDAdBgNVHQ4EFgQU\r\nlUWMsJMswORfcQ0UpecnwcNjm/cwgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQCb7VpPdQaBSKQdwDpgFquVkVtcKzEAwsVlzIENIrlRsOcBgvZlW9QKwgCd\r\n6xvrF9smidaMzlYuxYQypQ0RQEHDKJ1SJQLc1ZtR7fWf0xHqU0cgX3hktDNyN5t4\r\n7rMtYOUhygcZIxVQ2cpkyLoilwnb/q0Y0jOnA7eo0r9K67TJ9CP2m3ZUApzRaCwv\r\nqQE8eNZvngy+613PU11A2EFuTPXoVNb7S3w8amz+mYYnJCBhxf4PdYA/3DZ0q3FP\r\nfFxqKAbuNtXXHFmYn3BBMGSn082Uq8RsAvj5XEkI/xylDlwG3zT+QaIOrJ/06Toz\r\ncT0ewSlyNAB6LzGp/HLTIffhSNBVX8ILs558r6VcnTE21awdkWqnd3PiPkWADD78\r\nDVSb/7QOsBdZp6BKkcDzTc/uaDGahR55UcapkOMBSbngkomK986ITx3yUITn0aV4\r\nBEVbYQQ6b9l/eNHRosiwL52QPnYl6fJRsl0JuUzy9T5DrwGGnRgKQAOmSWPRTdt2\r\n14MWrxbLFRRwvqt2COK82jPTAiZ3XqYSZzZce9bSDsGSm5VpwWz5+xyBYc3djzKR\r\nThctXJrwftNyZD+LBc/4oLOTYLpDB23eI8rvb6Xfm3A8ANucIq2muavxi1A+eyYM\r\nQXwyB2foIV9yhDIA5I1psyJo+CwM9CcibRTjjNL5ghEkoSDjyA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFSoP4knG2YAHAAAAAAAVDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzczNFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApuAstd+jxOmcAhw1KNXa7fDE4SFe/7SdG4avz6VQqep4ofwJwZTxQJNQ\r\nBC7dybKZO2RBiDzzayV9PCxmK9HPRMRmuj68x9BRyoEbVU1tX4HtiBK+hAGiRNQu\r\nPRTYcSs24CgjI3JrxOjNesp8iE8HUVntN8ueXnpTQLSYOR2TmTGM835tkTplflX/\r\n/zPtZvsXSZz+JssQ9SRcXS2t/fPDpKfNVatOmq4iwtX7Q6IO/WCzAyEzacjAFqml\r\n0/PRYT5O+jiRO+TImZ2RD0CB9rP5CYwN2T504drkKteNaT+FT/teBLC+JraDjh27\r\nv24yknl1t8dXCSS6l/UBGBGVk+gr0wIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUVSrR7NlDI9ZN5GcKVaV9JEKwIbEwHQYD\r\nVR0OBBYEFK55wmtdJYgTBvYHCcOXfHuXjx1VMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAbgp2LNvP1OVFkH9JTg9rTMksjvLIpzaqJehSp5+3YNzGl/TH\r\ni3Kg/rbtQaKErwipeLMhmqWFuT9kB22eeyoBSxx3JTzRmKtcJO47IX0qymW04v2i\r\nI2tVWQigwJWtE08Z16Q3NVdgAox6DDnAvmV8QDlPhWdW0gGcszZqFD47SJltU8JJ\r\n6D+xuDl+xUIA5wQ0987HRo4dSx3Vny1cd98GdMepsOnCpfm7ZQDWJUggp8m8T/jv\r\ngj28G4JNV9nsx3TT5D4xFZ0rXUlQNmhJFesprLt8NqOoKqmP40WdqrpVIxlu5pdH\r\naf/uT89gHO3Zy+iqNbCDRB7zSBtaalaqLvGpE0xV3p+xpjY1CujjvKp+rUrGwA1t\r\n7aNRowd45Dn+kESi95bE16V2k54YbRvgkwQgqyFUiissogOtaOwQIjuv5NUMkKnj\r\nWz1S1nsMTwZWQ20pT+SG9IMWxAP+63fLIMxWXSbwkTo1Q7JVbr7ZnbNjPrzwerrq\r\nTx+CgfCjU2TZ2WaqYnKoGlgjiZkVraQ1JYJkEr5N5+12CnAuVNzn7pMs6HUSxc8Y\r\numBjy+KA0I1XMvFerh+fhEVad7kOgOxqE1uLdXZxkOXHC1N4FQlkI65Padcd8dyM\r\n3g+er8suC1gf9/fWU0AlgIqls48Wis2JISOeSsMAi3BDvCIpp5PHbuNfj7A=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFr7ZWQR1r6OSQAAAAAAWjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzN1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEArMu8k7Kq5y6uDXZk0QxV9Ya5K3Mb0/sCyV4fs48XfAgL3YOHYTZ5o1uB\r\n97VZ/oXuenXaDcoDE18WhOavpqjWHc4eb1QeGGCaB0MoijTLGPzqwWRdByW6l2U2\r\ngFzjKWKtFncIj/VW5S98uCDD8b0SX278XKubkKv0Zn3m1E2wVrTvG8Jc/MuXF0WX\r\ntjFRRJPY3keED1zFNEKjckE4ywTV1atTqnKbmj2rcQucHJ4ufZ89Hel/xLL0bFxc\r\nJnW4Ky8lZ4Q+G9brYexh/iEBcSpNQlfLVJrKZMlAwGPcp1SBGxU9GlSV7kE1LLCS\r\njpS5d6/qw4VA+z5y9HsHN225oBhpAQIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFHrWGYUoeWxxdh5g+PNL76IFQhYdMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAU2IUk2qTwWTtRBKzMTaRxYKvTyvU1nyQLxko\r\nA3304lciVsdA86+jhEkvnCwZeAHoOtYuPeQJdeyhYUhVRDAhhJauvE87FB69gM6h\r\nYUnRqiy+vekLrHB/1x8njoLHmcppjOvBzziOPSqvf8s6O8tJ5AjY3398sm5ckH37\r\nVYHa/+bAYCvEsYmgDGN8L25QvXScTmTthSXHlzsCItPpKFs385dsGJnFD0KcQ5c1\r\ngLmV1bdHnrWyy2mqB819CFWtzhnojtzXxZLuEfTBS18u0qoLdN8KvgB2BvfgZtY7\r\nx+fbkiyoZfnZak0Oj45Z9Z/6AQ1uHGSRadAh19mkcrkPwHktc/3M1PJ69dwZn8Ez\r\nASzYFf8QH58i5uxdou73v+5Bd1m5nmtFCyLC6QDtFYH0pkvmafBx7PwyrgTjq2Xv\r\n7eWL0wXESxzY4HpjMDO36ncsLvzI6j4CyG4cpA8F8+9jwizWqmKMQUWt+VMICsP7\r\nRrzCJ35ogFGWF/dC2hjdjBXjcyLaliR5nE+sDx1PVDdIu7y8oBi60+Vzl0+BSf8P\r\nOdssgwciUpWVP+9xf6SZ7D9BPmLwgIJZ4oPc5K7cTOR6ksQQg8fO44fmOCRfVD/T\r\nDj1e39ijjkmcXUvrcu1sh93vbupLKp4Guruj3Le6iQ4Hla6Pr4znFKCzKk1+RrcQ\r\nVnsaqio=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFOufo2CImJDvAAAAAAAUzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzYxMFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAz2IfhGnsNWpW1cYZrm7f0KG7FjkmtAufsz6xSPNM86b5+jPDUpkOb7U7\r\nj4cWGBVdrYYqWUkziZmWPyl9WLw43KGzaMT3xTnm1xWyok8Z1D/ytHfxFI5t+Xzk\r\n+pcWwIZzuElzEzAQYnVMyfdxD6sM2winZ1ehDpvJeLTPcuTPf5fDYpcrnebODQ+r\r\nnsvq7oU7bHp/jTkGP/2hNzNLR7QJq+rOaHTHDky5yWrsMdgGj0dJXmId6RIfgbeq\r\nJyz7pK0OnoqopPXzZcEQJGNdh9tTh0DWpPGkCWvp4yC2Sd6VSDIApnIpXRn5WNGc\r\n79eeuL9eKvQ5W1zq3/j5HlmwZvPOE+3kPe9r1+WMazNqbhmVk0gUfZX+cnJcy8ZH\r\nqZhjCnW1ihCHzNxMQypQLrnOgVCBkkkRj466iLGDMGL5IyTji2AAp50wMiZuVQX6\r\nwY4kcKqLsjSPpDpHGIie+58/dh9xFgqJzV0kNbAvehRlbwzQnRJWzr1UgZJgjluN\r\nlLpJwTmUIe3I4FzbwrzGMOltYu8XbdFAfyPM4fcfqJwFTF2xI5OYNC3Rcou9OSQT\r\no+ce9/rON//vZNZmQ+TPQ3nkPoKus+JX3EFJbevLeG0IvvC8c2ABwv6cNcvbSSoV\r\nXP+XaBLuXe5A3G+Tdr33bVhKKnbKiravs7sEeKvXVrpDgilOuG8CAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFJbqBZJuLkLM\r\nIH41hmi+LDFoV/teMB0GA1UdDgQWBBRIo61gdWpv7GDzaVXRALEyV/xs5DCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAArPH6tJjsM3VsG3zdh/1Rh3LDz4\r\nDqyUEJEXiM+Sa1kCncVvIqI5GkFKGM3Ur3hdx6xxe5F9gPvUdL22Qf0DLaOclksk\r\nO2FABXqDRv0P7k5yyryzTM/RmLhleut3Fc8BUdfrkmif8Znyxp12sRxK0UgEf6iI\r\n+dEZugVpwAl8IRUk9O201Q87q3zI30NgPT2BJiDycKaKQJF634qatubvL28JaiOd\r\nk3uxWfcqKjO0oeSJ7pxgAiH1rCah7UN5T2d3V4AmDQGLPo7lwX1SKZewa10PnF0X\r\npjE+8welxOK+4pEPl2kRdMDpr9/XPXWpAPt2h67Z0j7x5c7nDU/eZ3UjRkJePoIQ\r\n5aGZuxZ2diziI4JWhbW+kF9M8T0CM1EUIcQV+8wvvualM1q0IN+SJ1X49tt8n3y5\r\nfEAur2599a16z7zg4uF1xI/SafWXMjC8MObCHjR5xodSQ7IxvGyl+6uIkENsiQBF\r\ncuM55MMUELl0VM0+n7Kv5K2Ur+heLzNlTTy2eoiU048g8iQmZzP5C9y4hUE3rYgJ\r\nRxP9ovHl2km91RDTei9aANUGIB8U2uFA7pxe0G8Kp8WSF0a2DtZu7sf2lGjKvP+7\r\nJGaMrJn2bJW6cDEPgfyKCio8kCVtFg7QTtkaZjF5J6AIB0B7aHNPKlAE2T8O2/Z7\r\nJIvM+ijPG5W96tZP\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFjSjQKPPAEB6wAAAAAAWDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4NDAwOVoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA3Pi3nd+o2ItxXWvhyaIDXRbrxgB1wqI0wK/wgC3vs2vSbIHdSuOrtac+\r\nmR6Ag8rE69QQOykN2KJIQI53O0egLWUqjDMa43Fkh1EWTAD0B6snyV91Lt24YPPq\r\nOyJZLhGCtYJoQfPQxZjgW0PknDvWCGIBPFacj86c84QzQdmNBMPrObC21S/ilK+H\r\nGjwcYx9Z3dSeK2CPLLkb3C0HzWWLBL5lFHrdM7qphSAJ07g8/ggis/b4aHdWOlN3\r\nfyySWbuTLQnX8J1XZdWGc+7Z60gzt2jwUc2kgpjcpHvV7QYmy141rjiQyFDNUf7x\r\nFBeFIpLDPoxcfAsOo/dtVfxp/dNMqfAEC27QrUogtIUOcCaSZ5r09ECOuBW6Mood\r\nDIx4bUEhXOJmZBtpzRXhVVKTC7Aqs3PTrPehspCxOclx7c8aESASwj6SSWpDQi+x\r\nrKm2DgTIgvVIdyBNdKhxhGNyl1t9jTEMAdwDmY6pN0kMLCEdM6v9fG0nvtFFLU/m\r\nj9Ojh8Rtf3YWiUPd2cI62tVoXckaP3TbdCNmGysT8ShFNEypEINWIl49U7V00Iec\r\nOveCbkfsnKnT/o69znrWUH+Pt65GxrqO5A+To6WU83OqLxljS/cyBTQmrDh70Dgz\r\nKXDXN3JVW93RLoXuNyAhd1nUOjKOI2tmPhEC4Cz7lqmVxDsQaZMCAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFDrHw8rI3g3T\r\nksAnici+l0dPRWlgMB0GA1UdDgQWBBQ5cV2pFRAtxN9+L1luQE3A3+82mjCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAI68ze1N9ZqKBI7Q7BXGlc0k99wW\r\nCoCZu0m02crvYeITKUC/eizH7s6Sx2Kk5Hnzz0Rzc8G8NpiWEfp7ppKeP1jOMv11\r\n7P1KB6IHyRLdW7vAIBiJy1qhbLAxseR7xkvDKv9yjZYL9Q7XtlSgrd9NuEiuFsfj\r\n0ANzVf/Ea4br00gGc8ALfnvgGE7eUdBNqWKTzHcQREdjJPRMUqTYqcvd4qQbRXZt\r\ncXLt4Fr3pXcwG1UExrz3TP4ueyrqGot/OFDvMihs6Tak0qjYygT2dC3bEOBg3GSQ\r\nDdQVzBFO98f62/l51TBlWizuw3D4/dKIPfQU1Qt7sr9e7CLbecoO8EVtyt/yGRr1\r\nD4BPBGyEzC6QoqCo5Nh27yG+DxFtAGdm/vLaFeJOVM3q2d6nL1FvNzlHTHfOYPJ3\r\nNwHB30X9TpdRqoBLM5UC0m/ybKj4ygXAZBlkJXMO/bjtpqyidJ0SaFuE8EdV9YoJ\r\nKUmBw1ZuZd5GHbc+Ilz82WX+JWZ0efU/f+75Ywvntu/3s0OsnpVoqrqM7TDdzE0d\r\nwRiZ+mvtgIwp85+et1iEdaWPj+d6LfJxpDDCPhaqh9hnNIkZFptndwDwRE2MV9Wr\r\nlUCSA96/2ubHsKt4E2D96KvNog6MKdyEGz1sZep1yZKqE4cnNzGNBGRel0BRa2MK\r\nyTOQsCbnpQGhEz0m\r\n-----END + CERTIFICATE-----"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFlFSsCTnaMEFgAAAAAAWTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzM1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA0E8VPmTCi+s/ukALr8kiz9n0QMveOlaFztd/3QikdEPvOujCuE/CXDKt\r\n0KhyGBUshmHGEC580aoe2Ze2gBJ/Dhs8FjdCjH4IyWU22QOervNkIc2Xd3EMxVZL\r\nYmWmDp5yfa0DwHqsqLq1PLwyk9BfYhh2gp9Dp+vECu4FzvVoZd73UaTpvcQKDsXA\r\nTVR43QC8AiL2AiHgOB3xE75MR/kI1OA7mTaOK8uZbQZCtyG1VMtNL+Q4Di0nB9cD\r\ntqfQj1/UCA76Nr9a7p/TUnck94zlsHE5RVGvDy3GKpa4cmCb+nRpF+ybZjuw8fPT\r\nCY5JGTLZreJMgk+Tej7iN+BYyn4Q2QIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFPFGaMbxw/ArLX2LauGy+b41/NFBMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAD6YslCi5IxgKWQYVzHClxGTpTXEarOPDACuQ\r\nnZIgM4hbk0rMqW4aHFd+paZmMUvNU0HWtIq7aAbNZGCdTrb6g9xjQKrdivWr24BZ\r\nBDxlYkU1tNvdQmafd/RESZ+TpElbuBw2EW0qtK2K+BfL1fTcwpIWRoqWcZUc/CzX\r\n43yuA3vE9sw7/HCDOEQF+QW12B6LDt2Y6DR2y8ZjYsIM0X99mgCE8/HYL4AR3+mA\r\nHjlncC3qlXWRUk46kz2yU4gu0k4P5vexNuGvU9uHvmqQERhhHYkAiW5pwCNFdZDw\r\n95vcnWocRk5TaOPp74v06msx58qS9Re9Fz5xwp6dGGqvWgcF9UJtVVyXMGYB1/1+\r\nyd5n8VpvHVWlrPNpcT0p9YLeou/HKZIiekolUKL6SqCbDFwSUMPM1xWSK6RbphmT\r\nJZdAoKKLq7c/4bFPOxeKvBjT6PrWP64ktWN1Z+AYQlBp1rK7A/ZkAOh8l+17K4VJ\r\neb1whd4SmNSnZbv9jhOeWhrbRsxmFJ1SFHhoBhS3Q/WZWMJtLu2Hv1RHnqRgLD3y\r\nlaC9qyj44pXka/MiLauGl0qjRsO6i0ZV/nU43/eZt4EhWewfmXRnfNlXA/u6abVS\r\n3lkNTlQaJAmTijbKk4JI0qQl4e+xZloOXJVNiqKgYSh3N93Bi+8ROZCLqqpwrO+C\r\n8C5Y9Bk=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIFVjCCAz6gAwIBAgIQJdrLVcnGd4FAnlaUgt5N/jANBgkqhkiG9w0BAQsFADA8\r\nMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAwDgYD\r\nVQQDEwdhbWVyb290MB4XDTE2MDUyNDIyNTI1NFoXDTI2MDUyNDIyNTcwM1owPDET\r\nMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEQMA4GA1UE\r\nAxMHYW1lcm9vdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALv4uChY\r\noVuO+bxBOcn8v4FajoGkxo0YgVwEqEPDVPI6vzmnEqHVhQ1GMVeDyiRrgQT1vCk1\r\nHMMzo9LlWowPrzbXOwjOTFbXc36+UU41yNN2GeNa49RXbAkfbzKE/SYLfbqOD0dN\r\nZLwvOhgIb25oA1eAxW/DI/hvJLLKh2SscvkIyd3o2BUeFm7NtyYG/buCKJh8lOq8\r\n0iBwRoEoInb0vhorHaswSMmqY1g+AJndY/M7uGUqkhDGBhLu53bU9wbUPHsEI+wa\r\nq6WypCijZYT+C4BS5GJrEPZ2O92pztd+ULqhzNRoPj5RuElUww7+z5RnbCaupyBY\r\nOmmJMH30EiRSq8dK/irixXXwJraSywR5kyfmAkv6GYWlRlxFUiK3/co47JLA3TDK\r\nN0wfutbpqxdZQYyGfO2nZrr5JbKfSU0sMtOZDkK6hlafV++hfkVSvFfNHE5B5uN1\r\nMK6agl1dzi28HfJT9aO7cmjGxl1SJ5qoCvcwZNQ2SPHFdrslcwXEFOMDaEzVOA3V\r\n7j3+6lrT8sHXg0sErkcd8lrBImfzhLxM/Wh8CgOUNeUu3flUoxmFv3el+QWalSNy\r\n2SXs2NgWuYE5Iog7CHD/xCnoEnZwwjqLkrro4hYWE4Xj3VlA2Eq+VxqJOgdyFl3m\r\nckSZ08OcwLeprY4+2GEvCXNGNdXUmNNgk2PvAgMBAAGjVDBSMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEBMB0GA1UdDgQWBBQpXlFeZK40ueusnA2njHUB\r\n0QkLKDAQBgkrBgEEAYI3FQEEAwIBADANBgkqhkiG9w0BAQsFAAOCAgEAcznFDnJx\r\nsXaazFY1DuIPvUaiWS7ELxAVXMGZ7ROjLrDq1FNYVewL4emDqyEIEMFncec8rqyk\r\nVBvLQA5YqMCxQWJpL0SlgRSknzLh9ZVcQw1TshC49/XV2N/CLOuyInEQwS//46so\r\nT20Cf8UGUiOK472LZlvM4KchyDR3FTNtmMg0B/LKVjevpX9sk5MiyjjLUj3jtPIP\r\n7jpsfZDd/BNsg/89kpsIF5O64I7iYFj3MHu9o4UJcEX0hRt7OzUxqa9THTssvzE5\r\nVkWo8Rtou2T5TobKV6Rr5Ob9wchLXqVtCyZF16voEKheBnalhGUvErI/6VtBwLb7\r\n13C0JkKLBNMen+HClNliicVIaubnpY2g+AqxOgKBHiZnzq2HhE1qqEUf4VfqahNU\r\niaXtbtyo54f2dCf9UL9uG9dllN3nxBE/Y/aWF6E1M8Bslj1aYAtfUQ/xlhEXCly6\r\nzohw697i3XFUt76RwvfW8quvqdH9Mx0PBpYo4wJJRwAecSJQNy6wIJhAuDgOemXJ\r\nYViBi/bDnhPcFEVQxsypQSw91BUw7Mxh+W59H5MC25SAIw9fLMT9LRqSYpPyasNp\r\n4nACjR+bv/6cI+ICOrGmD2mrk2c4dNnYpDx96FfX/Y158RV0wotqIglACk6m1qyo\r\nyTra6P0Kvo6xz4KaVm8F7VDzUP+heAAhPAs=\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":false,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thvankra-nova-billing-sku-Standard_D8s_v4/providers/Microsoft.DocumentDB/cassandraClusters/testBillingskuStandardD8sv4","name":"testBillingskuStandardD8sv4","type":"Microsoft.DocumentDB/cassandraClusters","location":"Central + US EUAP","tags":{},"systemData":{"createdBy":"thvankra@microsoft.com","createdByType":"User","createdAt":"2021-10-12T19:56:38.3550372Z","lastModifiedBy":"thvankra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-12T19:56:38.3550372Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"testBillingskuStandardD8sv4","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thvankra-nova-billing-sku-Standard_D8s_v4/providers/Microsoft.Network/virtualNetworks/vnet-canary/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAE5Hd9yskSH1BgAAAAAATjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDU1OVoXDTI1MDkxNTAzMTU1OVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA5UFGOQgmohqJHkbMMcN4cnK+mAoScYUAR/njrD0x/GyFeTko+QXMU1JJ\r\nIePmVcugmyO4xX5ITShZWy+/qPAWy3vwT6HzBdFq5eTGbkbFCrQdh5w1+jwOApMe\r\n9ZDlMDO+RUtJe1XxWqi3KRY0e/pJmpOk4IUEjx6wxvv5MnSWhMa7aepnkuCS8lvF\r\nNl9D5oUGIYvoDUgVMQSBazQP2zjRunMT9JOopFKnZE+L7NY+XDtla3I1uZeMeakA\r\nfqkNjx6lkUIgcHPhSMy5XHBpOeFdSDjBA8dNk6E3VSlLzvPcHdaHI7QrmK/43wzf\r\n+kHpDdTXx8EdOqm+pLHoKLWcjw/P8O9RAMiXefxGnQKNuP8T+/prskR5esucJQkj\r\nrWSu7W7YycmIg1rPCd7Qw005/sc58eLPN+Xrj/Aw7RSR0A719CPZMjoSfKTphSEK\r\np+ZB+5j/V3VEzjGbL6XFUezFfaIZ+A7ZtkaEQYDH0fVVziPnhQhJB+Uym7a5arB3\r\nqiMMw7Yjos6iWkkOaqhaCHuN1zC374xsBec9mrJ7bfuLTNtBEKC1PhdZrJM3UDCo\r\n76v+3mnKouN/7vyVkbiLNb27MXRigXFbO02opR8prTkvv3af+iq6+xjmVWZhsILI\r\n0HIBk9/HoMZCCb9e95RQVmVwVNrwa24neVWl+JEw50sqLMapsGkCAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUOsfDysjeDdOSwCeJyL6X\r\nR09FaWAwHQYDVR0OBBYEFEKY1e9GMTrmL0fNVVel5jUfu/yRMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAuaX699r+ayL7JphKgdiDuy4iPTwf7fTkUsLx\r\n7ixBzvnUrUASdS9GJEkpsewdipRfMycn3UXatnQ6rudCqBgsExJzHBGlokhvVaZK\r\nue0oIlJstnKQDOJCpJem9NkvwALP5z3WZoqYf4EaaQXUkMAJJ2qxw+mksSBEu+MJ\r\noxgbStKv98q28ypOVLjaFNH/VbtAG/rIcqNyOdjAPcgMcohe7lGO1WQtFxPxtzvS\r\nZfgao/ZjWeNDFzy8FSInim1q69Syl3Y4dzeAlG6PiC8t7upDQzo2AJxI1tW0AkKV\r\naJIS9rGZquLN5MTbYozjEyzMvSEYFEpx+7YKQGayHz3eCGH4BzD43YPt20Cm4BMN\r\neyV64+d9PufCA2tzrIQ+VJhsZKb6qRgV+Bp6AfpgeyU6oRkqsWKJyKyzp6o0D+Si\r\nq3gYJdD3W0+X1jUJcQuywYLRg78rVE3A6VJ7RIEjXARQV19hJvxchCoqfbny/0bX\r\n9Bb3Rtr1OAYhUml6Z6JdfnH33KfEJvFa4wlKRBxpuw9gMG5ydOsbZ3YIJDWccTLH\r\nQZWJk/Lakd/+uLPWOzzWQCf7nPapwSRjtfRRLZoX49PIQkrGM3dpLLGktC+sg8bc\r\nvQ2bO79bKJazcsKuNK0dOpepIBA1mMD81DphYmc/RMF9KXKdKz4Ugh4HNqkltIsG\r\nEtaYPCM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAE2e+Zx9LtWjEwAAAAAATTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDUwOFoXDTI1MDkxNTAzMTUwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1RZFKUUXNWXgbh7dm52Irso1hGPDEL9ZZXYz0civ0AAlDu9P/1okXVpc\r\nOPQnRxE7e7O8roTSctA4MTBGFIjrCythVzk6MJC1bgGv7qwCV6o5P4zVSxQrHPx+\r\n2DPDIZlt3UV4RNLuKVvSZdzQt1UsxUOxvTZ/0mO22d6mcspf3I5Xt5h+7WlTgHAy\r\nWvvlpuX7LR8yTK/um4526bdhUG98I2nEURH2vnNSt3/Dbt1R6qoPMja0HhghuOtY\r\nt7Z77nyI2gOY2fRu3oM15Xqe8b3Qwx5IsSV/pTWJ34VPz24TfUmCQOVtu/m84ayA\r\nwSZ754d+JvkyPSdINV3tuLtbo/QVewIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBQbRewlXgZoN1BD7V/nign/FlWETTAdBgNVHQ4EFgQU\r\nvZx3N/n1PWYwyjVonISvG5ZVEL4wgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQBFtFQSE7TjElKEmwHyydrA/UEAzho7rEMy2lvNr2tgX/7WVWDqmDrTK4La\r\nm6/MGOUBYbF334Ywvprij/UoSpyMEq5HgXiCBxOgyUPSZx8x+XyINgCujVXRk9za\r\nPh1lXpYCV2qhIYAhazeprDYzX2im0Jwe8X/Xsl0kzgs3TE7medDW9CVEYS+T7SqG\r\ntmXhOg1FW04yUM0+Z73ZQGF5oqnE76kzpLvfn+YWA6KbLfH84yTpqylAD5UFvfeW\r\nMRoNUUckpsteddNba90soUzxeRwU0Loxj5Qsds2gB0tSIpVh330BxEDTIJ73FZIv\r\nvURqyoDor+Eu1NOVk3sdCM5nXuN38dc0a9fsSRoJkbQYTP9UNJPcUDO3kZoYWNxD\r\nWrn5J/ltaxPc1o7+USSm02C023HIrWBJkfnepIZKV8m7wkddcygJ6FQkxFU+NQUW\r\n+a91tIw3HTEHvmNlJddPmjgnE3k6GS1NLOC5IV/s1s4sSME3QYQAt+zr5TKRdZ06\r\ndBOSXrz66pVpkR2wuAvlCEuFk7gaBrKz4j+3wJ9CPhETezARvgpzQCw9es9y2qde\r\nO1rHPYa6IRtmjcVDvxfmjei66bQwoapDH/OMS6sPqqqn53l9g4HDDgWywWn9ad51\r\nL5NAvQYhHwSCG0E2Os5mUFYM56ZVA4WHVUn7NZsAXGnDtIwlPw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAACbGTID3uXpE1wAAAAAAJjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE4MDMxOTE4MjcwOFoXDTIzMDMxOTE4MzcwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAvBsRcCD4Z38LQPG73ci9jIpQv5tVQh8lLrcQ9lO2lH6pUVWi7T7jCyX/\r\naCSmit7fT6seN/kf6LP0hpgsU/wxMMv4c4+w1M16EiRc6GPJtSPNszl8ZNAzZj39\r\nxeJnAMhPzeABRLgzYgLH+9R3k8sIJMhSjcUfp63GAhKtdqhQeTOs7m87REtmAdo7\r\neZh/Ubn4HR1ZxAswmoWmMxMZw1KZj87395IxE3Ybj0m/V8dyskpxWdAzkvGeO//l\r\nb4FfAHVCCix9wsijqomj+jeJPHR/AF/5+MZXjoNDs6/+UMdSrEqa2fi8910J6ogL\r\nSMdL7NdV77U5551wZxeUwSEHUc4qkQr9cFAdHcdYiMnIrU28zk7O3yQdsyWdrTqx\r\nTbkoYn36Ji+aSyzs/u/Zh3pAWw9IvLaoq254Rpf1SWsvufE2YXaP6kUmvOE9Qrnt\r\nQ138fwe9CmPUT9I/cM0v16BDvELEH3KGsWez8WRFA5RAB5pPDKjMyZ7mNl+0+EDv\r\nMq+KYjtc9uWJoRsRe8mDnVt2JGRBazTCFd/m5HGywdUvg/fZyVfBrvsRhcahMXn+\r\nb+a6kw+gMY29dcNutHNl1ZuKbwUuvp0ShWnauFVqMSRP6kSgXjzM0Oez2CHEtnX7\r\nNTKy9+eXsqxkzVXop81HCR7QCDlKPkc78IRETKfQA/nHdu2iOd8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQonG1RafqmxKhDxP+NNvoz\r\n3/1FMDCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAJFaZ9bHSEXBMKUi\r\nxLJgRr0yPOBbkZAHGsXGsAAdXnsAcmRZnoMsJZwHJY9qa2SDdjWzCnEuk50KJ0Rm\r\nvePgWmDtQWwyfFT//JIccaFgxYsU2SjdHEi0DmRElJtLkYQorDjkqn8s2T8y95f0\r\nmdcNme7cQ8PsjawgV1hb7r1I0bRh93M4pDzRt0g08RoFtMGuqRdU3roMDbuid5Hj\r\nBnoT5MdJlYzklABw+JPOIFeqZ0LMq/RPyk8Dpzo7m2dSc78GitdNnWxj4Ku6l8lb\r\n0OHX3BL1eVKyKi8Vta3BjpzWuMQompgdzp1Eh+mDyfKV/+dlfIEPJI1stEHIEKWR\r\nR5yt35+RGXrmsmAwTZT5mcJk4JdAMhVnRnyWvxPzieYCR9DcIaT6+NBBYzQegOG+\r\nIMnLpnZp6qhbG7Nq9MXCqRY2ooojLCTLTCx8R2cqdYonJpB4lSkYMFYbuV7HoiNr\r\nXdZm0gMRi2DmIaZ7cxXUn0BmZd/lXSXNKdxwHKecu0F8ByT1Zlg3NgIhCb+6SDYB\r\nlOv5YhnwSd00aUaSSYc2dKJmR2yfCKT5Li9wdtjlB6rYIb7vHRl3x98OIVE+O20S\r\n1jQEqRLzkaDIWOA8D9VeuuIW05tahms61dDi5gx7M/ALhFa/QsbkCJXRf07Pe4ki\r\nHE/1Nk3cohSibWYZqHssdutHBd+Q\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAEnEBGqOfE69FwAAAAAASTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDA1MVoXDTI1MDkxNTAzMTA1MVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAw9b7oiITgLVh8Yry44fRHl/xMuYtsI0Cg944jlh0S5ljKgUEMvt8/S63\r\nRH9+9eXvbFN4L9EL2+RDhWd5hGyg4gQeKtxO7D/+JUoTIamIl4pXTxhO5oORnS9k\r\ntWp6lc1OfpYnkgzrkFHICKggDtCpQxp7cMtM8evEvY/7WvmJDbAsgSRlBIeyVZqU\r\ndfw4ahzvsNmMfDGx2JBKgB5mndVGyg96yCHy5+7XKOkkcr+NKHdnBM3k546rGlCV\r\nErgPVuUkRxrwIa3xD9BRewoihWG7sbuxny49CrdbDi3WqK0VPSJGZ2y5ipUTwndi\r\n/+QhiK5expoHO0hl20DwRgq74qB5zSs379PcTQz59OvUDMi2fiErDYnCT75X3w1b\r\nh2uGBFIwonYXGHU1s/SaxQlXErGplgkLv/tBPAXu8sk+qANHaY1EfPwpPfOXjIxl\r\nRT95moW0IP+CPmhV0g2ZPKNn0mIRPpf8IzI5O4pLe6xfXDekQnNcGaBY9nN9LBO3\r\noi7pBBNObi17J/ebVg2rScg+KAWVVf09iLF2inpoFxKOJQz//poXo2fAvYVXnXJm\r\n99qJvY8gFyOyg2Cr2x/Wp8yw/u7H4DztXuFMYuPEVpR9/EeLP2bzrpdbJpj+SPT4\r\nU0OmtjVtKNR4aOBNBVWmzxV+WKRBfpkq+pjpRMkgFapXWtjlXV0CAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUluoFkm4uQswgfjWGaL4s\r\nMWhX+14wHQYDVR0OBBYEFBxS0IHKkOkG4KzpGA07z01trd55MIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAa08V3/BsJsIOjn2Qu6zUb0GosfdvggVX36PY\r\n9OZyOn5d2+tPPjG2re+uovdpuLKx1YH0iBX4kIL05yObqKMAv+YO3Ihj4MkcYy6A\r\nk9DbHyQTYoeSfaryn6yo7kLYCz6E+li6HJ4FVx13PxpwqDXWUu+Yf5Kszj56IqHx\r\nTI9LV1ZbqmZYk7fQIPETYENkE23ypgh5snRtqSZYTw6HASkHI4E7NgFkOATnIcs2\r\npLGzcc9vc/QYlj3PT3ciGdpGkz8l/A2MMqC4eleYFTBSX9rNNG0tf0M+5fVF417D\r\nmtqDlglm9bWpgrdLpmcj28f3766EBJBq9zza4M9dAGBWBQx0c8BR9saGATd/U8lY\r\nmlTDhnRdqJvvTbtPzFFmTF5jrANky12jKlaHHTyLETDu6OeDbVEyJNuhj0a+cQ6r\r\nZwYCG/k0WCzUx3MMq1A11uxvseoOmpIqLOGfkEdmBPQXkKC02vyjZkxF0pGPNNcy\r\nBSCIlZ11UtC5ghcZ2Wg/U4bAogTv/XAnjwzLpp5V7mcepzcBagiFlQkdnvUKNI/I\r\nLkerOmrgKe0rgT+ICALZiq7hIyeuM2uthyD3FaBFf62WOtDD6Jfwkg/3LI7of+HC\r\nGZ99J/xaocq6NFYqzD/9H6n0+biogXUJtm7mKhQO3PeLz/1aDIwLfKqZFr3PCStN\r\nvTWqAdQ=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFYLVFiDd8BlgAAAAAAAVjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4Mzg0OFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAxIoR15PqTSSMns55DdeR97gCwVWRoA6zCYbU66RoYrXuHSpcJM+1tnHN\r\n6B2gITXD0iDoTLpuOvRlM+12v0c8cWdzVoHuRuG0k1ViNgSELeNw8SXSQ6jmvgPy\r\nH6fg+NiKLkjYrJuIp5me3/asqMTeO6MOkeimS67PYerzkMYoC7BUEUacludZswsM\r\nFZnsM/vHCjIpzQMGWyUzju2ANT+J41Wz9AmukpPQFNzyq9566BEU/4MJh9Yg5aSR\r\npzI1gU8r4Y9ABdOgjsFnEm8BSSdlWLgalKevYPMLX/FO2rFufFgcNJq3Y8rnAtJD\r\n0k9jt7isXmJgS+JNfANvY7+jXQaCkwIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUOLjGDtr98qbFC/XuACeceItvo7EwHQYD\r\nVR0OBBYEFOXZm2f8+Oy6u/DAqJ2KV4i53z5jMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAYI9s0aXNjS8k6w/pyYwcd8HBPAjpWHJp7vBNsa9rDbau6raD\r\n+QWjj+hO5OKUkNchKIkK3xUc/iDAMNALDLFqUOaVTeMh5fu/e8Pr1AX1R1c5U1Yd\r\nxExItrFARqTCCIQpLz3cTu/9KA5QgUQlnFlrxA9IHq9G6k3TvTB2AngUzXBhNhl5\r\nb8ya7LK3dhfqf2BQHJ7k1XReCJLYMxI6PaG0F6mWTCFNBbBxgjsXeXfjYv2li33v\r\n48ALT/NXFoOTbAOP4EFfLhMDnx2O6cFOKrYT9O+EU64oJ/0MQDQSq9PVos5J+RW8\r\nvD/h2ycPqMnmsjvpJ4pWJZP+YSxy/HWMwbZt/Dv/UobeQqLCIXGnODv87K+1JVo0\r\nO3c1NtGJu61JyXwW8id8VSQuc2NzEr58rOOGMfU3gHZMSNY2gsFs1gqXC6MjtX9O\r\nipJ+dqr7lgRvpDN9bD2kd9CdOWsxz6PRPxOmbUittmpHdABMZuaeKB/5MnxVrpNw\r\nlYtJYXvKRY1V30kjFSsyLv02YYKb8MI/NfWcjMLw4eaEn//ST+sf+LjB9KF8TxBX\r\nxuBUpQVA/TJX9GEqYMZt557A5u5odSVcac+w0/Nn4E6WzFLfxMr1O8OOOQjzlG3u\r\n5BPqprm+utwEHBCU4iVcZOdnSgk1dm7C5xmmTylFRYOlwVrFSPcyKy0+6H8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAEso8JmcB0l1ZwAAAAAASzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDMxN1oXDTI1MDkxNTAzMTMxN1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1FFhjk/dgVlthN00OKObtbEisXfH40OyapM9KcVlUPnMElPROdKi7XPQ\r\nagq+Ry3QLSSZgNWnkahCSxE81oyudrvlhpR7NpcDPZHsYFw6qsEiirml0hc5awSq\r\n+MtFo9pfnr/zQstb7xg8wjduWjANvO3E34jZbfmCyw4gU4TRPIa9rpaV0N14hQTk\r\nKcBv+S12udS181oWcTc66zxVXUHNK15PRv31jElEYQKX8EJWCe6ccJA/cJD282sR\r\noEhfuUvzXHOeWD1jXH+Eh+mKuhLqiQHPJH7TJRMsN77ndtHH9us3Ak4l9AmGNZZf\r\nwNquVrHAiTw9Ai90btckoeMRn8eogQIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBTX/nF7X/NZN2T02QZU2G6DYuwmyDAdBgNVHQ4EFgQU\r\nlUWMsJMswORfcQ0UpecnwcNjm/cwgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQCb7VpPdQaBSKQdwDpgFquVkVtcKzEAwsVlzIENIrlRsOcBgvZlW9QKwgCd\r\n6xvrF9smidaMzlYuxYQypQ0RQEHDKJ1SJQLc1ZtR7fWf0xHqU0cgX3hktDNyN5t4\r\n7rMtYOUhygcZIxVQ2cpkyLoilwnb/q0Y0jOnA7eo0r9K67TJ9CP2m3ZUApzRaCwv\r\nqQE8eNZvngy+613PU11A2EFuTPXoVNb7S3w8amz+mYYnJCBhxf4PdYA/3DZ0q3FP\r\nfFxqKAbuNtXXHFmYn3BBMGSn082Uq8RsAvj5XEkI/xylDlwG3zT+QaIOrJ/06Toz\r\ncT0ewSlyNAB6LzGp/HLTIffhSNBVX8ILs558r6VcnTE21awdkWqnd3PiPkWADD78\r\nDVSb/7QOsBdZp6BKkcDzTc/uaDGahR55UcapkOMBSbngkomK986ITx3yUITn0aV4\r\nBEVbYQQ6b9l/eNHRosiwL52QPnYl6fJRsl0JuUzy9T5DrwGGnRgKQAOmSWPRTdt2\r\n14MWrxbLFRRwvqt2COK82jPTAiZ3XqYSZzZce9bSDsGSm5VpwWz5+xyBYc3djzKR\r\nThctXJrwftNyZD+LBc/4oLOTYLpDB23eI8rvb6Xfm3A8ANucIq2muavxi1A+eyYM\r\nQXwyB2foIV9yhDIA5I1psyJo+CwM9CcibRTjjNL5ghEkoSDjyA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFSoP4knG2YAHAAAAAAAVDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzczNFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApuAstd+jxOmcAhw1KNXa7fDE4SFe/7SdG4avz6VQqep4ofwJwZTxQJNQ\r\nBC7dybKZO2RBiDzzayV9PCxmK9HPRMRmuj68x9BRyoEbVU1tX4HtiBK+hAGiRNQu\r\nPRTYcSs24CgjI3JrxOjNesp8iE8HUVntN8ueXnpTQLSYOR2TmTGM835tkTplflX/\r\n/zPtZvsXSZz+JssQ9SRcXS2t/fPDpKfNVatOmq4iwtX7Q6IO/WCzAyEzacjAFqml\r\n0/PRYT5O+jiRO+TImZ2RD0CB9rP5CYwN2T504drkKteNaT+FT/teBLC+JraDjh27\r\nv24yknl1t8dXCSS6l/UBGBGVk+gr0wIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUVSrR7NlDI9ZN5GcKVaV9JEKwIbEwHQYD\r\nVR0OBBYEFK55wmtdJYgTBvYHCcOXfHuXjx1VMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAbgp2LNvP1OVFkH9JTg9rTMksjvLIpzaqJehSp5+3YNzGl/TH\r\ni3Kg/rbtQaKErwipeLMhmqWFuT9kB22eeyoBSxx3JTzRmKtcJO47IX0qymW04v2i\r\nI2tVWQigwJWtE08Z16Q3NVdgAox6DDnAvmV8QDlPhWdW0gGcszZqFD47SJltU8JJ\r\n6D+xuDl+xUIA5wQ0987HRo4dSx3Vny1cd98GdMepsOnCpfm7ZQDWJUggp8m8T/jv\r\ngj28G4JNV9nsx3TT5D4xFZ0rXUlQNmhJFesprLt8NqOoKqmP40WdqrpVIxlu5pdH\r\naf/uT89gHO3Zy+iqNbCDRB7zSBtaalaqLvGpE0xV3p+xpjY1CujjvKp+rUrGwA1t\r\n7aNRowd45Dn+kESi95bE16V2k54YbRvgkwQgqyFUiissogOtaOwQIjuv5NUMkKnj\r\nWz1S1nsMTwZWQ20pT+SG9IMWxAP+63fLIMxWXSbwkTo1Q7JVbr7ZnbNjPrzwerrq\r\nTx+CgfCjU2TZ2WaqYnKoGlgjiZkVraQ1JYJkEr5N5+12CnAuVNzn7pMs6HUSxc8Y\r\numBjy+KA0I1XMvFerh+fhEVad7kOgOxqE1uLdXZxkOXHC1N4FQlkI65Padcd8dyM\r\n3g+er8suC1gf9/fWU0AlgIqls48Wis2JISOeSsMAi3BDvCIpp5PHbuNfj7A=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFr7ZWQR1r6OSQAAAAAAWjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzN1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEArMu8k7Kq5y6uDXZk0QxV9Ya5K3Mb0/sCyV4fs48XfAgL3YOHYTZ5o1uB\r\n97VZ/oXuenXaDcoDE18WhOavpqjWHc4eb1QeGGCaB0MoijTLGPzqwWRdByW6l2U2\r\ngFzjKWKtFncIj/VW5S98uCDD8b0SX278XKubkKv0Zn3m1E2wVrTvG8Jc/MuXF0WX\r\ntjFRRJPY3keED1zFNEKjckE4ywTV1atTqnKbmj2rcQucHJ4ufZ89Hel/xLL0bFxc\r\nJnW4Ky8lZ4Q+G9brYexh/iEBcSpNQlfLVJrKZMlAwGPcp1SBGxU9GlSV7kE1LLCS\r\njpS5d6/qw4VA+z5y9HsHN225oBhpAQIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFHrWGYUoeWxxdh5g+PNL76IFQhYdMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAU2IUk2qTwWTtRBKzMTaRxYKvTyvU1nyQLxko\r\nA3304lciVsdA86+jhEkvnCwZeAHoOtYuPeQJdeyhYUhVRDAhhJauvE87FB69gM6h\r\nYUnRqiy+vekLrHB/1x8njoLHmcppjOvBzziOPSqvf8s6O8tJ5AjY3398sm5ckH37\r\nVYHa/+bAYCvEsYmgDGN8L25QvXScTmTthSXHlzsCItPpKFs385dsGJnFD0KcQ5c1\r\ngLmV1bdHnrWyy2mqB819CFWtzhnojtzXxZLuEfTBS18u0qoLdN8KvgB2BvfgZtY7\r\nx+fbkiyoZfnZak0Oj45Z9Z/6AQ1uHGSRadAh19mkcrkPwHktc/3M1PJ69dwZn8Ez\r\nASzYFf8QH58i5uxdou73v+5Bd1m5nmtFCyLC6QDtFYH0pkvmafBx7PwyrgTjq2Xv\r\n7eWL0wXESxzY4HpjMDO36ncsLvzI6j4CyG4cpA8F8+9jwizWqmKMQUWt+VMICsP7\r\nRrzCJ35ogFGWF/dC2hjdjBXjcyLaliR5nE+sDx1PVDdIu7y8oBi60+Vzl0+BSf8P\r\nOdssgwciUpWVP+9xf6SZ7D9BPmLwgIJZ4oPc5K7cTOR6ksQQg8fO44fmOCRfVD/T\r\nDj1e39ijjkmcXUvrcu1sh93vbupLKp4Guruj3Le6iQ4Hla6Pr4znFKCzKk1+RrcQ\r\nVnsaqio=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFOufo2CImJDvAAAAAAAUzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzYxMFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAz2IfhGnsNWpW1cYZrm7f0KG7FjkmtAufsz6xSPNM86b5+jPDUpkOb7U7\r\nj4cWGBVdrYYqWUkziZmWPyl9WLw43KGzaMT3xTnm1xWyok8Z1D/ytHfxFI5t+Xzk\r\n+pcWwIZzuElzEzAQYnVMyfdxD6sM2winZ1ehDpvJeLTPcuTPf5fDYpcrnebODQ+r\r\nnsvq7oU7bHp/jTkGP/2hNzNLR7QJq+rOaHTHDky5yWrsMdgGj0dJXmId6RIfgbeq\r\nJyz7pK0OnoqopPXzZcEQJGNdh9tTh0DWpPGkCWvp4yC2Sd6VSDIApnIpXRn5WNGc\r\n79eeuL9eKvQ5W1zq3/j5HlmwZvPOE+3kPe9r1+WMazNqbhmVk0gUfZX+cnJcy8ZH\r\nqZhjCnW1ihCHzNxMQypQLrnOgVCBkkkRj466iLGDMGL5IyTji2AAp50wMiZuVQX6\r\nwY4kcKqLsjSPpDpHGIie+58/dh9xFgqJzV0kNbAvehRlbwzQnRJWzr1UgZJgjluN\r\nlLpJwTmUIe3I4FzbwrzGMOltYu8XbdFAfyPM4fcfqJwFTF2xI5OYNC3Rcou9OSQT\r\no+ce9/rON//vZNZmQ+TPQ3nkPoKus+JX3EFJbevLeG0IvvC8c2ABwv6cNcvbSSoV\r\nXP+XaBLuXe5A3G+Tdr33bVhKKnbKiravs7sEeKvXVrpDgilOuG8CAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFJbqBZJuLkLM\r\nIH41hmi+LDFoV/teMB0GA1UdDgQWBBRIo61gdWpv7GDzaVXRALEyV/xs5DCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAArPH6tJjsM3VsG3zdh/1Rh3LDz4\r\nDqyUEJEXiM+Sa1kCncVvIqI5GkFKGM3Ur3hdx6xxe5F9gPvUdL22Qf0DLaOclksk\r\nO2FABXqDRv0P7k5yyryzTM/RmLhleut3Fc8BUdfrkmif8Znyxp12sRxK0UgEf6iI\r\n+dEZugVpwAl8IRUk9O201Q87q3zI30NgPT2BJiDycKaKQJF634qatubvL28JaiOd\r\nk3uxWfcqKjO0oeSJ7pxgAiH1rCah7UN5T2d3V4AmDQGLPo7lwX1SKZewa10PnF0X\r\npjE+8welxOK+4pEPl2kRdMDpr9/XPXWpAPt2h67Z0j7x5c7nDU/eZ3UjRkJePoIQ\r\n5aGZuxZ2diziI4JWhbW+kF9M8T0CM1EUIcQV+8wvvualM1q0IN+SJ1X49tt8n3y5\r\nfEAur2599a16z7zg4uF1xI/SafWXMjC8MObCHjR5xodSQ7IxvGyl+6uIkENsiQBF\r\ncuM55MMUELl0VM0+n7Kv5K2Ur+heLzNlTTy2eoiU048g8iQmZzP5C9y4hUE3rYgJ\r\nRxP9ovHl2km91RDTei9aANUGIB8U2uFA7pxe0G8Kp8WSF0a2DtZu7sf2lGjKvP+7\r\nJGaMrJn2bJW6cDEPgfyKCio8kCVtFg7QTtkaZjF5J6AIB0B7aHNPKlAE2T8O2/Z7\r\nJIvM+ijPG5W96tZP\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFjSjQKPPAEB6wAAAAAAWDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4NDAwOVoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA3Pi3nd+o2ItxXWvhyaIDXRbrxgB1wqI0wK/wgC3vs2vSbIHdSuOrtac+\r\nmR6Ag8rE69QQOykN2KJIQI53O0egLWUqjDMa43Fkh1EWTAD0B6snyV91Lt24YPPq\r\nOyJZLhGCtYJoQfPQxZjgW0PknDvWCGIBPFacj86c84QzQdmNBMPrObC21S/ilK+H\r\nGjwcYx9Z3dSeK2CPLLkb3C0HzWWLBL5lFHrdM7qphSAJ07g8/ggis/b4aHdWOlN3\r\nfyySWbuTLQnX8J1XZdWGc+7Z60gzt2jwUc2kgpjcpHvV7QYmy141rjiQyFDNUf7x\r\nFBeFIpLDPoxcfAsOo/dtVfxp/dNMqfAEC27QrUogtIUOcCaSZ5r09ECOuBW6Mood\r\nDIx4bUEhXOJmZBtpzRXhVVKTC7Aqs3PTrPehspCxOclx7c8aESASwj6SSWpDQi+x\r\nrKm2DgTIgvVIdyBNdKhxhGNyl1t9jTEMAdwDmY6pN0kMLCEdM6v9fG0nvtFFLU/m\r\nj9Ojh8Rtf3YWiUPd2cI62tVoXckaP3TbdCNmGysT8ShFNEypEINWIl49U7V00Iec\r\nOveCbkfsnKnT/o69znrWUH+Pt65GxrqO5A+To6WU83OqLxljS/cyBTQmrDh70Dgz\r\nKXDXN3JVW93RLoXuNyAhd1nUOjKOI2tmPhEC4Cz7lqmVxDsQaZMCAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFDrHw8rI3g3T\r\nksAnici+l0dPRWlgMB0GA1UdDgQWBBQ5cV2pFRAtxN9+L1luQE3A3+82mjCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAI68ze1N9ZqKBI7Q7BXGlc0k99wW\r\nCoCZu0m02crvYeITKUC/eizH7s6Sx2Kk5Hnzz0Rzc8G8NpiWEfp7ppKeP1jOMv11\r\n7P1KB6IHyRLdW7vAIBiJy1qhbLAxseR7xkvDKv9yjZYL9Q7XtlSgrd9NuEiuFsfj\r\n0ANzVf/Ea4br00gGc8ALfnvgGE7eUdBNqWKTzHcQREdjJPRMUqTYqcvd4qQbRXZt\r\ncXLt4Fr3pXcwG1UExrz3TP4ueyrqGot/OFDvMihs6Tak0qjYygT2dC3bEOBg3GSQ\r\nDdQVzBFO98f62/l51TBlWizuw3D4/dKIPfQU1Qt7sr9e7CLbecoO8EVtyt/yGRr1\r\nD4BPBGyEzC6QoqCo5Nh27yG+DxFtAGdm/vLaFeJOVM3q2d6nL1FvNzlHTHfOYPJ3\r\nNwHB30X9TpdRqoBLM5UC0m/ybKj4ygXAZBlkJXMO/bjtpqyidJ0SaFuE8EdV9YoJ\r\nKUmBw1ZuZd5GHbc+Ilz82WX+JWZ0efU/f+75Ywvntu/3s0OsnpVoqrqM7TDdzE0d\r\nwRiZ+mvtgIwp85+et1iEdaWPj+d6LfJxpDDCPhaqh9hnNIkZFptndwDwRE2MV9Wr\r\nlUCSA96/2ubHsKt4E2D96KvNog6MKdyEGz1sZep1yZKqE4cnNzGNBGRel0BRa2MK\r\nyTOQsCbnpQGhEz0m\r\n-----END + CERTIFICATE-----"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFlFSsCTnaMEFgAAAAAAWTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzM1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA0E8VPmTCi+s/ukALr8kiz9n0QMveOlaFztd/3QikdEPvOujCuE/CXDKt\r\n0KhyGBUshmHGEC580aoe2Ze2gBJ/Dhs8FjdCjH4IyWU22QOervNkIc2Xd3EMxVZL\r\nYmWmDp5yfa0DwHqsqLq1PLwyk9BfYhh2gp9Dp+vECu4FzvVoZd73UaTpvcQKDsXA\r\nTVR43QC8AiL2AiHgOB3xE75MR/kI1OA7mTaOK8uZbQZCtyG1VMtNL+Q4Di0nB9cD\r\ntqfQj1/UCA76Nr9a7p/TUnck94zlsHE5RVGvDy3GKpa4cmCb+nRpF+ybZjuw8fPT\r\nCY5JGTLZreJMgk+Tej7iN+BYyn4Q2QIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFPFGaMbxw/ArLX2LauGy+b41/NFBMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAD6YslCi5IxgKWQYVzHClxGTpTXEarOPDACuQ\r\nnZIgM4hbk0rMqW4aHFd+paZmMUvNU0HWtIq7aAbNZGCdTrb6g9xjQKrdivWr24BZ\r\nBDxlYkU1tNvdQmafd/RESZ+TpElbuBw2EW0qtK2K+BfL1fTcwpIWRoqWcZUc/CzX\r\n43yuA3vE9sw7/HCDOEQF+QW12B6LDt2Y6DR2y8ZjYsIM0X99mgCE8/HYL4AR3+mA\r\nHjlncC3qlXWRUk46kz2yU4gu0k4P5vexNuGvU9uHvmqQERhhHYkAiW5pwCNFdZDw\r\n95vcnWocRk5TaOPp74v06msx58qS9Re9Fz5xwp6dGGqvWgcF9UJtVVyXMGYB1/1+\r\nyd5n8VpvHVWlrPNpcT0p9YLeou/HKZIiekolUKL6SqCbDFwSUMPM1xWSK6RbphmT\r\nJZdAoKKLq7c/4bFPOxeKvBjT6PrWP64ktWN1Z+AYQlBp1rK7A/ZkAOh8l+17K4VJ\r\neb1whd4SmNSnZbv9jhOeWhrbRsxmFJ1SFHhoBhS3Q/WZWMJtLu2Hv1RHnqRgLD3y\r\nlaC9qyj44pXka/MiLauGl0qjRsO6i0ZV/nU43/eZt4EhWewfmXRnfNlXA/u6abVS\r\n3lkNTlQaJAmTijbKk4JI0qQl4e+xZloOXJVNiqKgYSh3N93Bi+8ROZCLqqpwrO+C\r\n8C5Y9Bk=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIFVjCCAz6gAwIBAgIQJdrLVcnGd4FAnlaUgt5N/jANBgkqhkiG9w0BAQsFADA8\r\nMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAwDgYD\r\nVQQDEwdhbWVyb290MB4XDTE2MDUyNDIyNTI1NFoXDTI2MDUyNDIyNTcwM1owPDET\r\nMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEQMA4GA1UE\r\nAxMHYW1lcm9vdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALv4uChY\r\noVuO+bxBOcn8v4FajoGkxo0YgVwEqEPDVPI6vzmnEqHVhQ1GMVeDyiRrgQT1vCk1\r\nHMMzo9LlWowPrzbXOwjOTFbXc36+UU41yNN2GeNa49RXbAkfbzKE/SYLfbqOD0dN\r\nZLwvOhgIb25oA1eAxW/DI/hvJLLKh2SscvkIyd3o2BUeFm7NtyYG/buCKJh8lOq8\r\n0iBwRoEoInb0vhorHaswSMmqY1g+AJndY/M7uGUqkhDGBhLu53bU9wbUPHsEI+wa\r\nq6WypCijZYT+C4BS5GJrEPZ2O92pztd+ULqhzNRoPj5RuElUww7+z5RnbCaupyBY\r\nOmmJMH30EiRSq8dK/irixXXwJraSywR5kyfmAkv6GYWlRlxFUiK3/co47JLA3TDK\r\nN0wfutbpqxdZQYyGfO2nZrr5JbKfSU0sMtOZDkK6hlafV++hfkVSvFfNHE5B5uN1\r\nMK6agl1dzi28HfJT9aO7cmjGxl1SJ5qoCvcwZNQ2SPHFdrslcwXEFOMDaEzVOA3V\r\n7j3+6lrT8sHXg0sErkcd8lrBImfzhLxM/Wh8CgOUNeUu3flUoxmFv3el+QWalSNy\r\n2SXs2NgWuYE5Iog7CHD/xCnoEnZwwjqLkrro4hYWE4Xj3VlA2Eq+VxqJOgdyFl3m\r\nckSZ08OcwLeprY4+2GEvCXNGNdXUmNNgk2PvAgMBAAGjVDBSMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEBMB0GA1UdDgQWBBQpXlFeZK40ueusnA2njHUB\r\n0QkLKDAQBgkrBgEEAYI3FQEEAwIBADANBgkqhkiG9w0BAQsFAAOCAgEAcznFDnJx\r\nsXaazFY1DuIPvUaiWS7ELxAVXMGZ7ROjLrDq1FNYVewL4emDqyEIEMFncec8rqyk\r\nVBvLQA5YqMCxQWJpL0SlgRSknzLh9ZVcQw1TshC49/XV2N/CLOuyInEQwS//46so\r\nT20Cf8UGUiOK472LZlvM4KchyDR3FTNtmMg0B/LKVjevpX9sk5MiyjjLUj3jtPIP\r\n7jpsfZDd/BNsg/89kpsIF5O64I7iYFj3MHu9o4UJcEX0hRt7OzUxqa9THTssvzE5\r\nVkWo8Rtou2T5TobKV6Rr5Ob9wchLXqVtCyZF16voEKheBnalhGUvErI/6VtBwLb7\r\n13C0JkKLBNMen+HClNliicVIaubnpY2g+AqxOgKBHiZnzq2HhE1qqEUf4VfqahNU\r\niaXtbtyo54f2dCf9UL9uG9dllN3nxBE/Y/aWF6E1M8Bslj1aYAtfUQ/xlhEXCly6\r\nzohw697i3XFUt76RwvfW8quvqdH9Mx0PBpYo4wJJRwAecSJQNy6wIJhAuDgOemXJ\r\nYViBi/bDnhPcFEVQxsypQSw91BUw7Mxh+W59H5MC25SAIw9fLMT9LRqSYpPyasNp\r\n4nACjR+bv/6cI+ICOrGmD2mrk2c4dNnYpDx96FfX/Y158RV0wotqIglACk6m1qyo\r\nyTra6P0Kvo6xz4KaVm8F7VDzUP+heAAhPAs=\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thvankra-nova-billing-sku-Standard_D16s_v4/providers/Microsoft.DocumentDB/cassandraClusters/testBillingskuStandardD16sv4","name":"testBillingskuStandardD16sv4","type":"Microsoft.DocumentDB/cassandraClusters","location":"Central + US EUAP","tags":{},"systemData":{"createdBy":"thvankra@microsoft.com","createdByType":"User","createdAt":"2021-10-13T11:47:18.6664743Z","lastModifiedBy":"thvankra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-13T11:47:18.6664743Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"testBillingskuStandardD16sv4","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thvankra-nova-billing-sku-Standard_D16s_v4/providers/Microsoft.Network/virtualNetworks/vnet-canary/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAE5Hd9yskSH1BgAAAAAATjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDU1OVoXDTI1MDkxNTAzMTU1OVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA5UFGOQgmohqJHkbMMcN4cnK+mAoScYUAR/njrD0x/GyFeTko+QXMU1JJ\r\nIePmVcugmyO4xX5ITShZWy+/qPAWy3vwT6HzBdFq5eTGbkbFCrQdh5w1+jwOApMe\r\n9ZDlMDO+RUtJe1XxWqi3KRY0e/pJmpOk4IUEjx6wxvv5MnSWhMa7aepnkuCS8lvF\r\nNl9D5oUGIYvoDUgVMQSBazQP2zjRunMT9JOopFKnZE+L7NY+XDtla3I1uZeMeakA\r\nfqkNjx6lkUIgcHPhSMy5XHBpOeFdSDjBA8dNk6E3VSlLzvPcHdaHI7QrmK/43wzf\r\n+kHpDdTXx8EdOqm+pLHoKLWcjw/P8O9RAMiXefxGnQKNuP8T+/prskR5esucJQkj\r\nrWSu7W7YycmIg1rPCd7Qw005/sc58eLPN+Xrj/Aw7RSR0A719CPZMjoSfKTphSEK\r\np+ZB+5j/V3VEzjGbL6XFUezFfaIZ+A7ZtkaEQYDH0fVVziPnhQhJB+Uym7a5arB3\r\nqiMMw7Yjos6iWkkOaqhaCHuN1zC374xsBec9mrJ7bfuLTNtBEKC1PhdZrJM3UDCo\r\n76v+3mnKouN/7vyVkbiLNb27MXRigXFbO02opR8prTkvv3af+iq6+xjmVWZhsILI\r\n0HIBk9/HoMZCCb9e95RQVmVwVNrwa24neVWl+JEw50sqLMapsGkCAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUOsfDysjeDdOSwCeJyL6X\r\nR09FaWAwHQYDVR0OBBYEFEKY1e9GMTrmL0fNVVel5jUfu/yRMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAuaX699r+ayL7JphKgdiDuy4iPTwf7fTkUsLx\r\n7ixBzvnUrUASdS9GJEkpsewdipRfMycn3UXatnQ6rudCqBgsExJzHBGlokhvVaZK\r\nue0oIlJstnKQDOJCpJem9NkvwALP5z3WZoqYf4EaaQXUkMAJJ2qxw+mksSBEu+MJ\r\noxgbStKv98q28ypOVLjaFNH/VbtAG/rIcqNyOdjAPcgMcohe7lGO1WQtFxPxtzvS\r\nZfgao/ZjWeNDFzy8FSInim1q69Syl3Y4dzeAlG6PiC8t7upDQzo2AJxI1tW0AkKV\r\naJIS9rGZquLN5MTbYozjEyzMvSEYFEpx+7YKQGayHz3eCGH4BzD43YPt20Cm4BMN\r\neyV64+d9PufCA2tzrIQ+VJhsZKb6qRgV+Bp6AfpgeyU6oRkqsWKJyKyzp6o0D+Si\r\nq3gYJdD3W0+X1jUJcQuywYLRg78rVE3A6VJ7RIEjXARQV19hJvxchCoqfbny/0bX\r\n9Bb3Rtr1OAYhUml6Z6JdfnH33KfEJvFa4wlKRBxpuw9gMG5ydOsbZ3YIJDWccTLH\r\nQZWJk/Lakd/+uLPWOzzWQCf7nPapwSRjtfRRLZoX49PIQkrGM3dpLLGktC+sg8bc\r\nvQ2bO79bKJazcsKuNK0dOpepIBA1mMD81DphYmc/RMF9KXKdKz4Ugh4HNqkltIsG\r\nEtaYPCM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAE2e+Zx9LtWjEwAAAAAATTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDUwOFoXDTI1MDkxNTAzMTUwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1RZFKUUXNWXgbh7dm52Irso1hGPDEL9ZZXYz0civ0AAlDu9P/1okXVpc\r\nOPQnRxE7e7O8roTSctA4MTBGFIjrCythVzk6MJC1bgGv7qwCV6o5P4zVSxQrHPx+\r\n2DPDIZlt3UV4RNLuKVvSZdzQt1UsxUOxvTZ/0mO22d6mcspf3I5Xt5h+7WlTgHAy\r\nWvvlpuX7LR8yTK/um4526bdhUG98I2nEURH2vnNSt3/Dbt1R6qoPMja0HhghuOtY\r\nt7Z77nyI2gOY2fRu3oM15Xqe8b3Qwx5IsSV/pTWJ34VPz24TfUmCQOVtu/m84ayA\r\nwSZ754d+JvkyPSdINV3tuLtbo/QVewIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBQbRewlXgZoN1BD7V/nign/FlWETTAdBgNVHQ4EFgQU\r\nvZx3N/n1PWYwyjVonISvG5ZVEL4wgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQBFtFQSE7TjElKEmwHyydrA/UEAzho7rEMy2lvNr2tgX/7WVWDqmDrTK4La\r\nm6/MGOUBYbF334Ywvprij/UoSpyMEq5HgXiCBxOgyUPSZx8x+XyINgCujVXRk9za\r\nPh1lXpYCV2qhIYAhazeprDYzX2im0Jwe8X/Xsl0kzgs3TE7medDW9CVEYS+T7SqG\r\ntmXhOg1FW04yUM0+Z73ZQGF5oqnE76kzpLvfn+YWA6KbLfH84yTpqylAD5UFvfeW\r\nMRoNUUckpsteddNba90soUzxeRwU0Loxj5Qsds2gB0tSIpVh330BxEDTIJ73FZIv\r\nvURqyoDor+Eu1NOVk3sdCM5nXuN38dc0a9fsSRoJkbQYTP9UNJPcUDO3kZoYWNxD\r\nWrn5J/ltaxPc1o7+USSm02C023HIrWBJkfnepIZKV8m7wkddcygJ6FQkxFU+NQUW\r\n+a91tIw3HTEHvmNlJddPmjgnE3k6GS1NLOC5IV/s1s4sSME3QYQAt+zr5TKRdZ06\r\ndBOSXrz66pVpkR2wuAvlCEuFk7gaBrKz4j+3wJ9CPhETezARvgpzQCw9es9y2qde\r\nO1rHPYa6IRtmjcVDvxfmjei66bQwoapDH/OMS6sPqqqn53l9g4HDDgWywWn9ad51\r\nL5NAvQYhHwSCG0E2Os5mUFYM56ZVA4WHVUn7NZsAXGnDtIwlPw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAACbGTID3uXpE1wAAAAAAJjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE4MDMxOTE4MjcwOFoXDTIzMDMxOTE4MzcwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAvBsRcCD4Z38LQPG73ci9jIpQv5tVQh8lLrcQ9lO2lH6pUVWi7T7jCyX/\r\naCSmit7fT6seN/kf6LP0hpgsU/wxMMv4c4+w1M16EiRc6GPJtSPNszl8ZNAzZj39\r\nxeJnAMhPzeABRLgzYgLH+9R3k8sIJMhSjcUfp63GAhKtdqhQeTOs7m87REtmAdo7\r\neZh/Ubn4HR1ZxAswmoWmMxMZw1KZj87395IxE3Ybj0m/V8dyskpxWdAzkvGeO//l\r\nb4FfAHVCCix9wsijqomj+jeJPHR/AF/5+MZXjoNDs6/+UMdSrEqa2fi8910J6ogL\r\nSMdL7NdV77U5551wZxeUwSEHUc4qkQr9cFAdHcdYiMnIrU28zk7O3yQdsyWdrTqx\r\nTbkoYn36Ji+aSyzs/u/Zh3pAWw9IvLaoq254Rpf1SWsvufE2YXaP6kUmvOE9Qrnt\r\nQ138fwe9CmPUT9I/cM0v16BDvELEH3KGsWez8WRFA5RAB5pPDKjMyZ7mNl+0+EDv\r\nMq+KYjtc9uWJoRsRe8mDnVt2JGRBazTCFd/m5HGywdUvg/fZyVfBrvsRhcahMXn+\r\nb+a6kw+gMY29dcNutHNl1ZuKbwUuvp0ShWnauFVqMSRP6kSgXjzM0Oez2CHEtnX7\r\nNTKy9+eXsqxkzVXop81HCR7QCDlKPkc78IRETKfQA/nHdu2iOd8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQonG1RafqmxKhDxP+NNvoz\r\n3/1FMDCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAJFaZ9bHSEXBMKUi\r\nxLJgRr0yPOBbkZAHGsXGsAAdXnsAcmRZnoMsJZwHJY9qa2SDdjWzCnEuk50KJ0Rm\r\nvePgWmDtQWwyfFT//JIccaFgxYsU2SjdHEi0DmRElJtLkYQorDjkqn8s2T8y95f0\r\nmdcNme7cQ8PsjawgV1hb7r1I0bRh93M4pDzRt0g08RoFtMGuqRdU3roMDbuid5Hj\r\nBnoT5MdJlYzklABw+JPOIFeqZ0LMq/RPyk8Dpzo7m2dSc78GitdNnWxj4Ku6l8lb\r\n0OHX3BL1eVKyKi8Vta3BjpzWuMQompgdzp1Eh+mDyfKV/+dlfIEPJI1stEHIEKWR\r\nR5yt35+RGXrmsmAwTZT5mcJk4JdAMhVnRnyWvxPzieYCR9DcIaT6+NBBYzQegOG+\r\nIMnLpnZp6qhbG7Nq9MXCqRY2ooojLCTLTCx8R2cqdYonJpB4lSkYMFYbuV7HoiNr\r\nXdZm0gMRi2DmIaZ7cxXUn0BmZd/lXSXNKdxwHKecu0F8ByT1Zlg3NgIhCb+6SDYB\r\nlOv5YhnwSd00aUaSSYc2dKJmR2yfCKT5Li9wdtjlB6rYIb7vHRl3x98OIVE+O20S\r\n1jQEqRLzkaDIWOA8D9VeuuIW05tahms61dDi5gx7M/ALhFa/QsbkCJXRf07Pe4ki\r\nHE/1Nk3cohSibWYZqHssdutHBd+Q\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAEnEBGqOfE69FwAAAAAASTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDA1MVoXDTI1MDkxNTAzMTA1MVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAw9b7oiITgLVh8Yry44fRHl/xMuYtsI0Cg944jlh0S5ljKgUEMvt8/S63\r\nRH9+9eXvbFN4L9EL2+RDhWd5hGyg4gQeKtxO7D/+JUoTIamIl4pXTxhO5oORnS9k\r\ntWp6lc1OfpYnkgzrkFHICKggDtCpQxp7cMtM8evEvY/7WvmJDbAsgSRlBIeyVZqU\r\ndfw4ahzvsNmMfDGx2JBKgB5mndVGyg96yCHy5+7XKOkkcr+NKHdnBM3k546rGlCV\r\nErgPVuUkRxrwIa3xD9BRewoihWG7sbuxny49CrdbDi3WqK0VPSJGZ2y5ipUTwndi\r\n/+QhiK5expoHO0hl20DwRgq74qB5zSs379PcTQz59OvUDMi2fiErDYnCT75X3w1b\r\nh2uGBFIwonYXGHU1s/SaxQlXErGplgkLv/tBPAXu8sk+qANHaY1EfPwpPfOXjIxl\r\nRT95moW0IP+CPmhV0g2ZPKNn0mIRPpf8IzI5O4pLe6xfXDekQnNcGaBY9nN9LBO3\r\noi7pBBNObi17J/ebVg2rScg+KAWVVf09iLF2inpoFxKOJQz//poXo2fAvYVXnXJm\r\n99qJvY8gFyOyg2Cr2x/Wp8yw/u7H4DztXuFMYuPEVpR9/EeLP2bzrpdbJpj+SPT4\r\nU0OmtjVtKNR4aOBNBVWmzxV+WKRBfpkq+pjpRMkgFapXWtjlXV0CAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUluoFkm4uQswgfjWGaL4s\r\nMWhX+14wHQYDVR0OBBYEFBxS0IHKkOkG4KzpGA07z01trd55MIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAa08V3/BsJsIOjn2Qu6zUb0GosfdvggVX36PY\r\n9OZyOn5d2+tPPjG2re+uovdpuLKx1YH0iBX4kIL05yObqKMAv+YO3Ihj4MkcYy6A\r\nk9DbHyQTYoeSfaryn6yo7kLYCz6E+li6HJ4FVx13PxpwqDXWUu+Yf5Kszj56IqHx\r\nTI9LV1ZbqmZYk7fQIPETYENkE23ypgh5snRtqSZYTw6HASkHI4E7NgFkOATnIcs2\r\npLGzcc9vc/QYlj3PT3ciGdpGkz8l/A2MMqC4eleYFTBSX9rNNG0tf0M+5fVF417D\r\nmtqDlglm9bWpgrdLpmcj28f3766EBJBq9zza4M9dAGBWBQx0c8BR9saGATd/U8lY\r\nmlTDhnRdqJvvTbtPzFFmTF5jrANky12jKlaHHTyLETDu6OeDbVEyJNuhj0a+cQ6r\r\nZwYCG/k0WCzUx3MMq1A11uxvseoOmpIqLOGfkEdmBPQXkKC02vyjZkxF0pGPNNcy\r\nBSCIlZ11UtC5ghcZ2Wg/U4bAogTv/XAnjwzLpp5V7mcepzcBagiFlQkdnvUKNI/I\r\nLkerOmrgKe0rgT+ICALZiq7hIyeuM2uthyD3FaBFf62WOtDD6Jfwkg/3LI7of+HC\r\nGZ99J/xaocq6NFYqzD/9H6n0+biogXUJtm7mKhQO3PeLz/1aDIwLfKqZFr3PCStN\r\nvTWqAdQ=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFYLVFiDd8BlgAAAAAAAVjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4Mzg0OFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAxIoR15PqTSSMns55DdeR97gCwVWRoA6zCYbU66RoYrXuHSpcJM+1tnHN\r\n6B2gITXD0iDoTLpuOvRlM+12v0c8cWdzVoHuRuG0k1ViNgSELeNw8SXSQ6jmvgPy\r\nH6fg+NiKLkjYrJuIp5me3/asqMTeO6MOkeimS67PYerzkMYoC7BUEUacludZswsM\r\nFZnsM/vHCjIpzQMGWyUzju2ANT+J41Wz9AmukpPQFNzyq9566BEU/4MJh9Yg5aSR\r\npzI1gU8r4Y9ABdOgjsFnEm8BSSdlWLgalKevYPMLX/FO2rFufFgcNJq3Y8rnAtJD\r\n0k9jt7isXmJgS+JNfANvY7+jXQaCkwIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUOLjGDtr98qbFC/XuACeceItvo7EwHQYD\r\nVR0OBBYEFOXZm2f8+Oy6u/DAqJ2KV4i53z5jMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAYI9s0aXNjS8k6w/pyYwcd8HBPAjpWHJp7vBNsa9rDbau6raD\r\n+QWjj+hO5OKUkNchKIkK3xUc/iDAMNALDLFqUOaVTeMh5fu/e8Pr1AX1R1c5U1Yd\r\nxExItrFARqTCCIQpLz3cTu/9KA5QgUQlnFlrxA9IHq9G6k3TvTB2AngUzXBhNhl5\r\nb8ya7LK3dhfqf2BQHJ7k1XReCJLYMxI6PaG0F6mWTCFNBbBxgjsXeXfjYv2li33v\r\n48ALT/NXFoOTbAOP4EFfLhMDnx2O6cFOKrYT9O+EU64oJ/0MQDQSq9PVos5J+RW8\r\nvD/h2ycPqMnmsjvpJ4pWJZP+YSxy/HWMwbZt/Dv/UobeQqLCIXGnODv87K+1JVo0\r\nO3c1NtGJu61JyXwW8id8VSQuc2NzEr58rOOGMfU3gHZMSNY2gsFs1gqXC6MjtX9O\r\nipJ+dqr7lgRvpDN9bD2kd9CdOWsxz6PRPxOmbUittmpHdABMZuaeKB/5MnxVrpNw\r\nlYtJYXvKRY1V30kjFSsyLv02YYKb8MI/NfWcjMLw4eaEn//ST+sf+LjB9KF8TxBX\r\nxuBUpQVA/TJX9GEqYMZt557A5u5odSVcac+w0/Nn4E6WzFLfxMr1O8OOOQjzlG3u\r\n5BPqprm+utwEHBCU4iVcZOdnSgk1dm7C5xmmTylFRYOlwVrFSPcyKy0+6H8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAEso8JmcB0l1ZwAAAAAASzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDMxN1oXDTI1MDkxNTAzMTMxN1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1FFhjk/dgVlthN00OKObtbEisXfH40OyapM9KcVlUPnMElPROdKi7XPQ\r\nagq+Ry3QLSSZgNWnkahCSxE81oyudrvlhpR7NpcDPZHsYFw6qsEiirml0hc5awSq\r\n+MtFo9pfnr/zQstb7xg8wjduWjANvO3E34jZbfmCyw4gU4TRPIa9rpaV0N14hQTk\r\nKcBv+S12udS181oWcTc66zxVXUHNK15PRv31jElEYQKX8EJWCe6ccJA/cJD282sR\r\noEhfuUvzXHOeWD1jXH+Eh+mKuhLqiQHPJH7TJRMsN77ndtHH9us3Ak4l9AmGNZZf\r\nwNquVrHAiTw9Ai90btckoeMRn8eogQIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBTX/nF7X/NZN2T02QZU2G6DYuwmyDAdBgNVHQ4EFgQU\r\nlUWMsJMswORfcQ0UpecnwcNjm/cwgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQCb7VpPdQaBSKQdwDpgFquVkVtcKzEAwsVlzIENIrlRsOcBgvZlW9QKwgCd\r\n6xvrF9smidaMzlYuxYQypQ0RQEHDKJ1SJQLc1ZtR7fWf0xHqU0cgX3hktDNyN5t4\r\n7rMtYOUhygcZIxVQ2cpkyLoilwnb/q0Y0jOnA7eo0r9K67TJ9CP2m3ZUApzRaCwv\r\nqQE8eNZvngy+613PU11A2EFuTPXoVNb7S3w8amz+mYYnJCBhxf4PdYA/3DZ0q3FP\r\nfFxqKAbuNtXXHFmYn3BBMGSn082Uq8RsAvj5XEkI/xylDlwG3zT+QaIOrJ/06Toz\r\ncT0ewSlyNAB6LzGp/HLTIffhSNBVX8ILs558r6VcnTE21awdkWqnd3PiPkWADD78\r\nDVSb/7QOsBdZp6BKkcDzTc/uaDGahR55UcapkOMBSbngkomK986ITx3yUITn0aV4\r\nBEVbYQQ6b9l/eNHRosiwL52QPnYl6fJRsl0JuUzy9T5DrwGGnRgKQAOmSWPRTdt2\r\n14MWrxbLFRRwvqt2COK82jPTAiZ3XqYSZzZce9bSDsGSm5VpwWz5+xyBYc3djzKR\r\nThctXJrwftNyZD+LBc/4oLOTYLpDB23eI8rvb6Xfm3A8ANucIq2muavxi1A+eyYM\r\nQXwyB2foIV9yhDIA5I1psyJo+CwM9CcibRTjjNL5ghEkoSDjyA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFSoP4knG2YAHAAAAAAAVDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzczNFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApuAstd+jxOmcAhw1KNXa7fDE4SFe/7SdG4avz6VQqep4ofwJwZTxQJNQ\r\nBC7dybKZO2RBiDzzayV9PCxmK9HPRMRmuj68x9BRyoEbVU1tX4HtiBK+hAGiRNQu\r\nPRTYcSs24CgjI3JrxOjNesp8iE8HUVntN8ueXnpTQLSYOR2TmTGM835tkTplflX/\r\n/zPtZvsXSZz+JssQ9SRcXS2t/fPDpKfNVatOmq4iwtX7Q6IO/WCzAyEzacjAFqml\r\n0/PRYT5O+jiRO+TImZ2RD0CB9rP5CYwN2T504drkKteNaT+FT/teBLC+JraDjh27\r\nv24yknl1t8dXCSS6l/UBGBGVk+gr0wIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUVSrR7NlDI9ZN5GcKVaV9JEKwIbEwHQYD\r\nVR0OBBYEFK55wmtdJYgTBvYHCcOXfHuXjx1VMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAbgp2LNvP1OVFkH9JTg9rTMksjvLIpzaqJehSp5+3YNzGl/TH\r\ni3Kg/rbtQaKErwipeLMhmqWFuT9kB22eeyoBSxx3JTzRmKtcJO47IX0qymW04v2i\r\nI2tVWQigwJWtE08Z16Q3NVdgAox6DDnAvmV8QDlPhWdW0gGcszZqFD47SJltU8JJ\r\n6D+xuDl+xUIA5wQ0987HRo4dSx3Vny1cd98GdMepsOnCpfm7ZQDWJUggp8m8T/jv\r\ngj28G4JNV9nsx3TT5D4xFZ0rXUlQNmhJFesprLt8NqOoKqmP40WdqrpVIxlu5pdH\r\naf/uT89gHO3Zy+iqNbCDRB7zSBtaalaqLvGpE0xV3p+xpjY1CujjvKp+rUrGwA1t\r\n7aNRowd45Dn+kESi95bE16V2k54YbRvgkwQgqyFUiissogOtaOwQIjuv5NUMkKnj\r\nWz1S1nsMTwZWQ20pT+SG9IMWxAP+63fLIMxWXSbwkTo1Q7JVbr7ZnbNjPrzwerrq\r\nTx+CgfCjU2TZ2WaqYnKoGlgjiZkVraQ1JYJkEr5N5+12CnAuVNzn7pMs6HUSxc8Y\r\numBjy+KA0I1XMvFerh+fhEVad7kOgOxqE1uLdXZxkOXHC1N4FQlkI65Padcd8dyM\r\n3g+er8suC1gf9/fWU0AlgIqls48Wis2JISOeSsMAi3BDvCIpp5PHbuNfj7A=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFr7ZWQR1r6OSQAAAAAAWjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzN1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEArMu8k7Kq5y6uDXZk0QxV9Ya5K3Mb0/sCyV4fs48XfAgL3YOHYTZ5o1uB\r\n97VZ/oXuenXaDcoDE18WhOavpqjWHc4eb1QeGGCaB0MoijTLGPzqwWRdByW6l2U2\r\ngFzjKWKtFncIj/VW5S98uCDD8b0SX278XKubkKv0Zn3m1E2wVrTvG8Jc/MuXF0WX\r\ntjFRRJPY3keED1zFNEKjckE4ywTV1atTqnKbmj2rcQucHJ4ufZ89Hel/xLL0bFxc\r\nJnW4Ky8lZ4Q+G9brYexh/iEBcSpNQlfLVJrKZMlAwGPcp1SBGxU9GlSV7kE1LLCS\r\njpS5d6/qw4VA+z5y9HsHN225oBhpAQIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFHrWGYUoeWxxdh5g+PNL76IFQhYdMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAU2IUk2qTwWTtRBKzMTaRxYKvTyvU1nyQLxko\r\nA3304lciVsdA86+jhEkvnCwZeAHoOtYuPeQJdeyhYUhVRDAhhJauvE87FB69gM6h\r\nYUnRqiy+vekLrHB/1x8njoLHmcppjOvBzziOPSqvf8s6O8tJ5AjY3398sm5ckH37\r\nVYHa/+bAYCvEsYmgDGN8L25QvXScTmTthSXHlzsCItPpKFs385dsGJnFD0KcQ5c1\r\ngLmV1bdHnrWyy2mqB819CFWtzhnojtzXxZLuEfTBS18u0qoLdN8KvgB2BvfgZtY7\r\nx+fbkiyoZfnZak0Oj45Z9Z/6AQ1uHGSRadAh19mkcrkPwHktc/3M1PJ69dwZn8Ez\r\nASzYFf8QH58i5uxdou73v+5Bd1m5nmtFCyLC6QDtFYH0pkvmafBx7PwyrgTjq2Xv\r\n7eWL0wXESxzY4HpjMDO36ncsLvzI6j4CyG4cpA8F8+9jwizWqmKMQUWt+VMICsP7\r\nRrzCJ35ogFGWF/dC2hjdjBXjcyLaliR5nE+sDx1PVDdIu7y8oBi60+Vzl0+BSf8P\r\nOdssgwciUpWVP+9xf6SZ7D9BPmLwgIJZ4oPc5K7cTOR6ksQQg8fO44fmOCRfVD/T\r\nDj1e39ijjkmcXUvrcu1sh93vbupLKp4Guruj3Le6iQ4Hla6Pr4znFKCzKk1+RrcQ\r\nVnsaqio=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFOufo2CImJDvAAAAAAAUzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzYxMFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAz2IfhGnsNWpW1cYZrm7f0KG7FjkmtAufsz6xSPNM86b5+jPDUpkOb7U7\r\nj4cWGBVdrYYqWUkziZmWPyl9WLw43KGzaMT3xTnm1xWyok8Z1D/ytHfxFI5t+Xzk\r\n+pcWwIZzuElzEzAQYnVMyfdxD6sM2winZ1ehDpvJeLTPcuTPf5fDYpcrnebODQ+r\r\nnsvq7oU7bHp/jTkGP/2hNzNLR7QJq+rOaHTHDky5yWrsMdgGj0dJXmId6RIfgbeq\r\nJyz7pK0OnoqopPXzZcEQJGNdh9tTh0DWpPGkCWvp4yC2Sd6VSDIApnIpXRn5WNGc\r\n79eeuL9eKvQ5W1zq3/j5HlmwZvPOE+3kPe9r1+WMazNqbhmVk0gUfZX+cnJcy8ZH\r\nqZhjCnW1ihCHzNxMQypQLrnOgVCBkkkRj466iLGDMGL5IyTji2AAp50wMiZuVQX6\r\nwY4kcKqLsjSPpDpHGIie+58/dh9xFgqJzV0kNbAvehRlbwzQnRJWzr1UgZJgjluN\r\nlLpJwTmUIe3I4FzbwrzGMOltYu8XbdFAfyPM4fcfqJwFTF2xI5OYNC3Rcou9OSQT\r\no+ce9/rON//vZNZmQ+TPQ3nkPoKus+JX3EFJbevLeG0IvvC8c2ABwv6cNcvbSSoV\r\nXP+XaBLuXe5A3G+Tdr33bVhKKnbKiravs7sEeKvXVrpDgilOuG8CAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFJbqBZJuLkLM\r\nIH41hmi+LDFoV/teMB0GA1UdDgQWBBRIo61gdWpv7GDzaVXRALEyV/xs5DCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAArPH6tJjsM3VsG3zdh/1Rh3LDz4\r\nDqyUEJEXiM+Sa1kCncVvIqI5GkFKGM3Ur3hdx6xxe5F9gPvUdL22Qf0DLaOclksk\r\nO2FABXqDRv0P7k5yyryzTM/RmLhleut3Fc8BUdfrkmif8Znyxp12sRxK0UgEf6iI\r\n+dEZugVpwAl8IRUk9O201Q87q3zI30NgPT2BJiDycKaKQJF634qatubvL28JaiOd\r\nk3uxWfcqKjO0oeSJ7pxgAiH1rCah7UN5T2d3V4AmDQGLPo7lwX1SKZewa10PnF0X\r\npjE+8welxOK+4pEPl2kRdMDpr9/XPXWpAPt2h67Z0j7x5c7nDU/eZ3UjRkJePoIQ\r\n5aGZuxZ2diziI4JWhbW+kF9M8T0CM1EUIcQV+8wvvualM1q0IN+SJ1X49tt8n3y5\r\nfEAur2599a16z7zg4uF1xI/SafWXMjC8MObCHjR5xodSQ7IxvGyl+6uIkENsiQBF\r\ncuM55MMUELl0VM0+n7Kv5K2Ur+heLzNlTTy2eoiU048g8iQmZzP5C9y4hUE3rYgJ\r\nRxP9ovHl2km91RDTei9aANUGIB8U2uFA7pxe0G8Kp8WSF0a2DtZu7sf2lGjKvP+7\r\nJGaMrJn2bJW6cDEPgfyKCio8kCVtFg7QTtkaZjF5J6AIB0B7aHNPKlAE2T8O2/Z7\r\nJIvM+ijPG5W96tZP\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFjSjQKPPAEB6wAAAAAAWDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4NDAwOVoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA3Pi3nd+o2ItxXWvhyaIDXRbrxgB1wqI0wK/wgC3vs2vSbIHdSuOrtac+\r\nmR6Ag8rE69QQOykN2KJIQI53O0egLWUqjDMa43Fkh1EWTAD0B6snyV91Lt24YPPq\r\nOyJZLhGCtYJoQfPQxZjgW0PknDvWCGIBPFacj86c84QzQdmNBMPrObC21S/ilK+H\r\nGjwcYx9Z3dSeK2CPLLkb3C0HzWWLBL5lFHrdM7qphSAJ07g8/ggis/b4aHdWOlN3\r\nfyySWbuTLQnX8J1XZdWGc+7Z60gzt2jwUc2kgpjcpHvV7QYmy141rjiQyFDNUf7x\r\nFBeFIpLDPoxcfAsOo/dtVfxp/dNMqfAEC27QrUogtIUOcCaSZ5r09ECOuBW6Mood\r\nDIx4bUEhXOJmZBtpzRXhVVKTC7Aqs3PTrPehspCxOclx7c8aESASwj6SSWpDQi+x\r\nrKm2DgTIgvVIdyBNdKhxhGNyl1t9jTEMAdwDmY6pN0kMLCEdM6v9fG0nvtFFLU/m\r\nj9Ojh8Rtf3YWiUPd2cI62tVoXckaP3TbdCNmGysT8ShFNEypEINWIl49U7V00Iec\r\nOveCbkfsnKnT/o69znrWUH+Pt65GxrqO5A+To6WU83OqLxljS/cyBTQmrDh70Dgz\r\nKXDXN3JVW93RLoXuNyAhd1nUOjKOI2tmPhEC4Cz7lqmVxDsQaZMCAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFDrHw8rI3g3T\r\nksAnici+l0dPRWlgMB0GA1UdDgQWBBQ5cV2pFRAtxN9+L1luQE3A3+82mjCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAI68ze1N9ZqKBI7Q7BXGlc0k99wW\r\nCoCZu0m02crvYeITKUC/eizH7s6Sx2Kk5Hnzz0Rzc8G8NpiWEfp7ppKeP1jOMv11\r\n7P1KB6IHyRLdW7vAIBiJy1qhbLAxseR7xkvDKv9yjZYL9Q7XtlSgrd9NuEiuFsfj\r\n0ANzVf/Ea4br00gGc8ALfnvgGE7eUdBNqWKTzHcQREdjJPRMUqTYqcvd4qQbRXZt\r\ncXLt4Fr3pXcwG1UExrz3TP4ueyrqGot/OFDvMihs6Tak0qjYygT2dC3bEOBg3GSQ\r\nDdQVzBFO98f62/l51TBlWizuw3D4/dKIPfQU1Qt7sr9e7CLbecoO8EVtyt/yGRr1\r\nD4BPBGyEzC6QoqCo5Nh27yG+DxFtAGdm/vLaFeJOVM3q2d6nL1FvNzlHTHfOYPJ3\r\nNwHB30X9TpdRqoBLM5UC0m/ybKj4ygXAZBlkJXMO/bjtpqyidJ0SaFuE8EdV9YoJ\r\nKUmBw1ZuZd5GHbc+Ilz82WX+JWZ0efU/f+75Ywvntu/3s0OsnpVoqrqM7TDdzE0d\r\nwRiZ+mvtgIwp85+et1iEdaWPj+d6LfJxpDDCPhaqh9hnNIkZFptndwDwRE2MV9Wr\r\nlUCSA96/2ubHsKt4E2D96KvNog6MKdyEGz1sZep1yZKqE4cnNzGNBGRel0BRa2MK\r\nyTOQsCbnpQGhEz0m\r\n-----END + CERTIFICATE-----"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFlFSsCTnaMEFgAAAAAAWTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzM1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA0E8VPmTCi+s/ukALr8kiz9n0QMveOlaFztd/3QikdEPvOujCuE/CXDKt\r\n0KhyGBUshmHGEC580aoe2Ze2gBJ/Dhs8FjdCjH4IyWU22QOervNkIc2Xd3EMxVZL\r\nYmWmDp5yfa0DwHqsqLq1PLwyk9BfYhh2gp9Dp+vECu4FzvVoZd73UaTpvcQKDsXA\r\nTVR43QC8AiL2AiHgOB3xE75MR/kI1OA7mTaOK8uZbQZCtyG1VMtNL+Q4Di0nB9cD\r\ntqfQj1/UCA76Nr9a7p/TUnck94zlsHE5RVGvDy3GKpa4cmCb+nRpF+ybZjuw8fPT\r\nCY5JGTLZreJMgk+Tej7iN+BYyn4Q2QIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFPFGaMbxw/ArLX2LauGy+b41/NFBMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAD6YslCi5IxgKWQYVzHClxGTpTXEarOPDACuQ\r\nnZIgM4hbk0rMqW4aHFd+paZmMUvNU0HWtIq7aAbNZGCdTrb6g9xjQKrdivWr24BZ\r\nBDxlYkU1tNvdQmafd/RESZ+TpElbuBw2EW0qtK2K+BfL1fTcwpIWRoqWcZUc/CzX\r\n43yuA3vE9sw7/HCDOEQF+QW12B6LDt2Y6DR2y8ZjYsIM0X99mgCE8/HYL4AR3+mA\r\nHjlncC3qlXWRUk46kz2yU4gu0k4P5vexNuGvU9uHvmqQERhhHYkAiW5pwCNFdZDw\r\n95vcnWocRk5TaOPp74v06msx58qS9Re9Fz5xwp6dGGqvWgcF9UJtVVyXMGYB1/1+\r\nyd5n8VpvHVWlrPNpcT0p9YLeou/HKZIiekolUKL6SqCbDFwSUMPM1xWSK6RbphmT\r\nJZdAoKKLq7c/4bFPOxeKvBjT6PrWP64ktWN1Z+AYQlBp1rK7A/ZkAOh8l+17K4VJ\r\neb1whd4SmNSnZbv9jhOeWhrbRsxmFJ1SFHhoBhS3Q/WZWMJtLu2Hv1RHnqRgLD3y\r\nlaC9qyj44pXka/MiLauGl0qjRsO6i0ZV/nU43/eZt4EhWewfmXRnfNlXA/u6abVS\r\n3lkNTlQaJAmTijbKk4JI0qQl4e+xZloOXJVNiqKgYSh3N93Bi+8ROZCLqqpwrO+C\r\n8C5Y9Bk=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIFVjCCAz6gAwIBAgIQJdrLVcnGd4FAnlaUgt5N/jANBgkqhkiG9w0BAQsFADA8\r\nMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAwDgYD\r\nVQQDEwdhbWVyb290MB4XDTE2MDUyNDIyNTI1NFoXDTI2MDUyNDIyNTcwM1owPDET\r\nMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEQMA4GA1UE\r\nAxMHYW1lcm9vdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALv4uChY\r\noVuO+bxBOcn8v4FajoGkxo0YgVwEqEPDVPI6vzmnEqHVhQ1GMVeDyiRrgQT1vCk1\r\nHMMzo9LlWowPrzbXOwjOTFbXc36+UU41yNN2GeNa49RXbAkfbzKE/SYLfbqOD0dN\r\nZLwvOhgIb25oA1eAxW/DI/hvJLLKh2SscvkIyd3o2BUeFm7NtyYG/buCKJh8lOq8\r\n0iBwRoEoInb0vhorHaswSMmqY1g+AJndY/M7uGUqkhDGBhLu53bU9wbUPHsEI+wa\r\nq6WypCijZYT+C4BS5GJrEPZ2O92pztd+ULqhzNRoPj5RuElUww7+z5RnbCaupyBY\r\nOmmJMH30EiRSq8dK/irixXXwJraSywR5kyfmAkv6GYWlRlxFUiK3/co47JLA3TDK\r\nN0wfutbpqxdZQYyGfO2nZrr5JbKfSU0sMtOZDkK6hlafV++hfkVSvFfNHE5B5uN1\r\nMK6agl1dzi28HfJT9aO7cmjGxl1SJ5qoCvcwZNQ2SPHFdrslcwXEFOMDaEzVOA3V\r\n7j3+6lrT8sHXg0sErkcd8lrBImfzhLxM/Wh8CgOUNeUu3flUoxmFv3el+QWalSNy\r\n2SXs2NgWuYE5Iog7CHD/xCnoEnZwwjqLkrro4hYWE4Xj3VlA2Eq+VxqJOgdyFl3m\r\nckSZ08OcwLeprY4+2GEvCXNGNdXUmNNgk2PvAgMBAAGjVDBSMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEBMB0GA1UdDgQWBBQpXlFeZK40ueusnA2njHUB\r\n0QkLKDAQBgkrBgEEAYI3FQEEAwIBADANBgkqhkiG9w0BAQsFAAOCAgEAcznFDnJx\r\nsXaazFY1DuIPvUaiWS7ELxAVXMGZ7ROjLrDq1FNYVewL4emDqyEIEMFncec8rqyk\r\nVBvLQA5YqMCxQWJpL0SlgRSknzLh9ZVcQw1TshC49/XV2N/CLOuyInEQwS//46so\r\nT20Cf8UGUiOK472LZlvM4KchyDR3FTNtmMg0B/LKVjevpX9sk5MiyjjLUj3jtPIP\r\n7jpsfZDd/BNsg/89kpsIF5O64I7iYFj3MHu9o4UJcEX0hRt7OzUxqa9THTssvzE5\r\nVkWo8Rtou2T5TobKV6Rr5Ob9wchLXqVtCyZF16voEKheBnalhGUvErI/6VtBwLb7\r\n13C0JkKLBNMen+HClNliicVIaubnpY2g+AqxOgKBHiZnzq2HhE1qqEUf4VfqahNU\r\niaXtbtyo54f2dCf9UL9uG9dllN3nxBE/Y/aWF6E1M8Bslj1aYAtfUQ/xlhEXCly6\r\nzohw697i3XFUt76RwvfW8quvqdH9Mx0PBpYo4wJJRwAecSJQNy6wIJhAuDgOemXJ\r\nYViBi/bDnhPcFEVQxsypQSw91BUw7Mxh+W59H5MC25SAIw9fLMT9LRqSYpPyasNp\r\n4nACjR+bv/6cI+ICOrGmD2mrk2c4dNnYpDx96FfX/Y158RV0wotqIglACk6m1qyo\r\nyTra6P0Kvo6xz4KaVm8F7VDzUP+heAAhPAs=\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thvankra-nova-billing-sku-Standard_DS14_v2/providers/Microsoft.DocumentDB/cassandraClusters/testBillingskuStandardDS14v2","name":"testBillingskuStandardDS14v2","type":"Microsoft.DocumentDB/cassandraClusters","location":"Central + US EUAP","tags":{},"systemData":{"createdBy":"thvankra@microsoft.com","createdByType":"User","createdAt":"2021-10-13T14:56:03.18629Z","lastModifiedBy":"thvankra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-13T14:56:03.18629Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"testBillingskuStandardDS14v2","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thvankra-nova-billing-sku-Standard_DS14_v2/providers/Microsoft.Network/virtualNetworks/vnet-canary/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAE5Hd9yskSH1BgAAAAAATjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDU1OVoXDTI1MDkxNTAzMTU1OVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA5UFGOQgmohqJHkbMMcN4cnK+mAoScYUAR/njrD0x/GyFeTko+QXMU1JJ\r\nIePmVcugmyO4xX5ITShZWy+/qPAWy3vwT6HzBdFq5eTGbkbFCrQdh5w1+jwOApMe\r\n9ZDlMDO+RUtJe1XxWqi3KRY0e/pJmpOk4IUEjx6wxvv5MnSWhMa7aepnkuCS8lvF\r\nNl9D5oUGIYvoDUgVMQSBazQP2zjRunMT9JOopFKnZE+L7NY+XDtla3I1uZeMeakA\r\nfqkNjx6lkUIgcHPhSMy5XHBpOeFdSDjBA8dNk6E3VSlLzvPcHdaHI7QrmK/43wzf\r\n+kHpDdTXx8EdOqm+pLHoKLWcjw/P8O9RAMiXefxGnQKNuP8T+/prskR5esucJQkj\r\nrWSu7W7YycmIg1rPCd7Qw005/sc58eLPN+Xrj/Aw7RSR0A719CPZMjoSfKTphSEK\r\np+ZB+5j/V3VEzjGbL6XFUezFfaIZ+A7ZtkaEQYDH0fVVziPnhQhJB+Uym7a5arB3\r\nqiMMw7Yjos6iWkkOaqhaCHuN1zC374xsBec9mrJ7bfuLTNtBEKC1PhdZrJM3UDCo\r\n76v+3mnKouN/7vyVkbiLNb27MXRigXFbO02opR8prTkvv3af+iq6+xjmVWZhsILI\r\n0HIBk9/HoMZCCb9e95RQVmVwVNrwa24neVWl+JEw50sqLMapsGkCAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUOsfDysjeDdOSwCeJyL6X\r\nR09FaWAwHQYDVR0OBBYEFEKY1e9GMTrmL0fNVVel5jUfu/yRMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAuaX699r+ayL7JphKgdiDuy4iPTwf7fTkUsLx\r\n7ixBzvnUrUASdS9GJEkpsewdipRfMycn3UXatnQ6rudCqBgsExJzHBGlokhvVaZK\r\nue0oIlJstnKQDOJCpJem9NkvwALP5z3WZoqYf4EaaQXUkMAJJ2qxw+mksSBEu+MJ\r\noxgbStKv98q28ypOVLjaFNH/VbtAG/rIcqNyOdjAPcgMcohe7lGO1WQtFxPxtzvS\r\nZfgao/ZjWeNDFzy8FSInim1q69Syl3Y4dzeAlG6PiC8t7upDQzo2AJxI1tW0AkKV\r\naJIS9rGZquLN5MTbYozjEyzMvSEYFEpx+7YKQGayHz3eCGH4BzD43YPt20Cm4BMN\r\neyV64+d9PufCA2tzrIQ+VJhsZKb6qRgV+Bp6AfpgeyU6oRkqsWKJyKyzp6o0D+Si\r\nq3gYJdD3W0+X1jUJcQuywYLRg78rVE3A6VJ7RIEjXARQV19hJvxchCoqfbny/0bX\r\n9Bb3Rtr1OAYhUml6Z6JdfnH33KfEJvFa4wlKRBxpuw9gMG5ydOsbZ3YIJDWccTLH\r\nQZWJk/Lakd/+uLPWOzzWQCf7nPapwSRjtfRRLZoX49PIQkrGM3dpLLGktC+sg8bc\r\nvQ2bO79bKJazcsKuNK0dOpepIBA1mMD81DphYmc/RMF9KXKdKz4Ugh4HNqkltIsG\r\nEtaYPCM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAE2e+Zx9LtWjEwAAAAAATTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDUwOFoXDTI1MDkxNTAzMTUwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1RZFKUUXNWXgbh7dm52Irso1hGPDEL9ZZXYz0civ0AAlDu9P/1okXVpc\r\nOPQnRxE7e7O8roTSctA4MTBGFIjrCythVzk6MJC1bgGv7qwCV6o5P4zVSxQrHPx+\r\n2DPDIZlt3UV4RNLuKVvSZdzQt1UsxUOxvTZ/0mO22d6mcspf3I5Xt5h+7WlTgHAy\r\nWvvlpuX7LR8yTK/um4526bdhUG98I2nEURH2vnNSt3/Dbt1R6qoPMja0HhghuOtY\r\nt7Z77nyI2gOY2fRu3oM15Xqe8b3Qwx5IsSV/pTWJ34VPz24TfUmCQOVtu/m84ayA\r\nwSZ754d+JvkyPSdINV3tuLtbo/QVewIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBQbRewlXgZoN1BD7V/nign/FlWETTAdBgNVHQ4EFgQU\r\nvZx3N/n1PWYwyjVonISvG5ZVEL4wgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQBFtFQSE7TjElKEmwHyydrA/UEAzho7rEMy2lvNr2tgX/7WVWDqmDrTK4La\r\nm6/MGOUBYbF334Ywvprij/UoSpyMEq5HgXiCBxOgyUPSZx8x+XyINgCujVXRk9za\r\nPh1lXpYCV2qhIYAhazeprDYzX2im0Jwe8X/Xsl0kzgs3TE7medDW9CVEYS+T7SqG\r\ntmXhOg1FW04yUM0+Z73ZQGF5oqnE76kzpLvfn+YWA6KbLfH84yTpqylAD5UFvfeW\r\nMRoNUUckpsteddNba90soUzxeRwU0Loxj5Qsds2gB0tSIpVh330BxEDTIJ73FZIv\r\nvURqyoDor+Eu1NOVk3sdCM5nXuN38dc0a9fsSRoJkbQYTP9UNJPcUDO3kZoYWNxD\r\nWrn5J/ltaxPc1o7+USSm02C023HIrWBJkfnepIZKV8m7wkddcygJ6FQkxFU+NQUW\r\n+a91tIw3HTEHvmNlJddPmjgnE3k6GS1NLOC5IV/s1s4sSME3QYQAt+zr5TKRdZ06\r\ndBOSXrz66pVpkR2wuAvlCEuFk7gaBrKz4j+3wJ9CPhETezARvgpzQCw9es9y2qde\r\nO1rHPYa6IRtmjcVDvxfmjei66bQwoapDH/OMS6sPqqqn53l9g4HDDgWywWn9ad51\r\nL5NAvQYhHwSCG0E2Os5mUFYM56ZVA4WHVUn7NZsAXGnDtIwlPw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAACbGTID3uXpE1wAAAAAAJjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE4MDMxOTE4MjcwOFoXDTIzMDMxOTE4MzcwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAvBsRcCD4Z38LQPG73ci9jIpQv5tVQh8lLrcQ9lO2lH6pUVWi7T7jCyX/\r\naCSmit7fT6seN/kf6LP0hpgsU/wxMMv4c4+w1M16EiRc6GPJtSPNszl8ZNAzZj39\r\nxeJnAMhPzeABRLgzYgLH+9R3k8sIJMhSjcUfp63GAhKtdqhQeTOs7m87REtmAdo7\r\neZh/Ubn4HR1ZxAswmoWmMxMZw1KZj87395IxE3Ybj0m/V8dyskpxWdAzkvGeO//l\r\nb4FfAHVCCix9wsijqomj+jeJPHR/AF/5+MZXjoNDs6/+UMdSrEqa2fi8910J6ogL\r\nSMdL7NdV77U5551wZxeUwSEHUc4qkQr9cFAdHcdYiMnIrU28zk7O3yQdsyWdrTqx\r\nTbkoYn36Ji+aSyzs/u/Zh3pAWw9IvLaoq254Rpf1SWsvufE2YXaP6kUmvOE9Qrnt\r\nQ138fwe9CmPUT9I/cM0v16BDvELEH3KGsWez8WRFA5RAB5pPDKjMyZ7mNl+0+EDv\r\nMq+KYjtc9uWJoRsRe8mDnVt2JGRBazTCFd/m5HGywdUvg/fZyVfBrvsRhcahMXn+\r\nb+a6kw+gMY29dcNutHNl1ZuKbwUuvp0ShWnauFVqMSRP6kSgXjzM0Oez2CHEtnX7\r\nNTKy9+eXsqxkzVXop81HCR7QCDlKPkc78IRETKfQA/nHdu2iOd8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQonG1RafqmxKhDxP+NNvoz\r\n3/1FMDCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAJFaZ9bHSEXBMKUi\r\nxLJgRr0yPOBbkZAHGsXGsAAdXnsAcmRZnoMsJZwHJY9qa2SDdjWzCnEuk50KJ0Rm\r\nvePgWmDtQWwyfFT//JIccaFgxYsU2SjdHEi0DmRElJtLkYQorDjkqn8s2T8y95f0\r\nmdcNme7cQ8PsjawgV1hb7r1I0bRh93M4pDzRt0g08RoFtMGuqRdU3roMDbuid5Hj\r\nBnoT5MdJlYzklABw+JPOIFeqZ0LMq/RPyk8Dpzo7m2dSc78GitdNnWxj4Ku6l8lb\r\n0OHX3BL1eVKyKi8Vta3BjpzWuMQompgdzp1Eh+mDyfKV/+dlfIEPJI1stEHIEKWR\r\nR5yt35+RGXrmsmAwTZT5mcJk4JdAMhVnRnyWvxPzieYCR9DcIaT6+NBBYzQegOG+\r\nIMnLpnZp6qhbG7Nq9MXCqRY2ooojLCTLTCx8R2cqdYonJpB4lSkYMFYbuV7HoiNr\r\nXdZm0gMRi2DmIaZ7cxXUn0BmZd/lXSXNKdxwHKecu0F8ByT1Zlg3NgIhCb+6SDYB\r\nlOv5YhnwSd00aUaSSYc2dKJmR2yfCKT5Li9wdtjlB6rYIb7vHRl3x98OIVE+O20S\r\n1jQEqRLzkaDIWOA8D9VeuuIW05tahms61dDi5gx7M/ALhFa/QsbkCJXRf07Pe4ki\r\nHE/1Nk3cohSibWYZqHssdutHBd+Q\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAEnEBGqOfE69FwAAAAAASTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDA1MVoXDTI1MDkxNTAzMTA1MVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAw9b7oiITgLVh8Yry44fRHl/xMuYtsI0Cg944jlh0S5ljKgUEMvt8/S63\r\nRH9+9eXvbFN4L9EL2+RDhWd5hGyg4gQeKtxO7D/+JUoTIamIl4pXTxhO5oORnS9k\r\ntWp6lc1OfpYnkgzrkFHICKggDtCpQxp7cMtM8evEvY/7WvmJDbAsgSRlBIeyVZqU\r\ndfw4ahzvsNmMfDGx2JBKgB5mndVGyg96yCHy5+7XKOkkcr+NKHdnBM3k546rGlCV\r\nErgPVuUkRxrwIa3xD9BRewoihWG7sbuxny49CrdbDi3WqK0VPSJGZ2y5ipUTwndi\r\n/+QhiK5expoHO0hl20DwRgq74qB5zSs379PcTQz59OvUDMi2fiErDYnCT75X3w1b\r\nh2uGBFIwonYXGHU1s/SaxQlXErGplgkLv/tBPAXu8sk+qANHaY1EfPwpPfOXjIxl\r\nRT95moW0IP+CPmhV0g2ZPKNn0mIRPpf8IzI5O4pLe6xfXDekQnNcGaBY9nN9LBO3\r\noi7pBBNObi17J/ebVg2rScg+KAWVVf09iLF2inpoFxKOJQz//poXo2fAvYVXnXJm\r\n99qJvY8gFyOyg2Cr2x/Wp8yw/u7H4DztXuFMYuPEVpR9/EeLP2bzrpdbJpj+SPT4\r\nU0OmtjVtKNR4aOBNBVWmzxV+WKRBfpkq+pjpRMkgFapXWtjlXV0CAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUluoFkm4uQswgfjWGaL4s\r\nMWhX+14wHQYDVR0OBBYEFBxS0IHKkOkG4KzpGA07z01trd55MIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAa08V3/BsJsIOjn2Qu6zUb0GosfdvggVX36PY\r\n9OZyOn5d2+tPPjG2re+uovdpuLKx1YH0iBX4kIL05yObqKMAv+YO3Ihj4MkcYy6A\r\nk9DbHyQTYoeSfaryn6yo7kLYCz6E+li6HJ4FVx13PxpwqDXWUu+Yf5Kszj56IqHx\r\nTI9LV1ZbqmZYk7fQIPETYENkE23ypgh5snRtqSZYTw6HASkHI4E7NgFkOATnIcs2\r\npLGzcc9vc/QYlj3PT3ciGdpGkz8l/A2MMqC4eleYFTBSX9rNNG0tf0M+5fVF417D\r\nmtqDlglm9bWpgrdLpmcj28f3766EBJBq9zza4M9dAGBWBQx0c8BR9saGATd/U8lY\r\nmlTDhnRdqJvvTbtPzFFmTF5jrANky12jKlaHHTyLETDu6OeDbVEyJNuhj0a+cQ6r\r\nZwYCG/k0WCzUx3MMq1A11uxvseoOmpIqLOGfkEdmBPQXkKC02vyjZkxF0pGPNNcy\r\nBSCIlZ11UtC5ghcZ2Wg/U4bAogTv/XAnjwzLpp5V7mcepzcBagiFlQkdnvUKNI/I\r\nLkerOmrgKe0rgT+ICALZiq7hIyeuM2uthyD3FaBFf62WOtDD6Jfwkg/3LI7of+HC\r\nGZ99J/xaocq6NFYqzD/9H6n0+biogXUJtm7mKhQO3PeLz/1aDIwLfKqZFr3PCStN\r\nvTWqAdQ=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFYLVFiDd8BlgAAAAAAAVjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4Mzg0OFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAxIoR15PqTSSMns55DdeR97gCwVWRoA6zCYbU66RoYrXuHSpcJM+1tnHN\r\n6B2gITXD0iDoTLpuOvRlM+12v0c8cWdzVoHuRuG0k1ViNgSELeNw8SXSQ6jmvgPy\r\nH6fg+NiKLkjYrJuIp5me3/asqMTeO6MOkeimS67PYerzkMYoC7BUEUacludZswsM\r\nFZnsM/vHCjIpzQMGWyUzju2ANT+J41Wz9AmukpPQFNzyq9566BEU/4MJh9Yg5aSR\r\npzI1gU8r4Y9ABdOgjsFnEm8BSSdlWLgalKevYPMLX/FO2rFufFgcNJq3Y8rnAtJD\r\n0k9jt7isXmJgS+JNfANvY7+jXQaCkwIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUOLjGDtr98qbFC/XuACeceItvo7EwHQYD\r\nVR0OBBYEFOXZm2f8+Oy6u/DAqJ2KV4i53z5jMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAYI9s0aXNjS8k6w/pyYwcd8HBPAjpWHJp7vBNsa9rDbau6raD\r\n+QWjj+hO5OKUkNchKIkK3xUc/iDAMNALDLFqUOaVTeMh5fu/e8Pr1AX1R1c5U1Yd\r\nxExItrFARqTCCIQpLz3cTu/9KA5QgUQlnFlrxA9IHq9G6k3TvTB2AngUzXBhNhl5\r\nb8ya7LK3dhfqf2BQHJ7k1XReCJLYMxI6PaG0F6mWTCFNBbBxgjsXeXfjYv2li33v\r\n48ALT/NXFoOTbAOP4EFfLhMDnx2O6cFOKrYT9O+EU64oJ/0MQDQSq9PVos5J+RW8\r\nvD/h2ycPqMnmsjvpJ4pWJZP+YSxy/HWMwbZt/Dv/UobeQqLCIXGnODv87K+1JVo0\r\nO3c1NtGJu61JyXwW8id8VSQuc2NzEr58rOOGMfU3gHZMSNY2gsFs1gqXC6MjtX9O\r\nipJ+dqr7lgRvpDN9bD2kd9CdOWsxz6PRPxOmbUittmpHdABMZuaeKB/5MnxVrpNw\r\nlYtJYXvKRY1V30kjFSsyLv02YYKb8MI/NfWcjMLw4eaEn//ST+sf+LjB9KF8TxBX\r\nxuBUpQVA/TJX9GEqYMZt557A5u5odSVcac+w0/Nn4E6WzFLfxMr1O8OOOQjzlG3u\r\n5BPqprm+utwEHBCU4iVcZOdnSgk1dm7C5xmmTylFRYOlwVrFSPcyKy0+6H8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAEso8JmcB0l1ZwAAAAAASzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDMxN1oXDTI1MDkxNTAzMTMxN1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1FFhjk/dgVlthN00OKObtbEisXfH40OyapM9KcVlUPnMElPROdKi7XPQ\r\nagq+Ry3QLSSZgNWnkahCSxE81oyudrvlhpR7NpcDPZHsYFw6qsEiirml0hc5awSq\r\n+MtFo9pfnr/zQstb7xg8wjduWjANvO3E34jZbfmCyw4gU4TRPIa9rpaV0N14hQTk\r\nKcBv+S12udS181oWcTc66zxVXUHNK15PRv31jElEYQKX8EJWCe6ccJA/cJD282sR\r\noEhfuUvzXHOeWD1jXH+Eh+mKuhLqiQHPJH7TJRMsN77ndtHH9us3Ak4l9AmGNZZf\r\nwNquVrHAiTw9Ai90btckoeMRn8eogQIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBTX/nF7X/NZN2T02QZU2G6DYuwmyDAdBgNVHQ4EFgQU\r\nlUWMsJMswORfcQ0UpecnwcNjm/cwgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQCb7VpPdQaBSKQdwDpgFquVkVtcKzEAwsVlzIENIrlRsOcBgvZlW9QKwgCd\r\n6xvrF9smidaMzlYuxYQypQ0RQEHDKJ1SJQLc1ZtR7fWf0xHqU0cgX3hktDNyN5t4\r\n7rMtYOUhygcZIxVQ2cpkyLoilwnb/q0Y0jOnA7eo0r9K67TJ9CP2m3ZUApzRaCwv\r\nqQE8eNZvngy+613PU11A2EFuTPXoVNb7S3w8amz+mYYnJCBhxf4PdYA/3DZ0q3FP\r\nfFxqKAbuNtXXHFmYn3BBMGSn082Uq8RsAvj5XEkI/xylDlwG3zT+QaIOrJ/06Toz\r\ncT0ewSlyNAB6LzGp/HLTIffhSNBVX8ILs558r6VcnTE21awdkWqnd3PiPkWADD78\r\nDVSb/7QOsBdZp6BKkcDzTc/uaDGahR55UcapkOMBSbngkomK986ITx3yUITn0aV4\r\nBEVbYQQ6b9l/eNHRosiwL52QPnYl6fJRsl0JuUzy9T5DrwGGnRgKQAOmSWPRTdt2\r\n14MWrxbLFRRwvqt2COK82jPTAiZ3XqYSZzZce9bSDsGSm5VpwWz5+xyBYc3djzKR\r\nThctXJrwftNyZD+LBc/4oLOTYLpDB23eI8rvb6Xfm3A8ANucIq2muavxi1A+eyYM\r\nQXwyB2foIV9yhDIA5I1psyJo+CwM9CcibRTjjNL5ghEkoSDjyA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFSoP4knG2YAHAAAAAAAVDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzczNFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApuAstd+jxOmcAhw1KNXa7fDE4SFe/7SdG4avz6VQqep4ofwJwZTxQJNQ\r\nBC7dybKZO2RBiDzzayV9PCxmK9HPRMRmuj68x9BRyoEbVU1tX4HtiBK+hAGiRNQu\r\nPRTYcSs24CgjI3JrxOjNesp8iE8HUVntN8ueXnpTQLSYOR2TmTGM835tkTplflX/\r\n/zPtZvsXSZz+JssQ9SRcXS2t/fPDpKfNVatOmq4iwtX7Q6IO/WCzAyEzacjAFqml\r\n0/PRYT5O+jiRO+TImZ2RD0CB9rP5CYwN2T504drkKteNaT+FT/teBLC+JraDjh27\r\nv24yknl1t8dXCSS6l/UBGBGVk+gr0wIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUVSrR7NlDI9ZN5GcKVaV9JEKwIbEwHQYD\r\nVR0OBBYEFK55wmtdJYgTBvYHCcOXfHuXjx1VMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAbgp2LNvP1OVFkH9JTg9rTMksjvLIpzaqJehSp5+3YNzGl/TH\r\ni3Kg/rbtQaKErwipeLMhmqWFuT9kB22eeyoBSxx3JTzRmKtcJO47IX0qymW04v2i\r\nI2tVWQigwJWtE08Z16Q3NVdgAox6DDnAvmV8QDlPhWdW0gGcszZqFD47SJltU8JJ\r\n6D+xuDl+xUIA5wQ0987HRo4dSx3Vny1cd98GdMepsOnCpfm7ZQDWJUggp8m8T/jv\r\ngj28G4JNV9nsx3TT5D4xFZ0rXUlQNmhJFesprLt8NqOoKqmP40WdqrpVIxlu5pdH\r\naf/uT89gHO3Zy+iqNbCDRB7zSBtaalaqLvGpE0xV3p+xpjY1CujjvKp+rUrGwA1t\r\n7aNRowd45Dn+kESi95bE16V2k54YbRvgkwQgqyFUiissogOtaOwQIjuv5NUMkKnj\r\nWz1S1nsMTwZWQ20pT+SG9IMWxAP+63fLIMxWXSbwkTo1Q7JVbr7ZnbNjPrzwerrq\r\nTx+CgfCjU2TZ2WaqYnKoGlgjiZkVraQ1JYJkEr5N5+12CnAuVNzn7pMs6HUSxc8Y\r\numBjy+KA0I1XMvFerh+fhEVad7kOgOxqE1uLdXZxkOXHC1N4FQlkI65Padcd8dyM\r\n3g+er8suC1gf9/fWU0AlgIqls48Wis2JISOeSsMAi3BDvCIpp5PHbuNfj7A=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFr7ZWQR1r6OSQAAAAAAWjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzN1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEArMu8k7Kq5y6uDXZk0QxV9Ya5K3Mb0/sCyV4fs48XfAgL3YOHYTZ5o1uB\r\n97VZ/oXuenXaDcoDE18WhOavpqjWHc4eb1QeGGCaB0MoijTLGPzqwWRdByW6l2U2\r\ngFzjKWKtFncIj/VW5S98uCDD8b0SX278XKubkKv0Zn3m1E2wVrTvG8Jc/MuXF0WX\r\ntjFRRJPY3keED1zFNEKjckE4ywTV1atTqnKbmj2rcQucHJ4ufZ89Hel/xLL0bFxc\r\nJnW4Ky8lZ4Q+G9brYexh/iEBcSpNQlfLVJrKZMlAwGPcp1SBGxU9GlSV7kE1LLCS\r\njpS5d6/qw4VA+z5y9HsHN225oBhpAQIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFHrWGYUoeWxxdh5g+PNL76IFQhYdMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAU2IUk2qTwWTtRBKzMTaRxYKvTyvU1nyQLxko\r\nA3304lciVsdA86+jhEkvnCwZeAHoOtYuPeQJdeyhYUhVRDAhhJauvE87FB69gM6h\r\nYUnRqiy+vekLrHB/1x8njoLHmcppjOvBzziOPSqvf8s6O8tJ5AjY3398sm5ckH37\r\nVYHa/+bAYCvEsYmgDGN8L25QvXScTmTthSXHlzsCItPpKFs385dsGJnFD0KcQ5c1\r\ngLmV1bdHnrWyy2mqB819CFWtzhnojtzXxZLuEfTBS18u0qoLdN8KvgB2BvfgZtY7\r\nx+fbkiyoZfnZak0Oj45Z9Z/6AQ1uHGSRadAh19mkcrkPwHktc/3M1PJ69dwZn8Ez\r\nASzYFf8QH58i5uxdou73v+5Bd1m5nmtFCyLC6QDtFYH0pkvmafBx7PwyrgTjq2Xv\r\n7eWL0wXESxzY4HpjMDO36ncsLvzI6j4CyG4cpA8F8+9jwizWqmKMQUWt+VMICsP7\r\nRrzCJ35ogFGWF/dC2hjdjBXjcyLaliR5nE+sDx1PVDdIu7y8oBi60+Vzl0+BSf8P\r\nOdssgwciUpWVP+9xf6SZ7D9BPmLwgIJZ4oPc5K7cTOR6ksQQg8fO44fmOCRfVD/T\r\nDj1e39ijjkmcXUvrcu1sh93vbupLKp4Guruj3Le6iQ4Hla6Pr4znFKCzKk1+RrcQ\r\nVnsaqio=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFOufo2CImJDvAAAAAAAUzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzYxMFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAz2IfhGnsNWpW1cYZrm7f0KG7FjkmtAufsz6xSPNM86b5+jPDUpkOb7U7\r\nj4cWGBVdrYYqWUkziZmWPyl9WLw43KGzaMT3xTnm1xWyok8Z1D/ytHfxFI5t+Xzk\r\n+pcWwIZzuElzEzAQYnVMyfdxD6sM2winZ1ehDpvJeLTPcuTPf5fDYpcrnebODQ+r\r\nnsvq7oU7bHp/jTkGP/2hNzNLR7QJq+rOaHTHDky5yWrsMdgGj0dJXmId6RIfgbeq\r\nJyz7pK0OnoqopPXzZcEQJGNdh9tTh0DWpPGkCWvp4yC2Sd6VSDIApnIpXRn5WNGc\r\n79eeuL9eKvQ5W1zq3/j5HlmwZvPOE+3kPe9r1+WMazNqbhmVk0gUfZX+cnJcy8ZH\r\nqZhjCnW1ihCHzNxMQypQLrnOgVCBkkkRj466iLGDMGL5IyTji2AAp50wMiZuVQX6\r\nwY4kcKqLsjSPpDpHGIie+58/dh9xFgqJzV0kNbAvehRlbwzQnRJWzr1UgZJgjluN\r\nlLpJwTmUIe3I4FzbwrzGMOltYu8XbdFAfyPM4fcfqJwFTF2xI5OYNC3Rcou9OSQT\r\no+ce9/rON//vZNZmQ+TPQ3nkPoKus+JX3EFJbevLeG0IvvC8c2ABwv6cNcvbSSoV\r\nXP+XaBLuXe5A3G+Tdr33bVhKKnbKiravs7sEeKvXVrpDgilOuG8CAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFJbqBZJuLkLM\r\nIH41hmi+LDFoV/teMB0GA1UdDgQWBBRIo61gdWpv7GDzaVXRALEyV/xs5DCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAArPH6tJjsM3VsG3zdh/1Rh3LDz4\r\nDqyUEJEXiM+Sa1kCncVvIqI5GkFKGM3Ur3hdx6xxe5F9gPvUdL22Qf0DLaOclksk\r\nO2FABXqDRv0P7k5yyryzTM/RmLhleut3Fc8BUdfrkmif8Znyxp12sRxK0UgEf6iI\r\n+dEZugVpwAl8IRUk9O201Q87q3zI30NgPT2BJiDycKaKQJF634qatubvL28JaiOd\r\nk3uxWfcqKjO0oeSJ7pxgAiH1rCah7UN5T2d3V4AmDQGLPo7lwX1SKZewa10PnF0X\r\npjE+8welxOK+4pEPl2kRdMDpr9/XPXWpAPt2h67Z0j7x5c7nDU/eZ3UjRkJePoIQ\r\n5aGZuxZ2diziI4JWhbW+kF9M8T0CM1EUIcQV+8wvvualM1q0IN+SJ1X49tt8n3y5\r\nfEAur2599a16z7zg4uF1xI/SafWXMjC8MObCHjR5xodSQ7IxvGyl+6uIkENsiQBF\r\ncuM55MMUELl0VM0+n7Kv5K2Ur+heLzNlTTy2eoiU048g8iQmZzP5C9y4hUE3rYgJ\r\nRxP9ovHl2km91RDTei9aANUGIB8U2uFA7pxe0G8Kp8WSF0a2DtZu7sf2lGjKvP+7\r\nJGaMrJn2bJW6cDEPgfyKCio8kCVtFg7QTtkaZjF5J6AIB0B7aHNPKlAE2T8O2/Z7\r\nJIvM+ijPG5W96tZP\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFjSjQKPPAEB6wAAAAAAWDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4NDAwOVoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA3Pi3nd+o2ItxXWvhyaIDXRbrxgB1wqI0wK/wgC3vs2vSbIHdSuOrtac+\r\nmR6Ag8rE69QQOykN2KJIQI53O0egLWUqjDMa43Fkh1EWTAD0B6snyV91Lt24YPPq\r\nOyJZLhGCtYJoQfPQxZjgW0PknDvWCGIBPFacj86c84QzQdmNBMPrObC21S/ilK+H\r\nGjwcYx9Z3dSeK2CPLLkb3C0HzWWLBL5lFHrdM7qphSAJ07g8/ggis/b4aHdWOlN3\r\nfyySWbuTLQnX8J1XZdWGc+7Z60gzt2jwUc2kgpjcpHvV7QYmy141rjiQyFDNUf7x\r\nFBeFIpLDPoxcfAsOo/dtVfxp/dNMqfAEC27QrUogtIUOcCaSZ5r09ECOuBW6Mood\r\nDIx4bUEhXOJmZBtpzRXhVVKTC7Aqs3PTrPehspCxOclx7c8aESASwj6SSWpDQi+x\r\nrKm2DgTIgvVIdyBNdKhxhGNyl1t9jTEMAdwDmY6pN0kMLCEdM6v9fG0nvtFFLU/m\r\nj9Ojh8Rtf3YWiUPd2cI62tVoXckaP3TbdCNmGysT8ShFNEypEINWIl49U7V00Iec\r\nOveCbkfsnKnT/o69znrWUH+Pt65GxrqO5A+To6WU83OqLxljS/cyBTQmrDh70Dgz\r\nKXDXN3JVW93RLoXuNyAhd1nUOjKOI2tmPhEC4Cz7lqmVxDsQaZMCAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFDrHw8rI3g3T\r\nksAnici+l0dPRWlgMB0GA1UdDgQWBBQ5cV2pFRAtxN9+L1luQE3A3+82mjCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAI68ze1N9ZqKBI7Q7BXGlc0k99wW\r\nCoCZu0m02crvYeITKUC/eizH7s6Sx2Kk5Hnzz0Rzc8G8NpiWEfp7ppKeP1jOMv11\r\n7P1KB6IHyRLdW7vAIBiJy1qhbLAxseR7xkvDKv9yjZYL9Q7XtlSgrd9NuEiuFsfj\r\n0ANzVf/Ea4br00gGc8ALfnvgGE7eUdBNqWKTzHcQREdjJPRMUqTYqcvd4qQbRXZt\r\ncXLt4Fr3pXcwG1UExrz3TP4ueyrqGot/OFDvMihs6Tak0qjYygT2dC3bEOBg3GSQ\r\nDdQVzBFO98f62/l51TBlWizuw3D4/dKIPfQU1Qt7sr9e7CLbecoO8EVtyt/yGRr1\r\nD4BPBGyEzC6QoqCo5Nh27yG+DxFtAGdm/vLaFeJOVM3q2d6nL1FvNzlHTHfOYPJ3\r\nNwHB30X9TpdRqoBLM5UC0m/ybKj4ygXAZBlkJXMO/bjtpqyidJ0SaFuE8EdV9YoJ\r\nKUmBw1ZuZd5GHbc+Ilz82WX+JWZ0efU/f+75Ywvntu/3s0OsnpVoqrqM7TDdzE0d\r\nwRiZ+mvtgIwp85+et1iEdaWPj+d6LfJxpDDCPhaqh9hnNIkZFptndwDwRE2MV9Wr\r\nlUCSA96/2ubHsKt4E2D96KvNog6MKdyEGz1sZep1yZKqE4cnNzGNBGRel0BRa2MK\r\nyTOQsCbnpQGhEz0m\r\n-----END + CERTIFICATE-----"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFlFSsCTnaMEFgAAAAAAWTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzM1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA0E8VPmTCi+s/ukALr8kiz9n0QMveOlaFztd/3QikdEPvOujCuE/CXDKt\r\n0KhyGBUshmHGEC580aoe2Ze2gBJ/Dhs8FjdCjH4IyWU22QOervNkIc2Xd3EMxVZL\r\nYmWmDp5yfa0DwHqsqLq1PLwyk9BfYhh2gp9Dp+vECu4FzvVoZd73UaTpvcQKDsXA\r\nTVR43QC8AiL2AiHgOB3xE75MR/kI1OA7mTaOK8uZbQZCtyG1VMtNL+Q4Di0nB9cD\r\ntqfQj1/UCA76Nr9a7p/TUnck94zlsHE5RVGvDy3GKpa4cmCb+nRpF+ybZjuw8fPT\r\nCY5JGTLZreJMgk+Tej7iN+BYyn4Q2QIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFPFGaMbxw/ArLX2LauGy+b41/NFBMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAD6YslCi5IxgKWQYVzHClxGTpTXEarOPDACuQ\r\nnZIgM4hbk0rMqW4aHFd+paZmMUvNU0HWtIq7aAbNZGCdTrb6g9xjQKrdivWr24BZ\r\nBDxlYkU1tNvdQmafd/RESZ+TpElbuBw2EW0qtK2K+BfL1fTcwpIWRoqWcZUc/CzX\r\n43yuA3vE9sw7/HCDOEQF+QW12B6LDt2Y6DR2y8ZjYsIM0X99mgCE8/HYL4AR3+mA\r\nHjlncC3qlXWRUk46kz2yU4gu0k4P5vexNuGvU9uHvmqQERhhHYkAiW5pwCNFdZDw\r\n95vcnWocRk5TaOPp74v06msx58qS9Re9Fz5xwp6dGGqvWgcF9UJtVVyXMGYB1/1+\r\nyd5n8VpvHVWlrPNpcT0p9YLeou/HKZIiekolUKL6SqCbDFwSUMPM1xWSK6RbphmT\r\nJZdAoKKLq7c/4bFPOxeKvBjT6PrWP64ktWN1Z+AYQlBp1rK7A/ZkAOh8l+17K4VJ\r\neb1whd4SmNSnZbv9jhOeWhrbRsxmFJ1SFHhoBhS3Q/WZWMJtLu2Hv1RHnqRgLD3y\r\nlaC9qyj44pXka/MiLauGl0qjRsO6i0ZV/nU43/eZt4EhWewfmXRnfNlXA/u6abVS\r\n3lkNTlQaJAmTijbKk4JI0qQl4e+xZloOXJVNiqKgYSh3N93Bi+8ROZCLqqpwrO+C\r\n8C5Y9Bk=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIFVjCCAz6gAwIBAgIQJdrLVcnGd4FAnlaUgt5N/jANBgkqhkiG9w0BAQsFADA8\r\nMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAwDgYD\r\nVQQDEwdhbWVyb290MB4XDTE2MDUyNDIyNTI1NFoXDTI2MDUyNDIyNTcwM1owPDET\r\nMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEQMA4GA1UE\r\nAxMHYW1lcm9vdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALv4uChY\r\noVuO+bxBOcn8v4FajoGkxo0YgVwEqEPDVPI6vzmnEqHVhQ1GMVeDyiRrgQT1vCk1\r\nHMMzo9LlWowPrzbXOwjOTFbXc36+UU41yNN2GeNa49RXbAkfbzKE/SYLfbqOD0dN\r\nZLwvOhgIb25oA1eAxW/DI/hvJLLKh2SscvkIyd3o2BUeFm7NtyYG/buCKJh8lOq8\r\n0iBwRoEoInb0vhorHaswSMmqY1g+AJndY/M7uGUqkhDGBhLu53bU9wbUPHsEI+wa\r\nq6WypCijZYT+C4BS5GJrEPZ2O92pztd+ULqhzNRoPj5RuElUww7+z5RnbCaupyBY\r\nOmmJMH30EiRSq8dK/irixXXwJraSywR5kyfmAkv6GYWlRlxFUiK3/co47JLA3TDK\r\nN0wfutbpqxdZQYyGfO2nZrr5JbKfSU0sMtOZDkK6hlafV++hfkVSvFfNHE5B5uN1\r\nMK6agl1dzi28HfJT9aO7cmjGxl1SJ5qoCvcwZNQ2SPHFdrslcwXEFOMDaEzVOA3V\r\n7j3+6lrT8sHXg0sErkcd8lrBImfzhLxM/Wh8CgOUNeUu3flUoxmFv3el+QWalSNy\r\n2SXs2NgWuYE5Iog7CHD/xCnoEnZwwjqLkrro4hYWE4Xj3VlA2Eq+VxqJOgdyFl3m\r\nckSZ08OcwLeprY4+2GEvCXNGNdXUmNNgk2PvAgMBAAGjVDBSMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEBMB0GA1UdDgQWBBQpXlFeZK40ueusnA2njHUB\r\n0QkLKDAQBgkrBgEEAYI3FQEEAwIBADANBgkqhkiG9w0BAQsFAAOCAgEAcznFDnJx\r\nsXaazFY1DuIPvUaiWS7ELxAVXMGZ7ROjLrDq1FNYVewL4emDqyEIEMFncec8rqyk\r\nVBvLQA5YqMCxQWJpL0SlgRSknzLh9ZVcQw1TshC49/XV2N/CLOuyInEQwS//46so\r\nT20Cf8UGUiOK472LZlvM4KchyDR3FTNtmMg0B/LKVjevpX9sk5MiyjjLUj3jtPIP\r\n7jpsfZDd/BNsg/89kpsIF5O64I7iYFj3MHu9o4UJcEX0hRt7OzUxqa9THTssvzE5\r\nVkWo8Rtou2T5TobKV6Rr5Ob9wchLXqVtCyZF16voEKheBnalhGUvErI/6VtBwLb7\r\n13C0JkKLBNMen+HClNliicVIaubnpY2g+AqxOgKBHiZnzq2HhE1qqEUf4VfqahNU\r\niaXtbtyo54f2dCf9UL9uG9dllN3nxBE/Y/aWF6E1M8Bslj1aYAtfUQ/xlhEXCly6\r\nzohw697i3XFUt76RwvfW8quvqdH9Mx0PBpYo4wJJRwAecSJQNy6wIJhAuDgOemXJ\r\nYViBi/bDnhPcFEVQxsypQSw91BUw7Mxh+W59H5MC25SAIw9fLMT9LRqSYpPyasNp\r\n4nACjR+bv/6cI+ICOrGmD2mrk2c4dNnYpDx96FfX/Y158RV0wotqIglACk6m1qyo\r\nyTra6P0Kvo6xz4KaVm8F7VDzUP+heAAhPAs=\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wenting-monitor-test-rg/providers/Microsoft.DocumentDB/cassandraClusters/wenting-centraluseuap","name":"wenting-centraluseuap","type":"Microsoft.DocumentDB/cassandraClusters","location":"Central + US EUAP","tags":{},"systemData":{"createdBy":"wentingwu@microsoft.com","createdByType":"User","createdAt":"2021-10-15T15:35:16.4112688Z","lastModifiedBy":"wentingwu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-15T15:35:16.4112688Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"wenting-centraluseuap","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wenting-monitor-test-rg/providers/Microsoft.Network/virtualNetworks/wenting-centaluseuap-vnet/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAE5Hd9yskSH1BgAAAAAATjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDU1OVoXDTI1MDkxNTAzMTU1OVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA5UFGOQgmohqJHkbMMcN4cnK+mAoScYUAR/njrD0x/GyFeTko+QXMU1JJ\r\nIePmVcugmyO4xX5ITShZWy+/qPAWy3vwT6HzBdFq5eTGbkbFCrQdh5w1+jwOApMe\r\n9ZDlMDO+RUtJe1XxWqi3KRY0e/pJmpOk4IUEjx6wxvv5MnSWhMa7aepnkuCS8lvF\r\nNl9D5oUGIYvoDUgVMQSBazQP2zjRunMT9JOopFKnZE+L7NY+XDtla3I1uZeMeakA\r\nfqkNjx6lkUIgcHPhSMy5XHBpOeFdSDjBA8dNk6E3VSlLzvPcHdaHI7QrmK/43wzf\r\n+kHpDdTXx8EdOqm+pLHoKLWcjw/P8O9RAMiXefxGnQKNuP8T+/prskR5esucJQkj\r\nrWSu7W7YycmIg1rPCd7Qw005/sc58eLPN+Xrj/Aw7RSR0A719CPZMjoSfKTphSEK\r\np+ZB+5j/V3VEzjGbL6XFUezFfaIZ+A7ZtkaEQYDH0fVVziPnhQhJB+Uym7a5arB3\r\nqiMMw7Yjos6iWkkOaqhaCHuN1zC374xsBec9mrJ7bfuLTNtBEKC1PhdZrJM3UDCo\r\n76v+3mnKouN/7vyVkbiLNb27MXRigXFbO02opR8prTkvv3af+iq6+xjmVWZhsILI\r\n0HIBk9/HoMZCCb9e95RQVmVwVNrwa24neVWl+JEw50sqLMapsGkCAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUOsfDysjeDdOSwCeJyL6X\r\nR09FaWAwHQYDVR0OBBYEFEKY1e9GMTrmL0fNVVel5jUfu/yRMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAuaX699r+ayL7JphKgdiDuy4iPTwf7fTkUsLx\r\n7ixBzvnUrUASdS9GJEkpsewdipRfMycn3UXatnQ6rudCqBgsExJzHBGlokhvVaZK\r\nue0oIlJstnKQDOJCpJem9NkvwALP5z3WZoqYf4EaaQXUkMAJJ2qxw+mksSBEu+MJ\r\noxgbStKv98q28ypOVLjaFNH/VbtAG/rIcqNyOdjAPcgMcohe7lGO1WQtFxPxtzvS\r\nZfgao/ZjWeNDFzy8FSInim1q69Syl3Y4dzeAlG6PiC8t7upDQzo2AJxI1tW0AkKV\r\naJIS9rGZquLN5MTbYozjEyzMvSEYFEpx+7YKQGayHz3eCGH4BzD43YPt20Cm4BMN\r\neyV64+d9PufCA2tzrIQ+VJhsZKb6qRgV+Bp6AfpgeyU6oRkqsWKJyKyzp6o0D+Si\r\nq3gYJdD3W0+X1jUJcQuywYLRg78rVE3A6VJ7RIEjXARQV19hJvxchCoqfbny/0bX\r\n9Bb3Rtr1OAYhUml6Z6JdfnH33KfEJvFa4wlKRBxpuw9gMG5ydOsbZ3YIJDWccTLH\r\nQZWJk/Lakd/+uLPWOzzWQCf7nPapwSRjtfRRLZoX49PIQkrGM3dpLLGktC+sg8bc\r\nvQ2bO79bKJazcsKuNK0dOpepIBA1mMD81DphYmc/RMF9KXKdKz4Ugh4HNqkltIsG\r\nEtaYPCM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAE2e+Zx9LtWjEwAAAAAATTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDUwOFoXDTI1MDkxNTAzMTUwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1RZFKUUXNWXgbh7dm52Irso1hGPDEL9ZZXYz0civ0AAlDu9P/1okXVpc\r\nOPQnRxE7e7O8roTSctA4MTBGFIjrCythVzk6MJC1bgGv7qwCV6o5P4zVSxQrHPx+\r\n2DPDIZlt3UV4RNLuKVvSZdzQt1UsxUOxvTZ/0mO22d6mcspf3I5Xt5h+7WlTgHAy\r\nWvvlpuX7LR8yTK/um4526bdhUG98I2nEURH2vnNSt3/Dbt1R6qoPMja0HhghuOtY\r\nt7Z77nyI2gOY2fRu3oM15Xqe8b3Qwx5IsSV/pTWJ34VPz24TfUmCQOVtu/m84ayA\r\nwSZ754d+JvkyPSdINV3tuLtbo/QVewIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBQbRewlXgZoN1BD7V/nign/FlWETTAdBgNVHQ4EFgQU\r\nvZx3N/n1PWYwyjVonISvG5ZVEL4wgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQBFtFQSE7TjElKEmwHyydrA/UEAzho7rEMy2lvNr2tgX/7WVWDqmDrTK4La\r\nm6/MGOUBYbF334Ywvprij/UoSpyMEq5HgXiCBxOgyUPSZx8x+XyINgCujVXRk9za\r\nPh1lXpYCV2qhIYAhazeprDYzX2im0Jwe8X/Xsl0kzgs3TE7medDW9CVEYS+T7SqG\r\ntmXhOg1FW04yUM0+Z73ZQGF5oqnE76kzpLvfn+YWA6KbLfH84yTpqylAD5UFvfeW\r\nMRoNUUckpsteddNba90soUzxeRwU0Loxj5Qsds2gB0tSIpVh330BxEDTIJ73FZIv\r\nvURqyoDor+Eu1NOVk3sdCM5nXuN38dc0a9fsSRoJkbQYTP9UNJPcUDO3kZoYWNxD\r\nWrn5J/ltaxPc1o7+USSm02C023HIrWBJkfnepIZKV8m7wkddcygJ6FQkxFU+NQUW\r\n+a91tIw3HTEHvmNlJddPmjgnE3k6GS1NLOC5IV/s1s4sSME3QYQAt+zr5TKRdZ06\r\ndBOSXrz66pVpkR2wuAvlCEuFk7gaBrKz4j+3wJ9CPhETezARvgpzQCw9es9y2qde\r\nO1rHPYa6IRtmjcVDvxfmjei66bQwoapDH/OMS6sPqqqn53l9g4HDDgWywWn9ad51\r\nL5NAvQYhHwSCG0E2Os5mUFYM56ZVA4WHVUn7NZsAXGnDtIwlPw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAACbGTID3uXpE1wAAAAAAJjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE4MDMxOTE4MjcwOFoXDTIzMDMxOTE4MzcwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAvBsRcCD4Z38LQPG73ci9jIpQv5tVQh8lLrcQ9lO2lH6pUVWi7T7jCyX/\r\naCSmit7fT6seN/kf6LP0hpgsU/wxMMv4c4+w1M16EiRc6GPJtSPNszl8ZNAzZj39\r\nxeJnAMhPzeABRLgzYgLH+9R3k8sIJMhSjcUfp63GAhKtdqhQeTOs7m87REtmAdo7\r\neZh/Ubn4HR1ZxAswmoWmMxMZw1KZj87395IxE3Ybj0m/V8dyskpxWdAzkvGeO//l\r\nb4FfAHVCCix9wsijqomj+jeJPHR/AF/5+MZXjoNDs6/+UMdSrEqa2fi8910J6ogL\r\nSMdL7NdV77U5551wZxeUwSEHUc4qkQr9cFAdHcdYiMnIrU28zk7O3yQdsyWdrTqx\r\nTbkoYn36Ji+aSyzs/u/Zh3pAWw9IvLaoq254Rpf1SWsvufE2YXaP6kUmvOE9Qrnt\r\nQ138fwe9CmPUT9I/cM0v16BDvELEH3KGsWez8WRFA5RAB5pPDKjMyZ7mNl+0+EDv\r\nMq+KYjtc9uWJoRsRe8mDnVt2JGRBazTCFd/m5HGywdUvg/fZyVfBrvsRhcahMXn+\r\nb+a6kw+gMY29dcNutHNl1ZuKbwUuvp0ShWnauFVqMSRP6kSgXjzM0Oez2CHEtnX7\r\nNTKy9+eXsqxkzVXop81HCR7QCDlKPkc78IRETKfQA/nHdu2iOd8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQonG1RafqmxKhDxP+NNvoz\r\n3/1FMDCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAJFaZ9bHSEXBMKUi\r\nxLJgRr0yPOBbkZAHGsXGsAAdXnsAcmRZnoMsJZwHJY9qa2SDdjWzCnEuk50KJ0Rm\r\nvePgWmDtQWwyfFT//JIccaFgxYsU2SjdHEi0DmRElJtLkYQorDjkqn8s2T8y95f0\r\nmdcNme7cQ8PsjawgV1hb7r1I0bRh93M4pDzRt0g08RoFtMGuqRdU3roMDbuid5Hj\r\nBnoT5MdJlYzklABw+JPOIFeqZ0LMq/RPyk8Dpzo7m2dSc78GitdNnWxj4Ku6l8lb\r\n0OHX3BL1eVKyKi8Vta3BjpzWuMQompgdzp1Eh+mDyfKV/+dlfIEPJI1stEHIEKWR\r\nR5yt35+RGXrmsmAwTZT5mcJk4JdAMhVnRnyWvxPzieYCR9DcIaT6+NBBYzQegOG+\r\nIMnLpnZp6qhbG7Nq9MXCqRY2ooojLCTLTCx8R2cqdYonJpB4lSkYMFYbuV7HoiNr\r\nXdZm0gMRi2DmIaZ7cxXUn0BmZd/lXSXNKdxwHKecu0F8ByT1Zlg3NgIhCb+6SDYB\r\nlOv5YhnwSd00aUaSSYc2dKJmR2yfCKT5Li9wdtjlB6rYIb7vHRl3x98OIVE+O20S\r\n1jQEqRLzkaDIWOA8D9VeuuIW05tahms61dDi5gx7M/ALhFa/QsbkCJXRf07Pe4ki\r\nHE/1Nk3cohSibWYZqHssdutHBd+Q\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAEnEBGqOfE69FwAAAAAASTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDA1MVoXDTI1MDkxNTAzMTA1MVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAw9b7oiITgLVh8Yry44fRHl/xMuYtsI0Cg944jlh0S5ljKgUEMvt8/S63\r\nRH9+9eXvbFN4L9EL2+RDhWd5hGyg4gQeKtxO7D/+JUoTIamIl4pXTxhO5oORnS9k\r\ntWp6lc1OfpYnkgzrkFHICKggDtCpQxp7cMtM8evEvY/7WvmJDbAsgSRlBIeyVZqU\r\ndfw4ahzvsNmMfDGx2JBKgB5mndVGyg96yCHy5+7XKOkkcr+NKHdnBM3k546rGlCV\r\nErgPVuUkRxrwIa3xD9BRewoihWG7sbuxny49CrdbDi3WqK0VPSJGZ2y5ipUTwndi\r\n/+QhiK5expoHO0hl20DwRgq74qB5zSs379PcTQz59OvUDMi2fiErDYnCT75X3w1b\r\nh2uGBFIwonYXGHU1s/SaxQlXErGplgkLv/tBPAXu8sk+qANHaY1EfPwpPfOXjIxl\r\nRT95moW0IP+CPmhV0g2ZPKNn0mIRPpf8IzI5O4pLe6xfXDekQnNcGaBY9nN9LBO3\r\noi7pBBNObi17J/ebVg2rScg+KAWVVf09iLF2inpoFxKOJQz//poXo2fAvYVXnXJm\r\n99qJvY8gFyOyg2Cr2x/Wp8yw/u7H4DztXuFMYuPEVpR9/EeLP2bzrpdbJpj+SPT4\r\nU0OmtjVtKNR4aOBNBVWmzxV+WKRBfpkq+pjpRMkgFapXWtjlXV0CAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUluoFkm4uQswgfjWGaL4s\r\nMWhX+14wHQYDVR0OBBYEFBxS0IHKkOkG4KzpGA07z01trd55MIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAa08V3/BsJsIOjn2Qu6zUb0GosfdvggVX36PY\r\n9OZyOn5d2+tPPjG2re+uovdpuLKx1YH0iBX4kIL05yObqKMAv+YO3Ihj4MkcYy6A\r\nk9DbHyQTYoeSfaryn6yo7kLYCz6E+li6HJ4FVx13PxpwqDXWUu+Yf5Kszj56IqHx\r\nTI9LV1ZbqmZYk7fQIPETYENkE23ypgh5snRtqSZYTw6HASkHI4E7NgFkOATnIcs2\r\npLGzcc9vc/QYlj3PT3ciGdpGkz8l/A2MMqC4eleYFTBSX9rNNG0tf0M+5fVF417D\r\nmtqDlglm9bWpgrdLpmcj28f3766EBJBq9zza4M9dAGBWBQx0c8BR9saGATd/U8lY\r\nmlTDhnRdqJvvTbtPzFFmTF5jrANky12jKlaHHTyLETDu6OeDbVEyJNuhj0a+cQ6r\r\nZwYCG/k0WCzUx3MMq1A11uxvseoOmpIqLOGfkEdmBPQXkKC02vyjZkxF0pGPNNcy\r\nBSCIlZ11UtC5ghcZ2Wg/U4bAogTv/XAnjwzLpp5V7mcepzcBagiFlQkdnvUKNI/I\r\nLkerOmrgKe0rgT+ICALZiq7hIyeuM2uthyD3FaBFf62WOtDD6Jfwkg/3LI7of+HC\r\nGZ99J/xaocq6NFYqzD/9H6n0+biogXUJtm7mKhQO3PeLz/1aDIwLfKqZFr3PCStN\r\nvTWqAdQ=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFYLVFiDd8BlgAAAAAAAVjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4Mzg0OFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAxIoR15PqTSSMns55DdeR97gCwVWRoA6zCYbU66RoYrXuHSpcJM+1tnHN\r\n6B2gITXD0iDoTLpuOvRlM+12v0c8cWdzVoHuRuG0k1ViNgSELeNw8SXSQ6jmvgPy\r\nH6fg+NiKLkjYrJuIp5me3/asqMTeO6MOkeimS67PYerzkMYoC7BUEUacludZswsM\r\nFZnsM/vHCjIpzQMGWyUzju2ANT+J41Wz9AmukpPQFNzyq9566BEU/4MJh9Yg5aSR\r\npzI1gU8r4Y9ABdOgjsFnEm8BSSdlWLgalKevYPMLX/FO2rFufFgcNJq3Y8rnAtJD\r\n0k9jt7isXmJgS+JNfANvY7+jXQaCkwIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUOLjGDtr98qbFC/XuACeceItvo7EwHQYD\r\nVR0OBBYEFOXZm2f8+Oy6u/DAqJ2KV4i53z5jMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAYI9s0aXNjS8k6w/pyYwcd8HBPAjpWHJp7vBNsa9rDbau6raD\r\n+QWjj+hO5OKUkNchKIkK3xUc/iDAMNALDLFqUOaVTeMh5fu/e8Pr1AX1R1c5U1Yd\r\nxExItrFARqTCCIQpLz3cTu/9KA5QgUQlnFlrxA9IHq9G6k3TvTB2AngUzXBhNhl5\r\nb8ya7LK3dhfqf2BQHJ7k1XReCJLYMxI6PaG0F6mWTCFNBbBxgjsXeXfjYv2li33v\r\n48ALT/NXFoOTbAOP4EFfLhMDnx2O6cFOKrYT9O+EU64oJ/0MQDQSq9PVos5J+RW8\r\nvD/h2ycPqMnmsjvpJ4pWJZP+YSxy/HWMwbZt/Dv/UobeQqLCIXGnODv87K+1JVo0\r\nO3c1NtGJu61JyXwW8id8VSQuc2NzEr58rOOGMfU3gHZMSNY2gsFs1gqXC6MjtX9O\r\nipJ+dqr7lgRvpDN9bD2kd9CdOWsxz6PRPxOmbUittmpHdABMZuaeKB/5MnxVrpNw\r\nlYtJYXvKRY1V30kjFSsyLv02YYKb8MI/NfWcjMLw4eaEn//ST+sf+LjB9KF8TxBX\r\nxuBUpQVA/TJX9GEqYMZt557A5u5odSVcac+w0/Nn4E6WzFLfxMr1O8OOOQjzlG3u\r\n5BPqprm+utwEHBCU4iVcZOdnSgk1dm7C5xmmTylFRYOlwVrFSPcyKy0+6H8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAEso8JmcB0l1ZwAAAAAASzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDMxN1oXDTI1MDkxNTAzMTMxN1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1FFhjk/dgVlthN00OKObtbEisXfH40OyapM9KcVlUPnMElPROdKi7XPQ\r\nagq+Ry3QLSSZgNWnkahCSxE81oyudrvlhpR7NpcDPZHsYFw6qsEiirml0hc5awSq\r\n+MtFo9pfnr/zQstb7xg8wjduWjANvO3E34jZbfmCyw4gU4TRPIa9rpaV0N14hQTk\r\nKcBv+S12udS181oWcTc66zxVXUHNK15PRv31jElEYQKX8EJWCe6ccJA/cJD282sR\r\noEhfuUvzXHOeWD1jXH+Eh+mKuhLqiQHPJH7TJRMsN77ndtHH9us3Ak4l9AmGNZZf\r\nwNquVrHAiTw9Ai90btckoeMRn8eogQIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBTX/nF7X/NZN2T02QZU2G6DYuwmyDAdBgNVHQ4EFgQU\r\nlUWMsJMswORfcQ0UpecnwcNjm/cwgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQCb7VpPdQaBSKQdwDpgFquVkVtcKzEAwsVlzIENIrlRsOcBgvZlW9QKwgCd\r\n6xvrF9smidaMzlYuxYQypQ0RQEHDKJ1SJQLc1ZtR7fWf0xHqU0cgX3hktDNyN5t4\r\n7rMtYOUhygcZIxVQ2cpkyLoilwnb/q0Y0jOnA7eo0r9K67TJ9CP2m3ZUApzRaCwv\r\nqQE8eNZvngy+613PU11A2EFuTPXoVNb7S3w8amz+mYYnJCBhxf4PdYA/3DZ0q3FP\r\nfFxqKAbuNtXXHFmYn3BBMGSn082Uq8RsAvj5XEkI/xylDlwG3zT+QaIOrJ/06Toz\r\ncT0ewSlyNAB6LzGp/HLTIffhSNBVX8ILs558r6VcnTE21awdkWqnd3PiPkWADD78\r\nDVSb/7QOsBdZp6BKkcDzTc/uaDGahR55UcapkOMBSbngkomK986ITx3yUITn0aV4\r\nBEVbYQQ6b9l/eNHRosiwL52QPnYl6fJRsl0JuUzy9T5DrwGGnRgKQAOmSWPRTdt2\r\n14MWrxbLFRRwvqt2COK82jPTAiZ3XqYSZzZce9bSDsGSm5VpwWz5+xyBYc3djzKR\r\nThctXJrwftNyZD+LBc/4oLOTYLpDB23eI8rvb6Xfm3A8ANucIq2muavxi1A+eyYM\r\nQXwyB2foIV9yhDIA5I1psyJo+CwM9CcibRTjjNL5ghEkoSDjyA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFSoP4knG2YAHAAAAAAAVDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzczNFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApuAstd+jxOmcAhw1KNXa7fDE4SFe/7SdG4avz6VQqep4ofwJwZTxQJNQ\r\nBC7dybKZO2RBiDzzayV9PCxmK9HPRMRmuj68x9BRyoEbVU1tX4HtiBK+hAGiRNQu\r\nPRTYcSs24CgjI3JrxOjNesp8iE8HUVntN8ueXnpTQLSYOR2TmTGM835tkTplflX/\r\n/zPtZvsXSZz+JssQ9SRcXS2t/fPDpKfNVatOmq4iwtX7Q6IO/WCzAyEzacjAFqml\r\n0/PRYT5O+jiRO+TImZ2RD0CB9rP5CYwN2T504drkKteNaT+FT/teBLC+JraDjh27\r\nv24yknl1t8dXCSS6l/UBGBGVk+gr0wIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUVSrR7NlDI9ZN5GcKVaV9JEKwIbEwHQYD\r\nVR0OBBYEFK55wmtdJYgTBvYHCcOXfHuXjx1VMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAbgp2LNvP1OVFkH9JTg9rTMksjvLIpzaqJehSp5+3YNzGl/TH\r\ni3Kg/rbtQaKErwipeLMhmqWFuT9kB22eeyoBSxx3JTzRmKtcJO47IX0qymW04v2i\r\nI2tVWQigwJWtE08Z16Q3NVdgAox6DDnAvmV8QDlPhWdW0gGcszZqFD47SJltU8JJ\r\n6D+xuDl+xUIA5wQ0987HRo4dSx3Vny1cd98GdMepsOnCpfm7ZQDWJUggp8m8T/jv\r\ngj28G4JNV9nsx3TT5D4xFZ0rXUlQNmhJFesprLt8NqOoKqmP40WdqrpVIxlu5pdH\r\naf/uT89gHO3Zy+iqNbCDRB7zSBtaalaqLvGpE0xV3p+xpjY1CujjvKp+rUrGwA1t\r\n7aNRowd45Dn+kESi95bE16V2k54YbRvgkwQgqyFUiissogOtaOwQIjuv5NUMkKnj\r\nWz1S1nsMTwZWQ20pT+SG9IMWxAP+63fLIMxWXSbwkTo1Q7JVbr7ZnbNjPrzwerrq\r\nTx+CgfCjU2TZ2WaqYnKoGlgjiZkVraQ1JYJkEr5N5+12CnAuVNzn7pMs6HUSxc8Y\r\numBjy+KA0I1XMvFerh+fhEVad7kOgOxqE1uLdXZxkOXHC1N4FQlkI65Padcd8dyM\r\n3g+er8suC1gf9/fWU0AlgIqls48Wis2JISOeSsMAi3BDvCIpp5PHbuNfj7A=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFr7ZWQR1r6OSQAAAAAAWjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzN1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEArMu8k7Kq5y6uDXZk0QxV9Ya5K3Mb0/sCyV4fs48XfAgL3YOHYTZ5o1uB\r\n97VZ/oXuenXaDcoDE18WhOavpqjWHc4eb1QeGGCaB0MoijTLGPzqwWRdByW6l2U2\r\ngFzjKWKtFncIj/VW5S98uCDD8b0SX278XKubkKv0Zn3m1E2wVrTvG8Jc/MuXF0WX\r\ntjFRRJPY3keED1zFNEKjckE4ywTV1atTqnKbmj2rcQucHJ4ufZ89Hel/xLL0bFxc\r\nJnW4Ky8lZ4Q+G9brYexh/iEBcSpNQlfLVJrKZMlAwGPcp1SBGxU9GlSV7kE1LLCS\r\njpS5d6/qw4VA+z5y9HsHN225oBhpAQIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFHrWGYUoeWxxdh5g+PNL76IFQhYdMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAU2IUk2qTwWTtRBKzMTaRxYKvTyvU1nyQLxko\r\nA3304lciVsdA86+jhEkvnCwZeAHoOtYuPeQJdeyhYUhVRDAhhJauvE87FB69gM6h\r\nYUnRqiy+vekLrHB/1x8njoLHmcppjOvBzziOPSqvf8s6O8tJ5AjY3398sm5ckH37\r\nVYHa/+bAYCvEsYmgDGN8L25QvXScTmTthSXHlzsCItPpKFs385dsGJnFD0KcQ5c1\r\ngLmV1bdHnrWyy2mqB819CFWtzhnojtzXxZLuEfTBS18u0qoLdN8KvgB2BvfgZtY7\r\nx+fbkiyoZfnZak0Oj45Z9Z/6AQ1uHGSRadAh19mkcrkPwHktc/3M1PJ69dwZn8Ez\r\nASzYFf8QH58i5uxdou73v+5Bd1m5nmtFCyLC6QDtFYH0pkvmafBx7PwyrgTjq2Xv\r\n7eWL0wXESxzY4HpjMDO36ncsLvzI6j4CyG4cpA8F8+9jwizWqmKMQUWt+VMICsP7\r\nRrzCJ35ogFGWF/dC2hjdjBXjcyLaliR5nE+sDx1PVDdIu7y8oBi60+Vzl0+BSf8P\r\nOdssgwciUpWVP+9xf6SZ7D9BPmLwgIJZ4oPc5K7cTOR6ksQQg8fO44fmOCRfVD/T\r\nDj1e39ijjkmcXUvrcu1sh93vbupLKp4Guruj3Le6iQ4Hla6Pr4znFKCzKk1+RrcQ\r\nVnsaqio=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFOufo2CImJDvAAAAAAAUzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzYxMFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAz2IfhGnsNWpW1cYZrm7f0KG7FjkmtAufsz6xSPNM86b5+jPDUpkOb7U7\r\nj4cWGBVdrYYqWUkziZmWPyl9WLw43KGzaMT3xTnm1xWyok8Z1D/ytHfxFI5t+Xzk\r\n+pcWwIZzuElzEzAQYnVMyfdxD6sM2winZ1ehDpvJeLTPcuTPf5fDYpcrnebODQ+r\r\nnsvq7oU7bHp/jTkGP/2hNzNLR7QJq+rOaHTHDky5yWrsMdgGj0dJXmId6RIfgbeq\r\nJyz7pK0OnoqopPXzZcEQJGNdh9tTh0DWpPGkCWvp4yC2Sd6VSDIApnIpXRn5WNGc\r\n79eeuL9eKvQ5W1zq3/j5HlmwZvPOE+3kPe9r1+WMazNqbhmVk0gUfZX+cnJcy8ZH\r\nqZhjCnW1ihCHzNxMQypQLrnOgVCBkkkRj466iLGDMGL5IyTji2AAp50wMiZuVQX6\r\nwY4kcKqLsjSPpDpHGIie+58/dh9xFgqJzV0kNbAvehRlbwzQnRJWzr1UgZJgjluN\r\nlLpJwTmUIe3I4FzbwrzGMOltYu8XbdFAfyPM4fcfqJwFTF2xI5OYNC3Rcou9OSQT\r\no+ce9/rON//vZNZmQ+TPQ3nkPoKus+JX3EFJbevLeG0IvvC8c2ABwv6cNcvbSSoV\r\nXP+XaBLuXe5A3G+Tdr33bVhKKnbKiravs7sEeKvXVrpDgilOuG8CAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFJbqBZJuLkLM\r\nIH41hmi+LDFoV/teMB0GA1UdDgQWBBRIo61gdWpv7GDzaVXRALEyV/xs5DCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAArPH6tJjsM3VsG3zdh/1Rh3LDz4\r\nDqyUEJEXiM+Sa1kCncVvIqI5GkFKGM3Ur3hdx6xxe5F9gPvUdL22Qf0DLaOclksk\r\nO2FABXqDRv0P7k5yyryzTM/RmLhleut3Fc8BUdfrkmif8Znyxp12sRxK0UgEf6iI\r\n+dEZugVpwAl8IRUk9O201Q87q3zI30NgPT2BJiDycKaKQJF634qatubvL28JaiOd\r\nk3uxWfcqKjO0oeSJ7pxgAiH1rCah7UN5T2d3V4AmDQGLPo7lwX1SKZewa10PnF0X\r\npjE+8welxOK+4pEPl2kRdMDpr9/XPXWpAPt2h67Z0j7x5c7nDU/eZ3UjRkJePoIQ\r\n5aGZuxZ2diziI4JWhbW+kF9M8T0CM1EUIcQV+8wvvualM1q0IN+SJ1X49tt8n3y5\r\nfEAur2599a16z7zg4uF1xI/SafWXMjC8MObCHjR5xodSQ7IxvGyl+6uIkENsiQBF\r\ncuM55MMUELl0VM0+n7Kv5K2Ur+heLzNlTTy2eoiU048g8iQmZzP5C9y4hUE3rYgJ\r\nRxP9ovHl2km91RDTei9aANUGIB8U2uFA7pxe0G8Kp8WSF0a2DtZu7sf2lGjKvP+7\r\nJGaMrJn2bJW6cDEPgfyKCio8kCVtFg7QTtkaZjF5J6AIB0B7aHNPKlAE2T8O2/Z7\r\nJIvM+ijPG5W96tZP\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFjSjQKPPAEB6wAAAAAAWDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4NDAwOVoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA3Pi3nd+o2ItxXWvhyaIDXRbrxgB1wqI0wK/wgC3vs2vSbIHdSuOrtac+\r\nmR6Ag8rE69QQOykN2KJIQI53O0egLWUqjDMa43Fkh1EWTAD0B6snyV91Lt24YPPq\r\nOyJZLhGCtYJoQfPQxZjgW0PknDvWCGIBPFacj86c84QzQdmNBMPrObC21S/ilK+H\r\nGjwcYx9Z3dSeK2CPLLkb3C0HzWWLBL5lFHrdM7qphSAJ07g8/ggis/b4aHdWOlN3\r\nfyySWbuTLQnX8J1XZdWGc+7Z60gzt2jwUc2kgpjcpHvV7QYmy141rjiQyFDNUf7x\r\nFBeFIpLDPoxcfAsOo/dtVfxp/dNMqfAEC27QrUogtIUOcCaSZ5r09ECOuBW6Mood\r\nDIx4bUEhXOJmZBtpzRXhVVKTC7Aqs3PTrPehspCxOclx7c8aESASwj6SSWpDQi+x\r\nrKm2DgTIgvVIdyBNdKhxhGNyl1t9jTEMAdwDmY6pN0kMLCEdM6v9fG0nvtFFLU/m\r\nj9Ojh8Rtf3YWiUPd2cI62tVoXckaP3TbdCNmGysT8ShFNEypEINWIl49U7V00Iec\r\nOveCbkfsnKnT/o69znrWUH+Pt65GxrqO5A+To6WU83OqLxljS/cyBTQmrDh70Dgz\r\nKXDXN3JVW93RLoXuNyAhd1nUOjKOI2tmPhEC4Cz7lqmVxDsQaZMCAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFDrHw8rI3g3T\r\nksAnici+l0dPRWlgMB0GA1UdDgQWBBQ5cV2pFRAtxN9+L1luQE3A3+82mjCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAI68ze1N9ZqKBI7Q7BXGlc0k99wW\r\nCoCZu0m02crvYeITKUC/eizH7s6Sx2Kk5Hnzz0Rzc8G8NpiWEfp7ppKeP1jOMv11\r\n7P1KB6IHyRLdW7vAIBiJy1qhbLAxseR7xkvDKv9yjZYL9Q7XtlSgrd9NuEiuFsfj\r\n0ANzVf/Ea4br00gGc8ALfnvgGE7eUdBNqWKTzHcQREdjJPRMUqTYqcvd4qQbRXZt\r\ncXLt4Fr3pXcwG1UExrz3TP4ueyrqGot/OFDvMihs6Tak0qjYygT2dC3bEOBg3GSQ\r\nDdQVzBFO98f62/l51TBlWizuw3D4/dKIPfQU1Qt7sr9e7CLbecoO8EVtyt/yGRr1\r\nD4BPBGyEzC6QoqCo5Nh27yG+DxFtAGdm/vLaFeJOVM3q2d6nL1FvNzlHTHfOYPJ3\r\nNwHB30X9TpdRqoBLM5UC0m/ybKj4ygXAZBlkJXMO/bjtpqyidJ0SaFuE8EdV9YoJ\r\nKUmBw1ZuZd5GHbc+Ilz82WX+JWZ0efU/f+75Ywvntu/3s0OsnpVoqrqM7TDdzE0d\r\nwRiZ+mvtgIwp85+et1iEdaWPj+d6LfJxpDDCPhaqh9hnNIkZFptndwDwRE2MV9Wr\r\nlUCSA96/2ubHsKt4E2D96KvNog6MKdyEGz1sZep1yZKqE4cnNzGNBGRel0BRa2MK\r\nyTOQsCbnpQGhEz0m\r\n-----END + CERTIFICATE-----"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFlFSsCTnaMEFgAAAAAAWTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzM1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA0E8VPmTCi+s/ukALr8kiz9n0QMveOlaFztd/3QikdEPvOujCuE/CXDKt\r\n0KhyGBUshmHGEC580aoe2Ze2gBJ/Dhs8FjdCjH4IyWU22QOervNkIc2Xd3EMxVZL\r\nYmWmDp5yfa0DwHqsqLq1PLwyk9BfYhh2gp9Dp+vECu4FzvVoZd73UaTpvcQKDsXA\r\nTVR43QC8AiL2AiHgOB3xE75MR/kI1OA7mTaOK8uZbQZCtyG1VMtNL+Q4Di0nB9cD\r\ntqfQj1/UCA76Nr9a7p/TUnck94zlsHE5RVGvDy3GKpa4cmCb+nRpF+ybZjuw8fPT\r\nCY5JGTLZreJMgk+Tej7iN+BYyn4Q2QIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFPFGaMbxw/ArLX2LauGy+b41/NFBMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAD6YslCi5IxgKWQYVzHClxGTpTXEarOPDACuQ\r\nnZIgM4hbk0rMqW4aHFd+paZmMUvNU0HWtIq7aAbNZGCdTrb6g9xjQKrdivWr24BZ\r\nBDxlYkU1tNvdQmafd/RESZ+TpElbuBw2EW0qtK2K+BfL1fTcwpIWRoqWcZUc/CzX\r\n43yuA3vE9sw7/HCDOEQF+QW12B6LDt2Y6DR2y8ZjYsIM0X99mgCE8/HYL4AR3+mA\r\nHjlncC3qlXWRUk46kz2yU4gu0k4P5vexNuGvU9uHvmqQERhhHYkAiW5pwCNFdZDw\r\n95vcnWocRk5TaOPp74v06msx58qS9Re9Fz5xwp6dGGqvWgcF9UJtVVyXMGYB1/1+\r\nyd5n8VpvHVWlrPNpcT0p9YLeou/HKZIiekolUKL6SqCbDFwSUMPM1xWSK6RbphmT\r\nJZdAoKKLq7c/4bFPOxeKvBjT6PrWP64ktWN1Z+AYQlBp1rK7A/ZkAOh8l+17K4VJ\r\neb1whd4SmNSnZbv9jhOeWhrbRsxmFJ1SFHhoBhS3Q/WZWMJtLu2Hv1RHnqRgLD3y\r\nlaC9qyj44pXka/MiLauGl0qjRsO6i0ZV/nU43/eZt4EhWewfmXRnfNlXA/u6abVS\r\n3lkNTlQaJAmTijbKk4JI0qQl4e+xZloOXJVNiqKgYSh3N93Bi+8ROZCLqqpwrO+C\r\n8C5Y9Bk=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIFVjCCAz6gAwIBAgIQJdrLVcnGd4FAnlaUgt5N/jANBgkqhkiG9w0BAQsFADA8\r\nMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAwDgYD\r\nVQQDEwdhbWVyb290MB4XDTE2MDUyNDIyNTI1NFoXDTI2MDUyNDIyNTcwM1owPDET\r\nMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEQMA4GA1UE\r\nAxMHYW1lcm9vdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALv4uChY\r\noVuO+bxBOcn8v4FajoGkxo0YgVwEqEPDVPI6vzmnEqHVhQ1GMVeDyiRrgQT1vCk1\r\nHMMzo9LlWowPrzbXOwjOTFbXc36+UU41yNN2GeNa49RXbAkfbzKE/SYLfbqOD0dN\r\nZLwvOhgIb25oA1eAxW/DI/hvJLLKh2SscvkIyd3o2BUeFm7NtyYG/buCKJh8lOq8\r\n0iBwRoEoInb0vhorHaswSMmqY1g+AJndY/M7uGUqkhDGBhLu53bU9wbUPHsEI+wa\r\nq6WypCijZYT+C4BS5GJrEPZ2O92pztd+ULqhzNRoPj5RuElUww7+z5RnbCaupyBY\r\nOmmJMH30EiRSq8dK/irixXXwJraSywR5kyfmAkv6GYWlRlxFUiK3/co47JLA3TDK\r\nN0wfutbpqxdZQYyGfO2nZrr5JbKfSU0sMtOZDkK6hlafV++hfkVSvFfNHE5B5uN1\r\nMK6agl1dzi28HfJT9aO7cmjGxl1SJ5qoCvcwZNQ2SPHFdrslcwXEFOMDaEzVOA3V\r\n7j3+6lrT8sHXg0sErkcd8lrBImfzhLxM/Wh8CgOUNeUu3flUoxmFv3el+QWalSNy\r\n2SXs2NgWuYE5Iog7CHD/xCnoEnZwwjqLkrro4hYWE4Xj3VlA2Eq+VxqJOgdyFl3m\r\nckSZ08OcwLeprY4+2GEvCXNGNdXUmNNgk2PvAgMBAAGjVDBSMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEBMB0GA1UdDgQWBBQpXlFeZK40ueusnA2njHUB\r\n0QkLKDAQBgkrBgEEAYI3FQEEAwIBADANBgkqhkiG9w0BAQsFAAOCAgEAcznFDnJx\r\nsXaazFY1DuIPvUaiWS7ELxAVXMGZ7ROjLrDq1FNYVewL4emDqyEIEMFncec8rqyk\r\nVBvLQA5YqMCxQWJpL0SlgRSknzLh9ZVcQw1TshC49/XV2N/CLOuyInEQwS//46so\r\nT20Cf8UGUiOK472LZlvM4KchyDR3FTNtmMg0B/LKVjevpX9sk5MiyjjLUj3jtPIP\r\n7jpsfZDd/BNsg/89kpsIF5O64I7iYFj3MHu9o4UJcEX0hRt7OzUxqa9THTssvzE5\r\nVkWo8Rtou2T5TobKV6Rr5Ob9wchLXqVtCyZF16voEKheBnalhGUvErI/6VtBwLb7\r\n13C0JkKLBNMen+HClNliicVIaubnpY2g+AqxOgKBHiZnzq2HhE1qqEUf4VfqahNU\r\niaXtbtyo54f2dCf9UL9uG9dllN3nxBE/Y/aWF6E1M8Bslj1aYAtfUQ/xlhEXCly6\r\nzohw697i3XFUt76RwvfW8quvqdH9Mx0PBpYo4wJJRwAecSJQNy6wIJhAuDgOemXJ\r\nYViBi/bDnhPcFEVQxsypQSw91BUw7Mxh+W59H5MC25SAIw9fLMT9LRqSYpPyasNp\r\n4nACjR+bv/6cI+ICOrGmD2mrk2c4dNnYpDx96FfX/Y158RV0wotqIglACk6m1qyo\r\nyTra6P0Kvo6xz4KaVm8F7VDzUP+heAAhPAs=\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wenting-audit-logging-test/providers/Microsoft.DocumentDB/cassandraClusters/wenting-centraluseuap-cluster","name":"wenting-centraluseuap-cluster","type":"Microsoft.DocumentDB/cassandraClusters","location":"Central + US EUAP","tags":{},"systemData":{"createdBy":"wentingwu@microsoft.com","createdByType":"User","createdAt":"2021-10-20T21:22:22.9421872Z","lastModifiedBy":"wentingwu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-20T21:22:22.9421872Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"wenting-centraluseuap-cluster","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wenting-audit-logging-test/providers/Microsoft.Network/virtualNetworks/wenting-audit-logging-vnet/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAE5Hd9yskSH1BgAAAAAATjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDU1OVoXDTI1MDkxNTAzMTU1OVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA5UFGOQgmohqJHkbMMcN4cnK+mAoScYUAR/njrD0x/GyFeTko+QXMU1JJ\r\nIePmVcugmyO4xX5ITShZWy+/qPAWy3vwT6HzBdFq5eTGbkbFCrQdh5w1+jwOApMe\r\n9ZDlMDO+RUtJe1XxWqi3KRY0e/pJmpOk4IUEjx6wxvv5MnSWhMa7aepnkuCS8lvF\r\nNl9D5oUGIYvoDUgVMQSBazQP2zjRunMT9JOopFKnZE+L7NY+XDtla3I1uZeMeakA\r\nfqkNjx6lkUIgcHPhSMy5XHBpOeFdSDjBA8dNk6E3VSlLzvPcHdaHI7QrmK/43wzf\r\n+kHpDdTXx8EdOqm+pLHoKLWcjw/P8O9RAMiXefxGnQKNuP8T+/prskR5esucJQkj\r\nrWSu7W7YycmIg1rPCd7Qw005/sc58eLPN+Xrj/Aw7RSR0A719CPZMjoSfKTphSEK\r\np+ZB+5j/V3VEzjGbL6XFUezFfaIZ+A7ZtkaEQYDH0fVVziPnhQhJB+Uym7a5arB3\r\nqiMMw7Yjos6iWkkOaqhaCHuN1zC374xsBec9mrJ7bfuLTNtBEKC1PhdZrJM3UDCo\r\n76v+3mnKouN/7vyVkbiLNb27MXRigXFbO02opR8prTkvv3af+iq6+xjmVWZhsILI\r\n0HIBk9/HoMZCCb9e95RQVmVwVNrwa24neVWl+JEw50sqLMapsGkCAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUOsfDysjeDdOSwCeJyL6X\r\nR09FaWAwHQYDVR0OBBYEFEKY1e9GMTrmL0fNVVel5jUfu/yRMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAuaX699r+ayL7JphKgdiDuy4iPTwf7fTkUsLx\r\n7ixBzvnUrUASdS9GJEkpsewdipRfMycn3UXatnQ6rudCqBgsExJzHBGlokhvVaZK\r\nue0oIlJstnKQDOJCpJem9NkvwALP5z3WZoqYf4EaaQXUkMAJJ2qxw+mksSBEu+MJ\r\noxgbStKv98q28ypOVLjaFNH/VbtAG/rIcqNyOdjAPcgMcohe7lGO1WQtFxPxtzvS\r\nZfgao/ZjWeNDFzy8FSInim1q69Syl3Y4dzeAlG6PiC8t7upDQzo2AJxI1tW0AkKV\r\naJIS9rGZquLN5MTbYozjEyzMvSEYFEpx+7YKQGayHz3eCGH4BzD43YPt20Cm4BMN\r\neyV64+d9PufCA2tzrIQ+VJhsZKb6qRgV+Bp6AfpgeyU6oRkqsWKJyKyzp6o0D+Si\r\nq3gYJdD3W0+X1jUJcQuywYLRg78rVE3A6VJ7RIEjXARQV19hJvxchCoqfbny/0bX\r\n9Bb3Rtr1OAYhUml6Z6JdfnH33KfEJvFa4wlKRBxpuw9gMG5ydOsbZ3YIJDWccTLH\r\nQZWJk/Lakd/+uLPWOzzWQCf7nPapwSRjtfRRLZoX49PIQkrGM3dpLLGktC+sg8bc\r\nvQ2bO79bKJazcsKuNK0dOpepIBA1mMD81DphYmc/RMF9KXKdKz4Ugh4HNqkltIsG\r\nEtaYPCM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAE2e+Zx9LtWjEwAAAAAATTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDUwOFoXDTI1MDkxNTAzMTUwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1RZFKUUXNWXgbh7dm52Irso1hGPDEL9ZZXYz0civ0AAlDu9P/1okXVpc\r\nOPQnRxE7e7O8roTSctA4MTBGFIjrCythVzk6MJC1bgGv7qwCV6o5P4zVSxQrHPx+\r\n2DPDIZlt3UV4RNLuKVvSZdzQt1UsxUOxvTZ/0mO22d6mcspf3I5Xt5h+7WlTgHAy\r\nWvvlpuX7LR8yTK/um4526bdhUG98I2nEURH2vnNSt3/Dbt1R6qoPMja0HhghuOtY\r\nt7Z77nyI2gOY2fRu3oM15Xqe8b3Qwx5IsSV/pTWJ34VPz24TfUmCQOVtu/m84ayA\r\nwSZ754d+JvkyPSdINV3tuLtbo/QVewIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBQbRewlXgZoN1BD7V/nign/FlWETTAdBgNVHQ4EFgQU\r\nvZx3N/n1PWYwyjVonISvG5ZVEL4wgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQBFtFQSE7TjElKEmwHyydrA/UEAzho7rEMy2lvNr2tgX/7WVWDqmDrTK4La\r\nm6/MGOUBYbF334Ywvprij/UoSpyMEq5HgXiCBxOgyUPSZx8x+XyINgCujVXRk9za\r\nPh1lXpYCV2qhIYAhazeprDYzX2im0Jwe8X/Xsl0kzgs3TE7medDW9CVEYS+T7SqG\r\ntmXhOg1FW04yUM0+Z73ZQGF5oqnE76kzpLvfn+YWA6KbLfH84yTpqylAD5UFvfeW\r\nMRoNUUckpsteddNba90soUzxeRwU0Loxj5Qsds2gB0tSIpVh330BxEDTIJ73FZIv\r\nvURqyoDor+Eu1NOVk3sdCM5nXuN38dc0a9fsSRoJkbQYTP9UNJPcUDO3kZoYWNxD\r\nWrn5J/ltaxPc1o7+USSm02C023HIrWBJkfnepIZKV8m7wkddcygJ6FQkxFU+NQUW\r\n+a91tIw3HTEHvmNlJddPmjgnE3k6GS1NLOC5IV/s1s4sSME3QYQAt+zr5TKRdZ06\r\ndBOSXrz66pVpkR2wuAvlCEuFk7gaBrKz4j+3wJ9CPhETezARvgpzQCw9es9y2qde\r\nO1rHPYa6IRtmjcVDvxfmjei66bQwoapDH/OMS6sPqqqn53l9g4HDDgWywWn9ad51\r\nL5NAvQYhHwSCG0E2Os5mUFYM56ZVA4WHVUn7NZsAXGnDtIwlPw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAACbGTID3uXpE1wAAAAAAJjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE4MDMxOTE4MjcwOFoXDTIzMDMxOTE4MzcwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAvBsRcCD4Z38LQPG73ci9jIpQv5tVQh8lLrcQ9lO2lH6pUVWi7T7jCyX/\r\naCSmit7fT6seN/kf6LP0hpgsU/wxMMv4c4+w1M16EiRc6GPJtSPNszl8ZNAzZj39\r\nxeJnAMhPzeABRLgzYgLH+9R3k8sIJMhSjcUfp63GAhKtdqhQeTOs7m87REtmAdo7\r\neZh/Ubn4HR1ZxAswmoWmMxMZw1KZj87395IxE3Ybj0m/V8dyskpxWdAzkvGeO//l\r\nb4FfAHVCCix9wsijqomj+jeJPHR/AF/5+MZXjoNDs6/+UMdSrEqa2fi8910J6ogL\r\nSMdL7NdV77U5551wZxeUwSEHUc4qkQr9cFAdHcdYiMnIrU28zk7O3yQdsyWdrTqx\r\nTbkoYn36Ji+aSyzs/u/Zh3pAWw9IvLaoq254Rpf1SWsvufE2YXaP6kUmvOE9Qrnt\r\nQ138fwe9CmPUT9I/cM0v16BDvELEH3KGsWez8WRFA5RAB5pPDKjMyZ7mNl+0+EDv\r\nMq+KYjtc9uWJoRsRe8mDnVt2JGRBazTCFd/m5HGywdUvg/fZyVfBrvsRhcahMXn+\r\nb+a6kw+gMY29dcNutHNl1ZuKbwUuvp0ShWnauFVqMSRP6kSgXjzM0Oez2CHEtnX7\r\nNTKy9+eXsqxkzVXop81HCR7QCDlKPkc78IRETKfQA/nHdu2iOd8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQonG1RafqmxKhDxP+NNvoz\r\n3/1FMDCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAJFaZ9bHSEXBMKUi\r\nxLJgRr0yPOBbkZAHGsXGsAAdXnsAcmRZnoMsJZwHJY9qa2SDdjWzCnEuk50KJ0Rm\r\nvePgWmDtQWwyfFT//JIccaFgxYsU2SjdHEi0DmRElJtLkYQorDjkqn8s2T8y95f0\r\nmdcNme7cQ8PsjawgV1hb7r1I0bRh93M4pDzRt0g08RoFtMGuqRdU3roMDbuid5Hj\r\nBnoT5MdJlYzklABw+JPOIFeqZ0LMq/RPyk8Dpzo7m2dSc78GitdNnWxj4Ku6l8lb\r\n0OHX3BL1eVKyKi8Vta3BjpzWuMQompgdzp1Eh+mDyfKV/+dlfIEPJI1stEHIEKWR\r\nR5yt35+RGXrmsmAwTZT5mcJk4JdAMhVnRnyWvxPzieYCR9DcIaT6+NBBYzQegOG+\r\nIMnLpnZp6qhbG7Nq9MXCqRY2ooojLCTLTCx8R2cqdYonJpB4lSkYMFYbuV7HoiNr\r\nXdZm0gMRi2DmIaZ7cxXUn0BmZd/lXSXNKdxwHKecu0F8ByT1Zlg3NgIhCb+6SDYB\r\nlOv5YhnwSd00aUaSSYc2dKJmR2yfCKT5Li9wdtjlB6rYIb7vHRl3x98OIVE+O20S\r\n1jQEqRLzkaDIWOA8D9VeuuIW05tahms61dDi5gx7M/ALhFa/QsbkCJXRf07Pe4ki\r\nHE/1Nk3cohSibWYZqHssdutHBd+Q\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAEnEBGqOfE69FwAAAAAASTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDA1MVoXDTI1MDkxNTAzMTA1MVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAw9b7oiITgLVh8Yry44fRHl/xMuYtsI0Cg944jlh0S5ljKgUEMvt8/S63\r\nRH9+9eXvbFN4L9EL2+RDhWd5hGyg4gQeKtxO7D/+JUoTIamIl4pXTxhO5oORnS9k\r\ntWp6lc1OfpYnkgzrkFHICKggDtCpQxp7cMtM8evEvY/7WvmJDbAsgSRlBIeyVZqU\r\ndfw4ahzvsNmMfDGx2JBKgB5mndVGyg96yCHy5+7XKOkkcr+NKHdnBM3k546rGlCV\r\nErgPVuUkRxrwIa3xD9BRewoihWG7sbuxny49CrdbDi3WqK0VPSJGZ2y5ipUTwndi\r\n/+QhiK5expoHO0hl20DwRgq74qB5zSs379PcTQz59OvUDMi2fiErDYnCT75X3w1b\r\nh2uGBFIwonYXGHU1s/SaxQlXErGplgkLv/tBPAXu8sk+qANHaY1EfPwpPfOXjIxl\r\nRT95moW0IP+CPmhV0g2ZPKNn0mIRPpf8IzI5O4pLe6xfXDekQnNcGaBY9nN9LBO3\r\noi7pBBNObi17J/ebVg2rScg+KAWVVf09iLF2inpoFxKOJQz//poXo2fAvYVXnXJm\r\n99qJvY8gFyOyg2Cr2x/Wp8yw/u7H4DztXuFMYuPEVpR9/EeLP2bzrpdbJpj+SPT4\r\nU0OmtjVtKNR4aOBNBVWmzxV+WKRBfpkq+pjpRMkgFapXWtjlXV0CAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUluoFkm4uQswgfjWGaL4s\r\nMWhX+14wHQYDVR0OBBYEFBxS0IHKkOkG4KzpGA07z01trd55MIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAa08V3/BsJsIOjn2Qu6zUb0GosfdvggVX36PY\r\n9OZyOn5d2+tPPjG2re+uovdpuLKx1YH0iBX4kIL05yObqKMAv+YO3Ihj4MkcYy6A\r\nk9DbHyQTYoeSfaryn6yo7kLYCz6E+li6HJ4FVx13PxpwqDXWUu+Yf5Kszj56IqHx\r\nTI9LV1ZbqmZYk7fQIPETYENkE23ypgh5snRtqSZYTw6HASkHI4E7NgFkOATnIcs2\r\npLGzcc9vc/QYlj3PT3ciGdpGkz8l/A2MMqC4eleYFTBSX9rNNG0tf0M+5fVF417D\r\nmtqDlglm9bWpgrdLpmcj28f3766EBJBq9zza4M9dAGBWBQx0c8BR9saGATd/U8lY\r\nmlTDhnRdqJvvTbtPzFFmTF5jrANky12jKlaHHTyLETDu6OeDbVEyJNuhj0a+cQ6r\r\nZwYCG/k0WCzUx3MMq1A11uxvseoOmpIqLOGfkEdmBPQXkKC02vyjZkxF0pGPNNcy\r\nBSCIlZ11UtC5ghcZ2Wg/U4bAogTv/XAnjwzLpp5V7mcepzcBagiFlQkdnvUKNI/I\r\nLkerOmrgKe0rgT+ICALZiq7hIyeuM2uthyD3FaBFf62WOtDD6Jfwkg/3LI7of+HC\r\nGZ99J/xaocq6NFYqzD/9H6n0+biogXUJtm7mKhQO3PeLz/1aDIwLfKqZFr3PCStN\r\nvTWqAdQ=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFYLVFiDd8BlgAAAAAAAVjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4Mzg0OFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAxIoR15PqTSSMns55DdeR97gCwVWRoA6zCYbU66RoYrXuHSpcJM+1tnHN\r\n6B2gITXD0iDoTLpuOvRlM+12v0c8cWdzVoHuRuG0k1ViNgSELeNw8SXSQ6jmvgPy\r\nH6fg+NiKLkjYrJuIp5me3/asqMTeO6MOkeimS67PYerzkMYoC7BUEUacludZswsM\r\nFZnsM/vHCjIpzQMGWyUzju2ANT+J41Wz9AmukpPQFNzyq9566BEU/4MJh9Yg5aSR\r\npzI1gU8r4Y9ABdOgjsFnEm8BSSdlWLgalKevYPMLX/FO2rFufFgcNJq3Y8rnAtJD\r\n0k9jt7isXmJgS+JNfANvY7+jXQaCkwIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUOLjGDtr98qbFC/XuACeceItvo7EwHQYD\r\nVR0OBBYEFOXZm2f8+Oy6u/DAqJ2KV4i53z5jMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAYI9s0aXNjS8k6w/pyYwcd8HBPAjpWHJp7vBNsa9rDbau6raD\r\n+QWjj+hO5OKUkNchKIkK3xUc/iDAMNALDLFqUOaVTeMh5fu/e8Pr1AX1R1c5U1Yd\r\nxExItrFARqTCCIQpLz3cTu/9KA5QgUQlnFlrxA9IHq9G6k3TvTB2AngUzXBhNhl5\r\nb8ya7LK3dhfqf2BQHJ7k1XReCJLYMxI6PaG0F6mWTCFNBbBxgjsXeXfjYv2li33v\r\n48ALT/NXFoOTbAOP4EFfLhMDnx2O6cFOKrYT9O+EU64oJ/0MQDQSq9PVos5J+RW8\r\nvD/h2ycPqMnmsjvpJ4pWJZP+YSxy/HWMwbZt/Dv/UobeQqLCIXGnODv87K+1JVo0\r\nO3c1NtGJu61JyXwW8id8VSQuc2NzEr58rOOGMfU3gHZMSNY2gsFs1gqXC6MjtX9O\r\nipJ+dqr7lgRvpDN9bD2kd9CdOWsxz6PRPxOmbUittmpHdABMZuaeKB/5MnxVrpNw\r\nlYtJYXvKRY1V30kjFSsyLv02YYKb8MI/NfWcjMLw4eaEn//ST+sf+LjB9KF8TxBX\r\nxuBUpQVA/TJX9GEqYMZt557A5u5odSVcac+w0/Nn4E6WzFLfxMr1O8OOOQjzlG3u\r\n5BPqprm+utwEHBCU4iVcZOdnSgk1dm7C5xmmTylFRYOlwVrFSPcyKy0+6H8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAEso8JmcB0l1ZwAAAAAASzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDMxN1oXDTI1MDkxNTAzMTMxN1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1FFhjk/dgVlthN00OKObtbEisXfH40OyapM9KcVlUPnMElPROdKi7XPQ\r\nagq+Ry3QLSSZgNWnkahCSxE81oyudrvlhpR7NpcDPZHsYFw6qsEiirml0hc5awSq\r\n+MtFo9pfnr/zQstb7xg8wjduWjANvO3E34jZbfmCyw4gU4TRPIa9rpaV0N14hQTk\r\nKcBv+S12udS181oWcTc66zxVXUHNK15PRv31jElEYQKX8EJWCe6ccJA/cJD282sR\r\noEhfuUvzXHOeWD1jXH+Eh+mKuhLqiQHPJH7TJRMsN77ndtHH9us3Ak4l9AmGNZZf\r\nwNquVrHAiTw9Ai90btckoeMRn8eogQIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBTX/nF7X/NZN2T02QZU2G6DYuwmyDAdBgNVHQ4EFgQU\r\nlUWMsJMswORfcQ0UpecnwcNjm/cwgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQCb7VpPdQaBSKQdwDpgFquVkVtcKzEAwsVlzIENIrlRsOcBgvZlW9QKwgCd\r\n6xvrF9smidaMzlYuxYQypQ0RQEHDKJ1SJQLc1ZtR7fWf0xHqU0cgX3hktDNyN5t4\r\n7rMtYOUhygcZIxVQ2cpkyLoilwnb/q0Y0jOnA7eo0r9K67TJ9CP2m3ZUApzRaCwv\r\nqQE8eNZvngy+613PU11A2EFuTPXoVNb7S3w8amz+mYYnJCBhxf4PdYA/3DZ0q3FP\r\nfFxqKAbuNtXXHFmYn3BBMGSn082Uq8RsAvj5XEkI/xylDlwG3zT+QaIOrJ/06Toz\r\ncT0ewSlyNAB6LzGp/HLTIffhSNBVX8ILs558r6VcnTE21awdkWqnd3PiPkWADD78\r\nDVSb/7QOsBdZp6BKkcDzTc/uaDGahR55UcapkOMBSbngkomK986ITx3yUITn0aV4\r\nBEVbYQQ6b9l/eNHRosiwL52QPnYl6fJRsl0JuUzy9T5DrwGGnRgKQAOmSWPRTdt2\r\n14MWrxbLFRRwvqt2COK82jPTAiZ3XqYSZzZce9bSDsGSm5VpwWz5+xyBYc3djzKR\r\nThctXJrwftNyZD+LBc/4oLOTYLpDB23eI8rvb6Xfm3A8ANucIq2muavxi1A+eyYM\r\nQXwyB2foIV9yhDIA5I1psyJo+CwM9CcibRTjjNL5ghEkoSDjyA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFSoP4knG2YAHAAAAAAAVDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzczNFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApuAstd+jxOmcAhw1KNXa7fDE4SFe/7SdG4avz6VQqep4ofwJwZTxQJNQ\r\nBC7dybKZO2RBiDzzayV9PCxmK9HPRMRmuj68x9BRyoEbVU1tX4HtiBK+hAGiRNQu\r\nPRTYcSs24CgjI3JrxOjNesp8iE8HUVntN8ueXnpTQLSYOR2TmTGM835tkTplflX/\r\n/zPtZvsXSZz+JssQ9SRcXS2t/fPDpKfNVatOmq4iwtX7Q6IO/WCzAyEzacjAFqml\r\n0/PRYT5O+jiRO+TImZ2RD0CB9rP5CYwN2T504drkKteNaT+FT/teBLC+JraDjh27\r\nv24yknl1t8dXCSS6l/UBGBGVk+gr0wIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUVSrR7NlDI9ZN5GcKVaV9JEKwIbEwHQYD\r\nVR0OBBYEFK55wmtdJYgTBvYHCcOXfHuXjx1VMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAbgp2LNvP1OVFkH9JTg9rTMksjvLIpzaqJehSp5+3YNzGl/TH\r\ni3Kg/rbtQaKErwipeLMhmqWFuT9kB22eeyoBSxx3JTzRmKtcJO47IX0qymW04v2i\r\nI2tVWQigwJWtE08Z16Q3NVdgAox6DDnAvmV8QDlPhWdW0gGcszZqFD47SJltU8JJ\r\n6D+xuDl+xUIA5wQ0987HRo4dSx3Vny1cd98GdMepsOnCpfm7ZQDWJUggp8m8T/jv\r\ngj28G4JNV9nsx3TT5D4xFZ0rXUlQNmhJFesprLt8NqOoKqmP40WdqrpVIxlu5pdH\r\naf/uT89gHO3Zy+iqNbCDRB7zSBtaalaqLvGpE0xV3p+xpjY1CujjvKp+rUrGwA1t\r\n7aNRowd45Dn+kESi95bE16V2k54YbRvgkwQgqyFUiissogOtaOwQIjuv5NUMkKnj\r\nWz1S1nsMTwZWQ20pT+SG9IMWxAP+63fLIMxWXSbwkTo1Q7JVbr7ZnbNjPrzwerrq\r\nTx+CgfCjU2TZ2WaqYnKoGlgjiZkVraQ1JYJkEr5N5+12CnAuVNzn7pMs6HUSxc8Y\r\numBjy+KA0I1XMvFerh+fhEVad7kOgOxqE1uLdXZxkOXHC1N4FQlkI65Padcd8dyM\r\n3g+er8suC1gf9/fWU0AlgIqls48Wis2JISOeSsMAi3BDvCIpp5PHbuNfj7A=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFr7ZWQR1r6OSQAAAAAAWjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzN1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEArMu8k7Kq5y6uDXZk0QxV9Ya5K3Mb0/sCyV4fs48XfAgL3YOHYTZ5o1uB\r\n97VZ/oXuenXaDcoDE18WhOavpqjWHc4eb1QeGGCaB0MoijTLGPzqwWRdByW6l2U2\r\ngFzjKWKtFncIj/VW5S98uCDD8b0SX278XKubkKv0Zn3m1E2wVrTvG8Jc/MuXF0WX\r\ntjFRRJPY3keED1zFNEKjckE4ywTV1atTqnKbmj2rcQucHJ4ufZ89Hel/xLL0bFxc\r\nJnW4Ky8lZ4Q+G9brYexh/iEBcSpNQlfLVJrKZMlAwGPcp1SBGxU9GlSV7kE1LLCS\r\njpS5d6/qw4VA+z5y9HsHN225oBhpAQIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFHrWGYUoeWxxdh5g+PNL76IFQhYdMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAU2IUk2qTwWTtRBKzMTaRxYKvTyvU1nyQLxko\r\nA3304lciVsdA86+jhEkvnCwZeAHoOtYuPeQJdeyhYUhVRDAhhJauvE87FB69gM6h\r\nYUnRqiy+vekLrHB/1x8njoLHmcppjOvBzziOPSqvf8s6O8tJ5AjY3398sm5ckH37\r\nVYHa/+bAYCvEsYmgDGN8L25QvXScTmTthSXHlzsCItPpKFs385dsGJnFD0KcQ5c1\r\ngLmV1bdHnrWyy2mqB819CFWtzhnojtzXxZLuEfTBS18u0qoLdN8KvgB2BvfgZtY7\r\nx+fbkiyoZfnZak0Oj45Z9Z/6AQ1uHGSRadAh19mkcrkPwHktc/3M1PJ69dwZn8Ez\r\nASzYFf8QH58i5uxdou73v+5Bd1m5nmtFCyLC6QDtFYH0pkvmafBx7PwyrgTjq2Xv\r\n7eWL0wXESxzY4HpjMDO36ncsLvzI6j4CyG4cpA8F8+9jwizWqmKMQUWt+VMICsP7\r\nRrzCJ35ogFGWF/dC2hjdjBXjcyLaliR5nE+sDx1PVDdIu7y8oBi60+Vzl0+BSf8P\r\nOdssgwciUpWVP+9xf6SZ7D9BPmLwgIJZ4oPc5K7cTOR6ksQQg8fO44fmOCRfVD/T\r\nDj1e39ijjkmcXUvrcu1sh93vbupLKp4Guruj3Le6iQ4Hla6Pr4znFKCzKk1+RrcQ\r\nVnsaqio=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFOufo2CImJDvAAAAAAAUzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzYxMFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAz2IfhGnsNWpW1cYZrm7f0KG7FjkmtAufsz6xSPNM86b5+jPDUpkOb7U7\r\nj4cWGBVdrYYqWUkziZmWPyl9WLw43KGzaMT3xTnm1xWyok8Z1D/ytHfxFI5t+Xzk\r\n+pcWwIZzuElzEzAQYnVMyfdxD6sM2winZ1ehDpvJeLTPcuTPf5fDYpcrnebODQ+r\r\nnsvq7oU7bHp/jTkGP/2hNzNLR7QJq+rOaHTHDky5yWrsMdgGj0dJXmId6RIfgbeq\r\nJyz7pK0OnoqopPXzZcEQJGNdh9tTh0DWpPGkCWvp4yC2Sd6VSDIApnIpXRn5WNGc\r\n79eeuL9eKvQ5W1zq3/j5HlmwZvPOE+3kPe9r1+WMazNqbhmVk0gUfZX+cnJcy8ZH\r\nqZhjCnW1ihCHzNxMQypQLrnOgVCBkkkRj466iLGDMGL5IyTji2AAp50wMiZuVQX6\r\nwY4kcKqLsjSPpDpHGIie+58/dh9xFgqJzV0kNbAvehRlbwzQnRJWzr1UgZJgjluN\r\nlLpJwTmUIe3I4FzbwrzGMOltYu8XbdFAfyPM4fcfqJwFTF2xI5OYNC3Rcou9OSQT\r\no+ce9/rON//vZNZmQ+TPQ3nkPoKus+JX3EFJbevLeG0IvvC8c2ABwv6cNcvbSSoV\r\nXP+XaBLuXe5A3G+Tdr33bVhKKnbKiravs7sEeKvXVrpDgilOuG8CAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFJbqBZJuLkLM\r\nIH41hmi+LDFoV/teMB0GA1UdDgQWBBRIo61gdWpv7GDzaVXRALEyV/xs5DCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAArPH6tJjsM3VsG3zdh/1Rh3LDz4\r\nDqyUEJEXiM+Sa1kCncVvIqI5GkFKGM3Ur3hdx6xxe5F9gPvUdL22Qf0DLaOclksk\r\nO2FABXqDRv0P7k5yyryzTM/RmLhleut3Fc8BUdfrkmif8Znyxp12sRxK0UgEf6iI\r\n+dEZugVpwAl8IRUk9O201Q87q3zI30NgPT2BJiDycKaKQJF634qatubvL28JaiOd\r\nk3uxWfcqKjO0oeSJ7pxgAiH1rCah7UN5T2d3V4AmDQGLPo7lwX1SKZewa10PnF0X\r\npjE+8welxOK+4pEPl2kRdMDpr9/XPXWpAPt2h67Z0j7x5c7nDU/eZ3UjRkJePoIQ\r\n5aGZuxZ2diziI4JWhbW+kF9M8T0CM1EUIcQV+8wvvualM1q0IN+SJ1X49tt8n3y5\r\nfEAur2599a16z7zg4uF1xI/SafWXMjC8MObCHjR5xodSQ7IxvGyl+6uIkENsiQBF\r\ncuM55MMUELl0VM0+n7Kv5K2Ur+heLzNlTTy2eoiU048g8iQmZzP5C9y4hUE3rYgJ\r\nRxP9ovHl2km91RDTei9aANUGIB8U2uFA7pxe0G8Kp8WSF0a2DtZu7sf2lGjKvP+7\r\nJGaMrJn2bJW6cDEPgfyKCio8kCVtFg7QTtkaZjF5J6AIB0B7aHNPKlAE2T8O2/Z7\r\nJIvM+ijPG5W96tZP\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFjSjQKPPAEB6wAAAAAAWDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4NDAwOVoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA3Pi3nd+o2ItxXWvhyaIDXRbrxgB1wqI0wK/wgC3vs2vSbIHdSuOrtac+\r\nmR6Ag8rE69QQOykN2KJIQI53O0egLWUqjDMa43Fkh1EWTAD0B6snyV91Lt24YPPq\r\nOyJZLhGCtYJoQfPQxZjgW0PknDvWCGIBPFacj86c84QzQdmNBMPrObC21S/ilK+H\r\nGjwcYx9Z3dSeK2CPLLkb3C0HzWWLBL5lFHrdM7qphSAJ07g8/ggis/b4aHdWOlN3\r\nfyySWbuTLQnX8J1XZdWGc+7Z60gzt2jwUc2kgpjcpHvV7QYmy141rjiQyFDNUf7x\r\nFBeFIpLDPoxcfAsOo/dtVfxp/dNMqfAEC27QrUogtIUOcCaSZ5r09ECOuBW6Mood\r\nDIx4bUEhXOJmZBtpzRXhVVKTC7Aqs3PTrPehspCxOclx7c8aESASwj6SSWpDQi+x\r\nrKm2DgTIgvVIdyBNdKhxhGNyl1t9jTEMAdwDmY6pN0kMLCEdM6v9fG0nvtFFLU/m\r\nj9Ojh8Rtf3YWiUPd2cI62tVoXckaP3TbdCNmGysT8ShFNEypEINWIl49U7V00Iec\r\nOveCbkfsnKnT/o69znrWUH+Pt65GxrqO5A+To6WU83OqLxljS/cyBTQmrDh70Dgz\r\nKXDXN3JVW93RLoXuNyAhd1nUOjKOI2tmPhEC4Cz7lqmVxDsQaZMCAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFDrHw8rI3g3T\r\nksAnici+l0dPRWlgMB0GA1UdDgQWBBQ5cV2pFRAtxN9+L1luQE3A3+82mjCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAI68ze1N9ZqKBI7Q7BXGlc0k99wW\r\nCoCZu0m02crvYeITKUC/eizH7s6Sx2Kk5Hnzz0Rzc8G8NpiWEfp7ppKeP1jOMv11\r\n7P1KB6IHyRLdW7vAIBiJy1qhbLAxseR7xkvDKv9yjZYL9Q7XtlSgrd9NuEiuFsfj\r\n0ANzVf/Ea4br00gGc8ALfnvgGE7eUdBNqWKTzHcQREdjJPRMUqTYqcvd4qQbRXZt\r\ncXLt4Fr3pXcwG1UExrz3TP4ueyrqGot/OFDvMihs6Tak0qjYygT2dC3bEOBg3GSQ\r\nDdQVzBFO98f62/l51TBlWizuw3D4/dKIPfQU1Qt7sr9e7CLbecoO8EVtyt/yGRr1\r\nD4BPBGyEzC6QoqCo5Nh27yG+DxFtAGdm/vLaFeJOVM3q2d6nL1FvNzlHTHfOYPJ3\r\nNwHB30X9TpdRqoBLM5UC0m/ybKj4ygXAZBlkJXMO/bjtpqyidJ0SaFuE8EdV9YoJ\r\nKUmBw1ZuZd5GHbc+Ilz82WX+JWZ0efU/f+75Ywvntu/3s0OsnpVoqrqM7TDdzE0d\r\nwRiZ+mvtgIwp85+et1iEdaWPj+d6LfJxpDDCPhaqh9hnNIkZFptndwDwRE2MV9Wr\r\nlUCSA96/2ubHsKt4E2D96KvNog6MKdyEGz1sZep1yZKqE4cnNzGNBGRel0BRa2MK\r\nyTOQsCbnpQGhEz0m\r\n-----END + CERTIFICATE-----"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFlFSsCTnaMEFgAAAAAAWTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzM1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA0E8VPmTCi+s/ukALr8kiz9n0QMveOlaFztd/3QikdEPvOujCuE/CXDKt\r\n0KhyGBUshmHGEC580aoe2Ze2gBJ/Dhs8FjdCjH4IyWU22QOervNkIc2Xd3EMxVZL\r\nYmWmDp5yfa0DwHqsqLq1PLwyk9BfYhh2gp9Dp+vECu4FzvVoZd73UaTpvcQKDsXA\r\nTVR43QC8AiL2AiHgOB3xE75MR/kI1OA7mTaOK8uZbQZCtyG1VMtNL+Q4Di0nB9cD\r\ntqfQj1/UCA76Nr9a7p/TUnck94zlsHE5RVGvDy3GKpa4cmCb+nRpF+ybZjuw8fPT\r\nCY5JGTLZreJMgk+Tej7iN+BYyn4Q2QIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFPFGaMbxw/ArLX2LauGy+b41/NFBMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAD6YslCi5IxgKWQYVzHClxGTpTXEarOPDACuQ\r\nnZIgM4hbk0rMqW4aHFd+paZmMUvNU0HWtIq7aAbNZGCdTrb6g9xjQKrdivWr24BZ\r\nBDxlYkU1tNvdQmafd/RESZ+TpElbuBw2EW0qtK2K+BfL1fTcwpIWRoqWcZUc/CzX\r\n43yuA3vE9sw7/HCDOEQF+QW12B6LDt2Y6DR2y8ZjYsIM0X99mgCE8/HYL4AR3+mA\r\nHjlncC3qlXWRUk46kz2yU4gu0k4P5vexNuGvU9uHvmqQERhhHYkAiW5pwCNFdZDw\r\n95vcnWocRk5TaOPp74v06msx58qS9Re9Fz5xwp6dGGqvWgcF9UJtVVyXMGYB1/1+\r\nyd5n8VpvHVWlrPNpcT0p9YLeou/HKZIiekolUKL6SqCbDFwSUMPM1xWSK6RbphmT\r\nJZdAoKKLq7c/4bFPOxeKvBjT6PrWP64ktWN1Z+AYQlBp1rK7A/ZkAOh8l+17K4VJ\r\neb1whd4SmNSnZbv9jhOeWhrbRsxmFJ1SFHhoBhS3Q/WZWMJtLu2Hv1RHnqRgLD3y\r\nlaC9qyj44pXka/MiLauGl0qjRsO6i0ZV/nU43/eZt4EhWewfmXRnfNlXA/u6abVS\r\n3lkNTlQaJAmTijbKk4JI0qQl4e+xZloOXJVNiqKgYSh3N93Bi+8ROZCLqqpwrO+C\r\n8C5Y9Bk=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIFVjCCAz6gAwIBAgIQJdrLVcnGd4FAnlaUgt5N/jANBgkqhkiG9w0BAQsFADA8\r\nMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAwDgYD\r\nVQQDEwdhbWVyb290MB4XDTE2MDUyNDIyNTI1NFoXDTI2MDUyNDIyNTcwM1owPDET\r\nMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEQMA4GA1UE\r\nAxMHYW1lcm9vdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALv4uChY\r\noVuO+bxBOcn8v4FajoGkxo0YgVwEqEPDVPI6vzmnEqHVhQ1GMVeDyiRrgQT1vCk1\r\nHMMzo9LlWowPrzbXOwjOTFbXc36+UU41yNN2GeNa49RXbAkfbzKE/SYLfbqOD0dN\r\nZLwvOhgIb25oA1eAxW/DI/hvJLLKh2SscvkIyd3o2BUeFm7NtyYG/buCKJh8lOq8\r\n0iBwRoEoInb0vhorHaswSMmqY1g+AJndY/M7uGUqkhDGBhLu53bU9wbUPHsEI+wa\r\nq6WypCijZYT+C4BS5GJrEPZ2O92pztd+ULqhzNRoPj5RuElUww7+z5RnbCaupyBY\r\nOmmJMH30EiRSq8dK/irixXXwJraSywR5kyfmAkv6GYWlRlxFUiK3/co47JLA3TDK\r\nN0wfutbpqxdZQYyGfO2nZrr5JbKfSU0sMtOZDkK6hlafV++hfkVSvFfNHE5B5uN1\r\nMK6agl1dzi28HfJT9aO7cmjGxl1SJ5qoCvcwZNQ2SPHFdrslcwXEFOMDaEzVOA3V\r\n7j3+6lrT8sHXg0sErkcd8lrBImfzhLxM/Wh8CgOUNeUu3flUoxmFv3el+QWalSNy\r\n2SXs2NgWuYE5Iog7CHD/xCnoEnZwwjqLkrro4hYWE4Xj3VlA2Eq+VxqJOgdyFl3m\r\nckSZ08OcwLeprY4+2GEvCXNGNdXUmNNgk2PvAgMBAAGjVDBSMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEBMB0GA1UdDgQWBBQpXlFeZK40ueusnA2njHUB\r\n0QkLKDAQBgkrBgEEAYI3FQEEAwIBADANBgkqhkiG9w0BAQsFAAOCAgEAcznFDnJx\r\nsXaazFY1DuIPvUaiWS7ELxAVXMGZ7ROjLrDq1FNYVewL4emDqyEIEMFncec8rqyk\r\nVBvLQA5YqMCxQWJpL0SlgRSknzLh9ZVcQw1TshC49/XV2N/CLOuyInEQwS//46so\r\nT20Cf8UGUiOK472LZlvM4KchyDR3FTNtmMg0B/LKVjevpX9sk5MiyjjLUj3jtPIP\r\n7jpsfZDd/BNsg/89kpsIF5O64I7iYFj3MHu9o4UJcEX0hRt7OzUxqa9THTssvzE5\r\nVkWo8Rtou2T5TobKV6Rr5Ob9wchLXqVtCyZF16voEKheBnalhGUvErI/6VtBwLb7\r\n13C0JkKLBNMen+HClNliicVIaubnpY2g+AqxOgKBHiZnzq2HhE1qqEUf4VfqahNU\r\niaXtbtyo54f2dCf9UL9uG9dllN3nxBE/Y/aWF6E1M8Bslj1aYAtfUQ/xlhEXCly6\r\nzohw697i3XFUt76RwvfW8quvqdH9Mx0PBpYo4wJJRwAecSJQNy6wIJhAuDgOemXJ\r\nYViBi/bDnhPcFEVQxsypQSw91BUw7Mxh+W59H5MC25SAIw9fLMT9LRqSYpPyasNp\r\n4nACjR+bv/6cI+ICOrGmD2mrk2c4dNnYpDx96FfX/Y158RV0wotqIglACk6m1qyo\r\nyTra6P0Kvo6xz4KaVm8F7VDzUP+heAAhPAs=\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CosmosDBResourceGroup8369/providers/Microsoft.DocumentDB/cassandraClusters/managedcluster3329","name":"managedcluster3329","type":"Microsoft.DocumentDB/cassandraClusters","location":"Central + US EUAP","tags":{},"systemData":{"createdBy":"581cb6f0-5eae-4599-b7a0-033647c8db4b","createdByType":"Application","createdAt":"2021-10-21T22:23:56.537238Z","lastModifiedBy":"581cb6f0-5eae-4599-b7a0-033647c8db4b","lastModifiedByType":"Application","lastModifiedAt":"2021-10-21T22:23:56.537238Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"managedcluster3329","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CosmosDBResourceGroup8369/providers/Microsoft.Network/virtualNetworks/CosmosDBVirtualNetwork9877/subnets/cassandra-subnet","externalGossipCertificates":[],"externalSeedNodes":[{"ipAddress":"192.168.12.1"}],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAE5Hd9yskSH1BgAAAAAATjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDU1OVoXDTI1MDkxNTAzMTU1OVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA5UFGOQgmohqJHkbMMcN4cnK+mAoScYUAR/njrD0x/GyFeTko+QXMU1JJ\r\nIePmVcugmyO4xX5ITShZWy+/qPAWy3vwT6HzBdFq5eTGbkbFCrQdh5w1+jwOApMe\r\n9ZDlMDO+RUtJe1XxWqi3KRY0e/pJmpOk4IUEjx6wxvv5MnSWhMa7aepnkuCS8lvF\r\nNl9D5oUGIYvoDUgVMQSBazQP2zjRunMT9JOopFKnZE+L7NY+XDtla3I1uZeMeakA\r\nfqkNjx6lkUIgcHPhSMy5XHBpOeFdSDjBA8dNk6E3VSlLzvPcHdaHI7QrmK/43wzf\r\n+kHpDdTXx8EdOqm+pLHoKLWcjw/P8O9RAMiXefxGnQKNuP8T+/prskR5esucJQkj\r\nrWSu7W7YycmIg1rPCd7Qw005/sc58eLPN+Xrj/Aw7RSR0A719CPZMjoSfKTphSEK\r\np+ZB+5j/V3VEzjGbL6XFUezFfaIZ+A7ZtkaEQYDH0fVVziPnhQhJB+Uym7a5arB3\r\nqiMMw7Yjos6iWkkOaqhaCHuN1zC374xsBec9mrJ7bfuLTNtBEKC1PhdZrJM3UDCo\r\n76v+3mnKouN/7vyVkbiLNb27MXRigXFbO02opR8prTkvv3af+iq6+xjmVWZhsILI\r\n0HIBk9/HoMZCCb9e95RQVmVwVNrwa24neVWl+JEw50sqLMapsGkCAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUOsfDysjeDdOSwCeJyL6X\r\nR09FaWAwHQYDVR0OBBYEFEKY1e9GMTrmL0fNVVel5jUfu/yRMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAuaX699r+ayL7JphKgdiDuy4iPTwf7fTkUsLx\r\n7ixBzvnUrUASdS9GJEkpsewdipRfMycn3UXatnQ6rudCqBgsExJzHBGlokhvVaZK\r\nue0oIlJstnKQDOJCpJem9NkvwALP5z3WZoqYf4EaaQXUkMAJJ2qxw+mksSBEu+MJ\r\noxgbStKv98q28ypOVLjaFNH/VbtAG/rIcqNyOdjAPcgMcohe7lGO1WQtFxPxtzvS\r\nZfgao/ZjWeNDFzy8FSInim1q69Syl3Y4dzeAlG6PiC8t7upDQzo2AJxI1tW0AkKV\r\naJIS9rGZquLN5MTbYozjEyzMvSEYFEpx+7YKQGayHz3eCGH4BzD43YPt20Cm4BMN\r\neyV64+d9PufCA2tzrIQ+VJhsZKb6qRgV+Bp6AfpgeyU6oRkqsWKJyKyzp6o0D+Si\r\nq3gYJdD3W0+X1jUJcQuywYLRg78rVE3A6VJ7RIEjXARQV19hJvxchCoqfbny/0bX\r\n9Bb3Rtr1OAYhUml6Z6JdfnH33KfEJvFa4wlKRBxpuw9gMG5ydOsbZ3YIJDWccTLH\r\nQZWJk/Lakd/+uLPWOzzWQCf7nPapwSRjtfRRLZoX49PIQkrGM3dpLLGktC+sg8bc\r\nvQ2bO79bKJazcsKuNK0dOpepIBA1mMD81DphYmc/RMF9KXKdKz4Ugh4HNqkltIsG\r\nEtaYPCM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAE2e+Zx9LtWjEwAAAAAATTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDUwOFoXDTI1MDkxNTAzMTUwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1RZFKUUXNWXgbh7dm52Irso1hGPDEL9ZZXYz0civ0AAlDu9P/1okXVpc\r\nOPQnRxE7e7O8roTSctA4MTBGFIjrCythVzk6MJC1bgGv7qwCV6o5P4zVSxQrHPx+\r\n2DPDIZlt3UV4RNLuKVvSZdzQt1UsxUOxvTZ/0mO22d6mcspf3I5Xt5h+7WlTgHAy\r\nWvvlpuX7LR8yTK/um4526bdhUG98I2nEURH2vnNSt3/Dbt1R6qoPMja0HhghuOtY\r\nt7Z77nyI2gOY2fRu3oM15Xqe8b3Qwx5IsSV/pTWJ34VPz24TfUmCQOVtu/m84ayA\r\nwSZ754d+JvkyPSdINV3tuLtbo/QVewIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBQbRewlXgZoN1BD7V/nign/FlWETTAdBgNVHQ4EFgQU\r\nvZx3N/n1PWYwyjVonISvG5ZVEL4wgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQBFtFQSE7TjElKEmwHyydrA/UEAzho7rEMy2lvNr2tgX/7WVWDqmDrTK4La\r\nm6/MGOUBYbF334Ywvprij/UoSpyMEq5HgXiCBxOgyUPSZx8x+XyINgCujVXRk9za\r\nPh1lXpYCV2qhIYAhazeprDYzX2im0Jwe8X/Xsl0kzgs3TE7medDW9CVEYS+T7SqG\r\ntmXhOg1FW04yUM0+Z73ZQGF5oqnE76kzpLvfn+YWA6KbLfH84yTpqylAD5UFvfeW\r\nMRoNUUckpsteddNba90soUzxeRwU0Loxj5Qsds2gB0tSIpVh330BxEDTIJ73FZIv\r\nvURqyoDor+Eu1NOVk3sdCM5nXuN38dc0a9fsSRoJkbQYTP9UNJPcUDO3kZoYWNxD\r\nWrn5J/ltaxPc1o7+USSm02C023HIrWBJkfnepIZKV8m7wkddcygJ6FQkxFU+NQUW\r\n+a91tIw3HTEHvmNlJddPmjgnE3k6GS1NLOC5IV/s1s4sSME3QYQAt+zr5TKRdZ06\r\ndBOSXrz66pVpkR2wuAvlCEuFk7gaBrKz4j+3wJ9CPhETezARvgpzQCw9es9y2qde\r\nO1rHPYa6IRtmjcVDvxfmjei66bQwoapDH/OMS6sPqqqn53l9g4HDDgWywWn9ad51\r\nL5NAvQYhHwSCG0E2Os5mUFYM56ZVA4WHVUn7NZsAXGnDtIwlPw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAACbGTID3uXpE1wAAAAAAJjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE4MDMxOTE4MjcwOFoXDTIzMDMxOTE4MzcwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAvBsRcCD4Z38LQPG73ci9jIpQv5tVQh8lLrcQ9lO2lH6pUVWi7T7jCyX/\r\naCSmit7fT6seN/kf6LP0hpgsU/wxMMv4c4+w1M16EiRc6GPJtSPNszl8ZNAzZj39\r\nxeJnAMhPzeABRLgzYgLH+9R3k8sIJMhSjcUfp63GAhKtdqhQeTOs7m87REtmAdo7\r\neZh/Ubn4HR1ZxAswmoWmMxMZw1KZj87395IxE3Ybj0m/V8dyskpxWdAzkvGeO//l\r\nb4FfAHVCCix9wsijqomj+jeJPHR/AF/5+MZXjoNDs6/+UMdSrEqa2fi8910J6ogL\r\nSMdL7NdV77U5551wZxeUwSEHUc4qkQr9cFAdHcdYiMnIrU28zk7O3yQdsyWdrTqx\r\nTbkoYn36Ji+aSyzs/u/Zh3pAWw9IvLaoq254Rpf1SWsvufE2YXaP6kUmvOE9Qrnt\r\nQ138fwe9CmPUT9I/cM0v16BDvELEH3KGsWez8WRFA5RAB5pPDKjMyZ7mNl+0+EDv\r\nMq+KYjtc9uWJoRsRe8mDnVt2JGRBazTCFd/m5HGywdUvg/fZyVfBrvsRhcahMXn+\r\nb+a6kw+gMY29dcNutHNl1ZuKbwUuvp0ShWnauFVqMSRP6kSgXjzM0Oez2CHEtnX7\r\nNTKy9+eXsqxkzVXop81HCR7QCDlKPkc78IRETKfQA/nHdu2iOd8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQonG1RafqmxKhDxP+NNvoz\r\n3/1FMDCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAJFaZ9bHSEXBMKUi\r\nxLJgRr0yPOBbkZAHGsXGsAAdXnsAcmRZnoMsJZwHJY9qa2SDdjWzCnEuk50KJ0Rm\r\nvePgWmDtQWwyfFT//JIccaFgxYsU2SjdHEi0DmRElJtLkYQorDjkqn8s2T8y95f0\r\nmdcNme7cQ8PsjawgV1hb7r1I0bRh93M4pDzRt0g08RoFtMGuqRdU3roMDbuid5Hj\r\nBnoT5MdJlYzklABw+JPOIFeqZ0LMq/RPyk8Dpzo7m2dSc78GitdNnWxj4Ku6l8lb\r\n0OHX3BL1eVKyKi8Vta3BjpzWuMQompgdzp1Eh+mDyfKV/+dlfIEPJI1stEHIEKWR\r\nR5yt35+RGXrmsmAwTZT5mcJk4JdAMhVnRnyWvxPzieYCR9DcIaT6+NBBYzQegOG+\r\nIMnLpnZp6qhbG7Nq9MXCqRY2ooojLCTLTCx8R2cqdYonJpB4lSkYMFYbuV7HoiNr\r\nXdZm0gMRi2DmIaZ7cxXUn0BmZd/lXSXNKdxwHKecu0F8ByT1Zlg3NgIhCb+6SDYB\r\nlOv5YhnwSd00aUaSSYc2dKJmR2yfCKT5Li9wdtjlB6rYIb7vHRl3x98OIVE+O20S\r\n1jQEqRLzkaDIWOA8D9VeuuIW05tahms61dDi5gx7M/ALhFa/QsbkCJXRf07Pe4ki\r\nHE/1Nk3cohSibWYZqHssdutHBd+Q\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAEnEBGqOfE69FwAAAAAASTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDA1MVoXDTI1MDkxNTAzMTA1MVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAw9b7oiITgLVh8Yry44fRHl/xMuYtsI0Cg944jlh0S5ljKgUEMvt8/S63\r\nRH9+9eXvbFN4L9EL2+RDhWd5hGyg4gQeKtxO7D/+JUoTIamIl4pXTxhO5oORnS9k\r\ntWp6lc1OfpYnkgzrkFHICKggDtCpQxp7cMtM8evEvY/7WvmJDbAsgSRlBIeyVZqU\r\ndfw4ahzvsNmMfDGx2JBKgB5mndVGyg96yCHy5+7XKOkkcr+NKHdnBM3k546rGlCV\r\nErgPVuUkRxrwIa3xD9BRewoihWG7sbuxny49CrdbDi3WqK0VPSJGZ2y5ipUTwndi\r\n/+QhiK5expoHO0hl20DwRgq74qB5zSs379PcTQz59OvUDMi2fiErDYnCT75X3w1b\r\nh2uGBFIwonYXGHU1s/SaxQlXErGplgkLv/tBPAXu8sk+qANHaY1EfPwpPfOXjIxl\r\nRT95moW0IP+CPmhV0g2ZPKNn0mIRPpf8IzI5O4pLe6xfXDekQnNcGaBY9nN9LBO3\r\noi7pBBNObi17J/ebVg2rScg+KAWVVf09iLF2inpoFxKOJQz//poXo2fAvYVXnXJm\r\n99qJvY8gFyOyg2Cr2x/Wp8yw/u7H4DztXuFMYuPEVpR9/EeLP2bzrpdbJpj+SPT4\r\nU0OmtjVtKNR4aOBNBVWmzxV+WKRBfpkq+pjpRMkgFapXWtjlXV0CAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUluoFkm4uQswgfjWGaL4s\r\nMWhX+14wHQYDVR0OBBYEFBxS0IHKkOkG4KzpGA07z01trd55MIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAa08V3/BsJsIOjn2Qu6zUb0GosfdvggVX36PY\r\n9OZyOn5d2+tPPjG2re+uovdpuLKx1YH0iBX4kIL05yObqKMAv+YO3Ihj4MkcYy6A\r\nk9DbHyQTYoeSfaryn6yo7kLYCz6E+li6HJ4FVx13PxpwqDXWUu+Yf5Kszj56IqHx\r\nTI9LV1ZbqmZYk7fQIPETYENkE23ypgh5snRtqSZYTw6HASkHI4E7NgFkOATnIcs2\r\npLGzcc9vc/QYlj3PT3ciGdpGkz8l/A2MMqC4eleYFTBSX9rNNG0tf0M+5fVF417D\r\nmtqDlglm9bWpgrdLpmcj28f3766EBJBq9zza4M9dAGBWBQx0c8BR9saGATd/U8lY\r\nmlTDhnRdqJvvTbtPzFFmTF5jrANky12jKlaHHTyLETDu6OeDbVEyJNuhj0a+cQ6r\r\nZwYCG/k0WCzUx3MMq1A11uxvseoOmpIqLOGfkEdmBPQXkKC02vyjZkxF0pGPNNcy\r\nBSCIlZ11UtC5ghcZ2Wg/U4bAogTv/XAnjwzLpp5V7mcepzcBagiFlQkdnvUKNI/I\r\nLkerOmrgKe0rgT+ICALZiq7hIyeuM2uthyD3FaBFf62WOtDD6Jfwkg/3LI7of+HC\r\nGZ99J/xaocq6NFYqzD/9H6n0+biogXUJtm7mKhQO3PeLz/1aDIwLfKqZFr3PCStN\r\nvTWqAdQ=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFYLVFiDd8BlgAAAAAAAVjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4Mzg0OFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAxIoR15PqTSSMns55DdeR97gCwVWRoA6zCYbU66RoYrXuHSpcJM+1tnHN\r\n6B2gITXD0iDoTLpuOvRlM+12v0c8cWdzVoHuRuG0k1ViNgSELeNw8SXSQ6jmvgPy\r\nH6fg+NiKLkjYrJuIp5me3/asqMTeO6MOkeimS67PYerzkMYoC7BUEUacludZswsM\r\nFZnsM/vHCjIpzQMGWyUzju2ANT+J41Wz9AmukpPQFNzyq9566BEU/4MJh9Yg5aSR\r\npzI1gU8r4Y9ABdOgjsFnEm8BSSdlWLgalKevYPMLX/FO2rFufFgcNJq3Y8rnAtJD\r\n0k9jt7isXmJgS+JNfANvY7+jXQaCkwIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUOLjGDtr98qbFC/XuACeceItvo7EwHQYD\r\nVR0OBBYEFOXZm2f8+Oy6u/DAqJ2KV4i53z5jMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAYI9s0aXNjS8k6w/pyYwcd8HBPAjpWHJp7vBNsa9rDbau6raD\r\n+QWjj+hO5OKUkNchKIkK3xUc/iDAMNALDLFqUOaVTeMh5fu/e8Pr1AX1R1c5U1Yd\r\nxExItrFARqTCCIQpLz3cTu/9KA5QgUQlnFlrxA9IHq9G6k3TvTB2AngUzXBhNhl5\r\nb8ya7LK3dhfqf2BQHJ7k1XReCJLYMxI6PaG0F6mWTCFNBbBxgjsXeXfjYv2li33v\r\n48ALT/NXFoOTbAOP4EFfLhMDnx2O6cFOKrYT9O+EU64oJ/0MQDQSq9PVos5J+RW8\r\nvD/h2ycPqMnmsjvpJ4pWJZP+YSxy/HWMwbZt/Dv/UobeQqLCIXGnODv87K+1JVo0\r\nO3c1NtGJu61JyXwW8id8VSQuc2NzEr58rOOGMfU3gHZMSNY2gsFs1gqXC6MjtX9O\r\nipJ+dqr7lgRvpDN9bD2kd9CdOWsxz6PRPxOmbUittmpHdABMZuaeKB/5MnxVrpNw\r\nlYtJYXvKRY1V30kjFSsyLv02YYKb8MI/NfWcjMLw4eaEn//ST+sf+LjB9KF8TxBX\r\nxuBUpQVA/TJX9GEqYMZt557A5u5odSVcac+w0/Nn4E6WzFLfxMr1O8OOOQjzlG3u\r\n5BPqprm+utwEHBCU4iVcZOdnSgk1dm7C5xmmTylFRYOlwVrFSPcyKy0+6H8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAEso8JmcB0l1ZwAAAAAASzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDMxN1oXDTI1MDkxNTAzMTMxN1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1FFhjk/dgVlthN00OKObtbEisXfH40OyapM9KcVlUPnMElPROdKi7XPQ\r\nagq+Ry3QLSSZgNWnkahCSxE81oyudrvlhpR7NpcDPZHsYFw6qsEiirml0hc5awSq\r\n+MtFo9pfnr/zQstb7xg8wjduWjANvO3E34jZbfmCyw4gU4TRPIa9rpaV0N14hQTk\r\nKcBv+S12udS181oWcTc66zxVXUHNK15PRv31jElEYQKX8EJWCe6ccJA/cJD282sR\r\noEhfuUvzXHOeWD1jXH+Eh+mKuhLqiQHPJH7TJRMsN77ndtHH9us3Ak4l9AmGNZZf\r\nwNquVrHAiTw9Ai90btckoeMRn8eogQIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBTX/nF7X/NZN2T02QZU2G6DYuwmyDAdBgNVHQ4EFgQU\r\nlUWMsJMswORfcQ0UpecnwcNjm/cwgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQCb7VpPdQaBSKQdwDpgFquVkVtcKzEAwsVlzIENIrlRsOcBgvZlW9QKwgCd\r\n6xvrF9smidaMzlYuxYQypQ0RQEHDKJ1SJQLc1ZtR7fWf0xHqU0cgX3hktDNyN5t4\r\n7rMtYOUhygcZIxVQ2cpkyLoilwnb/q0Y0jOnA7eo0r9K67TJ9CP2m3ZUApzRaCwv\r\nqQE8eNZvngy+613PU11A2EFuTPXoVNb7S3w8amz+mYYnJCBhxf4PdYA/3DZ0q3FP\r\nfFxqKAbuNtXXHFmYn3BBMGSn082Uq8RsAvj5XEkI/xylDlwG3zT+QaIOrJ/06Toz\r\ncT0ewSlyNAB6LzGp/HLTIffhSNBVX8ILs558r6VcnTE21awdkWqnd3PiPkWADD78\r\nDVSb/7QOsBdZp6BKkcDzTc/uaDGahR55UcapkOMBSbngkomK986ITx3yUITn0aV4\r\nBEVbYQQ6b9l/eNHRosiwL52QPnYl6fJRsl0JuUzy9T5DrwGGnRgKQAOmSWPRTdt2\r\n14MWrxbLFRRwvqt2COK82jPTAiZ3XqYSZzZce9bSDsGSm5VpwWz5+xyBYc3djzKR\r\nThctXJrwftNyZD+LBc/4oLOTYLpDB23eI8rvb6Xfm3A8ANucIq2muavxi1A+eyYM\r\nQXwyB2foIV9yhDIA5I1psyJo+CwM9CcibRTjjNL5ghEkoSDjyA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFSoP4knG2YAHAAAAAAAVDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzczNFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApuAstd+jxOmcAhw1KNXa7fDE4SFe/7SdG4avz6VQqep4ofwJwZTxQJNQ\r\nBC7dybKZO2RBiDzzayV9PCxmK9HPRMRmuj68x9BRyoEbVU1tX4HtiBK+hAGiRNQu\r\nPRTYcSs24CgjI3JrxOjNesp8iE8HUVntN8ueXnpTQLSYOR2TmTGM835tkTplflX/\r\n/zPtZvsXSZz+JssQ9SRcXS2t/fPDpKfNVatOmq4iwtX7Q6IO/WCzAyEzacjAFqml\r\n0/PRYT5O+jiRO+TImZ2RD0CB9rP5CYwN2T504drkKteNaT+FT/teBLC+JraDjh27\r\nv24yknl1t8dXCSS6l/UBGBGVk+gr0wIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUVSrR7NlDI9ZN5GcKVaV9JEKwIbEwHQYD\r\nVR0OBBYEFK55wmtdJYgTBvYHCcOXfHuXjx1VMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAbgp2LNvP1OVFkH9JTg9rTMksjvLIpzaqJehSp5+3YNzGl/TH\r\ni3Kg/rbtQaKErwipeLMhmqWFuT9kB22eeyoBSxx3JTzRmKtcJO47IX0qymW04v2i\r\nI2tVWQigwJWtE08Z16Q3NVdgAox6DDnAvmV8QDlPhWdW0gGcszZqFD47SJltU8JJ\r\n6D+xuDl+xUIA5wQ0987HRo4dSx3Vny1cd98GdMepsOnCpfm7ZQDWJUggp8m8T/jv\r\ngj28G4JNV9nsx3TT5D4xFZ0rXUlQNmhJFesprLt8NqOoKqmP40WdqrpVIxlu5pdH\r\naf/uT89gHO3Zy+iqNbCDRB7zSBtaalaqLvGpE0xV3p+xpjY1CujjvKp+rUrGwA1t\r\n7aNRowd45Dn+kESi95bE16V2k54YbRvgkwQgqyFUiissogOtaOwQIjuv5NUMkKnj\r\nWz1S1nsMTwZWQ20pT+SG9IMWxAP+63fLIMxWXSbwkTo1Q7JVbr7ZnbNjPrzwerrq\r\nTx+CgfCjU2TZ2WaqYnKoGlgjiZkVraQ1JYJkEr5N5+12CnAuVNzn7pMs6HUSxc8Y\r\numBjy+KA0I1XMvFerh+fhEVad7kOgOxqE1uLdXZxkOXHC1N4FQlkI65Padcd8dyM\r\n3g+er8suC1gf9/fWU0AlgIqls48Wis2JISOeSsMAi3BDvCIpp5PHbuNfj7A=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFr7ZWQR1r6OSQAAAAAAWjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzN1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEArMu8k7Kq5y6uDXZk0QxV9Ya5K3Mb0/sCyV4fs48XfAgL3YOHYTZ5o1uB\r\n97VZ/oXuenXaDcoDE18WhOavpqjWHc4eb1QeGGCaB0MoijTLGPzqwWRdByW6l2U2\r\ngFzjKWKtFncIj/VW5S98uCDD8b0SX278XKubkKv0Zn3m1E2wVrTvG8Jc/MuXF0WX\r\ntjFRRJPY3keED1zFNEKjckE4ywTV1atTqnKbmj2rcQucHJ4ufZ89Hel/xLL0bFxc\r\nJnW4Ky8lZ4Q+G9brYexh/iEBcSpNQlfLVJrKZMlAwGPcp1SBGxU9GlSV7kE1LLCS\r\njpS5d6/qw4VA+z5y9HsHN225oBhpAQIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFHrWGYUoeWxxdh5g+PNL76IFQhYdMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAU2IUk2qTwWTtRBKzMTaRxYKvTyvU1nyQLxko\r\nA3304lciVsdA86+jhEkvnCwZeAHoOtYuPeQJdeyhYUhVRDAhhJauvE87FB69gM6h\r\nYUnRqiy+vekLrHB/1x8njoLHmcppjOvBzziOPSqvf8s6O8tJ5AjY3398sm5ckH37\r\nVYHa/+bAYCvEsYmgDGN8L25QvXScTmTthSXHlzsCItPpKFs385dsGJnFD0KcQ5c1\r\ngLmV1bdHnrWyy2mqB819CFWtzhnojtzXxZLuEfTBS18u0qoLdN8KvgB2BvfgZtY7\r\nx+fbkiyoZfnZak0Oj45Z9Z/6AQ1uHGSRadAh19mkcrkPwHktc/3M1PJ69dwZn8Ez\r\nASzYFf8QH58i5uxdou73v+5Bd1m5nmtFCyLC6QDtFYH0pkvmafBx7PwyrgTjq2Xv\r\n7eWL0wXESxzY4HpjMDO36ncsLvzI6j4CyG4cpA8F8+9jwizWqmKMQUWt+VMICsP7\r\nRrzCJ35ogFGWF/dC2hjdjBXjcyLaliR5nE+sDx1PVDdIu7y8oBi60+Vzl0+BSf8P\r\nOdssgwciUpWVP+9xf6SZ7D9BPmLwgIJZ4oPc5K7cTOR6ksQQg8fO44fmOCRfVD/T\r\nDj1e39ijjkmcXUvrcu1sh93vbupLKp4Guruj3Le6iQ4Hla6Pr4znFKCzKk1+RrcQ\r\nVnsaqio=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFOufo2CImJDvAAAAAAAUzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzYxMFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAz2IfhGnsNWpW1cYZrm7f0KG7FjkmtAufsz6xSPNM86b5+jPDUpkOb7U7\r\nj4cWGBVdrYYqWUkziZmWPyl9WLw43KGzaMT3xTnm1xWyok8Z1D/ytHfxFI5t+Xzk\r\n+pcWwIZzuElzEzAQYnVMyfdxD6sM2winZ1ehDpvJeLTPcuTPf5fDYpcrnebODQ+r\r\nnsvq7oU7bHp/jTkGP/2hNzNLR7QJq+rOaHTHDky5yWrsMdgGj0dJXmId6RIfgbeq\r\nJyz7pK0OnoqopPXzZcEQJGNdh9tTh0DWpPGkCWvp4yC2Sd6VSDIApnIpXRn5WNGc\r\n79eeuL9eKvQ5W1zq3/j5HlmwZvPOE+3kPe9r1+WMazNqbhmVk0gUfZX+cnJcy8ZH\r\nqZhjCnW1ihCHzNxMQypQLrnOgVCBkkkRj466iLGDMGL5IyTji2AAp50wMiZuVQX6\r\nwY4kcKqLsjSPpDpHGIie+58/dh9xFgqJzV0kNbAvehRlbwzQnRJWzr1UgZJgjluN\r\nlLpJwTmUIe3I4FzbwrzGMOltYu8XbdFAfyPM4fcfqJwFTF2xI5OYNC3Rcou9OSQT\r\no+ce9/rON//vZNZmQ+TPQ3nkPoKus+JX3EFJbevLeG0IvvC8c2ABwv6cNcvbSSoV\r\nXP+XaBLuXe5A3G+Tdr33bVhKKnbKiravs7sEeKvXVrpDgilOuG8CAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFJbqBZJuLkLM\r\nIH41hmi+LDFoV/teMB0GA1UdDgQWBBRIo61gdWpv7GDzaVXRALEyV/xs5DCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAArPH6tJjsM3VsG3zdh/1Rh3LDz4\r\nDqyUEJEXiM+Sa1kCncVvIqI5GkFKGM3Ur3hdx6xxe5F9gPvUdL22Qf0DLaOclksk\r\nO2FABXqDRv0P7k5yyryzTM/RmLhleut3Fc8BUdfrkmif8Znyxp12sRxK0UgEf6iI\r\n+dEZugVpwAl8IRUk9O201Q87q3zI30NgPT2BJiDycKaKQJF634qatubvL28JaiOd\r\nk3uxWfcqKjO0oeSJ7pxgAiH1rCah7UN5T2d3V4AmDQGLPo7lwX1SKZewa10PnF0X\r\npjE+8welxOK+4pEPl2kRdMDpr9/XPXWpAPt2h67Z0j7x5c7nDU/eZ3UjRkJePoIQ\r\n5aGZuxZ2diziI4JWhbW+kF9M8T0CM1EUIcQV+8wvvualM1q0IN+SJ1X49tt8n3y5\r\nfEAur2599a16z7zg4uF1xI/SafWXMjC8MObCHjR5xodSQ7IxvGyl+6uIkENsiQBF\r\ncuM55MMUELl0VM0+n7Kv5K2Ur+heLzNlTTy2eoiU048g8iQmZzP5C9y4hUE3rYgJ\r\nRxP9ovHl2km91RDTei9aANUGIB8U2uFA7pxe0G8Kp8WSF0a2DtZu7sf2lGjKvP+7\r\nJGaMrJn2bJW6cDEPgfyKCio8kCVtFg7QTtkaZjF5J6AIB0B7aHNPKlAE2T8O2/Z7\r\nJIvM+ijPG5W96tZP\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFjSjQKPPAEB6wAAAAAAWDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4NDAwOVoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA3Pi3nd+o2ItxXWvhyaIDXRbrxgB1wqI0wK/wgC3vs2vSbIHdSuOrtac+\r\nmR6Ag8rE69QQOykN2KJIQI53O0egLWUqjDMa43Fkh1EWTAD0B6snyV91Lt24YPPq\r\nOyJZLhGCtYJoQfPQxZjgW0PknDvWCGIBPFacj86c84QzQdmNBMPrObC21S/ilK+H\r\nGjwcYx9Z3dSeK2CPLLkb3C0HzWWLBL5lFHrdM7qphSAJ07g8/ggis/b4aHdWOlN3\r\nfyySWbuTLQnX8J1XZdWGc+7Z60gzt2jwUc2kgpjcpHvV7QYmy141rjiQyFDNUf7x\r\nFBeFIpLDPoxcfAsOo/dtVfxp/dNMqfAEC27QrUogtIUOcCaSZ5r09ECOuBW6Mood\r\nDIx4bUEhXOJmZBtpzRXhVVKTC7Aqs3PTrPehspCxOclx7c8aESASwj6SSWpDQi+x\r\nrKm2DgTIgvVIdyBNdKhxhGNyl1t9jTEMAdwDmY6pN0kMLCEdM6v9fG0nvtFFLU/m\r\nj9Ojh8Rtf3YWiUPd2cI62tVoXckaP3TbdCNmGysT8ShFNEypEINWIl49U7V00Iec\r\nOveCbkfsnKnT/o69znrWUH+Pt65GxrqO5A+To6WU83OqLxljS/cyBTQmrDh70Dgz\r\nKXDXN3JVW93RLoXuNyAhd1nUOjKOI2tmPhEC4Cz7lqmVxDsQaZMCAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFDrHw8rI3g3T\r\nksAnici+l0dPRWlgMB0GA1UdDgQWBBQ5cV2pFRAtxN9+L1luQE3A3+82mjCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAI68ze1N9ZqKBI7Q7BXGlc0k99wW\r\nCoCZu0m02crvYeITKUC/eizH7s6Sx2Kk5Hnzz0Rzc8G8NpiWEfp7ppKeP1jOMv11\r\n7P1KB6IHyRLdW7vAIBiJy1qhbLAxseR7xkvDKv9yjZYL9Q7XtlSgrd9NuEiuFsfj\r\n0ANzVf/Ea4br00gGc8ALfnvgGE7eUdBNqWKTzHcQREdjJPRMUqTYqcvd4qQbRXZt\r\ncXLt4Fr3pXcwG1UExrz3TP4ueyrqGot/OFDvMihs6Tak0qjYygT2dC3bEOBg3GSQ\r\nDdQVzBFO98f62/l51TBlWizuw3D4/dKIPfQU1Qt7sr9e7CLbecoO8EVtyt/yGRr1\r\nD4BPBGyEzC6QoqCo5Nh27yG+DxFtAGdm/vLaFeJOVM3q2d6nL1FvNzlHTHfOYPJ3\r\nNwHB30X9TpdRqoBLM5UC0m/ybKj4ygXAZBlkJXMO/bjtpqyidJ0SaFuE8EdV9YoJ\r\nKUmBw1ZuZd5GHbc+Ilz82WX+JWZ0efU/f+75Ywvntu/3s0OsnpVoqrqM7TDdzE0d\r\nwRiZ+mvtgIwp85+et1iEdaWPj+d6LfJxpDDCPhaqh9hnNIkZFptndwDwRE2MV9Wr\r\nlUCSA96/2ubHsKt4E2D96KvNog6MKdyEGz1sZep1yZKqE4cnNzGNBGRel0BRa2MK\r\nyTOQsCbnpQGhEz0m\r\n-----END + CERTIFICATE-----"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFlFSsCTnaMEFgAAAAAAWTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzM1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA0E8VPmTCi+s/ukALr8kiz9n0QMveOlaFztd/3QikdEPvOujCuE/CXDKt\r\n0KhyGBUshmHGEC580aoe2Ze2gBJ/Dhs8FjdCjH4IyWU22QOervNkIc2Xd3EMxVZL\r\nYmWmDp5yfa0DwHqsqLq1PLwyk9BfYhh2gp9Dp+vECu4FzvVoZd73UaTpvcQKDsXA\r\nTVR43QC8AiL2AiHgOB3xE75MR/kI1OA7mTaOK8uZbQZCtyG1VMtNL+Q4Di0nB9cD\r\ntqfQj1/UCA76Nr9a7p/TUnck94zlsHE5RVGvDy3GKpa4cmCb+nRpF+ybZjuw8fPT\r\nCY5JGTLZreJMgk+Tej7iN+BYyn4Q2QIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFPFGaMbxw/ArLX2LauGy+b41/NFBMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAD6YslCi5IxgKWQYVzHClxGTpTXEarOPDACuQ\r\nnZIgM4hbk0rMqW4aHFd+paZmMUvNU0HWtIq7aAbNZGCdTrb6g9xjQKrdivWr24BZ\r\nBDxlYkU1tNvdQmafd/RESZ+TpElbuBw2EW0qtK2K+BfL1fTcwpIWRoqWcZUc/CzX\r\n43yuA3vE9sw7/HCDOEQF+QW12B6LDt2Y6DR2y8ZjYsIM0X99mgCE8/HYL4AR3+mA\r\nHjlncC3qlXWRUk46kz2yU4gu0k4P5vexNuGvU9uHvmqQERhhHYkAiW5pwCNFdZDw\r\n95vcnWocRk5TaOPp74v06msx58qS9Re9Fz5xwp6dGGqvWgcF9UJtVVyXMGYB1/1+\r\nyd5n8VpvHVWlrPNpcT0p9YLeou/HKZIiekolUKL6SqCbDFwSUMPM1xWSK6RbphmT\r\nJZdAoKKLq7c/4bFPOxeKvBjT6PrWP64ktWN1Z+AYQlBp1rK7A/ZkAOh8l+17K4VJ\r\neb1whd4SmNSnZbv9jhOeWhrbRsxmFJ1SFHhoBhS3Q/WZWMJtLu2Hv1RHnqRgLD3y\r\nlaC9qyj44pXka/MiLauGl0qjRsO6i0ZV/nU43/eZt4EhWewfmXRnfNlXA/u6abVS\r\n3lkNTlQaJAmTijbKk4JI0qQl4e+xZloOXJVNiqKgYSh3N93Bi+8ROZCLqqpwrO+C\r\n8C5Y9Bk=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIFVjCCAz6gAwIBAgIQJdrLVcnGd4FAnlaUgt5N/jANBgkqhkiG9w0BAQsFADA8\r\nMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAwDgYD\r\nVQQDEwdhbWVyb290MB4XDTE2MDUyNDIyNTI1NFoXDTI2MDUyNDIyNTcwM1owPDET\r\nMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEQMA4GA1UE\r\nAxMHYW1lcm9vdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALv4uChY\r\noVuO+bxBOcn8v4FajoGkxo0YgVwEqEPDVPI6vzmnEqHVhQ1GMVeDyiRrgQT1vCk1\r\nHMMzo9LlWowPrzbXOwjOTFbXc36+UU41yNN2GeNa49RXbAkfbzKE/SYLfbqOD0dN\r\nZLwvOhgIb25oA1eAxW/DI/hvJLLKh2SscvkIyd3o2BUeFm7NtyYG/buCKJh8lOq8\r\n0iBwRoEoInb0vhorHaswSMmqY1g+AJndY/M7uGUqkhDGBhLu53bU9wbUPHsEI+wa\r\nq6WypCijZYT+C4BS5GJrEPZ2O92pztd+ULqhzNRoPj5RuElUww7+z5RnbCaupyBY\r\nOmmJMH30EiRSq8dK/irixXXwJraSywR5kyfmAkv6GYWlRlxFUiK3/co47JLA3TDK\r\nN0wfutbpqxdZQYyGfO2nZrr5JbKfSU0sMtOZDkK6hlafV++hfkVSvFfNHE5B5uN1\r\nMK6agl1dzi28HfJT9aO7cmjGxl1SJ5qoCvcwZNQ2SPHFdrslcwXEFOMDaEzVOA3V\r\n7j3+6lrT8sHXg0sErkcd8lrBImfzhLxM/Wh8CgOUNeUu3flUoxmFv3el+QWalSNy\r\n2SXs2NgWuYE5Iog7CHD/xCnoEnZwwjqLkrro4hYWE4Xj3VlA2Eq+VxqJOgdyFl3m\r\nckSZ08OcwLeprY4+2GEvCXNGNdXUmNNgk2PvAgMBAAGjVDBSMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEBMB0GA1UdDgQWBBQpXlFeZK40ueusnA2njHUB\r\n0QkLKDAQBgkrBgEEAYI3FQEEAwIBADANBgkqhkiG9w0BAQsFAAOCAgEAcznFDnJx\r\nsXaazFY1DuIPvUaiWS7ELxAVXMGZ7ROjLrDq1FNYVewL4emDqyEIEMFncec8rqyk\r\nVBvLQA5YqMCxQWJpL0SlgRSknzLh9ZVcQw1TshC49/XV2N/CLOuyInEQwS//46so\r\nT20Cf8UGUiOK472LZlvM4KchyDR3FTNtmMg0B/LKVjevpX9sk5MiyjjLUj3jtPIP\r\n7jpsfZDd/BNsg/89kpsIF5O64I7iYFj3MHu9o4UJcEX0hRt7OzUxqa9THTssvzE5\r\nVkWo8Rtou2T5TobKV6Rr5Ob9wchLXqVtCyZF16voEKheBnalhGUvErI/6VtBwLb7\r\n13C0JkKLBNMen+HClNliicVIaubnpY2g+AqxOgKBHiZnzq2HhE1qqEUf4VfqahNU\r\niaXtbtyo54f2dCf9UL9uG9dllN3nxBE/Y/aWF6E1M8Bslj1aYAtfUQ/xlhEXCly6\r\nzohw697i3XFUt76RwvfW8quvqdH9Mx0PBpYo4wJJRwAecSJQNy6wIJhAuDgOemXJ\r\nYViBi/bDnhPcFEVQxsypQSw91BUw7Mxh+W59H5MC25SAIw9fLMT9LRqSYpPyasNp\r\n4nACjR+bv/6cI+ICOrGmD2mrk2c4dNnYpDx96FfX/Y158RV0wotqIglACk6m1qyo\r\nyTra6P0Kvo6xz4KaVm8F7VDzUP+heAAhPAs=\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":false,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/frross-monitor-test-rg/providers/Microsoft.DocumentDB/cassandraClusters/frross-canary-cluster","name":"frross-canary-cluster","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2 EUAP","tags":{},"systemData":{"createdBy":"frross@microsoft.com","createdByType":"User","createdAt":"2021-09-27T18:59:59.0207852Z","lastModifiedBy":"frross@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-27T18:59:59.0207852Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"frross-canary-cluster","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/frross-monitor-test-rg/providers/Microsoft.Network/virtualNetworks/canary-vnet/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thvankra-cassandra-3/providers/Microsoft.DocumentDB/cassandraClusters/terraform-nova-cluster-revised-api-3","name":"terraform-nova-cluster-revised-api-3","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2 EUAP","tags":{},"systemData":{"createdBy":"c81bf2c4-9101-4804-8cc4-41f672884b0e","createdByType":"Application","createdAt":"2021-10-08T16:56:10.321152Z","lastModifiedBy":"c81bf2c4-9101-4804-8cc4-41f672884b0e","lastModifiedByType":"Application","lastModifiedAt":"2021-10-08T16:56:10.321152Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"terraform-nova-cluster-revised-api-3","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thvankra-cassandra-3/providers/Microsoft.Network/virtualNetworks/vnet-tf/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAE5Hd9yskSH1BgAAAAAATjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDU1OVoXDTI1MDkxNTAzMTU1OVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA5UFGOQgmohqJHkbMMcN4cnK+mAoScYUAR/njrD0x/GyFeTko+QXMU1JJ\r\nIePmVcugmyO4xX5ITShZWy+/qPAWy3vwT6HzBdFq5eTGbkbFCrQdh5w1+jwOApMe\r\n9ZDlMDO+RUtJe1XxWqi3KRY0e/pJmpOk4IUEjx6wxvv5MnSWhMa7aepnkuCS8lvF\r\nNl9D5oUGIYvoDUgVMQSBazQP2zjRunMT9JOopFKnZE+L7NY+XDtla3I1uZeMeakA\r\nfqkNjx6lkUIgcHPhSMy5XHBpOeFdSDjBA8dNk6E3VSlLzvPcHdaHI7QrmK/43wzf\r\n+kHpDdTXx8EdOqm+pLHoKLWcjw/P8O9RAMiXefxGnQKNuP8T+/prskR5esucJQkj\r\nrWSu7W7YycmIg1rPCd7Qw005/sc58eLPN+Xrj/Aw7RSR0A719CPZMjoSfKTphSEK\r\np+ZB+5j/V3VEzjGbL6XFUezFfaIZ+A7ZtkaEQYDH0fVVziPnhQhJB+Uym7a5arB3\r\nqiMMw7Yjos6iWkkOaqhaCHuN1zC374xsBec9mrJ7bfuLTNtBEKC1PhdZrJM3UDCo\r\n76v+3mnKouN/7vyVkbiLNb27MXRigXFbO02opR8prTkvv3af+iq6+xjmVWZhsILI\r\n0HIBk9/HoMZCCb9e95RQVmVwVNrwa24neVWl+JEw50sqLMapsGkCAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUOsfDysjeDdOSwCeJyL6X\r\nR09FaWAwHQYDVR0OBBYEFEKY1e9GMTrmL0fNVVel5jUfu/yRMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAuaX699r+ayL7JphKgdiDuy4iPTwf7fTkUsLx\r\n7ixBzvnUrUASdS9GJEkpsewdipRfMycn3UXatnQ6rudCqBgsExJzHBGlokhvVaZK\r\nue0oIlJstnKQDOJCpJem9NkvwALP5z3WZoqYf4EaaQXUkMAJJ2qxw+mksSBEu+MJ\r\noxgbStKv98q28ypOVLjaFNH/VbtAG/rIcqNyOdjAPcgMcohe7lGO1WQtFxPxtzvS\r\nZfgao/ZjWeNDFzy8FSInim1q69Syl3Y4dzeAlG6PiC8t7upDQzo2AJxI1tW0AkKV\r\naJIS9rGZquLN5MTbYozjEyzMvSEYFEpx+7YKQGayHz3eCGH4BzD43YPt20Cm4BMN\r\neyV64+d9PufCA2tzrIQ+VJhsZKb6qRgV+Bp6AfpgeyU6oRkqsWKJyKyzp6o0D+Si\r\nq3gYJdD3W0+X1jUJcQuywYLRg78rVE3A6VJ7RIEjXARQV19hJvxchCoqfbny/0bX\r\n9Bb3Rtr1OAYhUml6Z6JdfnH33KfEJvFa4wlKRBxpuw9gMG5ydOsbZ3YIJDWccTLH\r\nQZWJk/Lakd/+uLPWOzzWQCf7nPapwSRjtfRRLZoX49PIQkrGM3dpLLGktC+sg8bc\r\nvQ2bO79bKJazcsKuNK0dOpepIBA1mMD81DphYmc/RMF9KXKdKz4Ugh4HNqkltIsG\r\nEtaYPCM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAE2e+Zx9LtWjEwAAAAAATTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDUwOFoXDTI1MDkxNTAzMTUwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1RZFKUUXNWXgbh7dm52Irso1hGPDEL9ZZXYz0civ0AAlDu9P/1okXVpc\r\nOPQnRxE7e7O8roTSctA4MTBGFIjrCythVzk6MJC1bgGv7qwCV6o5P4zVSxQrHPx+\r\n2DPDIZlt3UV4RNLuKVvSZdzQt1UsxUOxvTZ/0mO22d6mcspf3I5Xt5h+7WlTgHAy\r\nWvvlpuX7LR8yTK/um4526bdhUG98I2nEURH2vnNSt3/Dbt1R6qoPMja0HhghuOtY\r\nt7Z77nyI2gOY2fRu3oM15Xqe8b3Qwx5IsSV/pTWJ34VPz24TfUmCQOVtu/m84ayA\r\nwSZ754d+JvkyPSdINV3tuLtbo/QVewIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBQbRewlXgZoN1BD7V/nign/FlWETTAdBgNVHQ4EFgQU\r\nvZx3N/n1PWYwyjVonISvG5ZVEL4wgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQBFtFQSE7TjElKEmwHyydrA/UEAzho7rEMy2lvNr2tgX/7WVWDqmDrTK4La\r\nm6/MGOUBYbF334Ywvprij/UoSpyMEq5HgXiCBxOgyUPSZx8x+XyINgCujVXRk9za\r\nPh1lXpYCV2qhIYAhazeprDYzX2im0Jwe8X/Xsl0kzgs3TE7medDW9CVEYS+T7SqG\r\ntmXhOg1FW04yUM0+Z73ZQGF5oqnE76kzpLvfn+YWA6KbLfH84yTpqylAD5UFvfeW\r\nMRoNUUckpsteddNba90soUzxeRwU0Loxj5Qsds2gB0tSIpVh330BxEDTIJ73FZIv\r\nvURqyoDor+Eu1NOVk3sdCM5nXuN38dc0a9fsSRoJkbQYTP9UNJPcUDO3kZoYWNxD\r\nWrn5J/ltaxPc1o7+USSm02C023HIrWBJkfnepIZKV8m7wkddcygJ6FQkxFU+NQUW\r\n+a91tIw3HTEHvmNlJddPmjgnE3k6GS1NLOC5IV/s1s4sSME3QYQAt+zr5TKRdZ06\r\ndBOSXrz66pVpkR2wuAvlCEuFk7gaBrKz4j+3wJ9CPhETezARvgpzQCw9es9y2qde\r\nO1rHPYa6IRtmjcVDvxfmjei66bQwoapDH/OMS6sPqqqn53l9g4HDDgWywWn9ad51\r\nL5NAvQYhHwSCG0E2Os5mUFYM56ZVA4WHVUn7NZsAXGnDtIwlPw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAACbGTID3uXpE1wAAAAAAJjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE4MDMxOTE4MjcwOFoXDTIzMDMxOTE4MzcwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAvBsRcCD4Z38LQPG73ci9jIpQv5tVQh8lLrcQ9lO2lH6pUVWi7T7jCyX/\r\naCSmit7fT6seN/kf6LP0hpgsU/wxMMv4c4+w1M16EiRc6GPJtSPNszl8ZNAzZj39\r\nxeJnAMhPzeABRLgzYgLH+9R3k8sIJMhSjcUfp63GAhKtdqhQeTOs7m87REtmAdo7\r\neZh/Ubn4HR1ZxAswmoWmMxMZw1KZj87395IxE3Ybj0m/V8dyskpxWdAzkvGeO//l\r\nb4FfAHVCCix9wsijqomj+jeJPHR/AF/5+MZXjoNDs6/+UMdSrEqa2fi8910J6ogL\r\nSMdL7NdV77U5551wZxeUwSEHUc4qkQr9cFAdHcdYiMnIrU28zk7O3yQdsyWdrTqx\r\nTbkoYn36Ji+aSyzs/u/Zh3pAWw9IvLaoq254Rpf1SWsvufE2YXaP6kUmvOE9Qrnt\r\nQ138fwe9CmPUT9I/cM0v16BDvELEH3KGsWez8WRFA5RAB5pPDKjMyZ7mNl+0+EDv\r\nMq+KYjtc9uWJoRsRe8mDnVt2JGRBazTCFd/m5HGywdUvg/fZyVfBrvsRhcahMXn+\r\nb+a6kw+gMY29dcNutHNl1ZuKbwUuvp0ShWnauFVqMSRP6kSgXjzM0Oez2CHEtnX7\r\nNTKy9+eXsqxkzVXop81HCR7QCDlKPkc78IRETKfQA/nHdu2iOd8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQonG1RafqmxKhDxP+NNvoz\r\n3/1FMDCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAJFaZ9bHSEXBMKUi\r\nxLJgRr0yPOBbkZAHGsXGsAAdXnsAcmRZnoMsJZwHJY9qa2SDdjWzCnEuk50KJ0Rm\r\nvePgWmDtQWwyfFT//JIccaFgxYsU2SjdHEi0DmRElJtLkYQorDjkqn8s2T8y95f0\r\nmdcNme7cQ8PsjawgV1hb7r1I0bRh93M4pDzRt0g08RoFtMGuqRdU3roMDbuid5Hj\r\nBnoT5MdJlYzklABw+JPOIFeqZ0LMq/RPyk8Dpzo7m2dSc78GitdNnWxj4Ku6l8lb\r\n0OHX3BL1eVKyKi8Vta3BjpzWuMQompgdzp1Eh+mDyfKV/+dlfIEPJI1stEHIEKWR\r\nR5yt35+RGXrmsmAwTZT5mcJk4JdAMhVnRnyWvxPzieYCR9DcIaT6+NBBYzQegOG+\r\nIMnLpnZp6qhbG7Nq9MXCqRY2ooojLCTLTCx8R2cqdYonJpB4lSkYMFYbuV7HoiNr\r\nXdZm0gMRi2DmIaZ7cxXUn0BmZd/lXSXNKdxwHKecu0F8ByT1Zlg3NgIhCb+6SDYB\r\nlOv5YhnwSd00aUaSSYc2dKJmR2yfCKT5Li9wdtjlB6rYIb7vHRl3x98OIVE+O20S\r\n1jQEqRLzkaDIWOA8D9VeuuIW05tahms61dDi5gx7M/ALhFa/QsbkCJXRf07Pe4ki\r\nHE/1Nk3cohSibWYZqHssdutHBd+Q\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAEnEBGqOfE69FwAAAAAASTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDA1MVoXDTI1MDkxNTAzMTA1MVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAw9b7oiITgLVh8Yry44fRHl/xMuYtsI0Cg944jlh0S5ljKgUEMvt8/S63\r\nRH9+9eXvbFN4L9EL2+RDhWd5hGyg4gQeKtxO7D/+JUoTIamIl4pXTxhO5oORnS9k\r\ntWp6lc1OfpYnkgzrkFHICKggDtCpQxp7cMtM8evEvY/7WvmJDbAsgSRlBIeyVZqU\r\ndfw4ahzvsNmMfDGx2JBKgB5mndVGyg96yCHy5+7XKOkkcr+NKHdnBM3k546rGlCV\r\nErgPVuUkRxrwIa3xD9BRewoihWG7sbuxny49CrdbDi3WqK0VPSJGZ2y5ipUTwndi\r\n/+QhiK5expoHO0hl20DwRgq74qB5zSs379PcTQz59OvUDMi2fiErDYnCT75X3w1b\r\nh2uGBFIwonYXGHU1s/SaxQlXErGplgkLv/tBPAXu8sk+qANHaY1EfPwpPfOXjIxl\r\nRT95moW0IP+CPmhV0g2ZPKNn0mIRPpf8IzI5O4pLe6xfXDekQnNcGaBY9nN9LBO3\r\noi7pBBNObi17J/ebVg2rScg+KAWVVf09iLF2inpoFxKOJQz//poXo2fAvYVXnXJm\r\n99qJvY8gFyOyg2Cr2x/Wp8yw/u7H4DztXuFMYuPEVpR9/EeLP2bzrpdbJpj+SPT4\r\nU0OmtjVtKNR4aOBNBVWmzxV+WKRBfpkq+pjpRMkgFapXWtjlXV0CAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUluoFkm4uQswgfjWGaL4s\r\nMWhX+14wHQYDVR0OBBYEFBxS0IHKkOkG4KzpGA07z01trd55MIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAa08V3/BsJsIOjn2Qu6zUb0GosfdvggVX36PY\r\n9OZyOn5d2+tPPjG2re+uovdpuLKx1YH0iBX4kIL05yObqKMAv+YO3Ihj4MkcYy6A\r\nk9DbHyQTYoeSfaryn6yo7kLYCz6E+li6HJ4FVx13PxpwqDXWUu+Yf5Kszj56IqHx\r\nTI9LV1ZbqmZYk7fQIPETYENkE23ypgh5snRtqSZYTw6HASkHI4E7NgFkOATnIcs2\r\npLGzcc9vc/QYlj3PT3ciGdpGkz8l/A2MMqC4eleYFTBSX9rNNG0tf0M+5fVF417D\r\nmtqDlglm9bWpgrdLpmcj28f3766EBJBq9zza4M9dAGBWBQx0c8BR9saGATd/U8lY\r\nmlTDhnRdqJvvTbtPzFFmTF5jrANky12jKlaHHTyLETDu6OeDbVEyJNuhj0a+cQ6r\r\nZwYCG/k0WCzUx3MMq1A11uxvseoOmpIqLOGfkEdmBPQXkKC02vyjZkxF0pGPNNcy\r\nBSCIlZ11UtC5ghcZ2Wg/U4bAogTv/XAnjwzLpp5V7mcepzcBagiFlQkdnvUKNI/I\r\nLkerOmrgKe0rgT+ICALZiq7hIyeuM2uthyD3FaBFf62WOtDD6Jfwkg/3LI7of+HC\r\nGZ99J/xaocq6NFYqzD/9H6n0+biogXUJtm7mKhQO3PeLz/1aDIwLfKqZFr3PCStN\r\nvTWqAdQ=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFYLVFiDd8BlgAAAAAAAVjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4Mzg0OFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAxIoR15PqTSSMns55DdeR97gCwVWRoA6zCYbU66RoYrXuHSpcJM+1tnHN\r\n6B2gITXD0iDoTLpuOvRlM+12v0c8cWdzVoHuRuG0k1ViNgSELeNw8SXSQ6jmvgPy\r\nH6fg+NiKLkjYrJuIp5me3/asqMTeO6MOkeimS67PYerzkMYoC7BUEUacludZswsM\r\nFZnsM/vHCjIpzQMGWyUzju2ANT+J41Wz9AmukpPQFNzyq9566BEU/4MJh9Yg5aSR\r\npzI1gU8r4Y9ABdOgjsFnEm8BSSdlWLgalKevYPMLX/FO2rFufFgcNJq3Y8rnAtJD\r\n0k9jt7isXmJgS+JNfANvY7+jXQaCkwIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUOLjGDtr98qbFC/XuACeceItvo7EwHQYD\r\nVR0OBBYEFOXZm2f8+Oy6u/DAqJ2KV4i53z5jMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAYI9s0aXNjS8k6w/pyYwcd8HBPAjpWHJp7vBNsa9rDbau6raD\r\n+QWjj+hO5OKUkNchKIkK3xUc/iDAMNALDLFqUOaVTeMh5fu/e8Pr1AX1R1c5U1Yd\r\nxExItrFARqTCCIQpLz3cTu/9KA5QgUQlnFlrxA9IHq9G6k3TvTB2AngUzXBhNhl5\r\nb8ya7LK3dhfqf2BQHJ7k1XReCJLYMxI6PaG0F6mWTCFNBbBxgjsXeXfjYv2li33v\r\n48ALT/NXFoOTbAOP4EFfLhMDnx2O6cFOKrYT9O+EU64oJ/0MQDQSq9PVos5J+RW8\r\nvD/h2ycPqMnmsjvpJ4pWJZP+YSxy/HWMwbZt/Dv/UobeQqLCIXGnODv87K+1JVo0\r\nO3c1NtGJu61JyXwW8id8VSQuc2NzEr58rOOGMfU3gHZMSNY2gsFs1gqXC6MjtX9O\r\nipJ+dqr7lgRvpDN9bD2kd9CdOWsxz6PRPxOmbUittmpHdABMZuaeKB/5MnxVrpNw\r\nlYtJYXvKRY1V30kjFSsyLv02YYKb8MI/NfWcjMLw4eaEn//ST+sf+LjB9KF8TxBX\r\nxuBUpQVA/TJX9GEqYMZt557A5u5odSVcac+w0/Nn4E6WzFLfxMr1O8OOOQjzlG3u\r\n5BPqprm+utwEHBCU4iVcZOdnSgk1dm7C5xmmTylFRYOlwVrFSPcyKy0+6H8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAEso8JmcB0l1ZwAAAAAASzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDMxN1oXDTI1MDkxNTAzMTMxN1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1FFhjk/dgVlthN00OKObtbEisXfH40OyapM9KcVlUPnMElPROdKi7XPQ\r\nagq+Ry3QLSSZgNWnkahCSxE81oyudrvlhpR7NpcDPZHsYFw6qsEiirml0hc5awSq\r\n+MtFo9pfnr/zQstb7xg8wjduWjANvO3E34jZbfmCyw4gU4TRPIa9rpaV0N14hQTk\r\nKcBv+S12udS181oWcTc66zxVXUHNK15PRv31jElEYQKX8EJWCe6ccJA/cJD282sR\r\noEhfuUvzXHOeWD1jXH+Eh+mKuhLqiQHPJH7TJRMsN77ndtHH9us3Ak4l9AmGNZZf\r\nwNquVrHAiTw9Ai90btckoeMRn8eogQIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBTX/nF7X/NZN2T02QZU2G6DYuwmyDAdBgNVHQ4EFgQU\r\nlUWMsJMswORfcQ0UpecnwcNjm/cwgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQCb7VpPdQaBSKQdwDpgFquVkVtcKzEAwsVlzIENIrlRsOcBgvZlW9QKwgCd\r\n6xvrF9smidaMzlYuxYQypQ0RQEHDKJ1SJQLc1ZtR7fWf0xHqU0cgX3hktDNyN5t4\r\n7rMtYOUhygcZIxVQ2cpkyLoilwnb/q0Y0jOnA7eo0r9K67TJ9CP2m3ZUApzRaCwv\r\nqQE8eNZvngy+613PU11A2EFuTPXoVNb7S3w8amz+mYYnJCBhxf4PdYA/3DZ0q3FP\r\nfFxqKAbuNtXXHFmYn3BBMGSn082Uq8RsAvj5XEkI/xylDlwG3zT+QaIOrJ/06Toz\r\ncT0ewSlyNAB6LzGp/HLTIffhSNBVX8ILs558r6VcnTE21awdkWqnd3PiPkWADD78\r\nDVSb/7QOsBdZp6BKkcDzTc/uaDGahR55UcapkOMBSbngkomK986ITx3yUITn0aV4\r\nBEVbYQQ6b9l/eNHRosiwL52QPnYl6fJRsl0JuUzy9T5DrwGGnRgKQAOmSWPRTdt2\r\n14MWrxbLFRRwvqt2COK82jPTAiZ3XqYSZzZce9bSDsGSm5VpwWz5+xyBYc3djzKR\r\nThctXJrwftNyZD+LBc/4oLOTYLpDB23eI8rvb6Xfm3A8ANucIq2muavxi1A+eyYM\r\nQXwyB2foIV9yhDIA5I1psyJo+CwM9CcibRTjjNL5ghEkoSDjyA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFSoP4knG2YAHAAAAAAAVDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzczNFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApuAstd+jxOmcAhw1KNXa7fDE4SFe/7SdG4avz6VQqep4ofwJwZTxQJNQ\r\nBC7dybKZO2RBiDzzayV9PCxmK9HPRMRmuj68x9BRyoEbVU1tX4HtiBK+hAGiRNQu\r\nPRTYcSs24CgjI3JrxOjNesp8iE8HUVntN8ueXnpTQLSYOR2TmTGM835tkTplflX/\r\n/zPtZvsXSZz+JssQ9SRcXS2t/fPDpKfNVatOmq4iwtX7Q6IO/WCzAyEzacjAFqml\r\n0/PRYT5O+jiRO+TImZ2RD0CB9rP5CYwN2T504drkKteNaT+FT/teBLC+JraDjh27\r\nv24yknl1t8dXCSS6l/UBGBGVk+gr0wIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUVSrR7NlDI9ZN5GcKVaV9JEKwIbEwHQYD\r\nVR0OBBYEFK55wmtdJYgTBvYHCcOXfHuXjx1VMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAbgp2LNvP1OVFkH9JTg9rTMksjvLIpzaqJehSp5+3YNzGl/TH\r\ni3Kg/rbtQaKErwipeLMhmqWFuT9kB22eeyoBSxx3JTzRmKtcJO47IX0qymW04v2i\r\nI2tVWQigwJWtE08Z16Q3NVdgAox6DDnAvmV8QDlPhWdW0gGcszZqFD47SJltU8JJ\r\n6D+xuDl+xUIA5wQ0987HRo4dSx3Vny1cd98GdMepsOnCpfm7ZQDWJUggp8m8T/jv\r\ngj28G4JNV9nsx3TT5D4xFZ0rXUlQNmhJFesprLt8NqOoKqmP40WdqrpVIxlu5pdH\r\naf/uT89gHO3Zy+iqNbCDRB7zSBtaalaqLvGpE0xV3p+xpjY1CujjvKp+rUrGwA1t\r\n7aNRowd45Dn+kESi95bE16V2k54YbRvgkwQgqyFUiissogOtaOwQIjuv5NUMkKnj\r\nWz1S1nsMTwZWQ20pT+SG9IMWxAP+63fLIMxWXSbwkTo1Q7JVbr7ZnbNjPrzwerrq\r\nTx+CgfCjU2TZ2WaqYnKoGlgjiZkVraQ1JYJkEr5N5+12CnAuVNzn7pMs6HUSxc8Y\r\numBjy+KA0I1XMvFerh+fhEVad7kOgOxqE1uLdXZxkOXHC1N4FQlkI65Padcd8dyM\r\n3g+er8suC1gf9/fWU0AlgIqls48Wis2JISOeSsMAi3BDvCIpp5PHbuNfj7A=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFr7ZWQR1r6OSQAAAAAAWjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzN1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEArMu8k7Kq5y6uDXZk0QxV9Ya5K3Mb0/sCyV4fs48XfAgL3YOHYTZ5o1uB\r\n97VZ/oXuenXaDcoDE18WhOavpqjWHc4eb1QeGGCaB0MoijTLGPzqwWRdByW6l2U2\r\ngFzjKWKtFncIj/VW5S98uCDD8b0SX278XKubkKv0Zn3m1E2wVrTvG8Jc/MuXF0WX\r\ntjFRRJPY3keED1zFNEKjckE4ywTV1atTqnKbmj2rcQucHJ4ufZ89Hel/xLL0bFxc\r\nJnW4Ky8lZ4Q+G9brYexh/iEBcSpNQlfLVJrKZMlAwGPcp1SBGxU9GlSV7kE1LLCS\r\njpS5d6/qw4VA+z5y9HsHN225oBhpAQIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFHrWGYUoeWxxdh5g+PNL76IFQhYdMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAU2IUk2qTwWTtRBKzMTaRxYKvTyvU1nyQLxko\r\nA3304lciVsdA86+jhEkvnCwZeAHoOtYuPeQJdeyhYUhVRDAhhJauvE87FB69gM6h\r\nYUnRqiy+vekLrHB/1x8njoLHmcppjOvBzziOPSqvf8s6O8tJ5AjY3398sm5ckH37\r\nVYHa/+bAYCvEsYmgDGN8L25QvXScTmTthSXHlzsCItPpKFs385dsGJnFD0KcQ5c1\r\ngLmV1bdHnrWyy2mqB819CFWtzhnojtzXxZLuEfTBS18u0qoLdN8KvgB2BvfgZtY7\r\nx+fbkiyoZfnZak0Oj45Z9Z/6AQ1uHGSRadAh19mkcrkPwHktc/3M1PJ69dwZn8Ez\r\nASzYFf8QH58i5uxdou73v+5Bd1m5nmtFCyLC6QDtFYH0pkvmafBx7PwyrgTjq2Xv\r\n7eWL0wXESxzY4HpjMDO36ncsLvzI6j4CyG4cpA8F8+9jwizWqmKMQUWt+VMICsP7\r\nRrzCJ35ogFGWF/dC2hjdjBXjcyLaliR5nE+sDx1PVDdIu7y8oBi60+Vzl0+BSf8P\r\nOdssgwciUpWVP+9xf6SZ7D9BPmLwgIJZ4oPc5K7cTOR6ksQQg8fO44fmOCRfVD/T\r\nDj1e39ijjkmcXUvrcu1sh93vbupLKp4Guruj3Le6iQ4Hla6Pr4znFKCzKk1+RrcQ\r\nVnsaqio=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFOufo2CImJDvAAAAAAAUzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzYxMFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAz2IfhGnsNWpW1cYZrm7f0KG7FjkmtAufsz6xSPNM86b5+jPDUpkOb7U7\r\nj4cWGBVdrYYqWUkziZmWPyl9WLw43KGzaMT3xTnm1xWyok8Z1D/ytHfxFI5t+Xzk\r\n+pcWwIZzuElzEzAQYnVMyfdxD6sM2winZ1ehDpvJeLTPcuTPf5fDYpcrnebODQ+r\r\nnsvq7oU7bHp/jTkGP/2hNzNLR7QJq+rOaHTHDky5yWrsMdgGj0dJXmId6RIfgbeq\r\nJyz7pK0OnoqopPXzZcEQJGNdh9tTh0DWpPGkCWvp4yC2Sd6VSDIApnIpXRn5WNGc\r\n79eeuL9eKvQ5W1zq3/j5HlmwZvPOE+3kPe9r1+WMazNqbhmVk0gUfZX+cnJcy8ZH\r\nqZhjCnW1ihCHzNxMQypQLrnOgVCBkkkRj466iLGDMGL5IyTji2AAp50wMiZuVQX6\r\nwY4kcKqLsjSPpDpHGIie+58/dh9xFgqJzV0kNbAvehRlbwzQnRJWzr1UgZJgjluN\r\nlLpJwTmUIe3I4FzbwrzGMOltYu8XbdFAfyPM4fcfqJwFTF2xI5OYNC3Rcou9OSQT\r\no+ce9/rON//vZNZmQ+TPQ3nkPoKus+JX3EFJbevLeG0IvvC8c2ABwv6cNcvbSSoV\r\nXP+XaBLuXe5A3G+Tdr33bVhKKnbKiravs7sEeKvXVrpDgilOuG8CAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFJbqBZJuLkLM\r\nIH41hmi+LDFoV/teMB0GA1UdDgQWBBRIo61gdWpv7GDzaVXRALEyV/xs5DCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAArPH6tJjsM3VsG3zdh/1Rh3LDz4\r\nDqyUEJEXiM+Sa1kCncVvIqI5GkFKGM3Ur3hdx6xxe5F9gPvUdL22Qf0DLaOclksk\r\nO2FABXqDRv0P7k5yyryzTM/RmLhleut3Fc8BUdfrkmif8Znyxp12sRxK0UgEf6iI\r\n+dEZugVpwAl8IRUk9O201Q87q3zI30NgPT2BJiDycKaKQJF634qatubvL28JaiOd\r\nk3uxWfcqKjO0oeSJ7pxgAiH1rCah7UN5T2d3V4AmDQGLPo7lwX1SKZewa10PnF0X\r\npjE+8welxOK+4pEPl2kRdMDpr9/XPXWpAPt2h67Z0j7x5c7nDU/eZ3UjRkJePoIQ\r\n5aGZuxZ2diziI4JWhbW+kF9M8T0CM1EUIcQV+8wvvualM1q0IN+SJ1X49tt8n3y5\r\nfEAur2599a16z7zg4uF1xI/SafWXMjC8MObCHjR5xodSQ7IxvGyl+6uIkENsiQBF\r\ncuM55MMUELl0VM0+n7Kv5K2Ur+heLzNlTTy2eoiU048g8iQmZzP5C9y4hUE3rYgJ\r\nRxP9ovHl2km91RDTei9aANUGIB8U2uFA7pxe0G8Kp8WSF0a2DtZu7sf2lGjKvP+7\r\nJGaMrJn2bJW6cDEPgfyKCio8kCVtFg7QTtkaZjF5J6AIB0B7aHNPKlAE2T8O2/Z7\r\nJIvM+ijPG5W96tZP\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFjSjQKPPAEB6wAAAAAAWDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4NDAwOVoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA3Pi3nd+o2ItxXWvhyaIDXRbrxgB1wqI0wK/wgC3vs2vSbIHdSuOrtac+\r\nmR6Ag8rE69QQOykN2KJIQI53O0egLWUqjDMa43Fkh1EWTAD0B6snyV91Lt24YPPq\r\nOyJZLhGCtYJoQfPQxZjgW0PknDvWCGIBPFacj86c84QzQdmNBMPrObC21S/ilK+H\r\nGjwcYx9Z3dSeK2CPLLkb3C0HzWWLBL5lFHrdM7qphSAJ07g8/ggis/b4aHdWOlN3\r\nfyySWbuTLQnX8J1XZdWGc+7Z60gzt2jwUc2kgpjcpHvV7QYmy141rjiQyFDNUf7x\r\nFBeFIpLDPoxcfAsOo/dtVfxp/dNMqfAEC27QrUogtIUOcCaSZ5r09ECOuBW6Mood\r\nDIx4bUEhXOJmZBtpzRXhVVKTC7Aqs3PTrPehspCxOclx7c8aESASwj6SSWpDQi+x\r\nrKm2DgTIgvVIdyBNdKhxhGNyl1t9jTEMAdwDmY6pN0kMLCEdM6v9fG0nvtFFLU/m\r\nj9Ojh8Rtf3YWiUPd2cI62tVoXckaP3TbdCNmGysT8ShFNEypEINWIl49U7V00Iec\r\nOveCbkfsnKnT/o69znrWUH+Pt65GxrqO5A+To6WU83OqLxljS/cyBTQmrDh70Dgz\r\nKXDXN3JVW93RLoXuNyAhd1nUOjKOI2tmPhEC4Cz7lqmVxDsQaZMCAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFDrHw8rI3g3T\r\nksAnici+l0dPRWlgMB0GA1UdDgQWBBQ5cV2pFRAtxN9+L1luQE3A3+82mjCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAI68ze1N9ZqKBI7Q7BXGlc0k99wW\r\nCoCZu0m02crvYeITKUC/eizH7s6Sx2Kk5Hnzz0Rzc8G8NpiWEfp7ppKeP1jOMv11\r\n7P1KB6IHyRLdW7vAIBiJy1qhbLAxseR7xkvDKv9yjZYL9Q7XtlSgrd9NuEiuFsfj\r\n0ANzVf/Ea4br00gGc8ALfnvgGE7eUdBNqWKTzHcQREdjJPRMUqTYqcvd4qQbRXZt\r\ncXLt4Fr3pXcwG1UExrz3TP4ueyrqGot/OFDvMihs6Tak0qjYygT2dC3bEOBg3GSQ\r\nDdQVzBFO98f62/l51TBlWizuw3D4/dKIPfQU1Qt7sr9e7CLbecoO8EVtyt/yGRr1\r\nD4BPBGyEzC6QoqCo5Nh27yG+DxFtAGdm/vLaFeJOVM3q2d6nL1FvNzlHTHfOYPJ3\r\nNwHB30X9TpdRqoBLM5UC0m/ybKj4ygXAZBlkJXMO/bjtpqyidJ0SaFuE8EdV9YoJ\r\nKUmBw1ZuZd5GHbc+Ilz82WX+JWZ0efU/f+75Ywvntu/3s0OsnpVoqrqM7TDdzE0d\r\nwRiZ+mvtgIwp85+et1iEdaWPj+d6LfJxpDDCPhaqh9hnNIkZFptndwDwRE2MV9Wr\r\nlUCSA96/2ubHsKt4E2D96KvNog6MKdyEGz1sZep1yZKqE4cnNzGNBGRel0BRa2MK\r\nyTOQsCbnpQGhEz0m\r\n-----END + CERTIFICATE-----"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFlFSsCTnaMEFgAAAAAAWTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzM1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA0E8VPmTCi+s/ukALr8kiz9n0QMveOlaFztd/3QikdEPvOujCuE/CXDKt\r\n0KhyGBUshmHGEC580aoe2Ze2gBJ/Dhs8FjdCjH4IyWU22QOervNkIc2Xd3EMxVZL\r\nYmWmDp5yfa0DwHqsqLq1PLwyk9BfYhh2gp9Dp+vECu4FzvVoZd73UaTpvcQKDsXA\r\nTVR43QC8AiL2AiHgOB3xE75MR/kI1OA7mTaOK8uZbQZCtyG1VMtNL+Q4Di0nB9cD\r\ntqfQj1/UCA76Nr9a7p/TUnck94zlsHE5RVGvDy3GKpa4cmCb+nRpF+ybZjuw8fPT\r\nCY5JGTLZreJMgk+Tej7iN+BYyn4Q2QIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFPFGaMbxw/ArLX2LauGy+b41/NFBMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAD6YslCi5IxgKWQYVzHClxGTpTXEarOPDACuQ\r\nnZIgM4hbk0rMqW4aHFd+paZmMUvNU0HWtIq7aAbNZGCdTrb6g9xjQKrdivWr24BZ\r\nBDxlYkU1tNvdQmafd/RESZ+TpElbuBw2EW0qtK2K+BfL1fTcwpIWRoqWcZUc/CzX\r\n43yuA3vE9sw7/HCDOEQF+QW12B6LDt2Y6DR2y8ZjYsIM0X99mgCE8/HYL4AR3+mA\r\nHjlncC3qlXWRUk46kz2yU4gu0k4P5vexNuGvU9uHvmqQERhhHYkAiW5pwCNFdZDw\r\n95vcnWocRk5TaOPp74v06msx58qS9Re9Fz5xwp6dGGqvWgcF9UJtVVyXMGYB1/1+\r\nyd5n8VpvHVWlrPNpcT0p9YLeou/HKZIiekolUKL6SqCbDFwSUMPM1xWSK6RbphmT\r\nJZdAoKKLq7c/4bFPOxeKvBjT6PrWP64ktWN1Z+AYQlBp1rK7A/ZkAOh8l+17K4VJ\r\neb1whd4SmNSnZbv9jhOeWhrbRsxmFJ1SFHhoBhS3Q/WZWMJtLu2Hv1RHnqRgLD3y\r\nlaC9qyj44pXka/MiLauGl0qjRsO6i0ZV/nU43/eZt4EhWewfmXRnfNlXA/u6abVS\r\n3lkNTlQaJAmTijbKk4JI0qQl4e+xZloOXJVNiqKgYSh3N93Bi+8ROZCLqqpwrO+C\r\n8C5Y9Bk=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIFVjCCAz6gAwIBAgIQJdrLVcnGd4FAnlaUgt5N/jANBgkqhkiG9w0BAQsFADA8\r\nMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAwDgYD\r\nVQQDEwdhbWVyb290MB4XDTE2MDUyNDIyNTI1NFoXDTI2MDUyNDIyNTcwM1owPDET\r\nMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEQMA4GA1UE\r\nAxMHYW1lcm9vdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALv4uChY\r\noVuO+bxBOcn8v4FajoGkxo0YgVwEqEPDVPI6vzmnEqHVhQ1GMVeDyiRrgQT1vCk1\r\nHMMzo9LlWowPrzbXOwjOTFbXc36+UU41yNN2GeNa49RXbAkfbzKE/SYLfbqOD0dN\r\nZLwvOhgIb25oA1eAxW/DI/hvJLLKh2SscvkIyd3o2BUeFm7NtyYG/buCKJh8lOq8\r\n0iBwRoEoInb0vhorHaswSMmqY1g+AJndY/M7uGUqkhDGBhLu53bU9wbUPHsEI+wa\r\nq6WypCijZYT+C4BS5GJrEPZ2O92pztd+ULqhzNRoPj5RuElUww7+z5RnbCaupyBY\r\nOmmJMH30EiRSq8dK/irixXXwJraSywR5kyfmAkv6GYWlRlxFUiK3/co47JLA3TDK\r\nN0wfutbpqxdZQYyGfO2nZrr5JbKfSU0sMtOZDkK6hlafV++hfkVSvFfNHE5B5uN1\r\nMK6agl1dzi28HfJT9aO7cmjGxl1SJ5qoCvcwZNQ2SPHFdrslcwXEFOMDaEzVOA3V\r\n7j3+6lrT8sHXg0sErkcd8lrBImfzhLxM/Wh8CgOUNeUu3flUoxmFv3el+QWalSNy\r\n2SXs2NgWuYE5Iog7CHD/xCnoEnZwwjqLkrro4hYWE4Xj3VlA2Eq+VxqJOgdyFl3m\r\nckSZ08OcwLeprY4+2GEvCXNGNdXUmNNgk2PvAgMBAAGjVDBSMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEBMB0GA1UdDgQWBBQpXlFeZK40ueusnA2njHUB\r\n0QkLKDAQBgkrBgEEAYI3FQEEAwIBADANBgkqhkiG9w0BAQsFAAOCAgEAcznFDnJx\r\nsXaazFY1DuIPvUaiWS7ELxAVXMGZ7ROjLrDq1FNYVewL4emDqyEIEMFncec8rqyk\r\nVBvLQA5YqMCxQWJpL0SlgRSknzLh9ZVcQw1TshC49/XV2N/CLOuyInEQwS//46so\r\nT20Cf8UGUiOK472LZlvM4KchyDR3FTNtmMg0B/LKVjevpX9sk5MiyjjLUj3jtPIP\r\n7jpsfZDd/BNsg/89kpsIF5O64I7iYFj3MHu9o4UJcEX0hRt7OzUxqa9THTssvzE5\r\nVkWo8Rtou2T5TobKV6Rr5Ob9wchLXqVtCyZF16voEKheBnalhGUvErI/6VtBwLb7\r\n13C0JkKLBNMen+HClNliicVIaubnpY2g+AqxOgKBHiZnzq2HhE1qqEUf4VfqahNU\r\niaXtbtyo54f2dCf9UL9uG9dllN3nxBE/Y/aWF6E1M8Bslj1aYAtfUQ/xlhEXCly6\r\nzohw697i3XFUt76RwvfW8quvqdH9Mx0PBpYo4wJJRwAecSJQNy6wIJhAuDgOemXJ\r\nYViBi/bDnhPcFEVQxsypQSw91BUw7Mxh+W59H5MC25SAIw9fLMT9LRqSYpPyasNp\r\n4nACjR+bv/6cI+ICOrGmD2mrk2c4dNnYpDx96FfX/Y158RV0wotqIglACk6m1qyo\r\nyTra6P0Kvo6xz4KaVm8F7VDzUP+heAAhPAs=\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{},"provisioningState":"Failed","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thvankra-nova-billing-sku-Standard_E8s_v4/providers/Microsoft.DocumentDB/cassandraClusters/testBillingskuStandardE8sv4","name":"testBillingskuStandardE8sv4","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2 EUAP","tags":{},"systemData":{"createdBy":"thvankra@microsoft.com","createdByType":"User","createdAt":"2021-10-08T18:39:52.9937122Z","lastModifiedBy":"thvankra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-08T18:39:52.9937122Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"testBillingskuStandardE8sv4","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thvankra-nova-billing-sku-Standard_E8s_v4/providers/Microsoft.Network/virtualNetworks/vnet-canary/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAE5Hd9yskSH1BgAAAAAATjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDU1OVoXDTI1MDkxNTAzMTU1OVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA5UFGOQgmohqJHkbMMcN4cnK+mAoScYUAR/njrD0x/GyFeTko+QXMU1JJ\r\nIePmVcugmyO4xX5ITShZWy+/qPAWy3vwT6HzBdFq5eTGbkbFCrQdh5w1+jwOApMe\r\n9ZDlMDO+RUtJe1XxWqi3KRY0e/pJmpOk4IUEjx6wxvv5MnSWhMa7aepnkuCS8lvF\r\nNl9D5oUGIYvoDUgVMQSBazQP2zjRunMT9JOopFKnZE+L7NY+XDtla3I1uZeMeakA\r\nfqkNjx6lkUIgcHPhSMy5XHBpOeFdSDjBA8dNk6E3VSlLzvPcHdaHI7QrmK/43wzf\r\n+kHpDdTXx8EdOqm+pLHoKLWcjw/P8O9RAMiXefxGnQKNuP8T+/prskR5esucJQkj\r\nrWSu7W7YycmIg1rPCd7Qw005/sc58eLPN+Xrj/Aw7RSR0A719CPZMjoSfKTphSEK\r\np+ZB+5j/V3VEzjGbL6XFUezFfaIZ+A7ZtkaEQYDH0fVVziPnhQhJB+Uym7a5arB3\r\nqiMMw7Yjos6iWkkOaqhaCHuN1zC374xsBec9mrJ7bfuLTNtBEKC1PhdZrJM3UDCo\r\n76v+3mnKouN/7vyVkbiLNb27MXRigXFbO02opR8prTkvv3af+iq6+xjmVWZhsILI\r\n0HIBk9/HoMZCCb9e95RQVmVwVNrwa24neVWl+JEw50sqLMapsGkCAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUOsfDysjeDdOSwCeJyL6X\r\nR09FaWAwHQYDVR0OBBYEFEKY1e9GMTrmL0fNVVel5jUfu/yRMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAuaX699r+ayL7JphKgdiDuy4iPTwf7fTkUsLx\r\n7ixBzvnUrUASdS9GJEkpsewdipRfMycn3UXatnQ6rudCqBgsExJzHBGlokhvVaZK\r\nue0oIlJstnKQDOJCpJem9NkvwALP5z3WZoqYf4EaaQXUkMAJJ2qxw+mksSBEu+MJ\r\noxgbStKv98q28ypOVLjaFNH/VbtAG/rIcqNyOdjAPcgMcohe7lGO1WQtFxPxtzvS\r\nZfgao/ZjWeNDFzy8FSInim1q69Syl3Y4dzeAlG6PiC8t7upDQzo2AJxI1tW0AkKV\r\naJIS9rGZquLN5MTbYozjEyzMvSEYFEpx+7YKQGayHz3eCGH4BzD43YPt20Cm4BMN\r\neyV64+d9PufCA2tzrIQ+VJhsZKb6qRgV+Bp6AfpgeyU6oRkqsWKJyKyzp6o0D+Si\r\nq3gYJdD3W0+X1jUJcQuywYLRg78rVE3A6VJ7RIEjXARQV19hJvxchCoqfbny/0bX\r\n9Bb3Rtr1OAYhUml6Z6JdfnH33KfEJvFa4wlKRBxpuw9gMG5ydOsbZ3YIJDWccTLH\r\nQZWJk/Lakd/+uLPWOzzWQCf7nPapwSRjtfRRLZoX49PIQkrGM3dpLLGktC+sg8bc\r\nvQ2bO79bKJazcsKuNK0dOpepIBA1mMD81DphYmc/RMF9KXKdKz4Ugh4HNqkltIsG\r\nEtaYPCM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAE2e+Zx9LtWjEwAAAAAATTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDUwOFoXDTI1MDkxNTAzMTUwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1RZFKUUXNWXgbh7dm52Irso1hGPDEL9ZZXYz0civ0AAlDu9P/1okXVpc\r\nOPQnRxE7e7O8roTSctA4MTBGFIjrCythVzk6MJC1bgGv7qwCV6o5P4zVSxQrHPx+\r\n2DPDIZlt3UV4RNLuKVvSZdzQt1UsxUOxvTZ/0mO22d6mcspf3I5Xt5h+7WlTgHAy\r\nWvvlpuX7LR8yTK/um4526bdhUG98I2nEURH2vnNSt3/Dbt1R6qoPMja0HhghuOtY\r\nt7Z77nyI2gOY2fRu3oM15Xqe8b3Qwx5IsSV/pTWJ34VPz24TfUmCQOVtu/m84ayA\r\nwSZ754d+JvkyPSdINV3tuLtbo/QVewIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBQbRewlXgZoN1BD7V/nign/FlWETTAdBgNVHQ4EFgQU\r\nvZx3N/n1PWYwyjVonISvG5ZVEL4wgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQBFtFQSE7TjElKEmwHyydrA/UEAzho7rEMy2lvNr2tgX/7WVWDqmDrTK4La\r\nm6/MGOUBYbF334Ywvprij/UoSpyMEq5HgXiCBxOgyUPSZx8x+XyINgCujVXRk9za\r\nPh1lXpYCV2qhIYAhazeprDYzX2im0Jwe8X/Xsl0kzgs3TE7medDW9CVEYS+T7SqG\r\ntmXhOg1FW04yUM0+Z73ZQGF5oqnE76kzpLvfn+YWA6KbLfH84yTpqylAD5UFvfeW\r\nMRoNUUckpsteddNba90soUzxeRwU0Loxj5Qsds2gB0tSIpVh330BxEDTIJ73FZIv\r\nvURqyoDor+Eu1NOVk3sdCM5nXuN38dc0a9fsSRoJkbQYTP9UNJPcUDO3kZoYWNxD\r\nWrn5J/ltaxPc1o7+USSm02C023HIrWBJkfnepIZKV8m7wkddcygJ6FQkxFU+NQUW\r\n+a91tIw3HTEHvmNlJddPmjgnE3k6GS1NLOC5IV/s1s4sSME3QYQAt+zr5TKRdZ06\r\ndBOSXrz66pVpkR2wuAvlCEuFk7gaBrKz4j+3wJ9CPhETezARvgpzQCw9es9y2qde\r\nO1rHPYa6IRtmjcVDvxfmjei66bQwoapDH/OMS6sPqqqn53l9g4HDDgWywWn9ad51\r\nL5NAvQYhHwSCG0E2Os5mUFYM56ZVA4WHVUn7NZsAXGnDtIwlPw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAACbGTID3uXpE1wAAAAAAJjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE4MDMxOTE4MjcwOFoXDTIzMDMxOTE4MzcwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAvBsRcCD4Z38LQPG73ci9jIpQv5tVQh8lLrcQ9lO2lH6pUVWi7T7jCyX/\r\naCSmit7fT6seN/kf6LP0hpgsU/wxMMv4c4+w1M16EiRc6GPJtSPNszl8ZNAzZj39\r\nxeJnAMhPzeABRLgzYgLH+9R3k8sIJMhSjcUfp63GAhKtdqhQeTOs7m87REtmAdo7\r\neZh/Ubn4HR1ZxAswmoWmMxMZw1KZj87395IxE3Ybj0m/V8dyskpxWdAzkvGeO//l\r\nb4FfAHVCCix9wsijqomj+jeJPHR/AF/5+MZXjoNDs6/+UMdSrEqa2fi8910J6ogL\r\nSMdL7NdV77U5551wZxeUwSEHUc4qkQr9cFAdHcdYiMnIrU28zk7O3yQdsyWdrTqx\r\nTbkoYn36Ji+aSyzs/u/Zh3pAWw9IvLaoq254Rpf1SWsvufE2YXaP6kUmvOE9Qrnt\r\nQ138fwe9CmPUT9I/cM0v16BDvELEH3KGsWez8WRFA5RAB5pPDKjMyZ7mNl+0+EDv\r\nMq+KYjtc9uWJoRsRe8mDnVt2JGRBazTCFd/m5HGywdUvg/fZyVfBrvsRhcahMXn+\r\nb+a6kw+gMY29dcNutHNl1ZuKbwUuvp0ShWnauFVqMSRP6kSgXjzM0Oez2CHEtnX7\r\nNTKy9+eXsqxkzVXop81HCR7QCDlKPkc78IRETKfQA/nHdu2iOd8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQonG1RafqmxKhDxP+NNvoz\r\n3/1FMDCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAJFaZ9bHSEXBMKUi\r\nxLJgRr0yPOBbkZAHGsXGsAAdXnsAcmRZnoMsJZwHJY9qa2SDdjWzCnEuk50KJ0Rm\r\nvePgWmDtQWwyfFT//JIccaFgxYsU2SjdHEi0DmRElJtLkYQorDjkqn8s2T8y95f0\r\nmdcNme7cQ8PsjawgV1hb7r1I0bRh93M4pDzRt0g08RoFtMGuqRdU3roMDbuid5Hj\r\nBnoT5MdJlYzklABw+JPOIFeqZ0LMq/RPyk8Dpzo7m2dSc78GitdNnWxj4Ku6l8lb\r\n0OHX3BL1eVKyKi8Vta3BjpzWuMQompgdzp1Eh+mDyfKV/+dlfIEPJI1stEHIEKWR\r\nR5yt35+RGXrmsmAwTZT5mcJk4JdAMhVnRnyWvxPzieYCR9DcIaT6+NBBYzQegOG+\r\nIMnLpnZp6qhbG7Nq9MXCqRY2ooojLCTLTCx8R2cqdYonJpB4lSkYMFYbuV7HoiNr\r\nXdZm0gMRi2DmIaZ7cxXUn0BmZd/lXSXNKdxwHKecu0F8ByT1Zlg3NgIhCb+6SDYB\r\nlOv5YhnwSd00aUaSSYc2dKJmR2yfCKT5Li9wdtjlB6rYIb7vHRl3x98OIVE+O20S\r\n1jQEqRLzkaDIWOA8D9VeuuIW05tahms61dDi5gx7M/ALhFa/QsbkCJXRf07Pe4ki\r\nHE/1Nk3cohSibWYZqHssdutHBd+Q\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAEnEBGqOfE69FwAAAAAASTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDA1MVoXDTI1MDkxNTAzMTA1MVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAw9b7oiITgLVh8Yry44fRHl/xMuYtsI0Cg944jlh0S5ljKgUEMvt8/S63\r\nRH9+9eXvbFN4L9EL2+RDhWd5hGyg4gQeKtxO7D/+JUoTIamIl4pXTxhO5oORnS9k\r\ntWp6lc1OfpYnkgzrkFHICKggDtCpQxp7cMtM8evEvY/7WvmJDbAsgSRlBIeyVZqU\r\ndfw4ahzvsNmMfDGx2JBKgB5mndVGyg96yCHy5+7XKOkkcr+NKHdnBM3k546rGlCV\r\nErgPVuUkRxrwIa3xD9BRewoihWG7sbuxny49CrdbDi3WqK0VPSJGZ2y5ipUTwndi\r\n/+QhiK5expoHO0hl20DwRgq74qB5zSs379PcTQz59OvUDMi2fiErDYnCT75X3w1b\r\nh2uGBFIwonYXGHU1s/SaxQlXErGplgkLv/tBPAXu8sk+qANHaY1EfPwpPfOXjIxl\r\nRT95moW0IP+CPmhV0g2ZPKNn0mIRPpf8IzI5O4pLe6xfXDekQnNcGaBY9nN9LBO3\r\noi7pBBNObi17J/ebVg2rScg+KAWVVf09iLF2inpoFxKOJQz//poXo2fAvYVXnXJm\r\n99qJvY8gFyOyg2Cr2x/Wp8yw/u7H4DztXuFMYuPEVpR9/EeLP2bzrpdbJpj+SPT4\r\nU0OmtjVtKNR4aOBNBVWmzxV+WKRBfpkq+pjpRMkgFapXWtjlXV0CAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUluoFkm4uQswgfjWGaL4s\r\nMWhX+14wHQYDVR0OBBYEFBxS0IHKkOkG4KzpGA07z01trd55MIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAa08V3/BsJsIOjn2Qu6zUb0GosfdvggVX36PY\r\n9OZyOn5d2+tPPjG2re+uovdpuLKx1YH0iBX4kIL05yObqKMAv+YO3Ihj4MkcYy6A\r\nk9DbHyQTYoeSfaryn6yo7kLYCz6E+li6HJ4FVx13PxpwqDXWUu+Yf5Kszj56IqHx\r\nTI9LV1ZbqmZYk7fQIPETYENkE23ypgh5snRtqSZYTw6HASkHI4E7NgFkOATnIcs2\r\npLGzcc9vc/QYlj3PT3ciGdpGkz8l/A2MMqC4eleYFTBSX9rNNG0tf0M+5fVF417D\r\nmtqDlglm9bWpgrdLpmcj28f3766EBJBq9zza4M9dAGBWBQx0c8BR9saGATd/U8lY\r\nmlTDhnRdqJvvTbtPzFFmTF5jrANky12jKlaHHTyLETDu6OeDbVEyJNuhj0a+cQ6r\r\nZwYCG/k0WCzUx3MMq1A11uxvseoOmpIqLOGfkEdmBPQXkKC02vyjZkxF0pGPNNcy\r\nBSCIlZ11UtC5ghcZ2Wg/U4bAogTv/XAnjwzLpp5V7mcepzcBagiFlQkdnvUKNI/I\r\nLkerOmrgKe0rgT+ICALZiq7hIyeuM2uthyD3FaBFf62WOtDD6Jfwkg/3LI7of+HC\r\nGZ99J/xaocq6NFYqzD/9H6n0+biogXUJtm7mKhQO3PeLz/1aDIwLfKqZFr3PCStN\r\nvTWqAdQ=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFYLVFiDd8BlgAAAAAAAVjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4Mzg0OFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAxIoR15PqTSSMns55DdeR97gCwVWRoA6zCYbU66RoYrXuHSpcJM+1tnHN\r\n6B2gITXD0iDoTLpuOvRlM+12v0c8cWdzVoHuRuG0k1ViNgSELeNw8SXSQ6jmvgPy\r\nH6fg+NiKLkjYrJuIp5me3/asqMTeO6MOkeimS67PYerzkMYoC7BUEUacludZswsM\r\nFZnsM/vHCjIpzQMGWyUzju2ANT+J41Wz9AmukpPQFNzyq9566BEU/4MJh9Yg5aSR\r\npzI1gU8r4Y9ABdOgjsFnEm8BSSdlWLgalKevYPMLX/FO2rFufFgcNJq3Y8rnAtJD\r\n0k9jt7isXmJgS+JNfANvY7+jXQaCkwIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUOLjGDtr98qbFC/XuACeceItvo7EwHQYD\r\nVR0OBBYEFOXZm2f8+Oy6u/DAqJ2KV4i53z5jMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAYI9s0aXNjS8k6w/pyYwcd8HBPAjpWHJp7vBNsa9rDbau6raD\r\n+QWjj+hO5OKUkNchKIkK3xUc/iDAMNALDLFqUOaVTeMh5fu/e8Pr1AX1R1c5U1Yd\r\nxExItrFARqTCCIQpLz3cTu/9KA5QgUQlnFlrxA9IHq9G6k3TvTB2AngUzXBhNhl5\r\nb8ya7LK3dhfqf2BQHJ7k1XReCJLYMxI6PaG0F6mWTCFNBbBxgjsXeXfjYv2li33v\r\n48ALT/NXFoOTbAOP4EFfLhMDnx2O6cFOKrYT9O+EU64oJ/0MQDQSq9PVos5J+RW8\r\nvD/h2ycPqMnmsjvpJ4pWJZP+YSxy/HWMwbZt/Dv/UobeQqLCIXGnODv87K+1JVo0\r\nO3c1NtGJu61JyXwW8id8VSQuc2NzEr58rOOGMfU3gHZMSNY2gsFs1gqXC6MjtX9O\r\nipJ+dqr7lgRvpDN9bD2kd9CdOWsxz6PRPxOmbUittmpHdABMZuaeKB/5MnxVrpNw\r\nlYtJYXvKRY1V30kjFSsyLv02YYKb8MI/NfWcjMLw4eaEn//ST+sf+LjB9KF8TxBX\r\nxuBUpQVA/TJX9GEqYMZt557A5u5odSVcac+w0/Nn4E6WzFLfxMr1O8OOOQjzlG3u\r\n5BPqprm+utwEHBCU4iVcZOdnSgk1dm7C5xmmTylFRYOlwVrFSPcyKy0+6H8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAEso8JmcB0l1ZwAAAAAASzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDMxN1oXDTI1MDkxNTAzMTMxN1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1FFhjk/dgVlthN00OKObtbEisXfH40OyapM9KcVlUPnMElPROdKi7XPQ\r\nagq+Ry3QLSSZgNWnkahCSxE81oyudrvlhpR7NpcDPZHsYFw6qsEiirml0hc5awSq\r\n+MtFo9pfnr/zQstb7xg8wjduWjANvO3E34jZbfmCyw4gU4TRPIa9rpaV0N14hQTk\r\nKcBv+S12udS181oWcTc66zxVXUHNK15PRv31jElEYQKX8EJWCe6ccJA/cJD282sR\r\noEhfuUvzXHOeWD1jXH+Eh+mKuhLqiQHPJH7TJRMsN77ndtHH9us3Ak4l9AmGNZZf\r\nwNquVrHAiTw9Ai90btckoeMRn8eogQIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBTX/nF7X/NZN2T02QZU2G6DYuwmyDAdBgNVHQ4EFgQU\r\nlUWMsJMswORfcQ0UpecnwcNjm/cwgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQCb7VpPdQaBSKQdwDpgFquVkVtcKzEAwsVlzIENIrlRsOcBgvZlW9QKwgCd\r\n6xvrF9smidaMzlYuxYQypQ0RQEHDKJ1SJQLc1ZtR7fWf0xHqU0cgX3hktDNyN5t4\r\n7rMtYOUhygcZIxVQ2cpkyLoilwnb/q0Y0jOnA7eo0r9K67TJ9CP2m3ZUApzRaCwv\r\nqQE8eNZvngy+613PU11A2EFuTPXoVNb7S3w8amz+mYYnJCBhxf4PdYA/3DZ0q3FP\r\nfFxqKAbuNtXXHFmYn3BBMGSn082Uq8RsAvj5XEkI/xylDlwG3zT+QaIOrJ/06Toz\r\ncT0ewSlyNAB6LzGp/HLTIffhSNBVX8ILs558r6VcnTE21awdkWqnd3PiPkWADD78\r\nDVSb/7QOsBdZp6BKkcDzTc/uaDGahR55UcapkOMBSbngkomK986ITx3yUITn0aV4\r\nBEVbYQQ6b9l/eNHRosiwL52QPnYl6fJRsl0JuUzy9T5DrwGGnRgKQAOmSWPRTdt2\r\n14MWrxbLFRRwvqt2COK82jPTAiZ3XqYSZzZce9bSDsGSm5VpwWz5+xyBYc3djzKR\r\nThctXJrwftNyZD+LBc/4oLOTYLpDB23eI8rvb6Xfm3A8ANucIq2muavxi1A+eyYM\r\nQXwyB2foIV9yhDIA5I1psyJo+CwM9CcibRTjjNL5ghEkoSDjyA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFSoP4knG2YAHAAAAAAAVDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzczNFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApuAstd+jxOmcAhw1KNXa7fDE4SFe/7SdG4avz6VQqep4ofwJwZTxQJNQ\r\nBC7dybKZO2RBiDzzayV9PCxmK9HPRMRmuj68x9BRyoEbVU1tX4HtiBK+hAGiRNQu\r\nPRTYcSs24CgjI3JrxOjNesp8iE8HUVntN8ueXnpTQLSYOR2TmTGM835tkTplflX/\r\n/zPtZvsXSZz+JssQ9SRcXS2t/fPDpKfNVatOmq4iwtX7Q6IO/WCzAyEzacjAFqml\r\n0/PRYT5O+jiRO+TImZ2RD0CB9rP5CYwN2T504drkKteNaT+FT/teBLC+JraDjh27\r\nv24yknl1t8dXCSS6l/UBGBGVk+gr0wIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUVSrR7NlDI9ZN5GcKVaV9JEKwIbEwHQYD\r\nVR0OBBYEFK55wmtdJYgTBvYHCcOXfHuXjx1VMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAbgp2LNvP1OVFkH9JTg9rTMksjvLIpzaqJehSp5+3YNzGl/TH\r\ni3Kg/rbtQaKErwipeLMhmqWFuT9kB22eeyoBSxx3JTzRmKtcJO47IX0qymW04v2i\r\nI2tVWQigwJWtE08Z16Q3NVdgAox6DDnAvmV8QDlPhWdW0gGcszZqFD47SJltU8JJ\r\n6D+xuDl+xUIA5wQ0987HRo4dSx3Vny1cd98GdMepsOnCpfm7ZQDWJUggp8m8T/jv\r\ngj28G4JNV9nsx3TT5D4xFZ0rXUlQNmhJFesprLt8NqOoKqmP40WdqrpVIxlu5pdH\r\naf/uT89gHO3Zy+iqNbCDRB7zSBtaalaqLvGpE0xV3p+xpjY1CujjvKp+rUrGwA1t\r\n7aNRowd45Dn+kESi95bE16V2k54YbRvgkwQgqyFUiissogOtaOwQIjuv5NUMkKnj\r\nWz1S1nsMTwZWQ20pT+SG9IMWxAP+63fLIMxWXSbwkTo1Q7JVbr7ZnbNjPrzwerrq\r\nTx+CgfCjU2TZ2WaqYnKoGlgjiZkVraQ1JYJkEr5N5+12CnAuVNzn7pMs6HUSxc8Y\r\numBjy+KA0I1XMvFerh+fhEVad7kOgOxqE1uLdXZxkOXHC1N4FQlkI65Padcd8dyM\r\n3g+er8suC1gf9/fWU0AlgIqls48Wis2JISOeSsMAi3BDvCIpp5PHbuNfj7A=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFr7ZWQR1r6OSQAAAAAAWjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzN1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEArMu8k7Kq5y6uDXZk0QxV9Ya5K3Mb0/sCyV4fs48XfAgL3YOHYTZ5o1uB\r\n97VZ/oXuenXaDcoDE18WhOavpqjWHc4eb1QeGGCaB0MoijTLGPzqwWRdByW6l2U2\r\ngFzjKWKtFncIj/VW5S98uCDD8b0SX278XKubkKv0Zn3m1E2wVrTvG8Jc/MuXF0WX\r\ntjFRRJPY3keED1zFNEKjckE4ywTV1atTqnKbmj2rcQucHJ4ufZ89Hel/xLL0bFxc\r\nJnW4Ky8lZ4Q+G9brYexh/iEBcSpNQlfLVJrKZMlAwGPcp1SBGxU9GlSV7kE1LLCS\r\njpS5d6/qw4VA+z5y9HsHN225oBhpAQIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFHrWGYUoeWxxdh5g+PNL76IFQhYdMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAU2IUk2qTwWTtRBKzMTaRxYKvTyvU1nyQLxko\r\nA3304lciVsdA86+jhEkvnCwZeAHoOtYuPeQJdeyhYUhVRDAhhJauvE87FB69gM6h\r\nYUnRqiy+vekLrHB/1x8njoLHmcppjOvBzziOPSqvf8s6O8tJ5AjY3398sm5ckH37\r\nVYHa/+bAYCvEsYmgDGN8L25QvXScTmTthSXHlzsCItPpKFs385dsGJnFD0KcQ5c1\r\ngLmV1bdHnrWyy2mqB819CFWtzhnojtzXxZLuEfTBS18u0qoLdN8KvgB2BvfgZtY7\r\nx+fbkiyoZfnZak0Oj45Z9Z/6AQ1uHGSRadAh19mkcrkPwHktc/3M1PJ69dwZn8Ez\r\nASzYFf8QH58i5uxdou73v+5Bd1m5nmtFCyLC6QDtFYH0pkvmafBx7PwyrgTjq2Xv\r\n7eWL0wXESxzY4HpjMDO36ncsLvzI6j4CyG4cpA8F8+9jwizWqmKMQUWt+VMICsP7\r\nRrzCJ35ogFGWF/dC2hjdjBXjcyLaliR5nE+sDx1PVDdIu7y8oBi60+Vzl0+BSf8P\r\nOdssgwciUpWVP+9xf6SZ7D9BPmLwgIJZ4oPc5K7cTOR6ksQQg8fO44fmOCRfVD/T\r\nDj1e39ijjkmcXUvrcu1sh93vbupLKp4Guruj3Le6iQ4Hla6Pr4znFKCzKk1+RrcQ\r\nVnsaqio=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFOufo2CImJDvAAAAAAAUzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzYxMFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAz2IfhGnsNWpW1cYZrm7f0KG7FjkmtAufsz6xSPNM86b5+jPDUpkOb7U7\r\nj4cWGBVdrYYqWUkziZmWPyl9WLw43KGzaMT3xTnm1xWyok8Z1D/ytHfxFI5t+Xzk\r\n+pcWwIZzuElzEzAQYnVMyfdxD6sM2winZ1ehDpvJeLTPcuTPf5fDYpcrnebODQ+r\r\nnsvq7oU7bHp/jTkGP/2hNzNLR7QJq+rOaHTHDky5yWrsMdgGj0dJXmId6RIfgbeq\r\nJyz7pK0OnoqopPXzZcEQJGNdh9tTh0DWpPGkCWvp4yC2Sd6VSDIApnIpXRn5WNGc\r\n79eeuL9eKvQ5W1zq3/j5HlmwZvPOE+3kPe9r1+WMazNqbhmVk0gUfZX+cnJcy8ZH\r\nqZhjCnW1ihCHzNxMQypQLrnOgVCBkkkRj466iLGDMGL5IyTji2AAp50wMiZuVQX6\r\nwY4kcKqLsjSPpDpHGIie+58/dh9xFgqJzV0kNbAvehRlbwzQnRJWzr1UgZJgjluN\r\nlLpJwTmUIe3I4FzbwrzGMOltYu8XbdFAfyPM4fcfqJwFTF2xI5OYNC3Rcou9OSQT\r\no+ce9/rON//vZNZmQ+TPQ3nkPoKus+JX3EFJbevLeG0IvvC8c2ABwv6cNcvbSSoV\r\nXP+XaBLuXe5A3G+Tdr33bVhKKnbKiravs7sEeKvXVrpDgilOuG8CAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFJbqBZJuLkLM\r\nIH41hmi+LDFoV/teMB0GA1UdDgQWBBRIo61gdWpv7GDzaVXRALEyV/xs5DCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAArPH6tJjsM3VsG3zdh/1Rh3LDz4\r\nDqyUEJEXiM+Sa1kCncVvIqI5GkFKGM3Ur3hdx6xxe5F9gPvUdL22Qf0DLaOclksk\r\nO2FABXqDRv0P7k5yyryzTM/RmLhleut3Fc8BUdfrkmif8Znyxp12sRxK0UgEf6iI\r\n+dEZugVpwAl8IRUk9O201Q87q3zI30NgPT2BJiDycKaKQJF634qatubvL28JaiOd\r\nk3uxWfcqKjO0oeSJ7pxgAiH1rCah7UN5T2d3V4AmDQGLPo7lwX1SKZewa10PnF0X\r\npjE+8welxOK+4pEPl2kRdMDpr9/XPXWpAPt2h67Z0j7x5c7nDU/eZ3UjRkJePoIQ\r\n5aGZuxZ2diziI4JWhbW+kF9M8T0CM1EUIcQV+8wvvualM1q0IN+SJ1X49tt8n3y5\r\nfEAur2599a16z7zg4uF1xI/SafWXMjC8MObCHjR5xodSQ7IxvGyl+6uIkENsiQBF\r\ncuM55MMUELl0VM0+n7Kv5K2Ur+heLzNlTTy2eoiU048g8iQmZzP5C9y4hUE3rYgJ\r\nRxP9ovHl2km91RDTei9aANUGIB8U2uFA7pxe0G8Kp8WSF0a2DtZu7sf2lGjKvP+7\r\nJGaMrJn2bJW6cDEPgfyKCio8kCVtFg7QTtkaZjF5J6AIB0B7aHNPKlAE2T8O2/Z7\r\nJIvM+ijPG5W96tZP\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFjSjQKPPAEB6wAAAAAAWDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4NDAwOVoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA3Pi3nd+o2ItxXWvhyaIDXRbrxgB1wqI0wK/wgC3vs2vSbIHdSuOrtac+\r\nmR6Ag8rE69QQOykN2KJIQI53O0egLWUqjDMa43Fkh1EWTAD0B6snyV91Lt24YPPq\r\nOyJZLhGCtYJoQfPQxZjgW0PknDvWCGIBPFacj86c84QzQdmNBMPrObC21S/ilK+H\r\nGjwcYx9Z3dSeK2CPLLkb3C0HzWWLBL5lFHrdM7qphSAJ07g8/ggis/b4aHdWOlN3\r\nfyySWbuTLQnX8J1XZdWGc+7Z60gzt2jwUc2kgpjcpHvV7QYmy141rjiQyFDNUf7x\r\nFBeFIpLDPoxcfAsOo/dtVfxp/dNMqfAEC27QrUogtIUOcCaSZ5r09ECOuBW6Mood\r\nDIx4bUEhXOJmZBtpzRXhVVKTC7Aqs3PTrPehspCxOclx7c8aESASwj6SSWpDQi+x\r\nrKm2DgTIgvVIdyBNdKhxhGNyl1t9jTEMAdwDmY6pN0kMLCEdM6v9fG0nvtFFLU/m\r\nj9Ojh8Rtf3YWiUPd2cI62tVoXckaP3TbdCNmGysT8ShFNEypEINWIl49U7V00Iec\r\nOveCbkfsnKnT/o69znrWUH+Pt65GxrqO5A+To6WU83OqLxljS/cyBTQmrDh70Dgz\r\nKXDXN3JVW93RLoXuNyAhd1nUOjKOI2tmPhEC4Cz7lqmVxDsQaZMCAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFDrHw8rI3g3T\r\nksAnici+l0dPRWlgMB0GA1UdDgQWBBQ5cV2pFRAtxN9+L1luQE3A3+82mjCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAI68ze1N9ZqKBI7Q7BXGlc0k99wW\r\nCoCZu0m02crvYeITKUC/eizH7s6Sx2Kk5Hnzz0Rzc8G8NpiWEfp7ppKeP1jOMv11\r\n7P1KB6IHyRLdW7vAIBiJy1qhbLAxseR7xkvDKv9yjZYL9Q7XtlSgrd9NuEiuFsfj\r\n0ANzVf/Ea4br00gGc8ALfnvgGE7eUdBNqWKTzHcQREdjJPRMUqTYqcvd4qQbRXZt\r\ncXLt4Fr3pXcwG1UExrz3TP4ueyrqGot/OFDvMihs6Tak0qjYygT2dC3bEOBg3GSQ\r\nDdQVzBFO98f62/l51TBlWizuw3D4/dKIPfQU1Qt7sr9e7CLbecoO8EVtyt/yGRr1\r\nD4BPBGyEzC6QoqCo5Nh27yG+DxFtAGdm/vLaFeJOVM3q2d6nL1FvNzlHTHfOYPJ3\r\nNwHB30X9TpdRqoBLM5UC0m/ybKj4ygXAZBlkJXMO/bjtpqyidJ0SaFuE8EdV9YoJ\r\nKUmBw1ZuZd5GHbc+Ilz82WX+JWZ0efU/f+75Ywvntu/3s0OsnpVoqrqM7TDdzE0d\r\nwRiZ+mvtgIwp85+et1iEdaWPj+d6LfJxpDDCPhaqh9hnNIkZFptndwDwRE2MV9Wr\r\nlUCSA96/2ubHsKt4E2D96KvNog6MKdyEGz1sZep1yZKqE4cnNzGNBGRel0BRa2MK\r\nyTOQsCbnpQGhEz0m\r\n-----END + CERTIFICATE-----"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFlFSsCTnaMEFgAAAAAAWTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzM1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA0E8VPmTCi+s/ukALr8kiz9n0QMveOlaFztd/3QikdEPvOujCuE/CXDKt\r\n0KhyGBUshmHGEC580aoe2Ze2gBJ/Dhs8FjdCjH4IyWU22QOervNkIc2Xd3EMxVZL\r\nYmWmDp5yfa0DwHqsqLq1PLwyk9BfYhh2gp9Dp+vECu4FzvVoZd73UaTpvcQKDsXA\r\nTVR43QC8AiL2AiHgOB3xE75MR/kI1OA7mTaOK8uZbQZCtyG1VMtNL+Q4Di0nB9cD\r\ntqfQj1/UCA76Nr9a7p/TUnck94zlsHE5RVGvDy3GKpa4cmCb+nRpF+ybZjuw8fPT\r\nCY5JGTLZreJMgk+Tej7iN+BYyn4Q2QIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFPFGaMbxw/ArLX2LauGy+b41/NFBMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAD6YslCi5IxgKWQYVzHClxGTpTXEarOPDACuQ\r\nnZIgM4hbk0rMqW4aHFd+paZmMUvNU0HWtIq7aAbNZGCdTrb6g9xjQKrdivWr24BZ\r\nBDxlYkU1tNvdQmafd/RESZ+TpElbuBw2EW0qtK2K+BfL1fTcwpIWRoqWcZUc/CzX\r\n43yuA3vE9sw7/HCDOEQF+QW12B6LDt2Y6DR2y8ZjYsIM0X99mgCE8/HYL4AR3+mA\r\nHjlncC3qlXWRUk46kz2yU4gu0k4P5vexNuGvU9uHvmqQERhhHYkAiW5pwCNFdZDw\r\n95vcnWocRk5TaOPp74v06msx58qS9Re9Fz5xwp6dGGqvWgcF9UJtVVyXMGYB1/1+\r\nyd5n8VpvHVWlrPNpcT0p9YLeou/HKZIiekolUKL6SqCbDFwSUMPM1xWSK6RbphmT\r\nJZdAoKKLq7c/4bFPOxeKvBjT6PrWP64ktWN1Z+AYQlBp1rK7A/ZkAOh8l+17K4VJ\r\neb1whd4SmNSnZbv9jhOeWhrbRsxmFJ1SFHhoBhS3Q/WZWMJtLu2Hv1RHnqRgLD3y\r\nlaC9qyj44pXka/MiLauGl0qjRsO6i0ZV/nU43/eZt4EhWewfmXRnfNlXA/u6abVS\r\n3lkNTlQaJAmTijbKk4JI0qQl4e+xZloOXJVNiqKgYSh3N93Bi+8ROZCLqqpwrO+C\r\n8C5Y9Bk=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIFVjCCAz6gAwIBAgIQJdrLVcnGd4FAnlaUgt5N/jANBgkqhkiG9w0BAQsFADA8\r\nMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAwDgYD\r\nVQQDEwdhbWVyb290MB4XDTE2MDUyNDIyNTI1NFoXDTI2MDUyNDIyNTcwM1owPDET\r\nMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEQMA4GA1UE\r\nAxMHYW1lcm9vdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALv4uChY\r\noVuO+bxBOcn8v4FajoGkxo0YgVwEqEPDVPI6vzmnEqHVhQ1GMVeDyiRrgQT1vCk1\r\nHMMzo9LlWowPrzbXOwjOTFbXc36+UU41yNN2GeNa49RXbAkfbzKE/SYLfbqOD0dN\r\nZLwvOhgIb25oA1eAxW/DI/hvJLLKh2SscvkIyd3o2BUeFm7NtyYG/buCKJh8lOq8\r\n0iBwRoEoInb0vhorHaswSMmqY1g+AJndY/M7uGUqkhDGBhLu53bU9wbUPHsEI+wa\r\nq6WypCijZYT+C4BS5GJrEPZ2O92pztd+ULqhzNRoPj5RuElUww7+z5RnbCaupyBY\r\nOmmJMH30EiRSq8dK/irixXXwJraSywR5kyfmAkv6GYWlRlxFUiK3/co47JLA3TDK\r\nN0wfutbpqxdZQYyGfO2nZrr5JbKfSU0sMtOZDkK6hlafV++hfkVSvFfNHE5B5uN1\r\nMK6agl1dzi28HfJT9aO7cmjGxl1SJ5qoCvcwZNQ2SPHFdrslcwXEFOMDaEzVOA3V\r\n7j3+6lrT8sHXg0sErkcd8lrBImfzhLxM/Wh8CgOUNeUu3flUoxmFv3el+QWalSNy\r\n2SXs2NgWuYE5Iog7CHD/xCnoEnZwwjqLkrro4hYWE4Xj3VlA2Eq+VxqJOgdyFl3m\r\nckSZ08OcwLeprY4+2GEvCXNGNdXUmNNgk2PvAgMBAAGjVDBSMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEBMB0GA1UdDgQWBBQpXlFeZK40ueusnA2njHUB\r\n0QkLKDAQBgkrBgEEAYI3FQEEAwIBADANBgkqhkiG9w0BAQsFAAOCAgEAcznFDnJx\r\nsXaazFY1DuIPvUaiWS7ELxAVXMGZ7ROjLrDq1FNYVewL4emDqyEIEMFncec8rqyk\r\nVBvLQA5YqMCxQWJpL0SlgRSknzLh9ZVcQw1TshC49/XV2N/CLOuyInEQwS//46so\r\nT20Cf8UGUiOK472LZlvM4KchyDR3FTNtmMg0B/LKVjevpX9sk5MiyjjLUj3jtPIP\r\n7jpsfZDd/BNsg/89kpsIF5O64I7iYFj3MHu9o4UJcEX0hRt7OzUxqa9THTssvzE5\r\nVkWo8Rtou2T5TobKV6Rr5Ob9wchLXqVtCyZF16voEKheBnalhGUvErI/6VtBwLb7\r\n13C0JkKLBNMen+HClNliicVIaubnpY2g+AqxOgKBHiZnzq2HhE1qqEUf4VfqahNU\r\niaXtbtyo54f2dCf9UL9uG9dllN3nxBE/Y/aWF6E1M8Bslj1aYAtfUQ/xlhEXCly6\r\nzohw697i3XFUt76RwvfW8quvqdH9Mx0PBpYo4wJJRwAecSJQNy6wIJhAuDgOemXJ\r\nYViBi/bDnhPcFEVQxsypQSw91BUw7Mxh+W59H5MC25SAIw9fLMT9LRqSYpPyasNp\r\n4nACjR+bv/6cI+ICOrGmD2mrk2c4dNnYpDx96FfX/Y158RV0wotqIglACk6m1qyo\r\nyTra6P0Kvo6xz4KaVm8F7VDzUP+heAAhPAs=\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":false,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thvankra-nova-billing-sku-Standard_D8s_v4/providers/Microsoft.DocumentDB/cassandraClusters/testBillingskuStandardD8sv4-v2","name":"testBillingskuStandardD8sv4-v2","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2 EUAP","tags":{},"systemData":{"createdBy":"thvankra@microsoft.com","createdByType":"User","createdAt":"2021-10-08T20:07:23.0113284Z","lastModifiedBy":"thvankra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-08T20:07:23.0113284Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"testBillingskuStandardD8sv4-v2","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thvankra-nova-billing-sku-Standard_D8s_v4/providers/Microsoft.Network/virtualNetworks/vnet-canary/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAE5Hd9yskSH1BgAAAAAATjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDU1OVoXDTI1MDkxNTAzMTU1OVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA5UFGOQgmohqJHkbMMcN4cnK+mAoScYUAR/njrD0x/GyFeTko+QXMU1JJ\r\nIePmVcugmyO4xX5ITShZWy+/qPAWy3vwT6HzBdFq5eTGbkbFCrQdh5w1+jwOApMe\r\n9ZDlMDO+RUtJe1XxWqi3KRY0e/pJmpOk4IUEjx6wxvv5MnSWhMa7aepnkuCS8lvF\r\nNl9D5oUGIYvoDUgVMQSBazQP2zjRunMT9JOopFKnZE+L7NY+XDtla3I1uZeMeakA\r\nfqkNjx6lkUIgcHPhSMy5XHBpOeFdSDjBA8dNk6E3VSlLzvPcHdaHI7QrmK/43wzf\r\n+kHpDdTXx8EdOqm+pLHoKLWcjw/P8O9RAMiXefxGnQKNuP8T+/prskR5esucJQkj\r\nrWSu7W7YycmIg1rPCd7Qw005/sc58eLPN+Xrj/Aw7RSR0A719CPZMjoSfKTphSEK\r\np+ZB+5j/V3VEzjGbL6XFUezFfaIZ+A7ZtkaEQYDH0fVVziPnhQhJB+Uym7a5arB3\r\nqiMMw7Yjos6iWkkOaqhaCHuN1zC374xsBec9mrJ7bfuLTNtBEKC1PhdZrJM3UDCo\r\n76v+3mnKouN/7vyVkbiLNb27MXRigXFbO02opR8prTkvv3af+iq6+xjmVWZhsILI\r\n0HIBk9/HoMZCCb9e95RQVmVwVNrwa24neVWl+JEw50sqLMapsGkCAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUOsfDysjeDdOSwCeJyL6X\r\nR09FaWAwHQYDVR0OBBYEFEKY1e9GMTrmL0fNVVel5jUfu/yRMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAuaX699r+ayL7JphKgdiDuy4iPTwf7fTkUsLx\r\n7ixBzvnUrUASdS9GJEkpsewdipRfMycn3UXatnQ6rudCqBgsExJzHBGlokhvVaZK\r\nue0oIlJstnKQDOJCpJem9NkvwALP5z3WZoqYf4EaaQXUkMAJJ2qxw+mksSBEu+MJ\r\noxgbStKv98q28ypOVLjaFNH/VbtAG/rIcqNyOdjAPcgMcohe7lGO1WQtFxPxtzvS\r\nZfgao/ZjWeNDFzy8FSInim1q69Syl3Y4dzeAlG6PiC8t7upDQzo2AJxI1tW0AkKV\r\naJIS9rGZquLN5MTbYozjEyzMvSEYFEpx+7YKQGayHz3eCGH4BzD43YPt20Cm4BMN\r\neyV64+d9PufCA2tzrIQ+VJhsZKb6qRgV+Bp6AfpgeyU6oRkqsWKJyKyzp6o0D+Si\r\nq3gYJdD3W0+X1jUJcQuywYLRg78rVE3A6VJ7RIEjXARQV19hJvxchCoqfbny/0bX\r\n9Bb3Rtr1OAYhUml6Z6JdfnH33KfEJvFa4wlKRBxpuw9gMG5ydOsbZ3YIJDWccTLH\r\nQZWJk/Lakd/+uLPWOzzWQCf7nPapwSRjtfRRLZoX49PIQkrGM3dpLLGktC+sg8bc\r\nvQ2bO79bKJazcsKuNK0dOpepIBA1mMD81DphYmc/RMF9KXKdKz4Ugh4HNqkltIsG\r\nEtaYPCM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAE2e+Zx9LtWjEwAAAAAATTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDUwOFoXDTI1MDkxNTAzMTUwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1RZFKUUXNWXgbh7dm52Irso1hGPDEL9ZZXYz0civ0AAlDu9P/1okXVpc\r\nOPQnRxE7e7O8roTSctA4MTBGFIjrCythVzk6MJC1bgGv7qwCV6o5P4zVSxQrHPx+\r\n2DPDIZlt3UV4RNLuKVvSZdzQt1UsxUOxvTZ/0mO22d6mcspf3I5Xt5h+7WlTgHAy\r\nWvvlpuX7LR8yTK/um4526bdhUG98I2nEURH2vnNSt3/Dbt1R6qoPMja0HhghuOtY\r\nt7Z77nyI2gOY2fRu3oM15Xqe8b3Qwx5IsSV/pTWJ34VPz24TfUmCQOVtu/m84ayA\r\nwSZ754d+JvkyPSdINV3tuLtbo/QVewIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBQbRewlXgZoN1BD7V/nign/FlWETTAdBgNVHQ4EFgQU\r\nvZx3N/n1PWYwyjVonISvG5ZVEL4wgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQBFtFQSE7TjElKEmwHyydrA/UEAzho7rEMy2lvNr2tgX/7WVWDqmDrTK4La\r\nm6/MGOUBYbF334Ywvprij/UoSpyMEq5HgXiCBxOgyUPSZx8x+XyINgCujVXRk9za\r\nPh1lXpYCV2qhIYAhazeprDYzX2im0Jwe8X/Xsl0kzgs3TE7medDW9CVEYS+T7SqG\r\ntmXhOg1FW04yUM0+Z73ZQGF5oqnE76kzpLvfn+YWA6KbLfH84yTpqylAD5UFvfeW\r\nMRoNUUckpsteddNba90soUzxeRwU0Loxj5Qsds2gB0tSIpVh330BxEDTIJ73FZIv\r\nvURqyoDor+Eu1NOVk3sdCM5nXuN38dc0a9fsSRoJkbQYTP9UNJPcUDO3kZoYWNxD\r\nWrn5J/ltaxPc1o7+USSm02C023HIrWBJkfnepIZKV8m7wkddcygJ6FQkxFU+NQUW\r\n+a91tIw3HTEHvmNlJddPmjgnE3k6GS1NLOC5IV/s1s4sSME3QYQAt+zr5TKRdZ06\r\ndBOSXrz66pVpkR2wuAvlCEuFk7gaBrKz4j+3wJ9CPhETezARvgpzQCw9es9y2qde\r\nO1rHPYa6IRtmjcVDvxfmjei66bQwoapDH/OMS6sPqqqn53l9g4HDDgWywWn9ad51\r\nL5NAvQYhHwSCG0E2Os5mUFYM56ZVA4WHVUn7NZsAXGnDtIwlPw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAACbGTID3uXpE1wAAAAAAJjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE4MDMxOTE4MjcwOFoXDTIzMDMxOTE4MzcwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAvBsRcCD4Z38LQPG73ci9jIpQv5tVQh8lLrcQ9lO2lH6pUVWi7T7jCyX/\r\naCSmit7fT6seN/kf6LP0hpgsU/wxMMv4c4+w1M16EiRc6GPJtSPNszl8ZNAzZj39\r\nxeJnAMhPzeABRLgzYgLH+9R3k8sIJMhSjcUfp63GAhKtdqhQeTOs7m87REtmAdo7\r\neZh/Ubn4HR1ZxAswmoWmMxMZw1KZj87395IxE3Ybj0m/V8dyskpxWdAzkvGeO//l\r\nb4FfAHVCCix9wsijqomj+jeJPHR/AF/5+MZXjoNDs6/+UMdSrEqa2fi8910J6ogL\r\nSMdL7NdV77U5551wZxeUwSEHUc4qkQr9cFAdHcdYiMnIrU28zk7O3yQdsyWdrTqx\r\nTbkoYn36Ji+aSyzs/u/Zh3pAWw9IvLaoq254Rpf1SWsvufE2YXaP6kUmvOE9Qrnt\r\nQ138fwe9CmPUT9I/cM0v16BDvELEH3KGsWez8WRFA5RAB5pPDKjMyZ7mNl+0+EDv\r\nMq+KYjtc9uWJoRsRe8mDnVt2JGRBazTCFd/m5HGywdUvg/fZyVfBrvsRhcahMXn+\r\nb+a6kw+gMY29dcNutHNl1ZuKbwUuvp0ShWnauFVqMSRP6kSgXjzM0Oez2CHEtnX7\r\nNTKy9+eXsqxkzVXop81HCR7QCDlKPkc78IRETKfQA/nHdu2iOd8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQonG1RafqmxKhDxP+NNvoz\r\n3/1FMDCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAJFaZ9bHSEXBMKUi\r\nxLJgRr0yPOBbkZAHGsXGsAAdXnsAcmRZnoMsJZwHJY9qa2SDdjWzCnEuk50KJ0Rm\r\nvePgWmDtQWwyfFT//JIccaFgxYsU2SjdHEi0DmRElJtLkYQorDjkqn8s2T8y95f0\r\nmdcNme7cQ8PsjawgV1hb7r1I0bRh93M4pDzRt0g08RoFtMGuqRdU3roMDbuid5Hj\r\nBnoT5MdJlYzklABw+JPOIFeqZ0LMq/RPyk8Dpzo7m2dSc78GitdNnWxj4Ku6l8lb\r\n0OHX3BL1eVKyKi8Vta3BjpzWuMQompgdzp1Eh+mDyfKV/+dlfIEPJI1stEHIEKWR\r\nR5yt35+RGXrmsmAwTZT5mcJk4JdAMhVnRnyWvxPzieYCR9DcIaT6+NBBYzQegOG+\r\nIMnLpnZp6qhbG7Nq9MXCqRY2ooojLCTLTCx8R2cqdYonJpB4lSkYMFYbuV7HoiNr\r\nXdZm0gMRi2DmIaZ7cxXUn0BmZd/lXSXNKdxwHKecu0F8ByT1Zlg3NgIhCb+6SDYB\r\nlOv5YhnwSd00aUaSSYc2dKJmR2yfCKT5Li9wdtjlB6rYIb7vHRl3x98OIVE+O20S\r\n1jQEqRLzkaDIWOA8D9VeuuIW05tahms61dDi5gx7M/ALhFa/QsbkCJXRf07Pe4ki\r\nHE/1Nk3cohSibWYZqHssdutHBd+Q\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAEnEBGqOfE69FwAAAAAASTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDA1MVoXDTI1MDkxNTAzMTA1MVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAw9b7oiITgLVh8Yry44fRHl/xMuYtsI0Cg944jlh0S5ljKgUEMvt8/S63\r\nRH9+9eXvbFN4L9EL2+RDhWd5hGyg4gQeKtxO7D/+JUoTIamIl4pXTxhO5oORnS9k\r\ntWp6lc1OfpYnkgzrkFHICKggDtCpQxp7cMtM8evEvY/7WvmJDbAsgSRlBIeyVZqU\r\ndfw4ahzvsNmMfDGx2JBKgB5mndVGyg96yCHy5+7XKOkkcr+NKHdnBM3k546rGlCV\r\nErgPVuUkRxrwIa3xD9BRewoihWG7sbuxny49CrdbDi3WqK0VPSJGZ2y5ipUTwndi\r\n/+QhiK5expoHO0hl20DwRgq74qB5zSs379PcTQz59OvUDMi2fiErDYnCT75X3w1b\r\nh2uGBFIwonYXGHU1s/SaxQlXErGplgkLv/tBPAXu8sk+qANHaY1EfPwpPfOXjIxl\r\nRT95moW0IP+CPmhV0g2ZPKNn0mIRPpf8IzI5O4pLe6xfXDekQnNcGaBY9nN9LBO3\r\noi7pBBNObi17J/ebVg2rScg+KAWVVf09iLF2inpoFxKOJQz//poXo2fAvYVXnXJm\r\n99qJvY8gFyOyg2Cr2x/Wp8yw/u7H4DztXuFMYuPEVpR9/EeLP2bzrpdbJpj+SPT4\r\nU0OmtjVtKNR4aOBNBVWmzxV+WKRBfpkq+pjpRMkgFapXWtjlXV0CAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUluoFkm4uQswgfjWGaL4s\r\nMWhX+14wHQYDVR0OBBYEFBxS0IHKkOkG4KzpGA07z01trd55MIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAa08V3/BsJsIOjn2Qu6zUb0GosfdvggVX36PY\r\n9OZyOn5d2+tPPjG2re+uovdpuLKx1YH0iBX4kIL05yObqKMAv+YO3Ihj4MkcYy6A\r\nk9DbHyQTYoeSfaryn6yo7kLYCz6E+li6HJ4FVx13PxpwqDXWUu+Yf5Kszj56IqHx\r\nTI9LV1ZbqmZYk7fQIPETYENkE23ypgh5snRtqSZYTw6HASkHI4E7NgFkOATnIcs2\r\npLGzcc9vc/QYlj3PT3ciGdpGkz8l/A2MMqC4eleYFTBSX9rNNG0tf0M+5fVF417D\r\nmtqDlglm9bWpgrdLpmcj28f3766EBJBq9zza4M9dAGBWBQx0c8BR9saGATd/U8lY\r\nmlTDhnRdqJvvTbtPzFFmTF5jrANky12jKlaHHTyLETDu6OeDbVEyJNuhj0a+cQ6r\r\nZwYCG/k0WCzUx3MMq1A11uxvseoOmpIqLOGfkEdmBPQXkKC02vyjZkxF0pGPNNcy\r\nBSCIlZ11UtC5ghcZ2Wg/U4bAogTv/XAnjwzLpp5V7mcepzcBagiFlQkdnvUKNI/I\r\nLkerOmrgKe0rgT+ICALZiq7hIyeuM2uthyD3FaBFf62WOtDD6Jfwkg/3LI7of+HC\r\nGZ99J/xaocq6NFYqzD/9H6n0+biogXUJtm7mKhQO3PeLz/1aDIwLfKqZFr3PCStN\r\nvTWqAdQ=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFYLVFiDd8BlgAAAAAAAVjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4Mzg0OFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAxIoR15PqTSSMns55DdeR97gCwVWRoA6zCYbU66RoYrXuHSpcJM+1tnHN\r\n6B2gITXD0iDoTLpuOvRlM+12v0c8cWdzVoHuRuG0k1ViNgSELeNw8SXSQ6jmvgPy\r\nH6fg+NiKLkjYrJuIp5me3/asqMTeO6MOkeimS67PYerzkMYoC7BUEUacludZswsM\r\nFZnsM/vHCjIpzQMGWyUzju2ANT+J41Wz9AmukpPQFNzyq9566BEU/4MJh9Yg5aSR\r\npzI1gU8r4Y9ABdOgjsFnEm8BSSdlWLgalKevYPMLX/FO2rFufFgcNJq3Y8rnAtJD\r\n0k9jt7isXmJgS+JNfANvY7+jXQaCkwIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUOLjGDtr98qbFC/XuACeceItvo7EwHQYD\r\nVR0OBBYEFOXZm2f8+Oy6u/DAqJ2KV4i53z5jMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAYI9s0aXNjS8k6w/pyYwcd8HBPAjpWHJp7vBNsa9rDbau6raD\r\n+QWjj+hO5OKUkNchKIkK3xUc/iDAMNALDLFqUOaVTeMh5fu/e8Pr1AX1R1c5U1Yd\r\nxExItrFARqTCCIQpLz3cTu/9KA5QgUQlnFlrxA9IHq9G6k3TvTB2AngUzXBhNhl5\r\nb8ya7LK3dhfqf2BQHJ7k1XReCJLYMxI6PaG0F6mWTCFNBbBxgjsXeXfjYv2li33v\r\n48ALT/NXFoOTbAOP4EFfLhMDnx2O6cFOKrYT9O+EU64oJ/0MQDQSq9PVos5J+RW8\r\nvD/h2ycPqMnmsjvpJ4pWJZP+YSxy/HWMwbZt/Dv/UobeQqLCIXGnODv87K+1JVo0\r\nO3c1NtGJu61JyXwW8id8VSQuc2NzEr58rOOGMfU3gHZMSNY2gsFs1gqXC6MjtX9O\r\nipJ+dqr7lgRvpDN9bD2kd9CdOWsxz6PRPxOmbUittmpHdABMZuaeKB/5MnxVrpNw\r\nlYtJYXvKRY1V30kjFSsyLv02YYKb8MI/NfWcjMLw4eaEn//ST+sf+LjB9KF8TxBX\r\nxuBUpQVA/TJX9GEqYMZt557A5u5odSVcac+w0/Nn4E6WzFLfxMr1O8OOOQjzlG3u\r\n5BPqprm+utwEHBCU4iVcZOdnSgk1dm7C5xmmTylFRYOlwVrFSPcyKy0+6H8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAEso8JmcB0l1ZwAAAAAASzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDMxN1oXDTI1MDkxNTAzMTMxN1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1FFhjk/dgVlthN00OKObtbEisXfH40OyapM9KcVlUPnMElPROdKi7XPQ\r\nagq+Ry3QLSSZgNWnkahCSxE81oyudrvlhpR7NpcDPZHsYFw6qsEiirml0hc5awSq\r\n+MtFo9pfnr/zQstb7xg8wjduWjANvO3E34jZbfmCyw4gU4TRPIa9rpaV0N14hQTk\r\nKcBv+S12udS181oWcTc66zxVXUHNK15PRv31jElEYQKX8EJWCe6ccJA/cJD282sR\r\noEhfuUvzXHOeWD1jXH+Eh+mKuhLqiQHPJH7TJRMsN77ndtHH9us3Ak4l9AmGNZZf\r\nwNquVrHAiTw9Ai90btckoeMRn8eogQIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBTX/nF7X/NZN2T02QZU2G6DYuwmyDAdBgNVHQ4EFgQU\r\nlUWMsJMswORfcQ0UpecnwcNjm/cwgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQCb7VpPdQaBSKQdwDpgFquVkVtcKzEAwsVlzIENIrlRsOcBgvZlW9QKwgCd\r\n6xvrF9smidaMzlYuxYQypQ0RQEHDKJ1SJQLc1ZtR7fWf0xHqU0cgX3hktDNyN5t4\r\n7rMtYOUhygcZIxVQ2cpkyLoilwnb/q0Y0jOnA7eo0r9K67TJ9CP2m3ZUApzRaCwv\r\nqQE8eNZvngy+613PU11A2EFuTPXoVNb7S3w8amz+mYYnJCBhxf4PdYA/3DZ0q3FP\r\nfFxqKAbuNtXXHFmYn3BBMGSn082Uq8RsAvj5XEkI/xylDlwG3zT+QaIOrJ/06Toz\r\ncT0ewSlyNAB6LzGp/HLTIffhSNBVX8ILs558r6VcnTE21awdkWqnd3PiPkWADD78\r\nDVSb/7QOsBdZp6BKkcDzTc/uaDGahR55UcapkOMBSbngkomK986ITx3yUITn0aV4\r\nBEVbYQQ6b9l/eNHRosiwL52QPnYl6fJRsl0JuUzy9T5DrwGGnRgKQAOmSWPRTdt2\r\n14MWrxbLFRRwvqt2COK82jPTAiZ3XqYSZzZce9bSDsGSm5VpwWz5+xyBYc3djzKR\r\nThctXJrwftNyZD+LBc/4oLOTYLpDB23eI8rvb6Xfm3A8ANucIq2muavxi1A+eyYM\r\nQXwyB2foIV9yhDIA5I1psyJo+CwM9CcibRTjjNL5ghEkoSDjyA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFSoP4knG2YAHAAAAAAAVDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzczNFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApuAstd+jxOmcAhw1KNXa7fDE4SFe/7SdG4avz6VQqep4ofwJwZTxQJNQ\r\nBC7dybKZO2RBiDzzayV9PCxmK9HPRMRmuj68x9BRyoEbVU1tX4HtiBK+hAGiRNQu\r\nPRTYcSs24CgjI3JrxOjNesp8iE8HUVntN8ueXnpTQLSYOR2TmTGM835tkTplflX/\r\n/zPtZvsXSZz+JssQ9SRcXS2t/fPDpKfNVatOmq4iwtX7Q6IO/WCzAyEzacjAFqml\r\n0/PRYT5O+jiRO+TImZ2RD0CB9rP5CYwN2T504drkKteNaT+FT/teBLC+JraDjh27\r\nv24yknl1t8dXCSS6l/UBGBGVk+gr0wIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUVSrR7NlDI9ZN5GcKVaV9JEKwIbEwHQYD\r\nVR0OBBYEFK55wmtdJYgTBvYHCcOXfHuXjx1VMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAbgp2LNvP1OVFkH9JTg9rTMksjvLIpzaqJehSp5+3YNzGl/TH\r\ni3Kg/rbtQaKErwipeLMhmqWFuT9kB22eeyoBSxx3JTzRmKtcJO47IX0qymW04v2i\r\nI2tVWQigwJWtE08Z16Q3NVdgAox6DDnAvmV8QDlPhWdW0gGcszZqFD47SJltU8JJ\r\n6D+xuDl+xUIA5wQ0987HRo4dSx3Vny1cd98GdMepsOnCpfm7ZQDWJUggp8m8T/jv\r\ngj28G4JNV9nsx3TT5D4xFZ0rXUlQNmhJFesprLt8NqOoKqmP40WdqrpVIxlu5pdH\r\naf/uT89gHO3Zy+iqNbCDRB7zSBtaalaqLvGpE0xV3p+xpjY1CujjvKp+rUrGwA1t\r\n7aNRowd45Dn+kESi95bE16V2k54YbRvgkwQgqyFUiissogOtaOwQIjuv5NUMkKnj\r\nWz1S1nsMTwZWQ20pT+SG9IMWxAP+63fLIMxWXSbwkTo1Q7JVbr7ZnbNjPrzwerrq\r\nTx+CgfCjU2TZ2WaqYnKoGlgjiZkVraQ1JYJkEr5N5+12CnAuVNzn7pMs6HUSxc8Y\r\numBjy+KA0I1XMvFerh+fhEVad7kOgOxqE1uLdXZxkOXHC1N4FQlkI65Padcd8dyM\r\n3g+er8suC1gf9/fWU0AlgIqls48Wis2JISOeSsMAi3BDvCIpp5PHbuNfj7A=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFr7ZWQR1r6OSQAAAAAAWjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzN1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEArMu8k7Kq5y6uDXZk0QxV9Ya5K3Mb0/sCyV4fs48XfAgL3YOHYTZ5o1uB\r\n97VZ/oXuenXaDcoDE18WhOavpqjWHc4eb1QeGGCaB0MoijTLGPzqwWRdByW6l2U2\r\ngFzjKWKtFncIj/VW5S98uCDD8b0SX278XKubkKv0Zn3m1E2wVrTvG8Jc/MuXF0WX\r\ntjFRRJPY3keED1zFNEKjckE4ywTV1atTqnKbmj2rcQucHJ4ufZ89Hel/xLL0bFxc\r\nJnW4Ky8lZ4Q+G9brYexh/iEBcSpNQlfLVJrKZMlAwGPcp1SBGxU9GlSV7kE1LLCS\r\njpS5d6/qw4VA+z5y9HsHN225oBhpAQIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFHrWGYUoeWxxdh5g+PNL76IFQhYdMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAU2IUk2qTwWTtRBKzMTaRxYKvTyvU1nyQLxko\r\nA3304lciVsdA86+jhEkvnCwZeAHoOtYuPeQJdeyhYUhVRDAhhJauvE87FB69gM6h\r\nYUnRqiy+vekLrHB/1x8njoLHmcppjOvBzziOPSqvf8s6O8tJ5AjY3398sm5ckH37\r\nVYHa/+bAYCvEsYmgDGN8L25QvXScTmTthSXHlzsCItPpKFs385dsGJnFD0KcQ5c1\r\ngLmV1bdHnrWyy2mqB819CFWtzhnojtzXxZLuEfTBS18u0qoLdN8KvgB2BvfgZtY7\r\nx+fbkiyoZfnZak0Oj45Z9Z/6AQ1uHGSRadAh19mkcrkPwHktc/3M1PJ69dwZn8Ez\r\nASzYFf8QH58i5uxdou73v+5Bd1m5nmtFCyLC6QDtFYH0pkvmafBx7PwyrgTjq2Xv\r\n7eWL0wXESxzY4HpjMDO36ncsLvzI6j4CyG4cpA8F8+9jwizWqmKMQUWt+VMICsP7\r\nRrzCJ35ogFGWF/dC2hjdjBXjcyLaliR5nE+sDx1PVDdIu7y8oBi60+Vzl0+BSf8P\r\nOdssgwciUpWVP+9xf6SZ7D9BPmLwgIJZ4oPc5K7cTOR6ksQQg8fO44fmOCRfVD/T\r\nDj1e39ijjkmcXUvrcu1sh93vbupLKp4Guruj3Le6iQ4Hla6Pr4znFKCzKk1+RrcQ\r\nVnsaqio=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFOufo2CImJDvAAAAAAAUzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzYxMFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAz2IfhGnsNWpW1cYZrm7f0KG7FjkmtAufsz6xSPNM86b5+jPDUpkOb7U7\r\nj4cWGBVdrYYqWUkziZmWPyl9WLw43KGzaMT3xTnm1xWyok8Z1D/ytHfxFI5t+Xzk\r\n+pcWwIZzuElzEzAQYnVMyfdxD6sM2winZ1ehDpvJeLTPcuTPf5fDYpcrnebODQ+r\r\nnsvq7oU7bHp/jTkGP/2hNzNLR7QJq+rOaHTHDky5yWrsMdgGj0dJXmId6RIfgbeq\r\nJyz7pK0OnoqopPXzZcEQJGNdh9tTh0DWpPGkCWvp4yC2Sd6VSDIApnIpXRn5WNGc\r\n79eeuL9eKvQ5W1zq3/j5HlmwZvPOE+3kPe9r1+WMazNqbhmVk0gUfZX+cnJcy8ZH\r\nqZhjCnW1ihCHzNxMQypQLrnOgVCBkkkRj466iLGDMGL5IyTji2AAp50wMiZuVQX6\r\nwY4kcKqLsjSPpDpHGIie+58/dh9xFgqJzV0kNbAvehRlbwzQnRJWzr1UgZJgjluN\r\nlLpJwTmUIe3I4FzbwrzGMOltYu8XbdFAfyPM4fcfqJwFTF2xI5OYNC3Rcou9OSQT\r\no+ce9/rON//vZNZmQ+TPQ3nkPoKus+JX3EFJbevLeG0IvvC8c2ABwv6cNcvbSSoV\r\nXP+XaBLuXe5A3G+Tdr33bVhKKnbKiravs7sEeKvXVrpDgilOuG8CAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFJbqBZJuLkLM\r\nIH41hmi+LDFoV/teMB0GA1UdDgQWBBRIo61gdWpv7GDzaVXRALEyV/xs5DCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAArPH6tJjsM3VsG3zdh/1Rh3LDz4\r\nDqyUEJEXiM+Sa1kCncVvIqI5GkFKGM3Ur3hdx6xxe5F9gPvUdL22Qf0DLaOclksk\r\nO2FABXqDRv0P7k5yyryzTM/RmLhleut3Fc8BUdfrkmif8Znyxp12sRxK0UgEf6iI\r\n+dEZugVpwAl8IRUk9O201Q87q3zI30NgPT2BJiDycKaKQJF634qatubvL28JaiOd\r\nk3uxWfcqKjO0oeSJ7pxgAiH1rCah7UN5T2d3V4AmDQGLPo7lwX1SKZewa10PnF0X\r\npjE+8welxOK+4pEPl2kRdMDpr9/XPXWpAPt2h67Z0j7x5c7nDU/eZ3UjRkJePoIQ\r\n5aGZuxZ2diziI4JWhbW+kF9M8T0CM1EUIcQV+8wvvualM1q0IN+SJ1X49tt8n3y5\r\nfEAur2599a16z7zg4uF1xI/SafWXMjC8MObCHjR5xodSQ7IxvGyl+6uIkENsiQBF\r\ncuM55MMUELl0VM0+n7Kv5K2Ur+heLzNlTTy2eoiU048g8iQmZzP5C9y4hUE3rYgJ\r\nRxP9ovHl2km91RDTei9aANUGIB8U2uFA7pxe0G8Kp8WSF0a2DtZu7sf2lGjKvP+7\r\nJGaMrJn2bJW6cDEPgfyKCio8kCVtFg7QTtkaZjF5J6AIB0B7aHNPKlAE2T8O2/Z7\r\nJIvM+ijPG5W96tZP\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFjSjQKPPAEB6wAAAAAAWDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4NDAwOVoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA3Pi3nd+o2ItxXWvhyaIDXRbrxgB1wqI0wK/wgC3vs2vSbIHdSuOrtac+\r\nmR6Ag8rE69QQOykN2KJIQI53O0egLWUqjDMa43Fkh1EWTAD0B6snyV91Lt24YPPq\r\nOyJZLhGCtYJoQfPQxZjgW0PknDvWCGIBPFacj86c84QzQdmNBMPrObC21S/ilK+H\r\nGjwcYx9Z3dSeK2CPLLkb3C0HzWWLBL5lFHrdM7qphSAJ07g8/ggis/b4aHdWOlN3\r\nfyySWbuTLQnX8J1XZdWGc+7Z60gzt2jwUc2kgpjcpHvV7QYmy141rjiQyFDNUf7x\r\nFBeFIpLDPoxcfAsOo/dtVfxp/dNMqfAEC27QrUogtIUOcCaSZ5r09ECOuBW6Mood\r\nDIx4bUEhXOJmZBtpzRXhVVKTC7Aqs3PTrPehspCxOclx7c8aESASwj6SSWpDQi+x\r\nrKm2DgTIgvVIdyBNdKhxhGNyl1t9jTEMAdwDmY6pN0kMLCEdM6v9fG0nvtFFLU/m\r\nj9Ojh8Rtf3YWiUPd2cI62tVoXckaP3TbdCNmGysT8ShFNEypEINWIl49U7V00Iec\r\nOveCbkfsnKnT/o69znrWUH+Pt65GxrqO5A+To6WU83OqLxljS/cyBTQmrDh70Dgz\r\nKXDXN3JVW93RLoXuNyAhd1nUOjKOI2tmPhEC4Cz7lqmVxDsQaZMCAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFDrHw8rI3g3T\r\nksAnici+l0dPRWlgMB0GA1UdDgQWBBQ5cV2pFRAtxN9+L1luQE3A3+82mjCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAI68ze1N9ZqKBI7Q7BXGlc0k99wW\r\nCoCZu0m02crvYeITKUC/eizH7s6Sx2Kk5Hnzz0Rzc8G8NpiWEfp7ppKeP1jOMv11\r\n7P1KB6IHyRLdW7vAIBiJy1qhbLAxseR7xkvDKv9yjZYL9Q7XtlSgrd9NuEiuFsfj\r\n0ANzVf/Ea4br00gGc8ALfnvgGE7eUdBNqWKTzHcQREdjJPRMUqTYqcvd4qQbRXZt\r\ncXLt4Fr3pXcwG1UExrz3TP4ueyrqGot/OFDvMihs6Tak0qjYygT2dC3bEOBg3GSQ\r\nDdQVzBFO98f62/l51TBlWizuw3D4/dKIPfQU1Qt7sr9e7CLbecoO8EVtyt/yGRr1\r\nD4BPBGyEzC6QoqCo5Nh27yG+DxFtAGdm/vLaFeJOVM3q2d6nL1FvNzlHTHfOYPJ3\r\nNwHB30X9TpdRqoBLM5UC0m/ybKj4ygXAZBlkJXMO/bjtpqyidJ0SaFuE8EdV9YoJ\r\nKUmBw1ZuZd5GHbc+Ilz82WX+JWZ0efU/f+75Ywvntu/3s0OsnpVoqrqM7TDdzE0d\r\nwRiZ+mvtgIwp85+et1iEdaWPj+d6LfJxpDDCPhaqh9hnNIkZFptndwDwRE2MV9Wr\r\nlUCSA96/2ubHsKt4E2D96KvNog6MKdyEGz1sZep1yZKqE4cnNzGNBGRel0BRa2MK\r\nyTOQsCbnpQGhEz0m\r\n-----END + CERTIFICATE-----"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFlFSsCTnaMEFgAAAAAAWTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzM1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA0E8VPmTCi+s/ukALr8kiz9n0QMveOlaFztd/3QikdEPvOujCuE/CXDKt\r\n0KhyGBUshmHGEC580aoe2Ze2gBJ/Dhs8FjdCjH4IyWU22QOervNkIc2Xd3EMxVZL\r\nYmWmDp5yfa0DwHqsqLq1PLwyk9BfYhh2gp9Dp+vECu4FzvVoZd73UaTpvcQKDsXA\r\nTVR43QC8AiL2AiHgOB3xE75MR/kI1OA7mTaOK8uZbQZCtyG1VMtNL+Q4Di0nB9cD\r\ntqfQj1/UCA76Nr9a7p/TUnck94zlsHE5RVGvDy3GKpa4cmCb+nRpF+ybZjuw8fPT\r\nCY5JGTLZreJMgk+Tej7iN+BYyn4Q2QIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFPFGaMbxw/ArLX2LauGy+b41/NFBMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAD6YslCi5IxgKWQYVzHClxGTpTXEarOPDACuQ\r\nnZIgM4hbk0rMqW4aHFd+paZmMUvNU0HWtIq7aAbNZGCdTrb6g9xjQKrdivWr24BZ\r\nBDxlYkU1tNvdQmafd/RESZ+TpElbuBw2EW0qtK2K+BfL1fTcwpIWRoqWcZUc/CzX\r\n43yuA3vE9sw7/HCDOEQF+QW12B6LDt2Y6DR2y8ZjYsIM0X99mgCE8/HYL4AR3+mA\r\nHjlncC3qlXWRUk46kz2yU4gu0k4P5vexNuGvU9uHvmqQERhhHYkAiW5pwCNFdZDw\r\n95vcnWocRk5TaOPp74v06msx58qS9Re9Fz5xwp6dGGqvWgcF9UJtVVyXMGYB1/1+\r\nyd5n8VpvHVWlrPNpcT0p9YLeou/HKZIiekolUKL6SqCbDFwSUMPM1xWSK6RbphmT\r\nJZdAoKKLq7c/4bFPOxeKvBjT6PrWP64ktWN1Z+AYQlBp1rK7A/ZkAOh8l+17K4VJ\r\neb1whd4SmNSnZbv9jhOeWhrbRsxmFJ1SFHhoBhS3Q/WZWMJtLu2Hv1RHnqRgLD3y\r\nlaC9qyj44pXka/MiLauGl0qjRsO6i0ZV/nU43/eZt4EhWewfmXRnfNlXA/u6abVS\r\n3lkNTlQaJAmTijbKk4JI0qQl4e+xZloOXJVNiqKgYSh3N93Bi+8ROZCLqqpwrO+C\r\n8C5Y9Bk=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIFVjCCAz6gAwIBAgIQJdrLVcnGd4FAnlaUgt5N/jANBgkqhkiG9w0BAQsFADA8\r\nMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAwDgYD\r\nVQQDEwdhbWVyb290MB4XDTE2MDUyNDIyNTI1NFoXDTI2MDUyNDIyNTcwM1owPDET\r\nMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEQMA4GA1UE\r\nAxMHYW1lcm9vdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALv4uChY\r\noVuO+bxBOcn8v4FajoGkxo0YgVwEqEPDVPI6vzmnEqHVhQ1GMVeDyiRrgQT1vCk1\r\nHMMzo9LlWowPrzbXOwjOTFbXc36+UU41yNN2GeNa49RXbAkfbzKE/SYLfbqOD0dN\r\nZLwvOhgIb25oA1eAxW/DI/hvJLLKh2SscvkIyd3o2BUeFm7NtyYG/buCKJh8lOq8\r\n0iBwRoEoInb0vhorHaswSMmqY1g+AJndY/M7uGUqkhDGBhLu53bU9wbUPHsEI+wa\r\nq6WypCijZYT+C4BS5GJrEPZ2O92pztd+ULqhzNRoPj5RuElUww7+z5RnbCaupyBY\r\nOmmJMH30EiRSq8dK/irixXXwJraSywR5kyfmAkv6GYWlRlxFUiK3/co47JLA3TDK\r\nN0wfutbpqxdZQYyGfO2nZrr5JbKfSU0sMtOZDkK6hlafV++hfkVSvFfNHE5B5uN1\r\nMK6agl1dzi28HfJT9aO7cmjGxl1SJ5qoCvcwZNQ2SPHFdrslcwXEFOMDaEzVOA3V\r\n7j3+6lrT8sHXg0sErkcd8lrBImfzhLxM/Wh8CgOUNeUu3flUoxmFv3el+QWalSNy\r\n2SXs2NgWuYE5Iog7CHD/xCnoEnZwwjqLkrro4hYWE4Xj3VlA2Eq+VxqJOgdyFl3m\r\nckSZ08OcwLeprY4+2GEvCXNGNdXUmNNgk2PvAgMBAAGjVDBSMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEBMB0GA1UdDgQWBBQpXlFeZK40ueusnA2njHUB\r\n0QkLKDAQBgkrBgEEAYI3FQEEAwIBADANBgkqhkiG9w0BAQsFAAOCAgEAcznFDnJx\r\nsXaazFY1DuIPvUaiWS7ELxAVXMGZ7ROjLrDq1FNYVewL4emDqyEIEMFncec8rqyk\r\nVBvLQA5YqMCxQWJpL0SlgRSknzLh9ZVcQw1TshC49/XV2N/CLOuyInEQwS//46so\r\nT20Cf8UGUiOK472LZlvM4KchyDR3FTNtmMg0B/LKVjevpX9sk5MiyjjLUj3jtPIP\r\n7jpsfZDd/BNsg/89kpsIF5O64I7iYFj3MHu9o4UJcEX0hRt7OzUxqa9THTssvzE5\r\nVkWo8Rtou2T5TobKV6Rr5Ob9wchLXqVtCyZF16voEKheBnalhGUvErI/6VtBwLb7\r\n13C0JkKLBNMen+HClNliicVIaubnpY2g+AqxOgKBHiZnzq2HhE1qqEUf4VfqahNU\r\niaXtbtyo54f2dCf9UL9uG9dllN3nxBE/Y/aWF6E1M8Bslj1aYAtfUQ/xlhEXCly6\r\nzohw697i3XFUt76RwvfW8quvqdH9Mx0PBpYo4wJJRwAecSJQNy6wIJhAuDgOemXJ\r\nYViBi/bDnhPcFEVQxsypQSw91BUw7Mxh+W59H5MC25SAIw9fLMT9LRqSYpPyasNp\r\n4nACjR+bv/6cI+ICOrGmD2mrk2c4dNnYpDx96FfX/Y158RV0wotqIglACk6m1qyo\r\nyTra6P0Kvo6xz4KaVm8F7VDzUP+heAAhPAs=\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Failed","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thvankra-nova-billing-sku-Standard_D16s_v4/providers/Microsoft.DocumentDB/cassandraClusters/testBillingskuStandardD16sv4-v2","name":"testBillingskuStandardD16sv4-v2","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2 EUAP","tags":{},"systemData":{"createdBy":"thvankra@microsoft.com","createdByType":"User","createdAt":"2021-10-08T20:30:01.4842384Z","lastModifiedBy":"thvankra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-08T20:30:01.4842384Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"testBillingskuStandardD16sv4-v2","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thvankra-nova-billing-sku-Standard_D16s_v4/providers/Microsoft.Network/virtualNetworks/vnet-canary/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAE5Hd9yskSH1BgAAAAAATjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDU1OVoXDTI1MDkxNTAzMTU1OVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA5UFGOQgmohqJHkbMMcN4cnK+mAoScYUAR/njrD0x/GyFeTko+QXMU1JJ\r\nIePmVcugmyO4xX5ITShZWy+/qPAWy3vwT6HzBdFq5eTGbkbFCrQdh5w1+jwOApMe\r\n9ZDlMDO+RUtJe1XxWqi3KRY0e/pJmpOk4IUEjx6wxvv5MnSWhMa7aepnkuCS8lvF\r\nNl9D5oUGIYvoDUgVMQSBazQP2zjRunMT9JOopFKnZE+L7NY+XDtla3I1uZeMeakA\r\nfqkNjx6lkUIgcHPhSMy5XHBpOeFdSDjBA8dNk6E3VSlLzvPcHdaHI7QrmK/43wzf\r\n+kHpDdTXx8EdOqm+pLHoKLWcjw/P8O9RAMiXefxGnQKNuP8T+/prskR5esucJQkj\r\nrWSu7W7YycmIg1rPCd7Qw005/sc58eLPN+Xrj/Aw7RSR0A719CPZMjoSfKTphSEK\r\np+ZB+5j/V3VEzjGbL6XFUezFfaIZ+A7ZtkaEQYDH0fVVziPnhQhJB+Uym7a5arB3\r\nqiMMw7Yjos6iWkkOaqhaCHuN1zC374xsBec9mrJ7bfuLTNtBEKC1PhdZrJM3UDCo\r\n76v+3mnKouN/7vyVkbiLNb27MXRigXFbO02opR8prTkvv3af+iq6+xjmVWZhsILI\r\n0HIBk9/HoMZCCb9e95RQVmVwVNrwa24neVWl+JEw50sqLMapsGkCAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUOsfDysjeDdOSwCeJyL6X\r\nR09FaWAwHQYDVR0OBBYEFEKY1e9GMTrmL0fNVVel5jUfu/yRMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAuaX699r+ayL7JphKgdiDuy4iPTwf7fTkUsLx\r\n7ixBzvnUrUASdS9GJEkpsewdipRfMycn3UXatnQ6rudCqBgsExJzHBGlokhvVaZK\r\nue0oIlJstnKQDOJCpJem9NkvwALP5z3WZoqYf4EaaQXUkMAJJ2qxw+mksSBEu+MJ\r\noxgbStKv98q28ypOVLjaFNH/VbtAG/rIcqNyOdjAPcgMcohe7lGO1WQtFxPxtzvS\r\nZfgao/ZjWeNDFzy8FSInim1q69Syl3Y4dzeAlG6PiC8t7upDQzo2AJxI1tW0AkKV\r\naJIS9rGZquLN5MTbYozjEyzMvSEYFEpx+7YKQGayHz3eCGH4BzD43YPt20Cm4BMN\r\neyV64+d9PufCA2tzrIQ+VJhsZKb6qRgV+Bp6AfpgeyU6oRkqsWKJyKyzp6o0D+Si\r\nq3gYJdD3W0+X1jUJcQuywYLRg78rVE3A6VJ7RIEjXARQV19hJvxchCoqfbny/0bX\r\n9Bb3Rtr1OAYhUml6Z6JdfnH33KfEJvFa4wlKRBxpuw9gMG5ydOsbZ3YIJDWccTLH\r\nQZWJk/Lakd/+uLPWOzzWQCf7nPapwSRjtfRRLZoX49PIQkrGM3dpLLGktC+sg8bc\r\nvQ2bO79bKJazcsKuNK0dOpepIBA1mMD81DphYmc/RMF9KXKdKz4Ugh4HNqkltIsG\r\nEtaYPCM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAE2e+Zx9LtWjEwAAAAAATTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDUwOFoXDTI1MDkxNTAzMTUwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1RZFKUUXNWXgbh7dm52Irso1hGPDEL9ZZXYz0civ0AAlDu9P/1okXVpc\r\nOPQnRxE7e7O8roTSctA4MTBGFIjrCythVzk6MJC1bgGv7qwCV6o5P4zVSxQrHPx+\r\n2DPDIZlt3UV4RNLuKVvSZdzQt1UsxUOxvTZ/0mO22d6mcspf3I5Xt5h+7WlTgHAy\r\nWvvlpuX7LR8yTK/um4526bdhUG98I2nEURH2vnNSt3/Dbt1R6qoPMja0HhghuOtY\r\nt7Z77nyI2gOY2fRu3oM15Xqe8b3Qwx5IsSV/pTWJ34VPz24TfUmCQOVtu/m84ayA\r\nwSZ754d+JvkyPSdINV3tuLtbo/QVewIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBQbRewlXgZoN1BD7V/nign/FlWETTAdBgNVHQ4EFgQU\r\nvZx3N/n1PWYwyjVonISvG5ZVEL4wgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQBFtFQSE7TjElKEmwHyydrA/UEAzho7rEMy2lvNr2tgX/7WVWDqmDrTK4La\r\nm6/MGOUBYbF334Ywvprij/UoSpyMEq5HgXiCBxOgyUPSZx8x+XyINgCujVXRk9za\r\nPh1lXpYCV2qhIYAhazeprDYzX2im0Jwe8X/Xsl0kzgs3TE7medDW9CVEYS+T7SqG\r\ntmXhOg1FW04yUM0+Z73ZQGF5oqnE76kzpLvfn+YWA6KbLfH84yTpqylAD5UFvfeW\r\nMRoNUUckpsteddNba90soUzxeRwU0Loxj5Qsds2gB0tSIpVh330BxEDTIJ73FZIv\r\nvURqyoDor+Eu1NOVk3sdCM5nXuN38dc0a9fsSRoJkbQYTP9UNJPcUDO3kZoYWNxD\r\nWrn5J/ltaxPc1o7+USSm02C023HIrWBJkfnepIZKV8m7wkddcygJ6FQkxFU+NQUW\r\n+a91tIw3HTEHvmNlJddPmjgnE3k6GS1NLOC5IV/s1s4sSME3QYQAt+zr5TKRdZ06\r\ndBOSXrz66pVpkR2wuAvlCEuFk7gaBrKz4j+3wJ9CPhETezARvgpzQCw9es9y2qde\r\nO1rHPYa6IRtmjcVDvxfmjei66bQwoapDH/OMS6sPqqqn53l9g4HDDgWywWn9ad51\r\nL5NAvQYhHwSCG0E2Os5mUFYM56ZVA4WHVUn7NZsAXGnDtIwlPw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAACbGTID3uXpE1wAAAAAAJjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE4MDMxOTE4MjcwOFoXDTIzMDMxOTE4MzcwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAvBsRcCD4Z38LQPG73ci9jIpQv5tVQh8lLrcQ9lO2lH6pUVWi7T7jCyX/\r\naCSmit7fT6seN/kf6LP0hpgsU/wxMMv4c4+w1M16EiRc6GPJtSPNszl8ZNAzZj39\r\nxeJnAMhPzeABRLgzYgLH+9R3k8sIJMhSjcUfp63GAhKtdqhQeTOs7m87REtmAdo7\r\neZh/Ubn4HR1ZxAswmoWmMxMZw1KZj87395IxE3Ybj0m/V8dyskpxWdAzkvGeO//l\r\nb4FfAHVCCix9wsijqomj+jeJPHR/AF/5+MZXjoNDs6/+UMdSrEqa2fi8910J6ogL\r\nSMdL7NdV77U5551wZxeUwSEHUc4qkQr9cFAdHcdYiMnIrU28zk7O3yQdsyWdrTqx\r\nTbkoYn36Ji+aSyzs/u/Zh3pAWw9IvLaoq254Rpf1SWsvufE2YXaP6kUmvOE9Qrnt\r\nQ138fwe9CmPUT9I/cM0v16BDvELEH3KGsWez8WRFA5RAB5pPDKjMyZ7mNl+0+EDv\r\nMq+KYjtc9uWJoRsRe8mDnVt2JGRBazTCFd/m5HGywdUvg/fZyVfBrvsRhcahMXn+\r\nb+a6kw+gMY29dcNutHNl1ZuKbwUuvp0ShWnauFVqMSRP6kSgXjzM0Oez2CHEtnX7\r\nNTKy9+eXsqxkzVXop81HCR7QCDlKPkc78IRETKfQA/nHdu2iOd8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQonG1RafqmxKhDxP+NNvoz\r\n3/1FMDCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAJFaZ9bHSEXBMKUi\r\nxLJgRr0yPOBbkZAHGsXGsAAdXnsAcmRZnoMsJZwHJY9qa2SDdjWzCnEuk50KJ0Rm\r\nvePgWmDtQWwyfFT//JIccaFgxYsU2SjdHEi0DmRElJtLkYQorDjkqn8s2T8y95f0\r\nmdcNme7cQ8PsjawgV1hb7r1I0bRh93M4pDzRt0g08RoFtMGuqRdU3roMDbuid5Hj\r\nBnoT5MdJlYzklABw+JPOIFeqZ0LMq/RPyk8Dpzo7m2dSc78GitdNnWxj4Ku6l8lb\r\n0OHX3BL1eVKyKi8Vta3BjpzWuMQompgdzp1Eh+mDyfKV/+dlfIEPJI1stEHIEKWR\r\nR5yt35+RGXrmsmAwTZT5mcJk4JdAMhVnRnyWvxPzieYCR9DcIaT6+NBBYzQegOG+\r\nIMnLpnZp6qhbG7Nq9MXCqRY2ooojLCTLTCx8R2cqdYonJpB4lSkYMFYbuV7HoiNr\r\nXdZm0gMRi2DmIaZ7cxXUn0BmZd/lXSXNKdxwHKecu0F8ByT1Zlg3NgIhCb+6SDYB\r\nlOv5YhnwSd00aUaSSYc2dKJmR2yfCKT5Li9wdtjlB6rYIb7vHRl3x98OIVE+O20S\r\n1jQEqRLzkaDIWOA8D9VeuuIW05tahms61dDi5gx7M/ALhFa/QsbkCJXRf07Pe4ki\r\nHE/1Nk3cohSibWYZqHssdutHBd+Q\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAEnEBGqOfE69FwAAAAAASTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDA1MVoXDTI1MDkxNTAzMTA1MVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAw9b7oiITgLVh8Yry44fRHl/xMuYtsI0Cg944jlh0S5ljKgUEMvt8/S63\r\nRH9+9eXvbFN4L9EL2+RDhWd5hGyg4gQeKtxO7D/+JUoTIamIl4pXTxhO5oORnS9k\r\ntWp6lc1OfpYnkgzrkFHICKggDtCpQxp7cMtM8evEvY/7WvmJDbAsgSRlBIeyVZqU\r\ndfw4ahzvsNmMfDGx2JBKgB5mndVGyg96yCHy5+7XKOkkcr+NKHdnBM3k546rGlCV\r\nErgPVuUkRxrwIa3xD9BRewoihWG7sbuxny49CrdbDi3WqK0VPSJGZ2y5ipUTwndi\r\n/+QhiK5expoHO0hl20DwRgq74qB5zSs379PcTQz59OvUDMi2fiErDYnCT75X3w1b\r\nh2uGBFIwonYXGHU1s/SaxQlXErGplgkLv/tBPAXu8sk+qANHaY1EfPwpPfOXjIxl\r\nRT95moW0IP+CPmhV0g2ZPKNn0mIRPpf8IzI5O4pLe6xfXDekQnNcGaBY9nN9LBO3\r\noi7pBBNObi17J/ebVg2rScg+KAWVVf09iLF2inpoFxKOJQz//poXo2fAvYVXnXJm\r\n99qJvY8gFyOyg2Cr2x/Wp8yw/u7H4DztXuFMYuPEVpR9/EeLP2bzrpdbJpj+SPT4\r\nU0OmtjVtKNR4aOBNBVWmzxV+WKRBfpkq+pjpRMkgFapXWtjlXV0CAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUluoFkm4uQswgfjWGaL4s\r\nMWhX+14wHQYDVR0OBBYEFBxS0IHKkOkG4KzpGA07z01trd55MIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAa08V3/BsJsIOjn2Qu6zUb0GosfdvggVX36PY\r\n9OZyOn5d2+tPPjG2re+uovdpuLKx1YH0iBX4kIL05yObqKMAv+YO3Ihj4MkcYy6A\r\nk9DbHyQTYoeSfaryn6yo7kLYCz6E+li6HJ4FVx13PxpwqDXWUu+Yf5Kszj56IqHx\r\nTI9LV1ZbqmZYk7fQIPETYENkE23ypgh5snRtqSZYTw6HASkHI4E7NgFkOATnIcs2\r\npLGzcc9vc/QYlj3PT3ciGdpGkz8l/A2MMqC4eleYFTBSX9rNNG0tf0M+5fVF417D\r\nmtqDlglm9bWpgrdLpmcj28f3766EBJBq9zza4M9dAGBWBQx0c8BR9saGATd/U8lY\r\nmlTDhnRdqJvvTbtPzFFmTF5jrANky12jKlaHHTyLETDu6OeDbVEyJNuhj0a+cQ6r\r\nZwYCG/k0WCzUx3MMq1A11uxvseoOmpIqLOGfkEdmBPQXkKC02vyjZkxF0pGPNNcy\r\nBSCIlZ11UtC5ghcZ2Wg/U4bAogTv/XAnjwzLpp5V7mcepzcBagiFlQkdnvUKNI/I\r\nLkerOmrgKe0rgT+ICALZiq7hIyeuM2uthyD3FaBFf62WOtDD6Jfwkg/3LI7of+HC\r\nGZ99J/xaocq6NFYqzD/9H6n0+biogXUJtm7mKhQO3PeLz/1aDIwLfKqZFr3PCStN\r\nvTWqAdQ=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFYLVFiDd8BlgAAAAAAAVjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4Mzg0OFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAxIoR15PqTSSMns55DdeR97gCwVWRoA6zCYbU66RoYrXuHSpcJM+1tnHN\r\n6B2gITXD0iDoTLpuOvRlM+12v0c8cWdzVoHuRuG0k1ViNgSELeNw8SXSQ6jmvgPy\r\nH6fg+NiKLkjYrJuIp5me3/asqMTeO6MOkeimS67PYerzkMYoC7BUEUacludZswsM\r\nFZnsM/vHCjIpzQMGWyUzju2ANT+J41Wz9AmukpPQFNzyq9566BEU/4MJh9Yg5aSR\r\npzI1gU8r4Y9ABdOgjsFnEm8BSSdlWLgalKevYPMLX/FO2rFufFgcNJq3Y8rnAtJD\r\n0k9jt7isXmJgS+JNfANvY7+jXQaCkwIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUOLjGDtr98qbFC/XuACeceItvo7EwHQYD\r\nVR0OBBYEFOXZm2f8+Oy6u/DAqJ2KV4i53z5jMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAYI9s0aXNjS8k6w/pyYwcd8HBPAjpWHJp7vBNsa9rDbau6raD\r\n+QWjj+hO5OKUkNchKIkK3xUc/iDAMNALDLFqUOaVTeMh5fu/e8Pr1AX1R1c5U1Yd\r\nxExItrFARqTCCIQpLz3cTu/9KA5QgUQlnFlrxA9IHq9G6k3TvTB2AngUzXBhNhl5\r\nb8ya7LK3dhfqf2BQHJ7k1XReCJLYMxI6PaG0F6mWTCFNBbBxgjsXeXfjYv2li33v\r\n48ALT/NXFoOTbAOP4EFfLhMDnx2O6cFOKrYT9O+EU64oJ/0MQDQSq9PVos5J+RW8\r\nvD/h2ycPqMnmsjvpJ4pWJZP+YSxy/HWMwbZt/Dv/UobeQqLCIXGnODv87K+1JVo0\r\nO3c1NtGJu61JyXwW8id8VSQuc2NzEr58rOOGMfU3gHZMSNY2gsFs1gqXC6MjtX9O\r\nipJ+dqr7lgRvpDN9bD2kd9CdOWsxz6PRPxOmbUittmpHdABMZuaeKB/5MnxVrpNw\r\nlYtJYXvKRY1V30kjFSsyLv02YYKb8MI/NfWcjMLw4eaEn//ST+sf+LjB9KF8TxBX\r\nxuBUpQVA/TJX9GEqYMZt557A5u5odSVcac+w0/Nn4E6WzFLfxMr1O8OOOQjzlG3u\r\n5BPqprm+utwEHBCU4iVcZOdnSgk1dm7C5xmmTylFRYOlwVrFSPcyKy0+6H8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAEso8JmcB0l1ZwAAAAAASzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDMxN1oXDTI1MDkxNTAzMTMxN1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1FFhjk/dgVlthN00OKObtbEisXfH40OyapM9KcVlUPnMElPROdKi7XPQ\r\nagq+Ry3QLSSZgNWnkahCSxE81oyudrvlhpR7NpcDPZHsYFw6qsEiirml0hc5awSq\r\n+MtFo9pfnr/zQstb7xg8wjduWjANvO3E34jZbfmCyw4gU4TRPIa9rpaV0N14hQTk\r\nKcBv+S12udS181oWcTc66zxVXUHNK15PRv31jElEYQKX8EJWCe6ccJA/cJD282sR\r\noEhfuUvzXHOeWD1jXH+Eh+mKuhLqiQHPJH7TJRMsN77ndtHH9us3Ak4l9AmGNZZf\r\nwNquVrHAiTw9Ai90btckoeMRn8eogQIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBTX/nF7X/NZN2T02QZU2G6DYuwmyDAdBgNVHQ4EFgQU\r\nlUWMsJMswORfcQ0UpecnwcNjm/cwgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQCb7VpPdQaBSKQdwDpgFquVkVtcKzEAwsVlzIENIrlRsOcBgvZlW9QKwgCd\r\n6xvrF9smidaMzlYuxYQypQ0RQEHDKJ1SJQLc1ZtR7fWf0xHqU0cgX3hktDNyN5t4\r\n7rMtYOUhygcZIxVQ2cpkyLoilwnb/q0Y0jOnA7eo0r9K67TJ9CP2m3ZUApzRaCwv\r\nqQE8eNZvngy+613PU11A2EFuTPXoVNb7S3w8amz+mYYnJCBhxf4PdYA/3DZ0q3FP\r\nfFxqKAbuNtXXHFmYn3BBMGSn082Uq8RsAvj5XEkI/xylDlwG3zT+QaIOrJ/06Toz\r\ncT0ewSlyNAB6LzGp/HLTIffhSNBVX8ILs558r6VcnTE21awdkWqnd3PiPkWADD78\r\nDVSb/7QOsBdZp6BKkcDzTc/uaDGahR55UcapkOMBSbngkomK986ITx3yUITn0aV4\r\nBEVbYQQ6b9l/eNHRosiwL52QPnYl6fJRsl0JuUzy9T5DrwGGnRgKQAOmSWPRTdt2\r\n14MWrxbLFRRwvqt2COK82jPTAiZ3XqYSZzZce9bSDsGSm5VpwWz5+xyBYc3djzKR\r\nThctXJrwftNyZD+LBc/4oLOTYLpDB23eI8rvb6Xfm3A8ANucIq2muavxi1A+eyYM\r\nQXwyB2foIV9yhDIA5I1psyJo+CwM9CcibRTjjNL5ghEkoSDjyA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFSoP4knG2YAHAAAAAAAVDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzczNFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApuAstd+jxOmcAhw1KNXa7fDE4SFe/7SdG4avz6VQqep4ofwJwZTxQJNQ\r\nBC7dybKZO2RBiDzzayV9PCxmK9HPRMRmuj68x9BRyoEbVU1tX4HtiBK+hAGiRNQu\r\nPRTYcSs24CgjI3JrxOjNesp8iE8HUVntN8ueXnpTQLSYOR2TmTGM835tkTplflX/\r\n/zPtZvsXSZz+JssQ9SRcXS2t/fPDpKfNVatOmq4iwtX7Q6IO/WCzAyEzacjAFqml\r\n0/PRYT5O+jiRO+TImZ2RD0CB9rP5CYwN2T504drkKteNaT+FT/teBLC+JraDjh27\r\nv24yknl1t8dXCSS6l/UBGBGVk+gr0wIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUVSrR7NlDI9ZN5GcKVaV9JEKwIbEwHQYD\r\nVR0OBBYEFK55wmtdJYgTBvYHCcOXfHuXjx1VMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAbgp2LNvP1OVFkH9JTg9rTMksjvLIpzaqJehSp5+3YNzGl/TH\r\ni3Kg/rbtQaKErwipeLMhmqWFuT9kB22eeyoBSxx3JTzRmKtcJO47IX0qymW04v2i\r\nI2tVWQigwJWtE08Z16Q3NVdgAox6DDnAvmV8QDlPhWdW0gGcszZqFD47SJltU8JJ\r\n6D+xuDl+xUIA5wQ0987HRo4dSx3Vny1cd98GdMepsOnCpfm7ZQDWJUggp8m8T/jv\r\ngj28G4JNV9nsx3TT5D4xFZ0rXUlQNmhJFesprLt8NqOoKqmP40WdqrpVIxlu5pdH\r\naf/uT89gHO3Zy+iqNbCDRB7zSBtaalaqLvGpE0xV3p+xpjY1CujjvKp+rUrGwA1t\r\n7aNRowd45Dn+kESi95bE16V2k54YbRvgkwQgqyFUiissogOtaOwQIjuv5NUMkKnj\r\nWz1S1nsMTwZWQ20pT+SG9IMWxAP+63fLIMxWXSbwkTo1Q7JVbr7ZnbNjPrzwerrq\r\nTx+CgfCjU2TZ2WaqYnKoGlgjiZkVraQ1JYJkEr5N5+12CnAuVNzn7pMs6HUSxc8Y\r\numBjy+KA0I1XMvFerh+fhEVad7kOgOxqE1uLdXZxkOXHC1N4FQlkI65Padcd8dyM\r\n3g+er8suC1gf9/fWU0AlgIqls48Wis2JISOeSsMAi3BDvCIpp5PHbuNfj7A=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFr7ZWQR1r6OSQAAAAAAWjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzN1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEArMu8k7Kq5y6uDXZk0QxV9Ya5K3Mb0/sCyV4fs48XfAgL3YOHYTZ5o1uB\r\n97VZ/oXuenXaDcoDE18WhOavpqjWHc4eb1QeGGCaB0MoijTLGPzqwWRdByW6l2U2\r\ngFzjKWKtFncIj/VW5S98uCDD8b0SX278XKubkKv0Zn3m1E2wVrTvG8Jc/MuXF0WX\r\ntjFRRJPY3keED1zFNEKjckE4ywTV1atTqnKbmj2rcQucHJ4ufZ89Hel/xLL0bFxc\r\nJnW4Ky8lZ4Q+G9brYexh/iEBcSpNQlfLVJrKZMlAwGPcp1SBGxU9GlSV7kE1LLCS\r\njpS5d6/qw4VA+z5y9HsHN225oBhpAQIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFHrWGYUoeWxxdh5g+PNL76IFQhYdMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAU2IUk2qTwWTtRBKzMTaRxYKvTyvU1nyQLxko\r\nA3304lciVsdA86+jhEkvnCwZeAHoOtYuPeQJdeyhYUhVRDAhhJauvE87FB69gM6h\r\nYUnRqiy+vekLrHB/1x8njoLHmcppjOvBzziOPSqvf8s6O8tJ5AjY3398sm5ckH37\r\nVYHa/+bAYCvEsYmgDGN8L25QvXScTmTthSXHlzsCItPpKFs385dsGJnFD0KcQ5c1\r\ngLmV1bdHnrWyy2mqB819CFWtzhnojtzXxZLuEfTBS18u0qoLdN8KvgB2BvfgZtY7\r\nx+fbkiyoZfnZak0Oj45Z9Z/6AQ1uHGSRadAh19mkcrkPwHktc/3M1PJ69dwZn8Ez\r\nASzYFf8QH58i5uxdou73v+5Bd1m5nmtFCyLC6QDtFYH0pkvmafBx7PwyrgTjq2Xv\r\n7eWL0wXESxzY4HpjMDO36ncsLvzI6j4CyG4cpA8F8+9jwizWqmKMQUWt+VMICsP7\r\nRrzCJ35ogFGWF/dC2hjdjBXjcyLaliR5nE+sDx1PVDdIu7y8oBi60+Vzl0+BSf8P\r\nOdssgwciUpWVP+9xf6SZ7D9BPmLwgIJZ4oPc5K7cTOR6ksQQg8fO44fmOCRfVD/T\r\nDj1e39ijjkmcXUvrcu1sh93vbupLKp4Guruj3Le6iQ4Hla6Pr4znFKCzKk1+RrcQ\r\nVnsaqio=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFOufo2CImJDvAAAAAAAUzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzYxMFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAz2IfhGnsNWpW1cYZrm7f0KG7FjkmtAufsz6xSPNM86b5+jPDUpkOb7U7\r\nj4cWGBVdrYYqWUkziZmWPyl9WLw43KGzaMT3xTnm1xWyok8Z1D/ytHfxFI5t+Xzk\r\n+pcWwIZzuElzEzAQYnVMyfdxD6sM2winZ1ehDpvJeLTPcuTPf5fDYpcrnebODQ+r\r\nnsvq7oU7bHp/jTkGP/2hNzNLR7QJq+rOaHTHDky5yWrsMdgGj0dJXmId6RIfgbeq\r\nJyz7pK0OnoqopPXzZcEQJGNdh9tTh0DWpPGkCWvp4yC2Sd6VSDIApnIpXRn5WNGc\r\n79eeuL9eKvQ5W1zq3/j5HlmwZvPOE+3kPe9r1+WMazNqbhmVk0gUfZX+cnJcy8ZH\r\nqZhjCnW1ihCHzNxMQypQLrnOgVCBkkkRj466iLGDMGL5IyTji2AAp50wMiZuVQX6\r\nwY4kcKqLsjSPpDpHGIie+58/dh9xFgqJzV0kNbAvehRlbwzQnRJWzr1UgZJgjluN\r\nlLpJwTmUIe3I4FzbwrzGMOltYu8XbdFAfyPM4fcfqJwFTF2xI5OYNC3Rcou9OSQT\r\no+ce9/rON//vZNZmQ+TPQ3nkPoKus+JX3EFJbevLeG0IvvC8c2ABwv6cNcvbSSoV\r\nXP+XaBLuXe5A3G+Tdr33bVhKKnbKiravs7sEeKvXVrpDgilOuG8CAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFJbqBZJuLkLM\r\nIH41hmi+LDFoV/teMB0GA1UdDgQWBBRIo61gdWpv7GDzaVXRALEyV/xs5DCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAArPH6tJjsM3VsG3zdh/1Rh3LDz4\r\nDqyUEJEXiM+Sa1kCncVvIqI5GkFKGM3Ur3hdx6xxe5F9gPvUdL22Qf0DLaOclksk\r\nO2FABXqDRv0P7k5yyryzTM/RmLhleut3Fc8BUdfrkmif8Znyxp12sRxK0UgEf6iI\r\n+dEZugVpwAl8IRUk9O201Q87q3zI30NgPT2BJiDycKaKQJF634qatubvL28JaiOd\r\nk3uxWfcqKjO0oeSJ7pxgAiH1rCah7UN5T2d3V4AmDQGLPo7lwX1SKZewa10PnF0X\r\npjE+8welxOK+4pEPl2kRdMDpr9/XPXWpAPt2h67Z0j7x5c7nDU/eZ3UjRkJePoIQ\r\n5aGZuxZ2diziI4JWhbW+kF9M8T0CM1EUIcQV+8wvvualM1q0IN+SJ1X49tt8n3y5\r\nfEAur2599a16z7zg4uF1xI/SafWXMjC8MObCHjR5xodSQ7IxvGyl+6uIkENsiQBF\r\ncuM55MMUELl0VM0+n7Kv5K2Ur+heLzNlTTy2eoiU048g8iQmZzP5C9y4hUE3rYgJ\r\nRxP9ovHl2km91RDTei9aANUGIB8U2uFA7pxe0G8Kp8WSF0a2DtZu7sf2lGjKvP+7\r\nJGaMrJn2bJW6cDEPgfyKCio8kCVtFg7QTtkaZjF5J6AIB0B7aHNPKlAE2T8O2/Z7\r\nJIvM+ijPG5W96tZP\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFjSjQKPPAEB6wAAAAAAWDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4NDAwOVoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA3Pi3nd+o2ItxXWvhyaIDXRbrxgB1wqI0wK/wgC3vs2vSbIHdSuOrtac+\r\nmR6Ag8rE69QQOykN2KJIQI53O0egLWUqjDMa43Fkh1EWTAD0B6snyV91Lt24YPPq\r\nOyJZLhGCtYJoQfPQxZjgW0PknDvWCGIBPFacj86c84QzQdmNBMPrObC21S/ilK+H\r\nGjwcYx9Z3dSeK2CPLLkb3C0HzWWLBL5lFHrdM7qphSAJ07g8/ggis/b4aHdWOlN3\r\nfyySWbuTLQnX8J1XZdWGc+7Z60gzt2jwUc2kgpjcpHvV7QYmy141rjiQyFDNUf7x\r\nFBeFIpLDPoxcfAsOo/dtVfxp/dNMqfAEC27QrUogtIUOcCaSZ5r09ECOuBW6Mood\r\nDIx4bUEhXOJmZBtpzRXhVVKTC7Aqs3PTrPehspCxOclx7c8aESASwj6SSWpDQi+x\r\nrKm2DgTIgvVIdyBNdKhxhGNyl1t9jTEMAdwDmY6pN0kMLCEdM6v9fG0nvtFFLU/m\r\nj9Ojh8Rtf3YWiUPd2cI62tVoXckaP3TbdCNmGysT8ShFNEypEINWIl49U7V00Iec\r\nOveCbkfsnKnT/o69znrWUH+Pt65GxrqO5A+To6WU83OqLxljS/cyBTQmrDh70Dgz\r\nKXDXN3JVW93RLoXuNyAhd1nUOjKOI2tmPhEC4Cz7lqmVxDsQaZMCAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFDrHw8rI3g3T\r\nksAnici+l0dPRWlgMB0GA1UdDgQWBBQ5cV2pFRAtxN9+L1luQE3A3+82mjCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAI68ze1N9ZqKBI7Q7BXGlc0k99wW\r\nCoCZu0m02crvYeITKUC/eizH7s6Sx2Kk5Hnzz0Rzc8G8NpiWEfp7ppKeP1jOMv11\r\n7P1KB6IHyRLdW7vAIBiJy1qhbLAxseR7xkvDKv9yjZYL9Q7XtlSgrd9NuEiuFsfj\r\n0ANzVf/Ea4br00gGc8ALfnvgGE7eUdBNqWKTzHcQREdjJPRMUqTYqcvd4qQbRXZt\r\ncXLt4Fr3pXcwG1UExrz3TP4ueyrqGot/OFDvMihs6Tak0qjYygT2dC3bEOBg3GSQ\r\nDdQVzBFO98f62/l51TBlWizuw3D4/dKIPfQU1Qt7sr9e7CLbecoO8EVtyt/yGRr1\r\nD4BPBGyEzC6QoqCo5Nh27yG+DxFtAGdm/vLaFeJOVM3q2d6nL1FvNzlHTHfOYPJ3\r\nNwHB30X9TpdRqoBLM5UC0m/ybKj4ygXAZBlkJXMO/bjtpqyidJ0SaFuE8EdV9YoJ\r\nKUmBw1ZuZd5GHbc+Ilz82WX+JWZ0efU/f+75Ywvntu/3s0OsnpVoqrqM7TDdzE0d\r\nwRiZ+mvtgIwp85+et1iEdaWPj+d6LfJxpDDCPhaqh9hnNIkZFptndwDwRE2MV9Wr\r\nlUCSA96/2ubHsKt4E2D96KvNog6MKdyEGz1sZep1yZKqE4cnNzGNBGRel0BRa2MK\r\nyTOQsCbnpQGhEz0m\r\n-----END + CERTIFICATE-----"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFlFSsCTnaMEFgAAAAAAWTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzM1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA0E8VPmTCi+s/ukALr8kiz9n0QMveOlaFztd/3QikdEPvOujCuE/CXDKt\r\n0KhyGBUshmHGEC580aoe2Ze2gBJ/Dhs8FjdCjH4IyWU22QOervNkIc2Xd3EMxVZL\r\nYmWmDp5yfa0DwHqsqLq1PLwyk9BfYhh2gp9Dp+vECu4FzvVoZd73UaTpvcQKDsXA\r\nTVR43QC8AiL2AiHgOB3xE75MR/kI1OA7mTaOK8uZbQZCtyG1VMtNL+Q4Di0nB9cD\r\ntqfQj1/UCA76Nr9a7p/TUnck94zlsHE5RVGvDy3GKpa4cmCb+nRpF+ybZjuw8fPT\r\nCY5JGTLZreJMgk+Tej7iN+BYyn4Q2QIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFPFGaMbxw/ArLX2LauGy+b41/NFBMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAD6YslCi5IxgKWQYVzHClxGTpTXEarOPDACuQ\r\nnZIgM4hbk0rMqW4aHFd+paZmMUvNU0HWtIq7aAbNZGCdTrb6g9xjQKrdivWr24BZ\r\nBDxlYkU1tNvdQmafd/RESZ+TpElbuBw2EW0qtK2K+BfL1fTcwpIWRoqWcZUc/CzX\r\n43yuA3vE9sw7/HCDOEQF+QW12B6LDt2Y6DR2y8ZjYsIM0X99mgCE8/HYL4AR3+mA\r\nHjlncC3qlXWRUk46kz2yU4gu0k4P5vexNuGvU9uHvmqQERhhHYkAiW5pwCNFdZDw\r\n95vcnWocRk5TaOPp74v06msx58qS9Re9Fz5xwp6dGGqvWgcF9UJtVVyXMGYB1/1+\r\nyd5n8VpvHVWlrPNpcT0p9YLeou/HKZIiekolUKL6SqCbDFwSUMPM1xWSK6RbphmT\r\nJZdAoKKLq7c/4bFPOxeKvBjT6PrWP64ktWN1Z+AYQlBp1rK7A/ZkAOh8l+17K4VJ\r\neb1whd4SmNSnZbv9jhOeWhrbRsxmFJ1SFHhoBhS3Q/WZWMJtLu2Hv1RHnqRgLD3y\r\nlaC9qyj44pXka/MiLauGl0qjRsO6i0ZV/nU43/eZt4EhWewfmXRnfNlXA/u6abVS\r\n3lkNTlQaJAmTijbKk4JI0qQl4e+xZloOXJVNiqKgYSh3N93Bi+8ROZCLqqpwrO+C\r\n8C5Y9Bk=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIFVjCCAz6gAwIBAgIQJdrLVcnGd4FAnlaUgt5N/jANBgkqhkiG9w0BAQsFADA8\r\nMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAwDgYD\r\nVQQDEwdhbWVyb290MB4XDTE2MDUyNDIyNTI1NFoXDTI2MDUyNDIyNTcwM1owPDET\r\nMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEQMA4GA1UE\r\nAxMHYW1lcm9vdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALv4uChY\r\noVuO+bxBOcn8v4FajoGkxo0YgVwEqEPDVPI6vzmnEqHVhQ1GMVeDyiRrgQT1vCk1\r\nHMMzo9LlWowPrzbXOwjOTFbXc36+UU41yNN2GeNa49RXbAkfbzKE/SYLfbqOD0dN\r\nZLwvOhgIb25oA1eAxW/DI/hvJLLKh2SscvkIyd3o2BUeFm7NtyYG/buCKJh8lOq8\r\n0iBwRoEoInb0vhorHaswSMmqY1g+AJndY/M7uGUqkhDGBhLu53bU9wbUPHsEI+wa\r\nq6WypCijZYT+C4BS5GJrEPZ2O92pztd+ULqhzNRoPj5RuElUww7+z5RnbCaupyBY\r\nOmmJMH30EiRSq8dK/irixXXwJraSywR5kyfmAkv6GYWlRlxFUiK3/co47JLA3TDK\r\nN0wfutbpqxdZQYyGfO2nZrr5JbKfSU0sMtOZDkK6hlafV++hfkVSvFfNHE5B5uN1\r\nMK6agl1dzi28HfJT9aO7cmjGxl1SJ5qoCvcwZNQ2SPHFdrslcwXEFOMDaEzVOA3V\r\n7j3+6lrT8sHXg0sErkcd8lrBImfzhLxM/Wh8CgOUNeUu3flUoxmFv3el+QWalSNy\r\n2SXs2NgWuYE5Iog7CHD/xCnoEnZwwjqLkrro4hYWE4Xj3VlA2Eq+VxqJOgdyFl3m\r\nckSZ08OcwLeprY4+2GEvCXNGNdXUmNNgk2PvAgMBAAGjVDBSMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEBMB0GA1UdDgQWBBQpXlFeZK40ueusnA2njHUB\r\n0QkLKDAQBgkrBgEEAYI3FQEEAwIBADANBgkqhkiG9w0BAQsFAAOCAgEAcznFDnJx\r\nsXaazFY1DuIPvUaiWS7ELxAVXMGZ7ROjLrDq1FNYVewL4emDqyEIEMFncec8rqyk\r\nVBvLQA5YqMCxQWJpL0SlgRSknzLh9ZVcQw1TshC49/XV2N/CLOuyInEQwS//46so\r\nT20Cf8UGUiOK472LZlvM4KchyDR3FTNtmMg0B/LKVjevpX9sk5MiyjjLUj3jtPIP\r\n7jpsfZDd/BNsg/89kpsIF5O64I7iYFj3MHu9o4UJcEX0hRt7OzUxqa9THTssvzE5\r\nVkWo8Rtou2T5TobKV6Rr5Ob9wchLXqVtCyZF16voEKheBnalhGUvErI/6VtBwLb7\r\n13C0JkKLBNMen+HClNliicVIaubnpY2g+AqxOgKBHiZnzq2HhE1qqEUf4VfqahNU\r\niaXtbtyo54f2dCf9UL9uG9dllN3nxBE/Y/aWF6E1M8Bslj1aYAtfUQ/xlhEXCly6\r\nzohw697i3XFUt76RwvfW8quvqdH9Mx0PBpYo4wJJRwAecSJQNy6wIJhAuDgOemXJ\r\nYViBi/bDnhPcFEVQxsypQSw91BUw7Mxh+W59H5MC25SAIw9fLMT9LRqSYpPyasNp\r\n4nACjR+bv/6cI+ICOrGmD2mrk2c4dNnYpDx96FfX/Y158RV0wotqIglACk6m1qyo\r\nyTra6P0Kvo6xz4KaVm8F7VDzUP+heAAhPAs=\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":0,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Failed","repairEnabled":false,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thvankra-nova-billing-sku-Standard_D16s_v4/providers/Microsoft.DocumentDB/cassandraClusters/testBillingskuStandardD16sv4-v3","name":"testBillingskuStandardD16sv4-v3","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2 EUAP","tags":{},"systemData":{"createdBy":"thvankra@microsoft.com","createdByType":"User","createdAt":"2021-10-08T20:54:48.7061078Z","lastModifiedBy":"thvankra@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-08T20:54:48.7061078Z"},"identity":{"type":"None"},"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"testBillingskuStandardD16sv4-v3","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thvankra-nova-billing-sku-Standard_D16s_v4/providers/Microsoft.Network/virtualNetworks/vnet-canary/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAE5Hd9yskSH1BgAAAAAATjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDU1OVoXDTI1MDkxNTAzMTU1OVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA5UFGOQgmohqJHkbMMcN4cnK+mAoScYUAR/njrD0x/GyFeTko+QXMU1JJ\r\nIePmVcugmyO4xX5ITShZWy+/qPAWy3vwT6HzBdFq5eTGbkbFCrQdh5w1+jwOApMe\r\n9ZDlMDO+RUtJe1XxWqi3KRY0e/pJmpOk4IUEjx6wxvv5MnSWhMa7aepnkuCS8lvF\r\nNl9D5oUGIYvoDUgVMQSBazQP2zjRunMT9JOopFKnZE+L7NY+XDtla3I1uZeMeakA\r\nfqkNjx6lkUIgcHPhSMy5XHBpOeFdSDjBA8dNk6E3VSlLzvPcHdaHI7QrmK/43wzf\r\n+kHpDdTXx8EdOqm+pLHoKLWcjw/P8O9RAMiXefxGnQKNuP8T+/prskR5esucJQkj\r\nrWSu7W7YycmIg1rPCd7Qw005/sc58eLPN+Xrj/Aw7RSR0A719CPZMjoSfKTphSEK\r\np+ZB+5j/V3VEzjGbL6XFUezFfaIZ+A7ZtkaEQYDH0fVVziPnhQhJB+Uym7a5arB3\r\nqiMMw7Yjos6iWkkOaqhaCHuN1zC374xsBec9mrJ7bfuLTNtBEKC1PhdZrJM3UDCo\r\n76v+3mnKouN/7vyVkbiLNb27MXRigXFbO02opR8prTkvv3af+iq6+xjmVWZhsILI\r\n0HIBk9/HoMZCCb9e95RQVmVwVNrwa24neVWl+JEw50sqLMapsGkCAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUOsfDysjeDdOSwCeJyL6X\r\nR09FaWAwHQYDVR0OBBYEFEKY1e9GMTrmL0fNVVel5jUfu/yRMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAuaX699r+ayL7JphKgdiDuy4iPTwf7fTkUsLx\r\n7ixBzvnUrUASdS9GJEkpsewdipRfMycn3UXatnQ6rudCqBgsExJzHBGlokhvVaZK\r\nue0oIlJstnKQDOJCpJem9NkvwALP5z3WZoqYf4EaaQXUkMAJJ2qxw+mksSBEu+MJ\r\noxgbStKv98q28ypOVLjaFNH/VbtAG/rIcqNyOdjAPcgMcohe7lGO1WQtFxPxtzvS\r\nZfgao/ZjWeNDFzy8FSInim1q69Syl3Y4dzeAlG6PiC8t7upDQzo2AJxI1tW0AkKV\r\naJIS9rGZquLN5MTbYozjEyzMvSEYFEpx+7YKQGayHz3eCGH4BzD43YPt20Cm4BMN\r\neyV64+d9PufCA2tzrIQ+VJhsZKb6qRgV+Bp6AfpgeyU6oRkqsWKJyKyzp6o0D+Si\r\nq3gYJdD3W0+X1jUJcQuywYLRg78rVE3A6VJ7RIEjXARQV19hJvxchCoqfbny/0bX\r\n9Bb3Rtr1OAYhUml6Z6JdfnH33KfEJvFa4wlKRBxpuw9gMG5ydOsbZ3YIJDWccTLH\r\nQZWJk/Lakd/+uLPWOzzWQCf7nPapwSRjtfRRLZoX49PIQkrGM3dpLLGktC+sg8bc\r\nvQ2bO79bKJazcsKuNK0dOpepIBA1mMD81DphYmc/RMF9KXKdKz4Ugh4HNqkltIsG\r\nEtaYPCM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAE2e+Zx9LtWjEwAAAAAATTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDUwOFoXDTI1MDkxNTAzMTUwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1RZFKUUXNWXgbh7dm52Irso1hGPDEL9ZZXYz0civ0AAlDu9P/1okXVpc\r\nOPQnRxE7e7O8roTSctA4MTBGFIjrCythVzk6MJC1bgGv7qwCV6o5P4zVSxQrHPx+\r\n2DPDIZlt3UV4RNLuKVvSZdzQt1UsxUOxvTZ/0mO22d6mcspf3I5Xt5h+7WlTgHAy\r\nWvvlpuX7LR8yTK/um4526bdhUG98I2nEURH2vnNSt3/Dbt1R6qoPMja0HhghuOtY\r\nt7Z77nyI2gOY2fRu3oM15Xqe8b3Qwx5IsSV/pTWJ34VPz24TfUmCQOVtu/m84ayA\r\nwSZ754d+JvkyPSdINV3tuLtbo/QVewIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBQbRewlXgZoN1BD7V/nign/FlWETTAdBgNVHQ4EFgQU\r\nvZx3N/n1PWYwyjVonISvG5ZVEL4wgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQBFtFQSE7TjElKEmwHyydrA/UEAzho7rEMy2lvNr2tgX/7WVWDqmDrTK4La\r\nm6/MGOUBYbF334Ywvprij/UoSpyMEq5HgXiCBxOgyUPSZx8x+XyINgCujVXRk9za\r\nPh1lXpYCV2qhIYAhazeprDYzX2im0Jwe8X/Xsl0kzgs3TE7medDW9CVEYS+T7SqG\r\ntmXhOg1FW04yUM0+Z73ZQGF5oqnE76kzpLvfn+YWA6KbLfH84yTpqylAD5UFvfeW\r\nMRoNUUckpsteddNba90soUzxeRwU0Loxj5Qsds2gB0tSIpVh330BxEDTIJ73FZIv\r\nvURqyoDor+Eu1NOVk3sdCM5nXuN38dc0a9fsSRoJkbQYTP9UNJPcUDO3kZoYWNxD\r\nWrn5J/ltaxPc1o7+USSm02C023HIrWBJkfnepIZKV8m7wkddcygJ6FQkxFU+NQUW\r\n+a91tIw3HTEHvmNlJddPmjgnE3k6GS1NLOC5IV/s1s4sSME3QYQAt+zr5TKRdZ06\r\ndBOSXrz66pVpkR2wuAvlCEuFk7gaBrKz4j+3wJ9CPhETezARvgpzQCw9es9y2qde\r\nO1rHPYa6IRtmjcVDvxfmjei66bQwoapDH/OMS6sPqqqn53l9g4HDDgWywWn9ad51\r\nL5NAvQYhHwSCG0E2Os5mUFYM56ZVA4WHVUn7NZsAXGnDtIwlPw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAACbGTID3uXpE1wAAAAAAJjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE4MDMxOTE4MjcwOFoXDTIzMDMxOTE4MzcwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAvBsRcCD4Z38LQPG73ci9jIpQv5tVQh8lLrcQ9lO2lH6pUVWi7T7jCyX/\r\naCSmit7fT6seN/kf6LP0hpgsU/wxMMv4c4+w1M16EiRc6GPJtSPNszl8ZNAzZj39\r\nxeJnAMhPzeABRLgzYgLH+9R3k8sIJMhSjcUfp63GAhKtdqhQeTOs7m87REtmAdo7\r\neZh/Ubn4HR1ZxAswmoWmMxMZw1KZj87395IxE3Ybj0m/V8dyskpxWdAzkvGeO//l\r\nb4FfAHVCCix9wsijqomj+jeJPHR/AF/5+MZXjoNDs6/+UMdSrEqa2fi8910J6ogL\r\nSMdL7NdV77U5551wZxeUwSEHUc4qkQr9cFAdHcdYiMnIrU28zk7O3yQdsyWdrTqx\r\nTbkoYn36Ji+aSyzs/u/Zh3pAWw9IvLaoq254Rpf1SWsvufE2YXaP6kUmvOE9Qrnt\r\nQ138fwe9CmPUT9I/cM0v16BDvELEH3KGsWez8WRFA5RAB5pPDKjMyZ7mNl+0+EDv\r\nMq+KYjtc9uWJoRsRe8mDnVt2JGRBazTCFd/m5HGywdUvg/fZyVfBrvsRhcahMXn+\r\nb+a6kw+gMY29dcNutHNl1ZuKbwUuvp0ShWnauFVqMSRP6kSgXjzM0Oez2CHEtnX7\r\nNTKy9+eXsqxkzVXop81HCR7QCDlKPkc78IRETKfQA/nHdu2iOd8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQonG1RafqmxKhDxP+NNvoz\r\n3/1FMDCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAJFaZ9bHSEXBMKUi\r\nxLJgRr0yPOBbkZAHGsXGsAAdXnsAcmRZnoMsJZwHJY9qa2SDdjWzCnEuk50KJ0Rm\r\nvePgWmDtQWwyfFT//JIccaFgxYsU2SjdHEi0DmRElJtLkYQorDjkqn8s2T8y95f0\r\nmdcNme7cQ8PsjawgV1hb7r1I0bRh93M4pDzRt0g08RoFtMGuqRdU3roMDbuid5Hj\r\nBnoT5MdJlYzklABw+JPOIFeqZ0LMq/RPyk8Dpzo7m2dSc78GitdNnWxj4Ku6l8lb\r\n0OHX3BL1eVKyKi8Vta3BjpzWuMQompgdzp1Eh+mDyfKV/+dlfIEPJI1stEHIEKWR\r\nR5yt35+RGXrmsmAwTZT5mcJk4JdAMhVnRnyWvxPzieYCR9DcIaT6+NBBYzQegOG+\r\nIMnLpnZp6qhbG7Nq9MXCqRY2ooojLCTLTCx8R2cqdYonJpB4lSkYMFYbuV7HoiNr\r\nXdZm0gMRi2DmIaZ7cxXUn0BmZd/lXSXNKdxwHKecu0F8ByT1Zlg3NgIhCb+6SDYB\r\nlOv5YhnwSd00aUaSSYc2dKJmR2yfCKT5Li9wdtjlB6rYIb7vHRl3x98OIVE+O20S\r\n1jQEqRLzkaDIWOA8D9VeuuIW05tahms61dDi5gx7M/ALhFa/QsbkCJXRf07Pe4ki\r\nHE/1Nk3cohSibWYZqHssdutHBd+Q\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAEnEBGqOfE69FwAAAAAASTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDA1MVoXDTI1MDkxNTAzMTA1MVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAw9b7oiITgLVh8Yry44fRHl/xMuYtsI0Cg944jlh0S5ljKgUEMvt8/S63\r\nRH9+9eXvbFN4L9EL2+RDhWd5hGyg4gQeKtxO7D/+JUoTIamIl4pXTxhO5oORnS9k\r\ntWp6lc1OfpYnkgzrkFHICKggDtCpQxp7cMtM8evEvY/7WvmJDbAsgSRlBIeyVZqU\r\ndfw4ahzvsNmMfDGx2JBKgB5mndVGyg96yCHy5+7XKOkkcr+NKHdnBM3k546rGlCV\r\nErgPVuUkRxrwIa3xD9BRewoihWG7sbuxny49CrdbDi3WqK0VPSJGZ2y5ipUTwndi\r\n/+QhiK5expoHO0hl20DwRgq74qB5zSs379PcTQz59OvUDMi2fiErDYnCT75X3w1b\r\nh2uGBFIwonYXGHU1s/SaxQlXErGplgkLv/tBPAXu8sk+qANHaY1EfPwpPfOXjIxl\r\nRT95moW0IP+CPmhV0g2ZPKNn0mIRPpf8IzI5O4pLe6xfXDekQnNcGaBY9nN9LBO3\r\noi7pBBNObi17J/ebVg2rScg+KAWVVf09iLF2inpoFxKOJQz//poXo2fAvYVXnXJm\r\n99qJvY8gFyOyg2Cr2x/Wp8yw/u7H4DztXuFMYuPEVpR9/EeLP2bzrpdbJpj+SPT4\r\nU0OmtjVtKNR4aOBNBVWmzxV+WKRBfpkq+pjpRMkgFapXWtjlXV0CAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUluoFkm4uQswgfjWGaL4s\r\nMWhX+14wHQYDVR0OBBYEFBxS0IHKkOkG4KzpGA07z01trd55MIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAa08V3/BsJsIOjn2Qu6zUb0GosfdvggVX36PY\r\n9OZyOn5d2+tPPjG2re+uovdpuLKx1YH0iBX4kIL05yObqKMAv+YO3Ihj4MkcYy6A\r\nk9DbHyQTYoeSfaryn6yo7kLYCz6E+li6HJ4FVx13PxpwqDXWUu+Yf5Kszj56IqHx\r\nTI9LV1ZbqmZYk7fQIPETYENkE23ypgh5snRtqSZYTw6HASkHI4E7NgFkOATnIcs2\r\npLGzcc9vc/QYlj3PT3ciGdpGkz8l/A2MMqC4eleYFTBSX9rNNG0tf0M+5fVF417D\r\nmtqDlglm9bWpgrdLpmcj28f3766EBJBq9zza4M9dAGBWBQx0c8BR9saGATd/U8lY\r\nmlTDhnRdqJvvTbtPzFFmTF5jrANky12jKlaHHTyLETDu6OeDbVEyJNuhj0a+cQ6r\r\nZwYCG/k0WCzUx3MMq1A11uxvseoOmpIqLOGfkEdmBPQXkKC02vyjZkxF0pGPNNcy\r\nBSCIlZ11UtC5ghcZ2Wg/U4bAogTv/XAnjwzLpp5V7mcepzcBagiFlQkdnvUKNI/I\r\nLkerOmrgKe0rgT+ICALZiq7hIyeuM2uthyD3FaBFf62WOtDD6Jfwkg/3LI7of+HC\r\nGZ99J/xaocq6NFYqzD/9H6n0+biogXUJtm7mKhQO3PeLz/1aDIwLfKqZFr3PCStN\r\nvTWqAdQ=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFYLVFiDd8BlgAAAAAAAVjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4Mzg0OFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAxIoR15PqTSSMns55DdeR97gCwVWRoA6zCYbU66RoYrXuHSpcJM+1tnHN\r\n6B2gITXD0iDoTLpuOvRlM+12v0c8cWdzVoHuRuG0k1ViNgSELeNw8SXSQ6jmvgPy\r\nH6fg+NiKLkjYrJuIp5me3/asqMTeO6MOkeimS67PYerzkMYoC7BUEUacludZswsM\r\nFZnsM/vHCjIpzQMGWyUzju2ANT+J41Wz9AmukpPQFNzyq9566BEU/4MJh9Yg5aSR\r\npzI1gU8r4Y9ABdOgjsFnEm8BSSdlWLgalKevYPMLX/FO2rFufFgcNJq3Y8rnAtJD\r\n0k9jt7isXmJgS+JNfANvY7+jXQaCkwIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUOLjGDtr98qbFC/XuACeceItvo7EwHQYD\r\nVR0OBBYEFOXZm2f8+Oy6u/DAqJ2KV4i53z5jMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAYI9s0aXNjS8k6w/pyYwcd8HBPAjpWHJp7vBNsa9rDbau6raD\r\n+QWjj+hO5OKUkNchKIkK3xUc/iDAMNALDLFqUOaVTeMh5fu/e8Pr1AX1R1c5U1Yd\r\nxExItrFARqTCCIQpLz3cTu/9KA5QgUQlnFlrxA9IHq9G6k3TvTB2AngUzXBhNhl5\r\nb8ya7LK3dhfqf2BQHJ7k1XReCJLYMxI6PaG0F6mWTCFNBbBxgjsXeXfjYv2li33v\r\n48ALT/NXFoOTbAOP4EFfLhMDnx2O6cFOKrYT9O+EU64oJ/0MQDQSq9PVos5J+RW8\r\nvD/h2ycPqMnmsjvpJ4pWJZP+YSxy/HWMwbZt/Dv/UobeQqLCIXGnODv87K+1JVo0\r\nO3c1NtGJu61JyXwW8id8VSQuc2NzEr58rOOGMfU3gHZMSNY2gsFs1gqXC6MjtX9O\r\nipJ+dqr7lgRvpDN9bD2kd9CdOWsxz6PRPxOmbUittmpHdABMZuaeKB/5MnxVrpNw\r\nlYtJYXvKRY1V30kjFSsyLv02YYKb8MI/NfWcjMLw4eaEn//ST+sf+LjB9KF8TxBX\r\nxuBUpQVA/TJX9GEqYMZt557A5u5odSVcac+w0/Nn4E6WzFLfxMr1O8OOOQjzlG3u\r\n5BPqprm+utwEHBCU4iVcZOdnSgk1dm7C5xmmTylFRYOlwVrFSPcyKy0+6H8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAEso8JmcB0l1ZwAAAAAASzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDMxN1oXDTI1MDkxNTAzMTMxN1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1FFhjk/dgVlthN00OKObtbEisXfH40OyapM9KcVlUPnMElPROdKi7XPQ\r\nagq+Ry3QLSSZgNWnkahCSxE81oyudrvlhpR7NpcDPZHsYFw6qsEiirml0hc5awSq\r\n+MtFo9pfnr/zQstb7xg8wjduWjANvO3E34jZbfmCyw4gU4TRPIa9rpaV0N14hQTk\r\nKcBv+S12udS181oWcTc66zxVXUHNK15PRv31jElEYQKX8EJWCe6ccJA/cJD282sR\r\noEhfuUvzXHOeWD1jXH+Eh+mKuhLqiQHPJH7TJRMsN77ndtHH9us3Ak4l9AmGNZZf\r\nwNquVrHAiTw9Ai90btckoeMRn8eogQIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBTX/nF7X/NZN2T02QZU2G6DYuwmyDAdBgNVHQ4EFgQU\r\nlUWMsJMswORfcQ0UpecnwcNjm/cwgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQCb7VpPdQaBSKQdwDpgFquVkVtcKzEAwsVlzIENIrlRsOcBgvZlW9QKwgCd\r\n6xvrF9smidaMzlYuxYQypQ0RQEHDKJ1SJQLc1ZtR7fWf0xHqU0cgX3hktDNyN5t4\r\n7rMtYOUhygcZIxVQ2cpkyLoilwnb/q0Y0jOnA7eo0r9K67TJ9CP2m3ZUApzRaCwv\r\nqQE8eNZvngy+613PU11A2EFuTPXoVNb7S3w8amz+mYYnJCBhxf4PdYA/3DZ0q3FP\r\nfFxqKAbuNtXXHFmYn3BBMGSn082Uq8RsAvj5XEkI/xylDlwG3zT+QaIOrJ/06Toz\r\ncT0ewSlyNAB6LzGp/HLTIffhSNBVX8ILs558r6VcnTE21awdkWqnd3PiPkWADD78\r\nDVSb/7QOsBdZp6BKkcDzTc/uaDGahR55UcapkOMBSbngkomK986ITx3yUITn0aV4\r\nBEVbYQQ6b9l/eNHRosiwL52QPnYl6fJRsl0JuUzy9T5DrwGGnRgKQAOmSWPRTdt2\r\n14MWrxbLFRRwvqt2COK82jPTAiZ3XqYSZzZce9bSDsGSm5VpwWz5+xyBYc3djzKR\r\nThctXJrwftNyZD+LBc/4oLOTYLpDB23eI8rvb6Xfm3A8ANucIq2muavxi1A+eyYM\r\nQXwyB2foIV9yhDIA5I1psyJo+CwM9CcibRTjjNL5ghEkoSDjyA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFSoP4knG2YAHAAAAAAAVDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzczNFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApuAstd+jxOmcAhw1KNXa7fDE4SFe/7SdG4avz6VQqep4ofwJwZTxQJNQ\r\nBC7dybKZO2RBiDzzayV9PCxmK9HPRMRmuj68x9BRyoEbVU1tX4HtiBK+hAGiRNQu\r\nPRTYcSs24CgjI3JrxOjNesp8iE8HUVntN8ueXnpTQLSYOR2TmTGM835tkTplflX/\r\n/zPtZvsXSZz+JssQ9SRcXS2t/fPDpKfNVatOmq4iwtX7Q6IO/WCzAyEzacjAFqml\r\n0/PRYT5O+jiRO+TImZ2RD0CB9rP5CYwN2T504drkKteNaT+FT/teBLC+JraDjh27\r\nv24yknl1t8dXCSS6l/UBGBGVk+gr0wIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUVSrR7NlDI9ZN5GcKVaV9JEKwIbEwHQYD\r\nVR0OBBYEFK55wmtdJYgTBvYHCcOXfHuXjx1VMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAbgp2LNvP1OVFkH9JTg9rTMksjvLIpzaqJehSp5+3YNzGl/TH\r\ni3Kg/rbtQaKErwipeLMhmqWFuT9kB22eeyoBSxx3JTzRmKtcJO47IX0qymW04v2i\r\nI2tVWQigwJWtE08Z16Q3NVdgAox6DDnAvmV8QDlPhWdW0gGcszZqFD47SJltU8JJ\r\n6D+xuDl+xUIA5wQ0987HRo4dSx3Vny1cd98GdMepsOnCpfm7ZQDWJUggp8m8T/jv\r\ngj28G4JNV9nsx3TT5D4xFZ0rXUlQNmhJFesprLt8NqOoKqmP40WdqrpVIxlu5pdH\r\naf/uT89gHO3Zy+iqNbCDRB7zSBtaalaqLvGpE0xV3p+xpjY1CujjvKp+rUrGwA1t\r\n7aNRowd45Dn+kESi95bE16V2k54YbRvgkwQgqyFUiissogOtaOwQIjuv5NUMkKnj\r\nWz1S1nsMTwZWQ20pT+SG9IMWxAP+63fLIMxWXSbwkTo1Q7JVbr7ZnbNjPrzwerrq\r\nTx+CgfCjU2TZ2WaqYnKoGlgjiZkVraQ1JYJkEr5N5+12CnAuVNzn7pMs6HUSxc8Y\r\numBjy+KA0I1XMvFerh+fhEVad7kOgOxqE1uLdXZxkOXHC1N4FQlkI65Padcd8dyM\r\n3g+er8suC1gf9/fWU0AlgIqls48Wis2JISOeSsMAi3BDvCIpp5PHbuNfj7A=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFr7ZWQR1r6OSQAAAAAAWjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzN1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEArMu8k7Kq5y6uDXZk0QxV9Ya5K3Mb0/sCyV4fs48XfAgL3YOHYTZ5o1uB\r\n97VZ/oXuenXaDcoDE18WhOavpqjWHc4eb1QeGGCaB0MoijTLGPzqwWRdByW6l2U2\r\ngFzjKWKtFncIj/VW5S98uCDD8b0SX278XKubkKv0Zn3m1E2wVrTvG8Jc/MuXF0WX\r\ntjFRRJPY3keED1zFNEKjckE4ywTV1atTqnKbmj2rcQucHJ4ufZ89Hel/xLL0bFxc\r\nJnW4Ky8lZ4Q+G9brYexh/iEBcSpNQlfLVJrKZMlAwGPcp1SBGxU9GlSV7kE1LLCS\r\njpS5d6/qw4VA+z5y9HsHN225oBhpAQIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFHrWGYUoeWxxdh5g+PNL76IFQhYdMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAU2IUk2qTwWTtRBKzMTaRxYKvTyvU1nyQLxko\r\nA3304lciVsdA86+jhEkvnCwZeAHoOtYuPeQJdeyhYUhVRDAhhJauvE87FB69gM6h\r\nYUnRqiy+vekLrHB/1x8njoLHmcppjOvBzziOPSqvf8s6O8tJ5AjY3398sm5ckH37\r\nVYHa/+bAYCvEsYmgDGN8L25QvXScTmTthSXHlzsCItPpKFs385dsGJnFD0KcQ5c1\r\ngLmV1bdHnrWyy2mqB819CFWtzhnojtzXxZLuEfTBS18u0qoLdN8KvgB2BvfgZtY7\r\nx+fbkiyoZfnZak0Oj45Z9Z/6AQ1uHGSRadAh19mkcrkPwHktc/3M1PJ69dwZn8Ez\r\nASzYFf8QH58i5uxdou73v+5Bd1m5nmtFCyLC6QDtFYH0pkvmafBx7PwyrgTjq2Xv\r\n7eWL0wXESxzY4HpjMDO36ncsLvzI6j4CyG4cpA8F8+9jwizWqmKMQUWt+VMICsP7\r\nRrzCJ35ogFGWF/dC2hjdjBXjcyLaliR5nE+sDx1PVDdIu7y8oBi60+Vzl0+BSf8P\r\nOdssgwciUpWVP+9xf6SZ7D9BPmLwgIJZ4oPc5K7cTOR6ksQQg8fO44fmOCRfVD/T\r\nDj1e39ijjkmcXUvrcu1sh93vbupLKp4Guruj3Le6iQ4Hla6Pr4znFKCzKk1+RrcQ\r\nVnsaqio=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFOufo2CImJDvAAAAAAAUzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzYxMFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAz2IfhGnsNWpW1cYZrm7f0KG7FjkmtAufsz6xSPNM86b5+jPDUpkOb7U7\r\nj4cWGBVdrYYqWUkziZmWPyl9WLw43KGzaMT3xTnm1xWyok8Z1D/ytHfxFI5t+Xzk\r\n+pcWwIZzuElzEzAQYnVMyfdxD6sM2winZ1ehDpvJeLTPcuTPf5fDYpcrnebODQ+r\r\nnsvq7oU7bHp/jTkGP/2hNzNLR7QJq+rOaHTHDky5yWrsMdgGj0dJXmId6RIfgbeq\r\nJyz7pK0OnoqopPXzZcEQJGNdh9tTh0DWpPGkCWvp4yC2Sd6VSDIApnIpXRn5WNGc\r\n79eeuL9eKvQ5W1zq3/j5HlmwZvPOE+3kPe9r1+WMazNqbhmVk0gUfZX+cnJcy8ZH\r\nqZhjCnW1ihCHzNxMQypQLrnOgVCBkkkRj466iLGDMGL5IyTji2AAp50wMiZuVQX6\r\nwY4kcKqLsjSPpDpHGIie+58/dh9xFgqJzV0kNbAvehRlbwzQnRJWzr1UgZJgjluN\r\nlLpJwTmUIe3I4FzbwrzGMOltYu8XbdFAfyPM4fcfqJwFTF2xI5OYNC3Rcou9OSQT\r\no+ce9/rON//vZNZmQ+TPQ3nkPoKus+JX3EFJbevLeG0IvvC8c2ABwv6cNcvbSSoV\r\nXP+XaBLuXe5A3G+Tdr33bVhKKnbKiravs7sEeKvXVrpDgilOuG8CAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFJbqBZJuLkLM\r\nIH41hmi+LDFoV/teMB0GA1UdDgQWBBRIo61gdWpv7GDzaVXRALEyV/xs5DCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAArPH6tJjsM3VsG3zdh/1Rh3LDz4\r\nDqyUEJEXiM+Sa1kCncVvIqI5GkFKGM3Ur3hdx6xxe5F9gPvUdL22Qf0DLaOclksk\r\nO2FABXqDRv0P7k5yyryzTM/RmLhleut3Fc8BUdfrkmif8Znyxp12sRxK0UgEf6iI\r\n+dEZugVpwAl8IRUk9O201Q87q3zI30NgPT2BJiDycKaKQJF634qatubvL28JaiOd\r\nk3uxWfcqKjO0oeSJ7pxgAiH1rCah7UN5T2d3V4AmDQGLPo7lwX1SKZewa10PnF0X\r\npjE+8welxOK+4pEPl2kRdMDpr9/XPXWpAPt2h67Z0j7x5c7nDU/eZ3UjRkJePoIQ\r\n5aGZuxZ2diziI4JWhbW+kF9M8T0CM1EUIcQV+8wvvualM1q0IN+SJ1X49tt8n3y5\r\nfEAur2599a16z7zg4uF1xI/SafWXMjC8MObCHjR5xodSQ7IxvGyl+6uIkENsiQBF\r\ncuM55MMUELl0VM0+n7Kv5K2Ur+heLzNlTTy2eoiU048g8iQmZzP5C9y4hUE3rYgJ\r\nRxP9ovHl2km91RDTei9aANUGIB8U2uFA7pxe0G8Kp8WSF0a2DtZu7sf2lGjKvP+7\r\nJGaMrJn2bJW6cDEPgfyKCio8kCVtFg7QTtkaZjF5J6AIB0B7aHNPKlAE2T8O2/Z7\r\nJIvM+ijPG5W96tZP\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFjSjQKPPAEB6wAAAAAAWDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4NDAwOVoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA3Pi3nd+o2ItxXWvhyaIDXRbrxgB1wqI0wK/wgC3vs2vSbIHdSuOrtac+\r\nmR6Ag8rE69QQOykN2KJIQI53O0egLWUqjDMa43Fkh1EWTAD0B6snyV91Lt24YPPq\r\nOyJZLhGCtYJoQfPQxZjgW0PknDvWCGIBPFacj86c84QzQdmNBMPrObC21S/ilK+H\r\nGjwcYx9Z3dSeK2CPLLkb3C0HzWWLBL5lFHrdM7qphSAJ07g8/ggis/b4aHdWOlN3\r\nfyySWbuTLQnX8J1XZdWGc+7Z60gzt2jwUc2kgpjcpHvV7QYmy141rjiQyFDNUf7x\r\nFBeFIpLDPoxcfAsOo/dtVfxp/dNMqfAEC27QrUogtIUOcCaSZ5r09ECOuBW6Mood\r\nDIx4bUEhXOJmZBtpzRXhVVKTC7Aqs3PTrPehspCxOclx7c8aESASwj6SSWpDQi+x\r\nrKm2DgTIgvVIdyBNdKhxhGNyl1t9jTEMAdwDmY6pN0kMLCEdM6v9fG0nvtFFLU/m\r\nj9Ojh8Rtf3YWiUPd2cI62tVoXckaP3TbdCNmGysT8ShFNEypEINWIl49U7V00Iec\r\nOveCbkfsnKnT/o69znrWUH+Pt65GxrqO5A+To6WU83OqLxljS/cyBTQmrDh70Dgz\r\nKXDXN3JVW93RLoXuNyAhd1nUOjKOI2tmPhEC4Cz7lqmVxDsQaZMCAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFDrHw8rI3g3T\r\nksAnici+l0dPRWlgMB0GA1UdDgQWBBQ5cV2pFRAtxN9+L1luQE3A3+82mjCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAI68ze1N9ZqKBI7Q7BXGlc0k99wW\r\nCoCZu0m02crvYeITKUC/eizH7s6Sx2Kk5Hnzz0Rzc8G8NpiWEfp7ppKeP1jOMv11\r\n7P1KB6IHyRLdW7vAIBiJy1qhbLAxseR7xkvDKv9yjZYL9Q7XtlSgrd9NuEiuFsfj\r\n0ANzVf/Ea4br00gGc8ALfnvgGE7eUdBNqWKTzHcQREdjJPRMUqTYqcvd4qQbRXZt\r\ncXLt4Fr3pXcwG1UExrz3TP4ueyrqGot/OFDvMihs6Tak0qjYygT2dC3bEOBg3GSQ\r\nDdQVzBFO98f62/l51TBlWizuw3D4/dKIPfQU1Qt7sr9e7CLbecoO8EVtyt/yGRr1\r\nD4BPBGyEzC6QoqCo5Nh27yG+DxFtAGdm/vLaFeJOVM3q2d6nL1FvNzlHTHfOYPJ3\r\nNwHB30X9TpdRqoBLM5UC0m/ybKj4ygXAZBlkJXMO/bjtpqyidJ0SaFuE8EdV9YoJ\r\nKUmBw1ZuZd5GHbc+Ilz82WX+JWZ0efU/f+75Ywvntu/3s0OsnpVoqrqM7TDdzE0d\r\nwRiZ+mvtgIwp85+et1iEdaWPj+d6LfJxpDDCPhaqh9hnNIkZFptndwDwRE2MV9Wr\r\nlUCSA96/2ubHsKt4E2D96KvNog6MKdyEGz1sZep1yZKqE4cnNzGNBGRel0BRa2MK\r\nyTOQsCbnpQGhEz0m\r\n-----END + CERTIFICATE-----"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFlFSsCTnaMEFgAAAAAAWTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzM1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA0E8VPmTCi+s/ukALr8kiz9n0QMveOlaFztd/3QikdEPvOujCuE/CXDKt\r\n0KhyGBUshmHGEC580aoe2Ze2gBJ/Dhs8FjdCjH4IyWU22QOervNkIc2Xd3EMxVZL\r\nYmWmDp5yfa0DwHqsqLq1PLwyk9BfYhh2gp9Dp+vECu4FzvVoZd73UaTpvcQKDsXA\r\nTVR43QC8AiL2AiHgOB3xE75MR/kI1OA7mTaOK8uZbQZCtyG1VMtNL+Q4Di0nB9cD\r\ntqfQj1/UCA76Nr9a7p/TUnck94zlsHE5RVGvDy3GKpa4cmCb+nRpF+ybZjuw8fPT\r\nCY5JGTLZreJMgk+Tej7iN+BYyn4Q2QIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFPFGaMbxw/ArLX2LauGy+b41/NFBMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAD6YslCi5IxgKWQYVzHClxGTpTXEarOPDACuQ\r\nnZIgM4hbk0rMqW4aHFd+paZmMUvNU0HWtIq7aAbNZGCdTrb6g9xjQKrdivWr24BZ\r\nBDxlYkU1tNvdQmafd/RESZ+TpElbuBw2EW0qtK2K+BfL1fTcwpIWRoqWcZUc/CzX\r\n43yuA3vE9sw7/HCDOEQF+QW12B6LDt2Y6DR2y8ZjYsIM0X99mgCE8/HYL4AR3+mA\r\nHjlncC3qlXWRUk46kz2yU4gu0k4P5vexNuGvU9uHvmqQERhhHYkAiW5pwCNFdZDw\r\n95vcnWocRk5TaOPp74v06msx58qS9Re9Fz5xwp6dGGqvWgcF9UJtVVyXMGYB1/1+\r\nyd5n8VpvHVWlrPNpcT0p9YLeou/HKZIiekolUKL6SqCbDFwSUMPM1xWSK6RbphmT\r\nJZdAoKKLq7c/4bFPOxeKvBjT6PrWP64ktWN1Z+AYQlBp1rK7A/ZkAOh8l+17K4VJ\r\neb1whd4SmNSnZbv9jhOeWhrbRsxmFJ1SFHhoBhS3Q/WZWMJtLu2Hv1RHnqRgLD3y\r\nlaC9qyj44pXka/MiLauGl0qjRsO6i0ZV/nU43/eZt4EhWewfmXRnfNlXA/u6abVS\r\n3lkNTlQaJAmTijbKk4JI0qQl4e+xZloOXJVNiqKgYSh3N93Bi+8ROZCLqqpwrO+C\r\n8C5Y9Bk=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIFVjCCAz6gAwIBAgIQJdrLVcnGd4FAnlaUgt5N/jANBgkqhkiG9w0BAQsFADA8\r\nMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAwDgYD\r\nVQQDEwdhbWVyb290MB4XDTE2MDUyNDIyNTI1NFoXDTI2MDUyNDIyNTcwM1owPDET\r\nMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEQMA4GA1UE\r\nAxMHYW1lcm9vdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALv4uChY\r\noVuO+bxBOcn8v4FajoGkxo0YgVwEqEPDVPI6vzmnEqHVhQ1GMVeDyiRrgQT1vCk1\r\nHMMzo9LlWowPrzbXOwjOTFbXc36+UU41yNN2GeNa49RXbAkfbzKE/SYLfbqOD0dN\r\nZLwvOhgIb25oA1eAxW/DI/hvJLLKh2SscvkIyd3o2BUeFm7NtyYG/buCKJh8lOq8\r\n0iBwRoEoInb0vhorHaswSMmqY1g+AJndY/M7uGUqkhDGBhLu53bU9wbUPHsEI+wa\r\nq6WypCijZYT+C4BS5GJrEPZ2O92pztd+ULqhzNRoPj5RuElUww7+z5RnbCaupyBY\r\nOmmJMH30EiRSq8dK/irixXXwJraSywR5kyfmAkv6GYWlRlxFUiK3/co47JLA3TDK\r\nN0wfutbpqxdZQYyGfO2nZrr5JbKfSU0sMtOZDkK6hlafV++hfkVSvFfNHE5B5uN1\r\nMK6agl1dzi28HfJT9aO7cmjGxl1SJ5qoCvcwZNQ2SPHFdrslcwXEFOMDaEzVOA3V\r\n7j3+6lrT8sHXg0sErkcd8lrBImfzhLxM/Wh8CgOUNeUu3flUoxmFv3el+QWalSNy\r\n2SXs2NgWuYE5Iog7CHD/xCnoEnZwwjqLkrro4hYWE4Xj3VlA2Eq+VxqJOgdyFl3m\r\nckSZ08OcwLeprY4+2GEvCXNGNdXUmNNgk2PvAgMBAAGjVDBSMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEBMB0GA1UdDgQWBBQpXlFeZK40ueusnA2njHUB\r\n0QkLKDAQBgkrBgEEAYI3FQEEAwIBADANBgkqhkiG9w0BAQsFAAOCAgEAcznFDnJx\r\nsXaazFY1DuIPvUaiWS7ELxAVXMGZ7ROjLrDq1FNYVewL4emDqyEIEMFncec8rqyk\r\nVBvLQA5YqMCxQWJpL0SlgRSknzLh9ZVcQw1TshC49/XV2N/CLOuyInEQwS//46so\r\nT20Cf8UGUiOK472LZlvM4KchyDR3FTNtmMg0B/LKVjevpX9sk5MiyjjLUj3jtPIP\r\n7jpsfZDd/BNsg/89kpsIF5O64I7iYFj3MHu9o4UJcEX0hRt7OzUxqa9THTssvzE5\r\nVkWo8Rtou2T5TobKV6Rr5Ob9wchLXqVtCyZF16voEKheBnalhGUvErI/6VtBwLb7\r\n13C0JkKLBNMen+HClNliicVIaubnpY2g+AqxOgKBHiZnzq2HhE1qqEUf4VfqahNU\r\niaXtbtyo54f2dCf9UL9uG9dllN3nxBE/Y/aWF6E1M8Bslj1aYAtfUQ/xlhEXCly6\r\nzohw697i3XFUt76RwvfW8quvqdH9Mx0PBpYo4wJJRwAecSJQNy6wIJhAuDgOemXJ\r\nYViBi/bDnhPcFEVQxsypQSw91BUw7Mxh+W59H5MC25SAIw9fLMT9LRqSYpPyasNp\r\n4nACjR+bv/6cI+ICOrGmD2mrk2c4dNnYpDx96FfX/Y158RV0wotqIglACk6m1qyo\r\nyTra6P0Kvo6xz4KaVm8F7VDzUP+heAAhPAs=\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Failed","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pall-canary-oct12-rg/providers/Microsoft.DocumentDB/cassandraClusters/pall-canary-oct12-eueuap-3","name":"pall-canary-oct12-eueuap-3","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2 EUAP","tags":{},"systemData":{"createdBy":"piyengar@microsoft.com","createdByType":"User","createdAt":"2021-10-13T02:23:36.0880739Z","lastModifiedBy":"piyengar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-13T02:23:36.0880739Z"},"identity":{"principalId":"2d213b5f-84c4-4016-8c17-361d77a60147","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"pall-canary-oct12-eueuap-3","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pall-canary-may12-rg/providers/Microsoft.Network/virtualNetworks/pall_canary/subnets/pall_canary_subnet","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAE5Hd9yskSH1BgAAAAAATjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDU1OVoXDTI1MDkxNTAzMTU1OVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA5UFGOQgmohqJHkbMMcN4cnK+mAoScYUAR/njrD0x/GyFeTko+QXMU1JJ\r\nIePmVcugmyO4xX5ITShZWy+/qPAWy3vwT6HzBdFq5eTGbkbFCrQdh5w1+jwOApMe\r\n9ZDlMDO+RUtJe1XxWqi3KRY0e/pJmpOk4IUEjx6wxvv5MnSWhMa7aepnkuCS8lvF\r\nNl9D5oUGIYvoDUgVMQSBazQP2zjRunMT9JOopFKnZE+L7NY+XDtla3I1uZeMeakA\r\nfqkNjx6lkUIgcHPhSMy5XHBpOeFdSDjBA8dNk6E3VSlLzvPcHdaHI7QrmK/43wzf\r\n+kHpDdTXx8EdOqm+pLHoKLWcjw/P8O9RAMiXefxGnQKNuP8T+/prskR5esucJQkj\r\nrWSu7W7YycmIg1rPCd7Qw005/sc58eLPN+Xrj/Aw7RSR0A719CPZMjoSfKTphSEK\r\np+ZB+5j/V3VEzjGbL6XFUezFfaIZ+A7ZtkaEQYDH0fVVziPnhQhJB+Uym7a5arB3\r\nqiMMw7Yjos6iWkkOaqhaCHuN1zC374xsBec9mrJ7bfuLTNtBEKC1PhdZrJM3UDCo\r\n76v+3mnKouN/7vyVkbiLNb27MXRigXFbO02opR8prTkvv3af+iq6+xjmVWZhsILI\r\n0HIBk9/HoMZCCb9e95RQVmVwVNrwa24neVWl+JEw50sqLMapsGkCAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUOsfDysjeDdOSwCeJyL6X\r\nR09FaWAwHQYDVR0OBBYEFEKY1e9GMTrmL0fNVVel5jUfu/yRMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAuaX699r+ayL7JphKgdiDuy4iPTwf7fTkUsLx\r\n7ixBzvnUrUASdS9GJEkpsewdipRfMycn3UXatnQ6rudCqBgsExJzHBGlokhvVaZK\r\nue0oIlJstnKQDOJCpJem9NkvwALP5z3WZoqYf4EaaQXUkMAJJ2qxw+mksSBEu+MJ\r\noxgbStKv98q28ypOVLjaFNH/VbtAG/rIcqNyOdjAPcgMcohe7lGO1WQtFxPxtzvS\r\nZfgao/ZjWeNDFzy8FSInim1q69Syl3Y4dzeAlG6PiC8t7upDQzo2AJxI1tW0AkKV\r\naJIS9rGZquLN5MTbYozjEyzMvSEYFEpx+7YKQGayHz3eCGH4BzD43YPt20Cm4BMN\r\neyV64+d9PufCA2tzrIQ+VJhsZKb6qRgV+Bp6AfpgeyU6oRkqsWKJyKyzp6o0D+Si\r\nq3gYJdD3W0+X1jUJcQuywYLRg78rVE3A6VJ7RIEjXARQV19hJvxchCoqfbny/0bX\r\n9Bb3Rtr1OAYhUml6Z6JdfnH33KfEJvFa4wlKRBxpuw9gMG5ydOsbZ3YIJDWccTLH\r\nQZWJk/Lakd/+uLPWOzzWQCf7nPapwSRjtfRRLZoX49PIQkrGM3dpLLGktC+sg8bc\r\nvQ2bO79bKJazcsKuNK0dOpepIBA1mMD81DphYmc/RMF9KXKdKz4Ugh4HNqkltIsG\r\nEtaYPCM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAE2e+Zx9LtWjEwAAAAAATTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDUwOFoXDTI1MDkxNTAzMTUwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1RZFKUUXNWXgbh7dm52Irso1hGPDEL9ZZXYz0civ0AAlDu9P/1okXVpc\r\nOPQnRxE7e7O8roTSctA4MTBGFIjrCythVzk6MJC1bgGv7qwCV6o5P4zVSxQrHPx+\r\n2DPDIZlt3UV4RNLuKVvSZdzQt1UsxUOxvTZ/0mO22d6mcspf3I5Xt5h+7WlTgHAy\r\nWvvlpuX7LR8yTK/um4526bdhUG98I2nEURH2vnNSt3/Dbt1R6qoPMja0HhghuOtY\r\nt7Z77nyI2gOY2fRu3oM15Xqe8b3Qwx5IsSV/pTWJ34VPz24TfUmCQOVtu/m84ayA\r\nwSZ754d+JvkyPSdINV3tuLtbo/QVewIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBQbRewlXgZoN1BD7V/nign/FlWETTAdBgNVHQ4EFgQU\r\nvZx3N/n1PWYwyjVonISvG5ZVEL4wgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQBFtFQSE7TjElKEmwHyydrA/UEAzho7rEMy2lvNr2tgX/7WVWDqmDrTK4La\r\nm6/MGOUBYbF334Ywvprij/UoSpyMEq5HgXiCBxOgyUPSZx8x+XyINgCujVXRk9za\r\nPh1lXpYCV2qhIYAhazeprDYzX2im0Jwe8X/Xsl0kzgs3TE7medDW9CVEYS+T7SqG\r\ntmXhOg1FW04yUM0+Z73ZQGF5oqnE76kzpLvfn+YWA6KbLfH84yTpqylAD5UFvfeW\r\nMRoNUUckpsteddNba90soUzxeRwU0Loxj5Qsds2gB0tSIpVh330BxEDTIJ73FZIv\r\nvURqyoDor+Eu1NOVk3sdCM5nXuN38dc0a9fsSRoJkbQYTP9UNJPcUDO3kZoYWNxD\r\nWrn5J/ltaxPc1o7+USSm02C023HIrWBJkfnepIZKV8m7wkddcygJ6FQkxFU+NQUW\r\n+a91tIw3HTEHvmNlJddPmjgnE3k6GS1NLOC5IV/s1s4sSME3QYQAt+zr5TKRdZ06\r\ndBOSXrz66pVpkR2wuAvlCEuFk7gaBrKz4j+3wJ9CPhETezARvgpzQCw9es9y2qde\r\nO1rHPYa6IRtmjcVDvxfmjei66bQwoapDH/OMS6sPqqqn53l9g4HDDgWywWn9ad51\r\nL5NAvQYhHwSCG0E2Os5mUFYM56ZVA4WHVUn7NZsAXGnDtIwlPw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAACbGTID3uXpE1wAAAAAAJjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE4MDMxOTE4MjcwOFoXDTIzMDMxOTE4MzcwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAvBsRcCD4Z38LQPG73ci9jIpQv5tVQh8lLrcQ9lO2lH6pUVWi7T7jCyX/\r\naCSmit7fT6seN/kf6LP0hpgsU/wxMMv4c4+w1M16EiRc6GPJtSPNszl8ZNAzZj39\r\nxeJnAMhPzeABRLgzYgLH+9R3k8sIJMhSjcUfp63GAhKtdqhQeTOs7m87REtmAdo7\r\neZh/Ubn4HR1ZxAswmoWmMxMZw1KZj87395IxE3Ybj0m/V8dyskpxWdAzkvGeO//l\r\nb4FfAHVCCix9wsijqomj+jeJPHR/AF/5+MZXjoNDs6/+UMdSrEqa2fi8910J6ogL\r\nSMdL7NdV77U5551wZxeUwSEHUc4qkQr9cFAdHcdYiMnIrU28zk7O3yQdsyWdrTqx\r\nTbkoYn36Ji+aSyzs/u/Zh3pAWw9IvLaoq254Rpf1SWsvufE2YXaP6kUmvOE9Qrnt\r\nQ138fwe9CmPUT9I/cM0v16BDvELEH3KGsWez8WRFA5RAB5pPDKjMyZ7mNl+0+EDv\r\nMq+KYjtc9uWJoRsRe8mDnVt2JGRBazTCFd/m5HGywdUvg/fZyVfBrvsRhcahMXn+\r\nb+a6kw+gMY29dcNutHNl1ZuKbwUuvp0ShWnauFVqMSRP6kSgXjzM0Oez2CHEtnX7\r\nNTKy9+eXsqxkzVXop81HCR7QCDlKPkc78IRETKfQA/nHdu2iOd8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQonG1RafqmxKhDxP+NNvoz\r\n3/1FMDCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAJFaZ9bHSEXBMKUi\r\nxLJgRr0yPOBbkZAHGsXGsAAdXnsAcmRZnoMsJZwHJY9qa2SDdjWzCnEuk50KJ0Rm\r\nvePgWmDtQWwyfFT//JIccaFgxYsU2SjdHEi0DmRElJtLkYQorDjkqn8s2T8y95f0\r\nmdcNme7cQ8PsjawgV1hb7r1I0bRh93M4pDzRt0g08RoFtMGuqRdU3roMDbuid5Hj\r\nBnoT5MdJlYzklABw+JPOIFeqZ0LMq/RPyk8Dpzo7m2dSc78GitdNnWxj4Ku6l8lb\r\n0OHX3BL1eVKyKi8Vta3BjpzWuMQompgdzp1Eh+mDyfKV/+dlfIEPJI1stEHIEKWR\r\nR5yt35+RGXrmsmAwTZT5mcJk4JdAMhVnRnyWvxPzieYCR9DcIaT6+NBBYzQegOG+\r\nIMnLpnZp6qhbG7Nq9MXCqRY2ooojLCTLTCx8R2cqdYonJpB4lSkYMFYbuV7HoiNr\r\nXdZm0gMRi2DmIaZ7cxXUn0BmZd/lXSXNKdxwHKecu0F8ByT1Zlg3NgIhCb+6SDYB\r\nlOv5YhnwSd00aUaSSYc2dKJmR2yfCKT5Li9wdtjlB6rYIb7vHRl3x98OIVE+O20S\r\n1jQEqRLzkaDIWOA8D9VeuuIW05tahms61dDi5gx7M/ALhFa/QsbkCJXRf07Pe4ki\r\nHE/1Nk3cohSibWYZqHssdutHBd+Q\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAEnEBGqOfE69FwAAAAAASTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDA1MVoXDTI1MDkxNTAzMTA1MVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAw9b7oiITgLVh8Yry44fRHl/xMuYtsI0Cg944jlh0S5ljKgUEMvt8/S63\r\nRH9+9eXvbFN4L9EL2+RDhWd5hGyg4gQeKtxO7D/+JUoTIamIl4pXTxhO5oORnS9k\r\ntWp6lc1OfpYnkgzrkFHICKggDtCpQxp7cMtM8evEvY/7WvmJDbAsgSRlBIeyVZqU\r\ndfw4ahzvsNmMfDGx2JBKgB5mndVGyg96yCHy5+7XKOkkcr+NKHdnBM3k546rGlCV\r\nErgPVuUkRxrwIa3xD9BRewoihWG7sbuxny49CrdbDi3WqK0VPSJGZ2y5ipUTwndi\r\n/+QhiK5expoHO0hl20DwRgq74qB5zSs379PcTQz59OvUDMi2fiErDYnCT75X3w1b\r\nh2uGBFIwonYXGHU1s/SaxQlXErGplgkLv/tBPAXu8sk+qANHaY1EfPwpPfOXjIxl\r\nRT95moW0IP+CPmhV0g2ZPKNn0mIRPpf8IzI5O4pLe6xfXDekQnNcGaBY9nN9LBO3\r\noi7pBBNObi17J/ebVg2rScg+KAWVVf09iLF2inpoFxKOJQz//poXo2fAvYVXnXJm\r\n99qJvY8gFyOyg2Cr2x/Wp8yw/u7H4DztXuFMYuPEVpR9/EeLP2bzrpdbJpj+SPT4\r\nU0OmtjVtKNR4aOBNBVWmzxV+WKRBfpkq+pjpRMkgFapXWtjlXV0CAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUluoFkm4uQswgfjWGaL4s\r\nMWhX+14wHQYDVR0OBBYEFBxS0IHKkOkG4KzpGA07z01trd55MIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAa08V3/BsJsIOjn2Qu6zUb0GosfdvggVX36PY\r\n9OZyOn5d2+tPPjG2re+uovdpuLKx1YH0iBX4kIL05yObqKMAv+YO3Ihj4MkcYy6A\r\nk9DbHyQTYoeSfaryn6yo7kLYCz6E+li6HJ4FVx13PxpwqDXWUu+Yf5Kszj56IqHx\r\nTI9LV1ZbqmZYk7fQIPETYENkE23ypgh5snRtqSZYTw6HASkHI4E7NgFkOATnIcs2\r\npLGzcc9vc/QYlj3PT3ciGdpGkz8l/A2MMqC4eleYFTBSX9rNNG0tf0M+5fVF417D\r\nmtqDlglm9bWpgrdLpmcj28f3766EBJBq9zza4M9dAGBWBQx0c8BR9saGATd/U8lY\r\nmlTDhnRdqJvvTbtPzFFmTF5jrANky12jKlaHHTyLETDu6OeDbVEyJNuhj0a+cQ6r\r\nZwYCG/k0WCzUx3MMq1A11uxvseoOmpIqLOGfkEdmBPQXkKC02vyjZkxF0pGPNNcy\r\nBSCIlZ11UtC5ghcZ2Wg/U4bAogTv/XAnjwzLpp5V7mcepzcBagiFlQkdnvUKNI/I\r\nLkerOmrgKe0rgT+ICALZiq7hIyeuM2uthyD3FaBFf62WOtDD6Jfwkg/3LI7of+HC\r\nGZ99J/xaocq6NFYqzD/9H6n0+biogXUJtm7mKhQO3PeLz/1aDIwLfKqZFr3PCStN\r\nvTWqAdQ=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFYLVFiDd8BlgAAAAAAAVjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4Mzg0OFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAxIoR15PqTSSMns55DdeR97gCwVWRoA6zCYbU66RoYrXuHSpcJM+1tnHN\r\n6B2gITXD0iDoTLpuOvRlM+12v0c8cWdzVoHuRuG0k1ViNgSELeNw8SXSQ6jmvgPy\r\nH6fg+NiKLkjYrJuIp5me3/asqMTeO6MOkeimS67PYerzkMYoC7BUEUacludZswsM\r\nFZnsM/vHCjIpzQMGWyUzju2ANT+J41Wz9AmukpPQFNzyq9566BEU/4MJh9Yg5aSR\r\npzI1gU8r4Y9ABdOgjsFnEm8BSSdlWLgalKevYPMLX/FO2rFufFgcNJq3Y8rnAtJD\r\n0k9jt7isXmJgS+JNfANvY7+jXQaCkwIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUOLjGDtr98qbFC/XuACeceItvo7EwHQYD\r\nVR0OBBYEFOXZm2f8+Oy6u/DAqJ2KV4i53z5jMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAYI9s0aXNjS8k6w/pyYwcd8HBPAjpWHJp7vBNsa9rDbau6raD\r\n+QWjj+hO5OKUkNchKIkK3xUc/iDAMNALDLFqUOaVTeMh5fu/e8Pr1AX1R1c5U1Yd\r\nxExItrFARqTCCIQpLz3cTu/9KA5QgUQlnFlrxA9IHq9G6k3TvTB2AngUzXBhNhl5\r\nb8ya7LK3dhfqf2BQHJ7k1XReCJLYMxI6PaG0F6mWTCFNBbBxgjsXeXfjYv2li33v\r\n48ALT/NXFoOTbAOP4EFfLhMDnx2O6cFOKrYT9O+EU64oJ/0MQDQSq9PVos5J+RW8\r\nvD/h2ycPqMnmsjvpJ4pWJZP+YSxy/HWMwbZt/Dv/UobeQqLCIXGnODv87K+1JVo0\r\nO3c1NtGJu61JyXwW8id8VSQuc2NzEr58rOOGMfU3gHZMSNY2gsFs1gqXC6MjtX9O\r\nipJ+dqr7lgRvpDN9bD2kd9CdOWsxz6PRPxOmbUittmpHdABMZuaeKB/5MnxVrpNw\r\nlYtJYXvKRY1V30kjFSsyLv02YYKb8MI/NfWcjMLw4eaEn//ST+sf+LjB9KF8TxBX\r\nxuBUpQVA/TJX9GEqYMZt557A5u5odSVcac+w0/Nn4E6WzFLfxMr1O8OOOQjzlG3u\r\n5BPqprm+utwEHBCU4iVcZOdnSgk1dm7C5xmmTylFRYOlwVrFSPcyKy0+6H8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAEso8JmcB0l1ZwAAAAAASzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDMxN1oXDTI1MDkxNTAzMTMxN1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1FFhjk/dgVlthN00OKObtbEisXfH40OyapM9KcVlUPnMElPROdKi7XPQ\r\nagq+Ry3QLSSZgNWnkahCSxE81oyudrvlhpR7NpcDPZHsYFw6qsEiirml0hc5awSq\r\n+MtFo9pfnr/zQstb7xg8wjduWjANvO3E34jZbfmCyw4gU4TRPIa9rpaV0N14hQTk\r\nKcBv+S12udS181oWcTc66zxVXUHNK15PRv31jElEYQKX8EJWCe6ccJA/cJD282sR\r\noEhfuUvzXHOeWD1jXH+Eh+mKuhLqiQHPJH7TJRMsN77ndtHH9us3Ak4l9AmGNZZf\r\nwNquVrHAiTw9Ai90btckoeMRn8eogQIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBTX/nF7X/NZN2T02QZU2G6DYuwmyDAdBgNVHQ4EFgQU\r\nlUWMsJMswORfcQ0UpecnwcNjm/cwgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQCb7VpPdQaBSKQdwDpgFquVkVtcKzEAwsVlzIENIrlRsOcBgvZlW9QKwgCd\r\n6xvrF9smidaMzlYuxYQypQ0RQEHDKJ1SJQLc1ZtR7fWf0xHqU0cgX3hktDNyN5t4\r\n7rMtYOUhygcZIxVQ2cpkyLoilwnb/q0Y0jOnA7eo0r9K67TJ9CP2m3ZUApzRaCwv\r\nqQE8eNZvngy+613PU11A2EFuTPXoVNb7S3w8amz+mYYnJCBhxf4PdYA/3DZ0q3FP\r\nfFxqKAbuNtXXHFmYn3BBMGSn082Uq8RsAvj5XEkI/xylDlwG3zT+QaIOrJ/06Toz\r\ncT0ewSlyNAB6LzGp/HLTIffhSNBVX8ILs558r6VcnTE21awdkWqnd3PiPkWADD78\r\nDVSb/7QOsBdZp6BKkcDzTc/uaDGahR55UcapkOMBSbngkomK986ITx3yUITn0aV4\r\nBEVbYQQ6b9l/eNHRosiwL52QPnYl6fJRsl0JuUzy9T5DrwGGnRgKQAOmSWPRTdt2\r\n14MWrxbLFRRwvqt2COK82jPTAiZ3XqYSZzZce9bSDsGSm5VpwWz5+xyBYc3djzKR\r\nThctXJrwftNyZD+LBc/4oLOTYLpDB23eI8rvb6Xfm3A8ANucIq2muavxi1A+eyYM\r\nQXwyB2foIV9yhDIA5I1psyJo+CwM9CcibRTjjNL5ghEkoSDjyA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFSoP4knG2YAHAAAAAAAVDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzczNFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApuAstd+jxOmcAhw1KNXa7fDE4SFe/7SdG4avz6VQqep4ofwJwZTxQJNQ\r\nBC7dybKZO2RBiDzzayV9PCxmK9HPRMRmuj68x9BRyoEbVU1tX4HtiBK+hAGiRNQu\r\nPRTYcSs24CgjI3JrxOjNesp8iE8HUVntN8ueXnpTQLSYOR2TmTGM835tkTplflX/\r\n/zPtZvsXSZz+JssQ9SRcXS2t/fPDpKfNVatOmq4iwtX7Q6IO/WCzAyEzacjAFqml\r\n0/PRYT5O+jiRO+TImZ2RD0CB9rP5CYwN2T504drkKteNaT+FT/teBLC+JraDjh27\r\nv24yknl1t8dXCSS6l/UBGBGVk+gr0wIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUVSrR7NlDI9ZN5GcKVaV9JEKwIbEwHQYD\r\nVR0OBBYEFK55wmtdJYgTBvYHCcOXfHuXjx1VMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAbgp2LNvP1OVFkH9JTg9rTMksjvLIpzaqJehSp5+3YNzGl/TH\r\ni3Kg/rbtQaKErwipeLMhmqWFuT9kB22eeyoBSxx3JTzRmKtcJO47IX0qymW04v2i\r\nI2tVWQigwJWtE08Z16Q3NVdgAox6DDnAvmV8QDlPhWdW0gGcszZqFD47SJltU8JJ\r\n6D+xuDl+xUIA5wQ0987HRo4dSx3Vny1cd98GdMepsOnCpfm7ZQDWJUggp8m8T/jv\r\ngj28G4JNV9nsx3TT5D4xFZ0rXUlQNmhJFesprLt8NqOoKqmP40WdqrpVIxlu5pdH\r\naf/uT89gHO3Zy+iqNbCDRB7zSBtaalaqLvGpE0xV3p+xpjY1CujjvKp+rUrGwA1t\r\n7aNRowd45Dn+kESi95bE16V2k54YbRvgkwQgqyFUiissogOtaOwQIjuv5NUMkKnj\r\nWz1S1nsMTwZWQ20pT+SG9IMWxAP+63fLIMxWXSbwkTo1Q7JVbr7ZnbNjPrzwerrq\r\nTx+CgfCjU2TZ2WaqYnKoGlgjiZkVraQ1JYJkEr5N5+12CnAuVNzn7pMs6HUSxc8Y\r\numBjy+KA0I1XMvFerh+fhEVad7kOgOxqE1uLdXZxkOXHC1N4FQlkI65Padcd8dyM\r\n3g+er8suC1gf9/fWU0AlgIqls48Wis2JISOeSsMAi3BDvCIpp5PHbuNfj7A=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFr7ZWQR1r6OSQAAAAAAWjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzN1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEArMu8k7Kq5y6uDXZk0QxV9Ya5K3Mb0/sCyV4fs48XfAgL3YOHYTZ5o1uB\r\n97VZ/oXuenXaDcoDE18WhOavpqjWHc4eb1QeGGCaB0MoijTLGPzqwWRdByW6l2U2\r\ngFzjKWKtFncIj/VW5S98uCDD8b0SX278XKubkKv0Zn3m1E2wVrTvG8Jc/MuXF0WX\r\ntjFRRJPY3keED1zFNEKjckE4ywTV1atTqnKbmj2rcQucHJ4ufZ89Hel/xLL0bFxc\r\nJnW4Ky8lZ4Q+G9brYexh/iEBcSpNQlfLVJrKZMlAwGPcp1SBGxU9GlSV7kE1LLCS\r\njpS5d6/qw4VA+z5y9HsHN225oBhpAQIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFHrWGYUoeWxxdh5g+PNL76IFQhYdMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAU2IUk2qTwWTtRBKzMTaRxYKvTyvU1nyQLxko\r\nA3304lciVsdA86+jhEkvnCwZeAHoOtYuPeQJdeyhYUhVRDAhhJauvE87FB69gM6h\r\nYUnRqiy+vekLrHB/1x8njoLHmcppjOvBzziOPSqvf8s6O8tJ5AjY3398sm5ckH37\r\nVYHa/+bAYCvEsYmgDGN8L25QvXScTmTthSXHlzsCItPpKFs385dsGJnFD0KcQ5c1\r\ngLmV1bdHnrWyy2mqB819CFWtzhnojtzXxZLuEfTBS18u0qoLdN8KvgB2BvfgZtY7\r\nx+fbkiyoZfnZak0Oj45Z9Z/6AQ1uHGSRadAh19mkcrkPwHktc/3M1PJ69dwZn8Ez\r\nASzYFf8QH58i5uxdou73v+5Bd1m5nmtFCyLC6QDtFYH0pkvmafBx7PwyrgTjq2Xv\r\n7eWL0wXESxzY4HpjMDO36ncsLvzI6j4CyG4cpA8F8+9jwizWqmKMQUWt+VMICsP7\r\nRrzCJ35ogFGWF/dC2hjdjBXjcyLaliR5nE+sDx1PVDdIu7y8oBi60+Vzl0+BSf8P\r\nOdssgwciUpWVP+9xf6SZ7D9BPmLwgIJZ4oPc5K7cTOR6ksQQg8fO44fmOCRfVD/T\r\nDj1e39ijjkmcXUvrcu1sh93vbupLKp4Guruj3Le6iQ4Hla6Pr4znFKCzKk1+RrcQ\r\nVnsaqio=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFOufo2CImJDvAAAAAAAUzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzYxMFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAz2IfhGnsNWpW1cYZrm7f0KG7FjkmtAufsz6xSPNM86b5+jPDUpkOb7U7\r\nj4cWGBVdrYYqWUkziZmWPyl9WLw43KGzaMT3xTnm1xWyok8Z1D/ytHfxFI5t+Xzk\r\n+pcWwIZzuElzEzAQYnVMyfdxD6sM2winZ1ehDpvJeLTPcuTPf5fDYpcrnebODQ+r\r\nnsvq7oU7bHp/jTkGP/2hNzNLR7QJq+rOaHTHDky5yWrsMdgGj0dJXmId6RIfgbeq\r\nJyz7pK0OnoqopPXzZcEQJGNdh9tTh0DWpPGkCWvp4yC2Sd6VSDIApnIpXRn5WNGc\r\n79eeuL9eKvQ5W1zq3/j5HlmwZvPOE+3kPe9r1+WMazNqbhmVk0gUfZX+cnJcy8ZH\r\nqZhjCnW1ihCHzNxMQypQLrnOgVCBkkkRj466iLGDMGL5IyTji2AAp50wMiZuVQX6\r\nwY4kcKqLsjSPpDpHGIie+58/dh9xFgqJzV0kNbAvehRlbwzQnRJWzr1UgZJgjluN\r\nlLpJwTmUIe3I4FzbwrzGMOltYu8XbdFAfyPM4fcfqJwFTF2xI5OYNC3Rcou9OSQT\r\no+ce9/rON//vZNZmQ+TPQ3nkPoKus+JX3EFJbevLeG0IvvC8c2ABwv6cNcvbSSoV\r\nXP+XaBLuXe5A3G+Tdr33bVhKKnbKiravs7sEeKvXVrpDgilOuG8CAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFJbqBZJuLkLM\r\nIH41hmi+LDFoV/teMB0GA1UdDgQWBBRIo61gdWpv7GDzaVXRALEyV/xs5DCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAArPH6tJjsM3VsG3zdh/1Rh3LDz4\r\nDqyUEJEXiM+Sa1kCncVvIqI5GkFKGM3Ur3hdx6xxe5F9gPvUdL22Qf0DLaOclksk\r\nO2FABXqDRv0P7k5yyryzTM/RmLhleut3Fc8BUdfrkmif8Znyxp12sRxK0UgEf6iI\r\n+dEZugVpwAl8IRUk9O201Q87q3zI30NgPT2BJiDycKaKQJF634qatubvL28JaiOd\r\nk3uxWfcqKjO0oeSJ7pxgAiH1rCah7UN5T2d3V4AmDQGLPo7lwX1SKZewa10PnF0X\r\npjE+8welxOK+4pEPl2kRdMDpr9/XPXWpAPt2h67Z0j7x5c7nDU/eZ3UjRkJePoIQ\r\n5aGZuxZ2diziI4JWhbW+kF9M8T0CM1EUIcQV+8wvvualM1q0IN+SJ1X49tt8n3y5\r\nfEAur2599a16z7zg4uF1xI/SafWXMjC8MObCHjR5xodSQ7IxvGyl+6uIkENsiQBF\r\ncuM55MMUELl0VM0+n7Kv5K2Ur+heLzNlTTy2eoiU048g8iQmZzP5C9y4hUE3rYgJ\r\nRxP9ovHl2km91RDTei9aANUGIB8U2uFA7pxe0G8Kp8WSF0a2DtZu7sf2lGjKvP+7\r\nJGaMrJn2bJW6cDEPgfyKCio8kCVtFg7QTtkaZjF5J6AIB0B7aHNPKlAE2T8O2/Z7\r\nJIvM+ijPG5W96tZP\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFjSjQKPPAEB6wAAAAAAWDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4NDAwOVoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA3Pi3nd+o2ItxXWvhyaIDXRbrxgB1wqI0wK/wgC3vs2vSbIHdSuOrtac+\r\nmR6Ag8rE69QQOykN2KJIQI53O0egLWUqjDMa43Fkh1EWTAD0B6snyV91Lt24YPPq\r\nOyJZLhGCtYJoQfPQxZjgW0PknDvWCGIBPFacj86c84QzQdmNBMPrObC21S/ilK+H\r\nGjwcYx9Z3dSeK2CPLLkb3C0HzWWLBL5lFHrdM7qphSAJ07g8/ggis/b4aHdWOlN3\r\nfyySWbuTLQnX8J1XZdWGc+7Z60gzt2jwUc2kgpjcpHvV7QYmy141rjiQyFDNUf7x\r\nFBeFIpLDPoxcfAsOo/dtVfxp/dNMqfAEC27QrUogtIUOcCaSZ5r09ECOuBW6Mood\r\nDIx4bUEhXOJmZBtpzRXhVVKTC7Aqs3PTrPehspCxOclx7c8aESASwj6SSWpDQi+x\r\nrKm2DgTIgvVIdyBNdKhxhGNyl1t9jTEMAdwDmY6pN0kMLCEdM6v9fG0nvtFFLU/m\r\nj9Ojh8Rtf3YWiUPd2cI62tVoXckaP3TbdCNmGysT8ShFNEypEINWIl49U7V00Iec\r\nOveCbkfsnKnT/o69znrWUH+Pt65GxrqO5A+To6WU83OqLxljS/cyBTQmrDh70Dgz\r\nKXDXN3JVW93RLoXuNyAhd1nUOjKOI2tmPhEC4Cz7lqmVxDsQaZMCAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFDrHw8rI3g3T\r\nksAnici+l0dPRWlgMB0GA1UdDgQWBBQ5cV2pFRAtxN9+L1luQE3A3+82mjCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAI68ze1N9ZqKBI7Q7BXGlc0k99wW\r\nCoCZu0m02crvYeITKUC/eizH7s6Sx2Kk5Hnzz0Rzc8G8NpiWEfp7ppKeP1jOMv11\r\n7P1KB6IHyRLdW7vAIBiJy1qhbLAxseR7xkvDKv9yjZYL9Q7XtlSgrd9NuEiuFsfj\r\n0ANzVf/Ea4br00gGc8ALfnvgGE7eUdBNqWKTzHcQREdjJPRMUqTYqcvd4qQbRXZt\r\ncXLt4Fr3pXcwG1UExrz3TP4ueyrqGot/OFDvMihs6Tak0qjYygT2dC3bEOBg3GSQ\r\nDdQVzBFO98f62/l51TBlWizuw3D4/dKIPfQU1Qt7sr9e7CLbecoO8EVtyt/yGRr1\r\nD4BPBGyEzC6QoqCo5Nh27yG+DxFtAGdm/vLaFeJOVM3q2d6nL1FvNzlHTHfOYPJ3\r\nNwHB30X9TpdRqoBLM5UC0m/ybKj4ygXAZBlkJXMO/bjtpqyidJ0SaFuE8EdV9YoJ\r\nKUmBw1ZuZd5GHbc+Ilz82WX+JWZ0efU/f+75Ywvntu/3s0OsnpVoqrqM7TDdzE0d\r\nwRiZ+mvtgIwp85+et1iEdaWPj+d6LfJxpDDCPhaqh9hnNIkZFptndwDwRE2MV9Wr\r\nlUCSA96/2ubHsKt4E2D96KvNog6MKdyEGz1sZep1yZKqE4cnNzGNBGRel0BRa2MK\r\nyTOQsCbnpQGhEz0m\r\n-----END + CERTIFICATE-----"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFlFSsCTnaMEFgAAAAAAWTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzM1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA0E8VPmTCi+s/ukALr8kiz9n0QMveOlaFztd/3QikdEPvOujCuE/CXDKt\r\n0KhyGBUshmHGEC580aoe2Ze2gBJ/Dhs8FjdCjH4IyWU22QOervNkIc2Xd3EMxVZL\r\nYmWmDp5yfa0DwHqsqLq1PLwyk9BfYhh2gp9Dp+vECu4FzvVoZd73UaTpvcQKDsXA\r\nTVR43QC8AiL2AiHgOB3xE75MR/kI1OA7mTaOK8uZbQZCtyG1VMtNL+Q4Di0nB9cD\r\ntqfQj1/UCA76Nr9a7p/TUnck94zlsHE5RVGvDy3GKpa4cmCb+nRpF+ybZjuw8fPT\r\nCY5JGTLZreJMgk+Tej7iN+BYyn4Q2QIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFPFGaMbxw/ArLX2LauGy+b41/NFBMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAD6YslCi5IxgKWQYVzHClxGTpTXEarOPDACuQ\r\nnZIgM4hbk0rMqW4aHFd+paZmMUvNU0HWtIq7aAbNZGCdTrb6g9xjQKrdivWr24BZ\r\nBDxlYkU1tNvdQmafd/RESZ+TpElbuBw2EW0qtK2K+BfL1fTcwpIWRoqWcZUc/CzX\r\n43yuA3vE9sw7/HCDOEQF+QW12B6LDt2Y6DR2y8ZjYsIM0X99mgCE8/HYL4AR3+mA\r\nHjlncC3qlXWRUk46kz2yU4gu0k4P5vexNuGvU9uHvmqQERhhHYkAiW5pwCNFdZDw\r\n95vcnWocRk5TaOPp74v06msx58qS9Re9Fz5xwp6dGGqvWgcF9UJtVVyXMGYB1/1+\r\nyd5n8VpvHVWlrPNpcT0p9YLeou/HKZIiekolUKL6SqCbDFwSUMPM1xWSK6RbphmT\r\nJZdAoKKLq7c/4bFPOxeKvBjT6PrWP64ktWN1Z+AYQlBp1rK7A/ZkAOh8l+17K4VJ\r\neb1whd4SmNSnZbv9jhOeWhrbRsxmFJ1SFHhoBhS3Q/WZWMJtLu2Hv1RHnqRgLD3y\r\nlaC9qyj44pXka/MiLauGl0qjRsO6i0ZV/nU43/eZt4EhWewfmXRnfNlXA/u6abVS\r\n3lkNTlQaJAmTijbKk4JI0qQl4e+xZloOXJVNiqKgYSh3N93Bi+8ROZCLqqpwrO+C\r\n8C5Y9Bk=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIFVjCCAz6gAwIBAgIQJdrLVcnGd4FAnlaUgt5N/jANBgkqhkiG9w0BAQsFADA8\r\nMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAwDgYD\r\nVQQDEwdhbWVyb290MB4XDTE2MDUyNDIyNTI1NFoXDTI2MDUyNDIyNTcwM1owPDET\r\nMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEQMA4GA1UE\r\nAxMHYW1lcm9vdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALv4uChY\r\noVuO+bxBOcn8v4FajoGkxo0YgVwEqEPDVPI6vzmnEqHVhQ1GMVeDyiRrgQT1vCk1\r\nHMMzo9LlWowPrzbXOwjOTFbXc36+UU41yNN2GeNa49RXbAkfbzKE/SYLfbqOD0dN\r\nZLwvOhgIb25oA1eAxW/DI/hvJLLKh2SscvkIyd3o2BUeFm7NtyYG/buCKJh8lOq8\r\n0iBwRoEoInb0vhorHaswSMmqY1g+AJndY/M7uGUqkhDGBhLu53bU9wbUPHsEI+wa\r\nq6WypCijZYT+C4BS5GJrEPZ2O92pztd+ULqhzNRoPj5RuElUww7+z5RnbCaupyBY\r\nOmmJMH30EiRSq8dK/irixXXwJraSywR5kyfmAkv6GYWlRlxFUiK3/co47JLA3TDK\r\nN0wfutbpqxdZQYyGfO2nZrr5JbKfSU0sMtOZDkK6hlafV++hfkVSvFfNHE5B5uN1\r\nMK6agl1dzi28HfJT9aO7cmjGxl1SJ5qoCvcwZNQ2SPHFdrslcwXEFOMDaEzVOA3V\r\n7j3+6lrT8sHXg0sErkcd8lrBImfzhLxM/Wh8CgOUNeUu3flUoxmFv3el+QWalSNy\r\n2SXs2NgWuYE5Iog7CHD/xCnoEnZwwjqLkrro4hYWE4Xj3VlA2Eq+VxqJOgdyFl3m\r\nckSZ08OcwLeprY4+2GEvCXNGNdXUmNNgk2PvAgMBAAGjVDBSMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEBMB0GA1UdDgQWBBQpXlFeZK40ueusnA2njHUB\r\n0QkLKDAQBgkrBgEEAYI3FQEEAwIBADANBgkqhkiG9w0BAQsFAAOCAgEAcznFDnJx\r\nsXaazFY1DuIPvUaiWS7ELxAVXMGZ7ROjLrDq1FNYVewL4emDqyEIEMFncec8rqyk\r\nVBvLQA5YqMCxQWJpL0SlgRSknzLh9ZVcQw1TshC49/XV2N/CLOuyInEQwS//46so\r\nT20Cf8UGUiOK472LZlvM4KchyDR3FTNtmMg0B/LKVjevpX9sk5MiyjjLUj3jtPIP\r\n7jpsfZDd/BNsg/89kpsIF5O64I7iYFj3MHu9o4UJcEX0hRt7OzUxqa9THTssvzE5\r\nVkWo8Rtou2T5TobKV6Rr5Ob9wchLXqVtCyZF16voEKheBnalhGUvErI/6VtBwLb7\r\n13C0JkKLBNMen+HClNliicVIaubnpY2g+AqxOgKBHiZnzq2HhE1qqEUf4VfqahNU\r\niaXtbtyo54f2dCf9UL9uG9dllN3nxBE/Y/aWF6E1M8Bslj1aYAtfUQ/xlhEXCly6\r\nzohw697i3XFUt76RwvfW8quvqdH9Mx0PBpYo4wJJRwAecSJQNy6wIJhAuDgOemXJ\r\nYViBi/bDnhPcFEVQxsypQSw91BUw7Mxh+W59H5MC25SAIw9fLMT9LRqSYpPyasNp\r\n4nACjR+bv/6cI+ICOrGmD2mrk2c4dNnYpDx96FfX/Y158RV0wotqIglACk6m1qyo\r\nyTra6P0Kvo6xz4KaVm8F7VDzUP+heAAhPAs=\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pall-canary-oct12-managed-disk-rg/providers/Microsoft.DocumentDB/cassandraClusters/pall-oct12-cluster-managed-disk","name":"pall-oct12-cluster-managed-disk","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2 EUAP","tags":{},"systemData":{"createdBy":"piyengar@microsoft.com","createdByType":"User","createdAt":"2021-10-13T04:24:38.1468303Z","lastModifiedBy":"piyengar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-13T04:24:38.1468303Z"},"identity":{"principalId":"eb14c601-e8ff-4801-b9f1-7d313c8664d8","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"pall-oct12-cluster-managed-disk","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pall-canary-may12-rg/providers/Microsoft.Network/virtualNetworks/pall_canary/subnets/pall_canary_subnet","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAE5Hd9yskSH1BgAAAAAATjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDU1OVoXDTI1MDkxNTAzMTU1OVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA5UFGOQgmohqJHkbMMcN4cnK+mAoScYUAR/njrD0x/GyFeTko+QXMU1JJ\r\nIePmVcugmyO4xX5ITShZWy+/qPAWy3vwT6HzBdFq5eTGbkbFCrQdh5w1+jwOApMe\r\n9ZDlMDO+RUtJe1XxWqi3KRY0e/pJmpOk4IUEjx6wxvv5MnSWhMa7aepnkuCS8lvF\r\nNl9D5oUGIYvoDUgVMQSBazQP2zjRunMT9JOopFKnZE+L7NY+XDtla3I1uZeMeakA\r\nfqkNjx6lkUIgcHPhSMy5XHBpOeFdSDjBA8dNk6E3VSlLzvPcHdaHI7QrmK/43wzf\r\n+kHpDdTXx8EdOqm+pLHoKLWcjw/P8O9RAMiXefxGnQKNuP8T+/prskR5esucJQkj\r\nrWSu7W7YycmIg1rPCd7Qw005/sc58eLPN+Xrj/Aw7RSR0A719CPZMjoSfKTphSEK\r\np+ZB+5j/V3VEzjGbL6XFUezFfaIZ+A7ZtkaEQYDH0fVVziPnhQhJB+Uym7a5arB3\r\nqiMMw7Yjos6iWkkOaqhaCHuN1zC374xsBec9mrJ7bfuLTNtBEKC1PhdZrJM3UDCo\r\n76v+3mnKouN/7vyVkbiLNb27MXRigXFbO02opR8prTkvv3af+iq6+xjmVWZhsILI\r\n0HIBk9/HoMZCCb9e95RQVmVwVNrwa24neVWl+JEw50sqLMapsGkCAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUOsfDysjeDdOSwCeJyL6X\r\nR09FaWAwHQYDVR0OBBYEFEKY1e9GMTrmL0fNVVel5jUfu/yRMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAuaX699r+ayL7JphKgdiDuy4iPTwf7fTkUsLx\r\n7ixBzvnUrUASdS9GJEkpsewdipRfMycn3UXatnQ6rudCqBgsExJzHBGlokhvVaZK\r\nue0oIlJstnKQDOJCpJem9NkvwALP5z3WZoqYf4EaaQXUkMAJJ2qxw+mksSBEu+MJ\r\noxgbStKv98q28ypOVLjaFNH/VbtAG/rIcqNyOdjAPcgMcohe7lGO1WQtFxPxtzvS\r\nZfgao/ZjWeNDFzy8FSInim1q69Syl3Y4dzeAlG6PiC8t7upDQzo2AJxI1tW0AkKV\r\naJIS9rGZquLN5MTbYozjEyzMvSEYFEpx+7YKQGayHz3eCGH4BzD43YPt20Cm4BMN\r\neyV64+d9PufCA2tzrIQ+VJhsZKb6qRgV+Bp6AfpgeyU6oRkqsWKJyKyzp6o0D+Si\r\nq3gYJdD3W0+X1jUJcQuywYLRg78rVE3A6VJ7RIEjXARQV19hJvxchCoqfbny/0bX\r\n9Bb3Rtr1OAYhUml6Z6JdfnH33KfEJvFa4wlKRBxpuw9gMG5ydOsbZ3YIJDWccTLH\r\nQZWJk/Lakd/+uLPWOzzWQCf7nPapwSRjtfRRLZoX49PIQkrGM3dpLLGktC+sg8bc\r\nvQ2bO79bKJazcsKuNK0dOpepIBA1mMD81DphYmc/RMF9KXKdKz4Ugh4HNqkltIsG\r\nEtaYPCM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAE2e+Zx9LtWjEwAAAAAATTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDUwOFoXDTI1MDkxNTAzMTUwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1RZFKUUXNWXgbh7dm52Irso1hGPDEL9ZZXYz0civ0AAlDu9P/1okXVpc\r\nOPQnRxE7e7O8roTSctA4MTBGFIjrCythVzk6MJC1bgGv7qwCV6o5P4zVSxQrHPx+\r\n2DPDIZlt3UV4RNLuKVvSZdzQt1UsxUOxvTZ/0mO22d6mcspf3I5Xt5h+7WlTgHAy\r\nWvvlpuX7LR8yTK/um4526bdhUG98I2nEURH2vnNSt3/Dbt1R6qoPMja0HhghuOtY\r\nt7Z77nyI2gOY2fRu3oM15Xqe8b3Qwx5IsSV/pTWJ34VPz24TfUmCQOVtu/m84ayA\r\nwSZ754d+JvkyPSdINV3tuLtbo/QVewIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBQbRewlXgZoN1BD7V/nign/FlWETTAdBgNVHQ4EFgQU\r\nvZx3N/n1PWYwyjVonISvG5ZVEL4wgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQBFtFQSE7TjElKEmwHyydrA/UEAzho7rEMy2lvNr2tgX/7WVWDqmDrTK4La\r\nm6/MGOUBYbF334Ywvprij/UoSpyMEq5HgXiCBxOgyUPSZx8x+XyINgCujVXRk9za\r\nPh1lXpYCV2qhIYAhazeprDYzX2im0Jwe8X/Xsl0kzgs3TE7medDW9CVEYS+T7SqG\r\ntmXhOg1FW04yUM0+Z73ZQGF5oqnE76kzpLvfn+YWA6KbLfH84yTpqylAD5UFvfeW\r\nMRoNUUckpsteddNba90soUzxeRwU0Loxj5Qsds2gB0tSIpVh330BxEDTIJ73FZIv\r\nvURqyoDor+Eu1NOVk3sdCM5nXuN38dc0a9fsSRoJkbQYTP9UNJPcUDO3kZoYWNxD\r\nWrn5J/ltaxPc1o7+USSm02C023HIrWBJkfnepIZKV8m7wkddcygJ6FQkxFU+NQUW\r\n+a91tIw3HTEHvmNlJddPmjgnE3k6GS1NLOC5IV/s1s4sSME3QYQAt+zr5TKRdZ06\r\ndBOSXrz66pVpkR2wuAvlCEuFk7gaBrKz4j+3wJ9CPhETezARvgpzQCw9es9y2qde\r\nO1rHPYa6IRtmjcVDvxfmjei66bQwoapDH/OMS6sPqqqn53l9g4HDDgWywWn9ad51\r\nL5NAvQYhHwSCG0E2Os5mUFYM56ZVA4WHVUn7NZsAXGnDtIwlPw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAACbGTID3uXpE1wAAAAAAJjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE4MDMxOTE4MjcwOFoXDTIzMDMxOTE4MzcwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAvBsRcCD4Z38LQPG73ci9jIpQv5tVQh8lLrcQ9lO2lH6pUVWi7T7jCyX/\r\naCSmit7fT6seN/kf6LP0hpgsU/wxMMv4c4+w1M16EiRc6GPJtSPNszl8ZNAzZj39\r\nxeJnAMhPzeABRLgzYgLH+9R3k8sIJMhSjcUfp63GAhKtdqhQeTOs7m87REtmAdo7\r\neZh/Ubn4HR1ZxAswmoWmMxMZw1KZj87395IxE3Ybj0m/V8dyskpxWdAzkvGeO//l\r\nb4FfAHVCCix9wsijqomj+jeJPHR/AF/5+MZXjoNDs6/+UMdSrEqa2fi8910J6ogL\r\nSMdL7NdV77U5551wZxeUwSEHUc4qkQr9cFAdHcdYiMnIrU28zk7O3yQdsyWdrTqx\r\nTbkoYn36Ji+aSyzs/u/Zh3pAWw9IvLaoq254Rpf1SWsvufE2YXaP6kUmvOE9Qrnt\r\nQ138fwe9CmPUT9I/cM0v16BDvELEH3KGsWez8WRFA5RAB5pPDKjMyZ7mNl+0+EDv\r\nMq+KYjtc9uWJoRsRe8mDnVt2JGRBazTCFd/m5HGywdUvg/fZyVfBrvsRhcahMXn+\r\nb+a6kw+gMY29dcNutHNl1ZuKbwUuvp0ShWnauFVqMSRP6kSgXjzM0Oez2CHEtnX7\r\nNTKy9+eXsqxkzVXop81HCR7QCDlKPkc78IRETKfQA/nHdu2iOd8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQonG1RafqmxKhDxP+NNvoz\r\n3/1FMDCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAJFaZ9bHSEXBMKUi\r\nxLJgRr0yPOBbkZAHGsXGsAAdXnsAcmRZnoMsJZwHJY9qa2SDdjWzCnEuk50KJ0Rm\r\nvePgWmDtQWwyfFT//JIccaFgxYsU2SjdHEi0DmRElJtLkYQorDjkqn8s2T8y95f0\r\nmdcNme7cQ8PsjawgV1hb7r1I0bRh93M4pDzRt0g08RoFtMGuqRdU3roMDbuid5Hj\r\nBnoT5MdJlYzklABw+JPOIFeqZ0LMq/RPyk8Dpzo7m2dSc78GitdNnWxj4Ku6l8lb\r\n0OHX3BL1eVKyKi8Vta3BjpzWuMQompgdzp1Eh+mDyfKV/+dlfIEPJI1stEHIEKWR\r\nR5yt35+RGXrmsmAwTZT5mcJk4JdAMhVnRnyWvxPzieYCR9DcIaT6+NBBYzQegOG+\r\nIMnLpnZp6qhbG7Nq9MXCqRY2ooojLCTLTCx8R2cqdYonJpB4lSkYMFYbuV7HoiNr\r\nXdZm0gMRi2DmIaZ7cxXUn0BmZd/lXSXNKdxwHKecu0F8ByT1Zlg3NgIhCb+6SDYB\r\nlOv5YhnwSd00aUaSSYc2dKJmR2yfCKT5Li9wdtjlB6rYIb7vHRl3x98OIVE+O20S\r\n1jQEqRLzkaDIWOA8D9VeuuIW05tahms61dDi5gx7M/ALhFa/QsbkCJXRf07Pe4ki\r\nHE/1Nk3cohSibWYZqHssdutHBd+Q\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAEnEBGqOfE69FwAAAAAASTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDA1MVoXDTI1MDkxNTAzMTA1MVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAw9b7oiITgLVh8Yry44fRHl/xMuYtsI0Cg944jlh0S5ljKgUEMvt8/S63\r\nRH9+9eXvbFN4L9EL2+RDhWd5hGyg4gQeKtxO7D/+JUoTIamIl4pXTxhO5oORnS9k\r\ntWp6lc1OfpYnkgzrkFHICKggDtCpQxp7cMtM8evEvY/7WvmJDbAsgSRlBIeyVZqU\r\ndfw4ahzvsNmMfDGx2JBKgB5mndVGyg96yCHy5+7XKOkkcr+NKHdnBM3k546rGlCV\r\nErgPVuUkRxrwIa3xD9BRewoihWG7sbuxny49CrdbDi3WqK0VPSJGZ2y5ipUTwndi\r\n/+QhiK5expoHO0hl20DwRgq74qB5zSs379PcTQz59OvUDMi2fiErDYnCT75X3w1b\r\nh2uGBFIwonYXGHU1s/SaxQlXErGplgkLv/tBPAXu8sk+qANHaY1EfPwpPfOXjIxl\r\nRT95moW0IP+CPmhV0g2ZPKNn0mIRPpf8IzI5O4pLe6xfXDekQnNcGaBY9nN9LBO3\r\noi7pBBNObi17J/ebVg2rScg+KAWVVf09iLF2inpoFxKOJQz//poXo2fAvYVXnXJm\r\n99qJvY8gFyOyg2Cr2x/Wp8yw/u7H4DztXuFMYuPEVpR9/EeLP2bzrpdbJpj+SPT4\r\nU0OmtjVtKNR4aOBNBVWmzxV+WKRBfpkq+pjpRMkgFapXWtjlXV0CAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUluoFkm4uQswgfjWGaL4s\r\nMWhX+14wHQYDVR0OBBYEFBxS0IHKkOkG4KzpGA07z01trd55MIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAa08V3/BsJsIOjn2Qu6zUb0GosfdvggVX36PY\r\n9OZyOn5d2+tPPjG2re+uovdpuLKx1YH0iBX4kIL05yObqKMAv+YO3Ihj4MkcYy6A\r\nk9DbHyQTYoeSfaryn6yo7kLYCz6E+li6HJ4FVx13PxpwqDXWUu+Yf5Kszj56IqHx\r\nTI9LV1ZbqmZYk7fQIPETYENkE23ypgh5snRtqSZYTw6HASkHI4E7NgFkOATnIcs2\r\npLGzcc9vc/QYlj3PT3ciGdpGkz8l/A2MMqC4eleYFTBSX9rNNG0tf0M+5fVF417D\r\nmtqDlglm9bWpgrdLpmcj28f3766EBJBq9zza4M9dAGBWBQx0c8BR9saGATd/U8lY\r\nmlTDhnRdqJvvTbtPzFFmTF5jrANky12jKlaHHTyLETDu6OeDbVEyJNuhj0a+cQ6r\r\nZwYCG/k0WCzUx3MMq1A11uxvseoOmpIqLOGfkEdmBPQXkKC02vyjZkxF0pGPNNcy\r\nBSCIlZ11UtC5ghcZ2Wg/U4bAogTv/XAnjwzLpp5V7mcepzcBagiFlQkdnvUKNI/I\r\nLkerOmrgKe0rgT+ICALZiq7hIyeuM2uthyD3FaBFf62WOtDD6Jfwkg/3LI7of+HC\r\nGZ99J/xaocq6NFYqzD/9H6n0+biogXUJtm7mKhQO3PeLz/1aDIwLfKqZFr3PCStN\r\nvTWqAdQ=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFYLVFiDd8BlgAAAAAAAVjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4Mzg0OFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAxIoR15PqTSSMns55DdeR97gCwVWRoA6zCYbU66RoYrXuHSpcJM+1tnHN\r\n6B2gITXD0iDoTLpuOvRlM+12v0c8cWdzVoHuRuG0k1ViNgSELeNw8SXSQ6jmvgPy\r\nH6fg+NiKLkjYrJuIp5me3/asqMTeO6MOkeimS67PYerzkMYoC7BUEUacludZswsM\r\nFZnsM/vHCjIpzQMGWyUzju2ANT+J41Wz9AmukpPQFNzyq9566BEU/4MJh9Yg5aSR\r\npzI1gU8r4Y9ABdOgjsFnEm8BSSdlWLgalKevYPMLX/FO2rFufFgcNJq3Y8rnAtJD\r\n0k9jt7isXmJgS+JNfANvY7+jXQaCkwIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUOLjGDtr98qbFC/XuACeceItvo7EwHQYD\r\nVR0OBBYEFOXZm2f8+Oy6u/DAqJ2KV4i53z5jMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAYI9s0aXNjS8k6w/pyYwcd8HBPAjpWHJp7vBNsa9rDbau6raD\r\n+QWjj+hO5OKUkNchKIkK3xUc/iDAMNALDLFqUOaVTeMh5fu/e8Pr1AX1R1c5U1Yd\r\nxExItrFARqTCCIQpLz3cTu/9KA5QgUQlnFlrxA9IHq9G6k3TvTB2AngUzXBhNhl5\r\nb8ya7LK3dhfqf2BQHJ7k1XReCJLYMxI6PaG0F6mWTCFNBbBxgjsXeXfjYv2li33v\r\n48ALT/NXFoOTbAOP4EFfLhMDnx2O6cFOKrYT9O+EU64oJ/0MQDQSq9PVos5J+RW8\r\nvD/h2ycPqMnmsjvpJ4pWJZP+YSxy/HWMwbZt/Dv/UobeQqLCIXGnODv87K+1JVo0\r\nO3c1NtGJu61JyXwW8id8VSQuc2NzEr58rOOGMfU3gHZMSNY2gsFs1gqXC6MjtX9O\r\nipJ+dqr7lgRvpDN9bD2kd9CdOWsxz6PRPxOmbUittmpHdABMZuaeKB/5MnxVrpNw\r\nlYtJYXvKRY1V30kjFSsyLv02YYKb8MI/NfWcjMLw4eaEn//ST+sf+LjB9KF8TxBX\r\nxuBUpQVA/TJX9GEqYMZt557A5u5odSVcac+w0/Nn4E6WzFLfxMr1O8OOOQjzlG3u\r\n5BPqprm+utwEHBCU4iVcZOdnSgk1dm7C5xmmTylFRYOlwVrFSPcyKy0+6H8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAEso8JmcB0l1ZwAAAAAASzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDMxN1oXDTI1MDkxNTAzMTMxN1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1FFhjk/dgVlthN00OKObtbEisXfH40OyapM9KcVlUPnMElPROdKi7XPQ\r\nagq+Ry3QLSSZgNWnkahCSxE81oyudrvlhpR7NpcDPZHsYFw6qsEiirml0hc5awSq\r\n+MtFo9pfnr/zQstb7xg8wjduWjANvO3E34jZbfmCyw4gU4TRPIa9rpaV0N14hQTk\r\nKcBv+S12udS181oWcTc66zxVXUHNK15PRv31jElEYQKX8EJWCe6ccJA/cJD282sR\r\noEhfuUvzXHOeWD1jXH+Eh+mKuhLqiQHPJH7TJRMsN77ndtHH9us3Ak4l9AmGNZZf\r\nwNquVrHAiTw9Ai90btckoeMRn8eogQIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBTX/nF7X/NZN2T02QZU2G6DYuwmyDAdBgNVHQ4EFgQU\r\nlUWMsJMswORfcQ0UpecnwcNjm/cwgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQCb7VpPdQaBSKQdwDpgFquVkVtcKzEAwsVlzIENIrlRsOcBgvZlW9QKwgCd\r\n6xvrF9smidaMzlYuxYQypQ0RQEHDKJ1SJQLc1ZtR7fWf0xHqU0cgX3hktDNyN5t4\r\n7rMtYOUhygcZIxVQ2cpkyLoilwnb/q0Y0jOnA7eo0r9K67TJ9CP2m3ZUApzRaCwv\r\nqQE8eNZvngy+613PU11A2EFuTPXoVNb7S3w8amz+mYYnJCBhxf4PdYA/3DZ0q3FP\r\nfFxqKAbuNtXXHFmYn3BBMGSn082Uq8RsAvj5XEkI/xylDlwG3zT+QaIOrJ/06Toz\r\ncT0ewSlyNAB6LzGp/HLTIffhSNBVX8ILs558r6VcnTE21awdkWqnd3PiPkWADD78\r\nDVSb/7QOsBdZp6BKkcDzTc/uaDGahR55UcapkOMBSbngkomK986ITx3yUITn0aV4\r\nBEVbYQQ6b9l/eNHRosiwL52QPnYl6fJRsl0JuUzy9T5DrwGGnRgKQAOmSWPRTdt2\r\n14MWrxbLFRRwvqt2COK82jPTAiZ3XqYSZzZce9bSDsGSm5VpwWz5+xyBYc3djzKR\r\nThctXJrwftNyZD+LBc/4oLOTYLpDB23eI8rvb6Xfm3A8ANucIq2muavxi1A+eyYM\r\nQXwyB2foIV9yhDIA5I1psyJo+CwM9CcibRTjjNL5ghEkoSDjyA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFSoP4knG2YAHAAAAAAAVDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzczNFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApuAstd+jxOmcAhw1KNXa7fDE4SFe/7SdG4avz6VQqep4ofwJwZTxQJNQ\r\nBC7dybKZO2RBiDzzayV9PCxmK9HPRMRmuj68x9BRyoEbVU1tX4HtiBK+hAGiRNQu\r\nPRTYcSs24CgjI3JrxOjNesp8iE8HUVntN8ueXnpTQLSYOR2TmTGM835tkTplflX/\r\n/zPtZvsXSZz+JssQ9SRcXS2t/fPDpKfNVatOmq4iwtX7Q6IO/WCzAyEzacjAFqml\r\n0/PRYT5O+jiRO+TImZ2RD0CB9rP5CYwN2T504drkKteNaT+FT/teBLC+JraDjh27\r\nv24yknl1t8dXCSS6l/UBGBGVk+gr0wIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUVSrR7NlDI9ZN5GcKVaV9JEKwIbEwHQYD\r\nVR0OBBYEFK55wmtdJYgTBvYHCcOXfHuXjx1VMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAbgp2LNvP1OVFkH9JTg9rTMksjvLIpzaqJehSp5+3YNzGl/TH\r\ni3Kg/rbtQaKErwipeLMhmqWFuT9kB22eeyoBSxx3JTzRmKtcJO47IX0qymW04v2i\r\nI2tVWQigwJWtE08Z16Q3NVdgAox6DDnAvmV8QDlPhWdW0gGcszZqFD47SJltU8JJ\r\n6D+xuDl+xUIA5wQ0987HRo4dSx3Vny1cd98GdMepsOnCpfm7ZQDWJUggp8m8T/jv\r\ngj28G4JNV9nsx3TT5D4xFZ0rXUlQNmhJFesprLt8NqOoKqmP40WdqrpVIxlu5pdH\r\naf/uT89gHO3Zy+iqNbCDRB7zSBtaalaqLvGpE0xV3p+xpjY1CujjvKp+rUrGwA1t\r\n7aNRowd45Dn+kESi95bE16V2k54YbRvgkwQgqyFUiissogOtaOwQIjuv5NUMkKnj\r\nWz1S1nsMTwZWQ20pT+SG9IMWxAP+63fLIMxWXSbwkTo1Q7JVbr7ZnbNjPrzwerrq\r\nTx+CgfCjU2TZ2WaqYnKoGlgjiZkVraQ1JYJkEr5N5+12CnAuVNzn7pMs6HUSxc8Y\r\numBjy+KA0I1XMvFerh+fhEVad7kOgOxqE1uLdXZxkOXHC1N4FQlkI65Padcd8dyM\r\n3g+er8suC1gf9/fWU0AlgIqls48Wis2JISOeSsMAi3BDvCIpp5PHbuNfj7A=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFr7ZWQR1r6OSQAAAAAAWjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzN1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEArMu8k7Kq5y6uDXZk0QxV9Ya5K3Mb0/sCyV4fs48XfAgL3YOHYTZ5o1uB\r\n97VZ/oXuenXaDcoDE18WhOavpqjWHc4eb1QeGGCaB0MoijTLGPzqwWRdByW6l2U2\r\ngFzjKWKtFncIj/VW5S98uCDD8b0SX278XKubkKv0Zn3m1E2wVrTvG8Jc/MuXF0WX\r\ntjFRRJPY3keED1zFNEKjckE4ywTV1atTqnKbmj2rcQucHJ4ufZ89Hel/xLL0bFxc\r\nJnW4Ky8lZ4Q+G9brYexh/iEBcSpNQlfLVJrKZMlAwGPcp1SBGxU9GlSV7kE1LLCS\r\njpS5d6/qw4VA+z5y9HsHN225oBhpAQIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFHrWGYUoeWxxdh5g+PNL76IFQhYdMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAU2IUk2qTwWTtRBKzMTaRxYKvTyvU1nyQLxko\r\nA3304lciVsdA86+jhEkvnCwZeAHoOtYuPeQJdeyhYUhVRDAhhJauvE87FB69gM6h\r\nYUnRqiy+vekLrHB/1x8njoLHmcppjOvBzziOPSqvf8s6O8tJ5AjY3398sm5ckH37\r\nVYHa/+bAYCvEsYmgDGN8L25QvXScTmTthSXHlzsCItPpKFs385dsGJnFD0KcQ5c1\r\ngLmV1bdHnrWyy2mqB819CFWtzhnojtzXxZLuEfTBS18u0qoLdN8KvgB2BvfgZtY7\r\nx+fbkiyoZfnZak0Oj45Z9Z/6AQ1uHGSRadAh19mkcrkPwHktc/3M1PJ69dwZn8Ez\r\nASzYFf8QH58i5uxdou73v+5Bd1m5nmtFCyLC6QDtFYH0pkvmafBx7PwyrgTjq2Xv\r\n7eWL0wXESxzY4HpjMDO36ncsLvzI6j4CyG4cpA8F8+9jwizWqmKMQUWt+VMICsP7\r\nRrzCJ35ogFGWF/dC2hjdjBXjcyLaliR5nE+sDx1PVDdIu7y8oBi60+Vzl0+BSf8P\r\nOdssgwciUpWVP+9xf6SZ7D9BPmLwgIJZ4oPc5K7cTOR6ksQQg8fO44fmOCRfVD/T\r\nDj1e39ijjkmcXUvrcu1sh93vbupLKp4Guruj3Le6iQ4Hla6Pr4znFKCzKk1+RrcQ\r\nVnsaqio=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFOufo2CImJDvAAAAAAAUzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzYxMFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAz2IfhGnsNWpW1cYZrm7f0KG7FjkmtAufsz6xSPNM86b5+jPDUpkOb7U7\r\nj4cWGBVdrYYqWUkziZmWPyl9WLw43KGzaMT3xTnm1xWyok8Z1D/ytHfxFI5t+Xzk\r\n+pcWwIZzuElzEzAQYnVMyfdxD6sM2winZ1ehDpvJeLTPcuTPf5fDYpcrnebODQ+r\r\nnsvq7oU7bHp/jTkGP/2hNzNLR7QJq+rOaHTHDky5yWrsMdgGj0dJXmId6RIfgbeq\r\nJyz7pK0OnoqopPXzZcEQJGNdh9tTh0DWpPGkCWvp4yC2Sd6VSDIApnIpXRn5WNGc\r\n79eeuL9eKvQ5W1zq3/j5HlmwZvPOE+3kPe9r1+WMazNqbhmVk0gUfZX+cnJcy8ZH\r\nqZhjCnW1ihCHzNxMQypQLrnOgVCBkkkRj466iLGDMGL5IyTji2AAp50wMiZuVQX6\r\nwY4kcKqLsjSPpDpHGIie+58/dh9xFgqJzV0kNbAvehRlbwzQnRJWzr1UgZJgjluN\r\nlLpJwTmUIe3I4FzbwrzGMOltYu8XbdFAfyPM4fcfqJwFTF2xI5OYNC3Rcou9OSQT\r\no+ce9/rON//vZNZmQ+TPQ3nkPoKus+JX3EFJbevLeG0IvvC8c2ABwv6cNcvbSSoV\r\nXP+XaBLuXe5A3G+Tdr33bVhKKnbKiravs7sEeKvXVrpDgilOuG8CAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFJbqBZJuLkLM\r\nIH41hmi+LDFoV/teMB0GA1UdDgQWBBRIo61gdWpv7GDzaVXRALEyV/xs5DCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAArPH6tJjsM3VsG3zdh/1Rh3LDz4\r\nDqyUEJEXiM+Sa1kCncVvIqI5GkFKGM3Ur3hdx6xxe5F9gPvUdL22Qf0DLaOclksk\r\nO2FABXqDRv0P7k5yyryzTM/RmLhleut3Fc8BUdfrkmif8Znyxp12sRxK0UgEf6iI\r\n+dEZugVpwAl8IRUk9O201Q87q3zI30NgPT2BJiDycKaKQJF634qatubvL28JaiOd\r\nk3uxWfcqKjO0oeSJ7pxgAiH1rCah7UN5T2d3V4AmDQGLPo7lwX1SKZewa10PnF0X\r\npjE+8welxOK+4pEPl2kRdMDpr9/XPXWpAPt2h67Z0j7x5c7nDU/eZ3UjRkJePoIQ\r\n5aGZuxZ2diziI4JWhbW+kF9M8T0CM1EUIcQV+8wvvualM1q0IN+SJ1X49tt8n3y5\r\nfEAur2599a16z7zg4uF1xI/SafWXMjC8MObCHjR5xodSQ7IxvGyl+6uIkENsiQBF\r\ncuM55MMUELl0VM0+n7Kv5K2Ur+heLzNlTTy2eoiU048g8iQmZzP5C9y4hUE3rYgJ\r\nRxP9ovHl2km91RDTei9aANUGIB8U2uFA7pxe0G8Kp8WSF0a2DtZu7sf2lGjKvP+7\r\nJGaMrJn2bJW6cDEPgfyKCio8kCVtFg7QTtkaZjF5J6AIB0B7aHNPKlAE2T8O2/Z7\r\nJIvM+ijPG5W96tZP\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFjSjQKPPAEB6wAAAAAAWDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4NDAwOVoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA3Pi3nd+o2ItxXWvhyaIDXRbrxgB1wqI0wK/wgC3vs2vSbIHdSuOrtac+\r\nmR6Ag8rE69QQOykN2KJIQI53O0egLWUqjDMa43Fkh1EWTAD0B6snyV91Lt24YPPq\r\nOyJZLhGCtYJoQfPQxZjgW0PknDvWCGIBPFacj86c84QzQdmNBMPrObC21S/ilK+H\r\nGjwcYx9Z3dSeK2CPLLkb3C0HzWWLBL5lFHrdM7qphSAJ07g8/ggis/b4aHdWOlN3\r\nfyySWbuTLQnX8J1XZdWGc+7Z60gzt2jwUc2kgpjcpHvV7QYmy141rjiQyFDNUf7x\r\nFBeFIpLDPoxcfAsOo/dtVfxp/dNMqfAEC27QrUogtIUOcCaSZ5r09ECOuBW6Mood\r\nDIx4bUEhXOJmZBtpzRXhVVKTC7Aqs3PTrPehspCxOclx7c8aESASwj6SSWpDQi+x\r\nrKm2DgTIgvVIdyBNdKhxhGNyl1t9jTEMAdwDmY6pN0kMLCEdM6v9fG0nvtFFLU/m\r\nj9Ojh8Rtf3YWiUPd2cI62tVoXckaP3TbdCNmGysT8ShFNEypEINWIl49U7V00Iec\r\nOveCbkfsnKnT/o69znrWUH+Pt65GxrqO5A+To6WU83OqLxljS/cyBTQmrDh70Dgz\r\nKXDXN3JVW93RLoXuNyAhd1nUOjKOI2tmPhEC4Cz7lqmVxDsQaZMCAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFDrHw8rI3g3T\r\nksAnici+l0dPRWlgMB0GA1UdDgQWBBQ5cV2pFRAtxN9+L1luQE3A3+82mjCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAI68ze1N9ZqKBI7Q7BXGlc0k99wW\r\nCoCZu0m02crvYeITKUC/eizH7s6Sx2Kk5Hnzz0Rzc8G8NpiWEfp7ppKeP1jOMv11\r\n7P1KB6IHyRLdW7vAIBiJy1qhbLAxseR7xkvDKv9yjZYL9Q7XtlSgrd9NuEiuFsfj\r\n0ANzVf/Ea4br00gGc8ALfnvgGE7eUdBNqWKTzHcQREdjJPRMUqTYqcvd4qQbRXZt\r\ncXLt4Fr3pXcwG1UExrz3TP4ueyrqGot/OFDvMihs6Tak0qjYygT2dC3bEOBg3GSQ\r\nDdQVzBFO98f62/l51TBlWizuw3D4/dKIPfQU1Qt7sr9e7CLbecoO8EVtyt/yGRr1\r\nD4BPBGyEzC6QoqCo5Nh27yG+DxFtAGdm/vLaFeJOVM3q2d6nL1FvNzlHTHfOYPJ3\r\nNwHB30X9TpdRqoBLM5UC0m/ybKj4ygXAZBlkJXMO/bjtpqyidJ0SaFuE8EdV9YoJ\r\nKUmBw1ZuZd5GHbc+Ilz82WX+JWZ0efU/f+75Ywvntu/3s0OsnpVoqrqM7TDdzE0d\r\nwRiZ+mvtgIwp85+et1iEdaWPj+d6LfJxpDDCPhaqh9hnNIkZFptndwDwRE2MV9Wr\r\nlUCSA96/2ubHsKt4E2D96KvNog6MKdyEGz1sZep1yZKqE4cnNzGNBGRel0BRa2MK\r\nyTOQsCbnpQGhEz0m\r\n-----END + CERTIFICATE-----"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFlFSsCTnaMEFgAAAAAAWTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzM1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA0E8VPmTCi+s/ukALr8kiz9n0QMveOlaFztd/3QikdEPvOujCuE/CXDKt\r\n0KhyGBUshmHGEC580aoe2Ze2gBJ/Dhs8FjdCjH4IyWU22QOervNkIc2Xd3EMxVZL\r\nYmWmDp5yfa0DwHqsqLq1PLwyk9BfYhh2gp9Dp+vECu4FzvVoZd73UaTpvcQKDsXA\r\nTVR43QC8AiL2AiHgOB3xE75MR/kI1OA7mTaOK8uZbQZCtyG1VMtNL+Q4Di0nB9cD\r\ntqfQj1/UCA76Nr9a7p/TUnck94zlsHE5RVGvDy3GKpa4cmCb+nRpF+ybZjuw8fPT\r\nCY5JGTLZreJMgk+Tej7iN+BYyn4Q2QIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFPFGaMbxw/ArLX2LauGy+b41/NFBMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAD6YslCi5IxgKWQYVzHClxGTpTXEarOPDACuQ\r\nnZIgM4hbk0rMqW4aHFd+paZmMUvNU0HWtIq7aAbNZGCdTrb6g9xjQKrdivWr24BZ\r\nBDxlYkU1tNvdQmafd/RESZ+TpElbuBw2EW0qtK2K+BfL1fTcwpIWRoqWcZUc/CzX\r\n43yuA3vE9sw7/HCDOEQF+QW12B6LDt2Y6DR2y8ZjYsIM0X99mgCE8/HYL4AR3+mA\r\nHjlncC3qlXWRUk46kz2yU4gu0k4P5vexNuGvU9uHvmqQERhhHYkAiW5pwCNFdZDw\r\n95vcnWocRk5TaOPp74v06msx58qS9Re9Fz5xwp6dGGqvWgcF9UJtVVyXMGYB1/1+\r\nyd5n8VpvHVWlrPNpcT0p9YLeou/HKZIiekolUKL6SqCbDFwSUMPM1xWSK6RbphmT\r\nJZdAoKKLq7c/4bFPOxeKvBjT6PrWP64ktWN1Z+AYQlBp1rK7A/ZkAOh8l+17K4VJ\r\neb1whd4SmNSnZbv9jhOeWhrbRsxmFJ1SFHhoBhS3Q/WZWMJtLu2Hv1RHnqRgLD3y\r\nlaC9qyj44pXka/MiLauGl0qjRsO6i0ZV/nU43/eZt4EhWewfmXRnfNlXA/u6abVS\r\n3lkNTlQaJAmTijbKk4JI0qQl4e+xZloOXJVNiqKgYSh3N93Bi+8ROZCLqqpwrO+C\r\n8C5Y9Bk=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIFVjCCAz6gAwIBAgIQJdrLVcnGd4FAnlaUgt5N/jANBgkqhkiG9w0BAQsFADA8\r\nMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAwDgYD\r\nVQQDEwdhbWVyb290MB4XDTE2MDUyNDIyNTI1NFoXDTI2MDUyNDIyNTcwM1owPDET\r\nMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEQMA4GA1UE\r\nAxMHYW1lcm9vdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALv4uChY\r\noVuO+bxBOcn8v4FajoGkxo0YgVwEqEPDVPI6vzmnEqHVhQ1GMVeDyiRrgQT1vCk1\r\nHMMzo9LlWowPrzbXOwjOTFbXc36+UU41yNN2GeNa49RXbAkfbzKE/SYLfbqOD0dN\r\nZLwvOhgIb25oA1eAxW/DI/hvJLLKh2SscvkIyd3o2BUeFm7NtyYG/buCKJh8lOq8\r\n0iBwRoEoInb0vhorHaswSMmqY1g+AJndY/M7uGUqkhDGBhLu53bU9wbUPHsEI+wa\r\nq6WypCijZYT+C4BS5GJrEPZ2O92pztd+ULqhzNRoPj5RuElUww7+z5RnbCaupyBY\r\nOmmJMH30EiRSq8dK/irixXXwJraSywR5kyfmAkv6GYWlRlxFUiK3/co47JLA3TDK\r\nN0wfutbpqxdZQYyGfO2nZrr5JbKfSU0sMtOZDkK6hlafV++hfkVSvFfNHE5B5uN1\r\nMK6agl1dzi28HfJT9aO7cmjGxl1SJ5qoCvcwZNQ2SPHFdrslcwXEFOMDaEzVOA3V\r\n7j3+6lrT8sHXg0sErkcd8lrBImfzhLxM/Wh8CgOUNeUu3flUoxmFv3el+QWalSNy\r\n2SXs2NgWuYE5Iog7CHD/xCnoEnZwwjqLkrro4hYWE4Xj3VlA2Eq+VxqJOgdyFl3m\r\nckSZ08OcwLeprY4+2GEvCXNGNdXUmNNgk2PvAgMBAAGjVDBSMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEBMB0GA1UdDgQWBBQpXlFeZK40ueusnA2njHUB\r\n0QkLKDAQBgkrBgEEAYI3FQEEAwIBADANBgkqhkiG9w0BAQsFAAOCAgEAcznFDnJx\r\nsXaazFY1DuIPvUaiWS7ELxAVXMGZ7ROjLrDq1FNYVewL4emDqyEIEMFncec8rqyk\r\nVBvLQA5YqMCxQWJpL0SlgRSknzLh9ZVcQw1TshC49/XV2N/CLOuyInEQwS//46so\r\nT20Cf8UGUiOK472LZlvM4KchyDR3FTNtmMg0B/LKVjevpX9sk5MiyjjLUj3jtPIP\r\n7jpsfZDd/BNsg/89kpsIF5O64I7iYFj3MHu9o4UJcEX0hRt7OzUxqa9THTssvzE5\r\nVkWo8Rtou2T5TobKV6Rr5Ob9wchLXqVtCyZF16voEKheBnalhGUvErI/6VtBwLb7\r\n13C0JkKLBNMen+HClNliicVIaubnpY2g+AqxOgKBHiZnzq2HhE1qqEUf4VfqahNU\r\niaXtbtyo54f2dCf9UL9uG9dllN3nxBE/Y/aWF6E1M8Bslj1aYAtfUQ/xlhEXCly6\r\nzohw697i3XFUt76RwvfW8quvqdH9Mx0PBpYo4wJJRwAecSJQNy6wIJhAuDgOemXJ\r\nYViBi/bDnhPcFEVQxsypQSw91BUw7Mxh+W59H5MC25SAIw9fLMT9LRqSYpPyasNp\r\n4nACjR+bv/6cI+ICOrGmD2mrk2c4dNnYpDx96FfX/Y158RV0wotqIglACk6m1qyo\r\nyTra6P0Kvo6xz4KaVm8F7VDzUP+heAAhPAs=\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wenting-monitor-test-rg/providers/Microsoft.DocumentDB/cassandraClusters/wenting-eastus2euap","name":"wenting-eastus2euap","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2 EUAP","tags":{},"systemData":{"createdBy":"wentingwu@microsoft.com","createdByType":"User","createdAt":"2021-10-15T22:15:16.6971631Z","lastModifiedBy":"wentingwu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-15T22:15:16.6971631Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"wenting-eastus2euap","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wenting-monitor-test-rg/providers/Microsoft.Network/virtualNetworks/wenting-eastus2euap/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAE5Hd9yskSH1BgAAAAAATjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDU1OVoXDTI1MDkxNTAzMTU1OVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA5UFGOQgmohqJHkbMMcN4cnK+mAoScYUAR/njrD0x/GyFeTko+QXMU1JJ\r\nIePmVcugmyO4xX5ITShZWy+/qPAWy3vwT6HzBdFq5eTGbkbFCrQdh5w1+jwOApMe\r\n9ZDlMDO+RUtJe1XxWqi3KRY0e/pJmpOk4IUEjx6wxvv5MnSWhMa7aepnkuCS8lvF\r\nNl9D5oUGIYvoDUgVMQSBazQP2zjRunMT9JOopFKnZE+L7NY+XDtla3I1uZeMeakA\r\nfqkNjx6lkUIgcHPhSMy5XHBpOeFdSDjBA8dNk6E3VSlLzvPcHdaHI7QrmK/43wzf\r\n+kHpDdTXx8EdOqm+pLHoKLWcjw/P8O9RAMiXefxGnQKNuP8T+/prskR5esucJQkj\r\nrWSu7W7YycmIg1rPCd7Qw005/sc58eLPN+Xrj/Aw7RSR0A719CPZMjoSfKTphSEK\r\np+ZB+5j/V3VEzjGbL6XFUezFfaIZ+A7ZtkaEQYDH0fVVziPnhQhJB+Uym7a5arB3\r\nqiMMw7Yjos6iWkkOaqhaCHuN1zC374xsBec9mrJ7bfuLTNtBEKC1PhdZrJM3UDCo\r\n76v+3mnKouN/7vyVkbiLNb27MXRigXFbO02opR8prTkvv3af+iq6+xjmVWZhsILI\r\n0HIBk9/HoMZCCb9e95RQVmVwVNrwa24neVWl+JEw50sqLMapsGkCAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUOsfDysjeDdOSwCeJyL6X\r\nR09FaWAwHQYDVR0OBBYEFEKY1e9GMTrmL0fNVVel5jUfu/yRMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAuaX699r+ayL7JphKgdiDuy4iPTwf7fTkUsLx\r\n7ixBzvnUrUASdS9GJEkpsewdipRfMycn3UXatnQ6rudCqBgsExJzHBGlokhvVaZK\r\nue0oIlJstnKQDOJCpJem9NkvwALP5z3WZoqYf4EaaQXUkMAJJ2qxw+mksSBEu+MJ\r\noxgbStKv98q28ypOVLjaFNH/VbtAG/rIcqNyOdjAPcgMcohe7lGO1WQtFxPxtzvS\r\nZfgao/ZjWeNDFzy8FSInim1q69Syl3Y4dzeAlG6PiC8t7upDQzo2AJxI1tW0AkKV\r\naJIS9rGZquLN5MTbYozjEyzMvSEYFEpx+7YKQGayHz3eCGH4BzD43YPt20Cm4BMN\r\neyV64+d9PufCA2tzrIQ+VJhsZKb6qRgV+Bp6AfpgeyU6oRkqsWKJyKyzp6o0D+Si\r\nq3gYJdD3W0+X1jUJcQuywYLRg78rVE3A6VJ7RIEjXARQV19hJvxchCoqfbny/0bX\r\n9Bb3Rtr1OAYhUml6Z6JdfnH33KfEJvFa4wlKRBxpuw9gMG5ydOsbZ3YIJDWccTLH\r\nQZWJk/Lakd/+uLPWOzzWQCf7nPapwSRjtfRRLZoX49PIQkrGM3dpLLGktC+sg8bc\r\nvQ2bO79bKJazcsKuNK0dOpepIBA1mMD81DphYmc/RMF9KXKdKz4Ugh4HNqkltIsG\r\nEtaYPCM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAE2e+Zx9LtWjEwAAAAAATTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDUwOFoXDTI1MDkxNTAzMTUwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1RZFKUUXNWXgbh7dm52Irso1hGPDEL9ZZXYz0civ0AAlDu9P/1okXVpc\r\nOPQnRxE7e7O8roTSctA4MTBGFIjrCythVzk6MJC1bgGv7qwCV6o5P4zVSxQrHPx+\r\n2DPDIZlt3UV4RNLuKVvSZdzQt1UsxUOxvTZ/0mO22d6mcspf3I5Xt5h+7WlTgHAy\r\nWvvlpuX7LR8yTK/um4526bdhUG98I2nEURH2vnNSt3/Dbt1R6qoPMja0HhghuOtY\r\nt7Z77nyI2gOY2fRu3oM15Xqe8b3Qwx5IsSV/pTWJ34VPz24TfUmCQOVtu/m84ayA\r\nwSZ754d+JvkyPSdINV3tuLtbo/QVewIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBQbRewlXgZoN1BD7V/nign/FlWETTAdBgNVHQ4EFgQU\r\nvZx3N/n1PWYwyjVonISvG5ZVEL4wgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQBFtFQSE7TjElKEmwHyydrA/UEAzho7rEMy2lvNr2tgX/7WVWDqmDrTK4La\r\nm6/MGOUBYbF334Ywvprij/UoSpyMEq5HgXiCBxOgyUPSZx8x+XyINgCujVXRk9za\r\nPh1lXpYCV2qhIYAhazeprDYzX2im0Jwe8X/Xsl0kzgs3TE7medDW9CVEYS+T7SqG\r\ntmXhOg1FW04yUM0+Z73ZQGF5oqnE76kzpLvfn+YWA6KbLfH84yTpqylAD5UFvfeW\r\nMRoNUUckpsteddNba90soUzxeRwU0Loxj5Qsds2gB0tSIpVh330BxEDTIJ73FZIv\r\nvURqyoDor+Eu1NOVk3sdCM5nXuN38dc0a9fsSRoJkbQYTP9UNJPcUDO3kZoYWNxD\r\nWrn5J/ltaxPc1o7+USSm02C023HIrWBJkfnepIZKV8m7wkddcygJ6FQkxFU+NQUW\r\n+a91tIw3HTEHvmNlJddPmjgnE3k6GS1NLOC5IV/s1s4sSME3QYQAt+zr5TKRdZ06\r\ndBOSXrz66pVpkR2wuAvlCEuFk7gaBrKz4j+3wJ9CPhETezARvgpzQCw9es9y2qde\r\nO1rHPYa6IRtmjcVDvxfmjei66bQwoapDH/OMS6sPqqqn53l9g4HDDgWywWn9ad51\r\nL5NAvQYhHwSCG0E2Os5mUFYM56ZVA4WHVUn7NZsAXGnDtIwlPw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAACbGTID3uXpE1wAAAAAAJjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE4MDMxOTE4MjcwOFoXDTIzMDMxOTE4MzcwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAvBsRcCD4Z38LQPG73ci9jIpQv5tVQh8lLrcQ9lO2lH6pUVWi7T7jCyX/\r\naCSmit7fT6seN/kf6LP0hpgsU/wxMMv4c4+w1M16EiRc6GPJtSPNszl8ZNAzZj39\r\nxeJnAMhPzeABRLgzYgLH+9R3k8sIJMhSjcUfp63GAhKtdqhQeTOs7m87REtmAdo7\r\neZh/Ubn4HR1ZxAswmoWmMxMZw1KZj87395IxE3Ybj0m/V8dyskpxWdAzkvGeO//l\r\nb4FfAHVCCix9wsijqomj+jeJPHR/AF/5+MZXjoNDs6/+UMdSrEqa2fi8910J6ogL\r\nSMdL7NdV77U5551wZxeUwSEHUc4qkQr9cFAdHcdYiMnIrU28zk7O3yQdsyWdrTqx\r\nTbkoYn36Ji+aSyzs/u/Zh3pAWw9IvLaoq254Rpf1SWsvufE2YXaP6kUmvOE9Qrnt\r\nQ138fwe9CmPUT9I/cM0v16BDvELEH3KGsWez8WRFA5RAB5pPDKjMyZ7mNl+0+EDv\r\nMq+KYjtc9uWJoRsRe8mDnVt2JGRBazTCFd/m5HGywdUvg/fZyVfBrvsRhcahMXn+\r\nb+a6kw+gMY29dcNutHNl1ZuKbwUuvp0ShWnauFVqMSRP6kSgXjzM0Oez2CHEtnX7\r\nNTKy9+eXsqxkzVXop81HCR7QCDlKPkc78IRETKfQA/nHdu2iOd8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQonG1RafqmxKhDxP+NNvoz\r\n3/1FMDCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAJFaZ9bHSEXBMKUi\r\nxLJgRr0yPOBbkZAHGsXGsAAdXnsAcmRZnoMsJZwHJY9qa2SDdjWzCnEuk50KJ0Rm\r\nvePgWmDtQWwyfFT//JIccaFgxYsU2SjdHEi0DmRElJtLkYQorDjkqn8s2T8y95f0\r\nmdcNme7cQ8PsjawgV1hb7r1I0bRh93M4pDzRt0g08RoFtMGuqRdU3roMDbuid5Hj\r\nBnoT5MdJlYzklABw+JPOIFeqZ0LMq/RPyk8Dpzo7m2dSc78GitdNnWxj4Ku6l8lb\r\n0OHX3BL1eVKyKi8Vta3BjpzWuMQompgdzp1Eh+mDyfKV/+dlfIEPJI1stEHIEKWR\r\nR5yt35+RGXrmsmAwTZT5mcJk4JdAMhVnRnyWvxPzieYCR9DcIaT6+NBBYzQegOG+\r\nIMnLpnZp6qhbG7Nq9MXCqRY2ooojLCTLTCx8R2cqdYonJpB4lSkYMFYbuV7HoiNr\r\nXdZm0gMRi2DmIaZ7cxXUn0BmZd/lXSXNKdxwHKecu0F8ByT1Zlg3NgIhCb+6SDYB\r\nlOv5YhnwSd00aUaSSYc2dKJmR2yfCKT5Li9wdtjlB6rYIb7vHRl3x98OIVE+O20S\r\n1jQEqRLzkaDIWOA8D9VeuuIW05tahms61dDi5gx7M/ALhFa/QsbkCJXRf07Pe4ki\r\nHE/1Nk3cohSibWYZqHssdutHBd+Q\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAEnEBGqOfE69FwAAAAAASTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDA1MVoXDTI1MDkxNTAzMTA1MVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAw9b7oiITgLVh8Yry44fRHl/xMuYtsI0Cg944jlh0S5ljKgUEMvt8/S63\r\nRH9+9eXvbFN4L9EL2+RDhWd5hGyg4gQeKtxO7D/+JUoTIamIl4pXTxhO5oORnS9k\r\ntWp6lc1OfpYnkgzrkFHICKggDtCpQxp7cMtM8evEvY/7WvmJDbAsgSRlBIeyVZqU\r\ndfw4ahzvsNmMfDGx2JBKgB5mndVGyg96yCHy5+7XKOkkcr+NKHdnBM3k546rGlCV\r\nErgPVuUkRxrwIa3xD9BRewoihWG7sbuxny49CrdbDi3WqK0VPSJGZ2y5ipUTwndi\r\n/+QhiK5expoHO0hl20DwRgq74qB5zSs379PcTQz59OvUDMi2fiErDYnCT75X3w1b\r\nh2uGBFIwonYXGHU1s/SaxQlXErGplgkLv/tBPAXu8sk+qANHaY1EfPwpPfOXjIxl\r\nRT95moW0IP+CPmhV0g2ZPKNn0mIRPpf8IzI5O4pLe6xfXDekQnNcGaBY9nN9LBO3\r\noi7pBBNObi17J/ebVg2rScg+KAWVVf09iLF2inpoFxKOJQz//poXo2fAvYVXnXJm\r\n99qJvY8gFyOyg2Cr2x/Wp8yw/u7H4DztXuFMYuPEVpR9/EeLP2bzrpdbJpj+SPT4\r\nU0OmtjVtKNR4aOBNBVWmzxV+WKRBfpkq+pjpRMkgFapXWtjlXV0CAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUluoFkm4uQswgfjWGaL4s\r\nMWhX+14wHQYDVR0OBBYEFBxS0IHKkOkG4KzpGA07z01trd55MIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAa08V3/BsJsIOjn2Qu6zUb0GosfdvggVX36PY\r\n9OZyOn5d2+tPPjG2re+uovdpuLKx1YH0iBX4kIL05yObqKMAv+YO3Ihj4MkcYy6A\r\nk9DbHyQTYoeSfaryn6yo7kLYCz6E+li6HJ4FVx13PxpwqDXWUu+Yf5Kszj56IqHx\r\nTI9LV1ZbqmZYk7fQIPETYENkE23ypgh5snRtqSZYTw6HASkHI4E7NgFkOATnIcs2\r\npLGzcc9vc/QYlj3PT3ciGdpGkz8l/A2MMqC4eleYFTBSX9rNNG0tf0M+5fVF417D\r\nmtqDlglm9bWpgrdLpmcj28f3766EBJBq9zza4M9dAGBWBQx0c8BR9saGATd/U8lY\r\nmlTDhnRdqJvvTbtPzFFmTF5jrANky12jKlaHHTyLETDu6OeDbVEyJNuhj0a+cQ6r\r\nZwYCG/k0WCzUx3MMq1A11uxvseoOmpIqLOGfkEdmBPQXkKC02vyjZkxF0pGPNNcy\r\nBSCIlZ11UtC5ghcZ2Wg/U4bAogTv/XAnjwzLpp5V7mcepzcBagiFlQkdnvUKNI/I\r\nLkerOmrgKe0rgT+ICALZiq7hIyeuM2uthyD3FaBFf62WOtDD6Jfwkg/3LI7of+HC\r\nGZ99J/xaocq6NFYqzD/9H6n0+biogXUJtm7mKhQO3PeLz/1aDIwLfKqZFr3PCStN\r\nvTWqAdQ=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFYLVFiDd8BlgAAAAAAAVjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4Mzg0OFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAxIoR15PqTSSMns55DdeR97gCwVWRoA6zCYbU66RoYrXuHSpcJM+1tnHN\r\n6B2gITXD0iDoTLpuOvRlM+12v0c8cWdzVoHuRuG0k1ViNgSELeNw8SXSQ6jmvgPy\r\nH6fg+NiKLkjYrJuIp5me3/asqMTeO6MOkeimS67PYerzkMYoC7BUEUacludZswsM\r\nFZnsM/vHCjIpzQMGWyUzju2ANT+J41Wz9AmukpPQFNzyq9566BEU/4MJh9Yg5aSR\r\npzI1gU8r4Y9ABdOgjsFnEm8BSSdlWLgalKevYPMLX/FO2rFufFgcNJq3Y8rnAtJD\r\n0k9jt7isXmJgS+JNfANvY7+jXQaCkwIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUOLjGDtr98qbFC/XuACeceItvo7EwHQYD\r\nVR0OBBYEFOXZm2f8+Oy6u/DAqJ2KV4i53z5jMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAYI9s0aXNjS8k6w/pyYwcd8HBPAjpWHJp7vBNsa9rDbau6raD\r\n+QWjj+hO5OKUkNchKIkK3xUc/iDAMNALDLFqUOaVTeMh5fu/e8Pr1AX1R1c5U1Yd\r\nxExItrFARqTCCIQpLz3cTu/9KA5QgUQlnFlrxA9IHq9G6k3TvTB2AngUzXBhNhl5\r\nb8ya7LK3dhfqf2BQHJ7k1XReCJLYMxI6PaG0F6mWTCFNBbBxgjsXeXfjYv2li33v\r\n48ALT/NXFoOTbAOP4EFfLhMDnx2O6cFOKrYT9O+EU64oJ/0MQDQSq9PVos5J+RW8\r\nvD/h2ycPqMnmsjvpJ4pWJZP+YSxy/HWMwbZt/Dv/UobeQqLCIXGnODv87K+1JVo0\r\nO3c1NtGJu61JyXwW8id8VSQuc2NzEr58rOOGMfU3gHZMSNY2gsFs1gqXC6MjtX9O\r\nipJ+dqr7lgRvpDN9bD2kd9CdOWsxz6PRPxOmbUittmpHdABMZuaeKB/5MnxVrpNw\r\nlYtJYXvKRY1V30kjFSsyLv02YYKb8MI/NfWcjMLw4eaEn//ST+sf+LjB9KF8TxBX\r\nxuBUpQVA/TJX9GEqYMZt557A5u5odSVcac+w0/Nn4E6WzFLfxMr1O8OOOQjzlG3u\r\n5BPqprm+utwEHBCU4iVcZOdnSgk1dm7C5xmmTylFRYOlwVrFSPcyKy0+6H8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAEso8JmcB0l1ZwAAAAAASzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDMxN1oXDTI1MDkxNTAzMTMxN1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1FFhjk/dgVlthN00OKObtbEisXfH40OyapM9KcVlUPnMElPROdKi7XPQ\r\nagq+Ry3QLSSZgNWnkahCSxE81oyudrvlhpR7NpcDPZHsYFw6qsEiirml0hc5awSq\r\n+MtFo9pfnr/zQstb7xg8wjduWjANvO3E34jZbfmCyw4gU4TRPIa9rpaV0N14hQTk\r\nKcBv+S12udS181oWcTc66zxVXUHNK15PRv31jElEYQKX8EJWCe6ccJA/cJD282sR\r\noEhfuUvzXHOeWD1jXH+Eh+mKuhLqiQHPJH7TJRMsN77ndtHH9us3Ak4l9AmGNZZf\r\nwNquVrHAiTw9Ai90btckoeMRn8eogQIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBTX/nF7X/NZN2T02QZU2G6DYuwmyDAdBgNVHQ4EFgQU\r\nlUWMsJMswORfcQ0UpecnwcNjm/cwgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQCb7VpPdQaBSKQdwDpgFquVkVtcKzEAwsVlzIENIrlRsOcBgvZlW9QKwgCd\r\n6xvrF9smidaMzlYuxYQypQ0RQEHDKJ1SJQLc1ZtR7fWf0xHqU0cgX3hktDNyN5t4\r\n7rMtYOUhygcZIxVQ2cpkyLoilwnb/q0Y0jOnA7eo0r9K67TJ9CP2m3ZUApzRaCwv\r\nqQE8eNZvngy+613PU11A2EFuTPXoVNb7S3w8amz+mYYnJCBhxf4PdYA/3DZ0q3FP\r\nfFxqKAbuNtXXHFmYn3BBMGSn082Uq8RsAvj5XEkI/xylDlwG3zT+QaIOrJ/06Toz\r\ncT0ewSlyNAB6LzGp/HLTIffhSNBVX8ILs558r6VcnTE21awdkWqnd3PiPkWADD78\r\nDVSb/7QOsBdZp6BKkcDzTc/uaDGahR55UcapkOMBSbngkomK986ITx3yUITn0aV4\r\nBEVbYQQ6b9l/eNHRosiwL52QPnYl6fJRsl0JuUzy9T5DrwGGnRgKQAOmSWPRTdt2\r\n14MWrxbLFRRwvqt2COK82jPTAiZ3XqYSZzZce9bSDsGSm5VpwWz5+xyBYc3djzKR\r\nThctXJrwftNyZD+LBc/4oLOTYLpDB23eI8rvb6Xfm3A8ANucIq2muavxi1A+eyYM\r\nQXwyB2foIV9yhDIA5I1psyJo+CwM9CcibRTjjNL5ghEkoSDjyA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFSoP4knG2YAHAAAAAAAVDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzczNFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApuAstd+jxOmcAhw1KNXa7fDE4SFe/7SdG4avz6VQqep4ofwJwZTxQJNQ\r\nBC7dybKZO2RBiDzzayV9PCxmK9HPRMRmuj68x9BRyoEbVU1tX4HtiBK+hAGiRNQu\r\nPRTYcSs24CgjI3JrxOjNesp8iE8HUVntN8ueXnpTQLSYOR2TmTGM835tkTplflX/\r\n/zPtZvsXSZz+JssQ9SRcXS2t/fPDpKfNVatOmq4iwtX7Q6IO/WCzAyEzacjAFqml\r\n0/PRYT5O+jiRO+TImZ2RD0CB9rP5CYwN2T504drkKteNaT+FT/teBLC+JraDjh27\r\nv24yknl1t8dXCSS6l/UBGBGVk+gr0wIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUVSrR7NlDI9ZN5GcKVaV9JEKwIbEwHQYD\r\nVR0OBBYEFK55wmtdJYgTBvYHCcOXfHuXjx1VMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAbgp2LNvP1OVFkH9JTg9rTMksjvLIpzaqJehSp5+3YNzGl/TH\r\ni3Kg/rbtQaKErwipeLMhmqWFuT9kB22eeyoBSxx3JTzRmKtcJO47IX0qymW04v2i\r\nI2tVWQigwJWtE08Z16Q3NVdgAox6DDnAvmV8QDlPhWdW0gGcszZqFD47SJltU8JJ\r\n6D+xuDl+xUIA5wQ0987HRo4dSx3Vny1cd98GdMepsOnCpfm7ZQDWJUggp8m8T/jv\r\ngj28G4JNV9nsx3TT5D4xFZ0rXUlQNmhJFesprLt8NqOoKqmP40WdqrpVIxlu5pdH\r\naf/uT89gHO3Zy+iqNbCDRB7zSBtaalaqLvGpE0xV3p+xpjY1CujjvKp+rUrGwA1t\r\n7aNRowd45Dn+kESi95bE16V2k54YbRvgkwQgqyFUiissogOtaOwQIjuv5NUMkKnj\r\nWz1S1nsMTwZWQ20pT+SG9IMWxAP+63fLIMxWXSbwkTo1Q7JVbr7ZnbNjPrzwerrq\r\nTx+CgfCjU2TZ2WaqYnKoGlgjiZkVraQ1JYJkEr5N5+12CnAuVNzn7pMs6HUSxc8Y\r\numBjy+KA0I1XMvFerh+fhEVad7kOgOxqE1uLdXZxkOXHC1N4FQlkI65Padcd8dyM\r\n3g+er8suC1gf9/fWU0AlgIqls48Wis2JISOeSsMAi3BDvCIpp5PHbuNfj7A=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFr7ZWQR1r6OSQAAAAAAWjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzN1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEArMu8k7Kq5y6uDXZk0QxV9Ya5K3Mb0/sCyV4fs48XfAgL3YOHYTZ5o1uB\r\n97VZ/oXuenXaDcoDE18WhOavpqjWHc4eb1QeGGCaB0MoijTLGPzqwWRdByW6l2U2\r\ngFzjKWKtFncIj/VW5S98uCDD8b0SX278XKubkKv0Zn3m1E2wVrTvG8Jc/MuXF0WX\r\ntjFRRJPY3keED1zFNEKjckE4ywTV1atTqnKbmj2rcQucHJ4ufZ89Hel/xLL0bFxc\r\nJnW4Ky8lZ4Q+G9brYexh/iEBcSpNQlfLVJrKZMlAwGPcp1SBGxU9GlSV7kE1LLCS\r\njpS5d6/qw4VA+z5y9HsHN225oBhpAQIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFHrWGYUoeWxxdh5g+PNL76IFQhYdMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAU2IUk2qTwWTtRBKzMTaRxYKvTyvU1nyQLxko\r\nA3304lciVsdA86+jhEkvnCwZeAHoOtYuPeQJdeyhYUhVRDAhhJauvE87FB69gM6h\r\nYUnRqiy+vekLrHB/1x8njoLHmcppjOvBzziOPSqvf8s6O8tJ5AjY3398sm5ckH37\r\nVYHa/+bAYCvEsYmgDGN8L25QvXScTmTthSXHlzsCItPpKFs385dsGJnFD0KcQ5c1\r\ngLmV1bdHnrWyy2mqB819CFWtzhnojtzXxZLuEfTBS18u0qoLdN8KvgB2BvfgZtY7\r\nx+fbkiyoZfnZak0Oj45Z9Z/6AQ1uHGSRadAh19mkcrkPwHktc/3M1PJ69dwZn8Ez\r\nASzYFf8QH58i5uxdou73v+5Bd1m5nmtFCyLC6QDtFYH0pkvmafBx7PwyrgTjq2Xv\r\n7eWL0wXESxzY4HpjMDO36ncsLvzI6j4CyG4cpA8F8+9jwizWqmKMQUWt+VMICsP7\r\nRrzCJ35ogFGWF/dC2hjdjBXjcyLaliR5nE+sDx1PVDdIu7y8oBi60+Vzl0+BSf8P\r\nOdssgwciUpWVP+9xf6SZ7D9BPmLwgIJZ4oPc5K7cTOR6ksQQg8fO44fmOCRfVD/T\r\nDj1e39ijjkmcXUvrcu1sh93vbupLKp4Guruj3Le6iQ4Hla6Pr4znFKCzKk1+RrcQ\r\nVnsaqio=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFOufo2CImJDvAAAAAAAUzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzYxMFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAz2IfhGnsNWpW1cYZrm7f0KG7FjkmtAufsz6xSPNM86b5+jPDUpkOb7U7\r\nj4cWGBVdrYYqWUkziZmWPyl9WLw43KGzaMT3xTnm1xWyok8Z1D/ytHfxFI5t+Xzk\r\n+pcWwIZzuElzEzAQYnVMyfdxD6sM2winZ1ehDpvJeLTPcuTPf5fDYpcrnebODQ+r\r\nnsvq7oU7bHp/jTkGP/2hNzNLR7QJq+rOaHTHDky5yWrsMdgGj0dJXmId6RIfgbeq\r\nJyz7pK0OnoqopPXzZcEQJGNdh9tTh0DWpPGkCWvp4yC2Sd6VSDIApnIpXRn5WNGc\r\n79eeuL9eKvQ5W1zq3/j5HlmwZvPOE+3kPe9r1+WMazNqbhmVk0gUfZX+cnJcy8ZH\r\nqZhjCnW1ihCHzNxMQypQLrnOgVCBkkkRj466iLGDMGL5IyTji2AAp50wMiZuVQX6\r\nwY4kcKqLsjSPpDpHGIie+58/dh9xFgqJzV0kNbAvehRlbwzQnRJWzr1UgZJgjluN\r\nlLpJwTmUIe3I4FzbwrzGMOltYu8XbdFAfyPM4fcfqJwFTF2xI5OYNC3Rcou9OSQT\r\no+ce9/rON//vZNZmQ+TPQ3nkPoKus+JX3EFJbevLeG0IvvC8c2ABwv6cNcvbSSoV\r\nXP+XaBLuXe5A3G+Tdr33bVhKKnbKiravs7sEeKvXVrpDgilOuG8CAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFJbqBZJuLkLM\r\nIH41hmi+LDFoV/teMB0GA1UdDgQWBBRIo61gdWpv7GDzaVXRALEyV/xs5DCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAArPH6tJjsM3VsG3zdh/1Rh3LDz4\r\nDqyUEJEXiM+Sa1kCncVvIqI5GkFKGM3Ur3hdx6xxe5F9gPvUdL22Qf0DLaOclksk\r\nO2FABXqDRv0P7k5yyryzTM/RmLhleut3Fc8BUdfrkmif8Znyxp12sRxK0UgEf6iI\r\n+dEZugVpwAl8IRUk9O201Q87q3zI30NgPT2BJiDycKaKQJF634qatubvL28JaiOd\r\nk3uxWfcqKjO0oeSJ7pxgAiH1rCah7UN5T2d3V4AmDQGLPo7lwX1SKZewa10PnF0X\r\npjE+8welxOK+4pEPl2kRdMDpr9/XPXWpAPt2h67Z0j7x5c7nDU/eZ3UjRkJePoIQ\r\n5aGZuxZ2diziI4JWhbW+kF9M8T0CM1EUIcQV+8wvvualM1q0IN+SJ1X49tt8n3y5\r\nfEAur2599a16z7zg4uF1xI/SafWXMjC8MObCHjR5xodSQ7IxvGyl+6uIkENsiQBF\r\ncuM55MMUELl0VM0+n7Kv5K2Ur+heLzNlTTy2eoiU048g8iQmZzP5C9y4hUE3rYgJ\r\nRxP9ovHl2km91RDTei9aANUGIB8U2uFA7pxe0G8Kp8WSF0a2DtZu7sf2lGjKvP+7\r\nJGaMrJn2bJW6cDEPgfyKCio8kCVtFg7QTtkaZjF5J6AIB0B7aHNPKlAE2T8O2/Z7\r\nJIvM+ijPG5W96tZP\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFjSjQKPPAEB6wAAAAAAWDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4NDAwOVoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA3Pi3nd+o2ItxXWvhyaIDXRbrxgB1wqI0wK/wgC3vs2vSbIHdSuOrtac+\r\nmR6Ag8rE69QQOykN2KJIQI53O0egLWUqjDMa43Fkh1EWTAD0B6snyV91Lt24YPPq\r\nOyJZLhGCtYJoQfPQxZjgW0PknDvWCGIBPFacj86c84QzQdmNBMPrObC21S/ilK+H\r\nGjwcYx9Z3dSeK2CPLLkb3C0HzWWLBL5lFHrdM7qphSAJ07g8/ggis/b4aHdWOlN3\r\nfyySWbuTLQnX8J1XZdWGc+7Z60gzt2jwUc2kgpjcpHvV7QYmy141rjiQyFDNUf7x\r\nFBeFIpLDPoxcfAsOo/dtVfxp/dNMqfAEC27QrUogtIUOcCaSZ5r09ECOuBW6Mood\r\nDIx4bUEhXOJmZBtpzRXhVVKTC7Aqs3PTrPehspCxOclx7c8aESASwj6SSWpDQi+x\r\nrKm2DgTIgvVIdyBNdKhxhGNyl1t9jTEMAdwDmY6pN0kMLCEdM6v9fG0nvtFFLU/m\r\nj9Ojh8Rtf3YWiUPd2cI62tVoXckaP3TbdCNmGysT8ShFNEypEINWIl49U7V00Iec\r\nOveCbkfsnKnT/o69znrWUH+Pt65GxrqO5A+To6WU83OqLxljS/cyBTQmrDh70Dgz\r\nKXDXN3JVW93RLoXuNyAhd1nUOjKOI2tmPhEC4Cz7lqmVxDsQaZMCAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFDrHw8rI3g3T\r\nksAnici+l0dPRWlgMB0GA1UdDgQWBBQ5cV2pFRAtxN9+L1luQE3A3+82mjCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAI68ze1N9ZqKBI7Q7BXGlc0k99wW\r\nCoCZu0m02crvYeITKUC/eizH7s6Sx2Kk5Hnzz0Rzc8G8NpiWEfp7ppKeP1jOMv11\r\n7P1KB6IHyRLdW7vAIBiJy1qhbLAxseR7xkvDKv9yjZYL9Q7XtlSgrd9NuEiuFsfj\r\n0ANzVf/Ea4br00gGc8ALfnvgGE7eUdBNqWKTzHcQREdjJPRMUqTYqcvd4qQbRXZt\r\ncXLt4Fr3pXcwG1UExrz3TP4ueyrqGot/OFDvMihs6Tak0qjYygT2dC3bEOBg3GSQ\r\nDdQVzBFO98f62/l51TBlWizuw3D4/dKIPfQU1Qt7sr9e7CLbecoO8EVtyt/yGRr1\r\nD4BPBGyEzC6QoqCo5Nh27yG+DxFtAGdm/vLaFeJOVM3q2d6nL1FvNzlHTHfOYPJ3\r\nNwHB30X9TpdRqoBLM5UC0m/ybKj4ygXAZBlkJXMO/bjtpqyidJ0SaFuE8EdV9YoJ\r\nKUmBw1ZuZd5GHbc+Ilz82WX+JWZ0efU/f+75Ywvntu/3s0OsnpVoqrqM7TDdzE0d\r\nwRiZ+mvtgIwp85+et1iEdaWPj+d6LfJxpDDCPhaqh9hnNIkZFptndwDwRE2MV9Wr\r\nlUCSA96/2ubHsKt4E2D96KvNog6MKdyEGz1sZep1yZKqE4cnNzGNBGRel0BRa2MK\r\nyTOQsCbnpQGhEz0m\r\n-----END + CERTIFICATE-----"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFlFSsCTnaMEFgAAAAAAWTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzM1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA0E8VPmTCi+s/ukALr8kiz9n0QMveOlaFztd/3QikdEPvOujCuE/CXDKt\r\n0KhyGBUshmHGEC580aoe2Ze2gBJ/Dhs8FjdCjH4IyWU22QOervNkIc2Xd3EMxVZL\r\nYmWmDp5yfa0DwHqsqLq1PLwyk9BfYhh2gp9Dp+vECu4FzvVoZd73UaTpvcQKDsXA\r\nTVR43QC8AiL2AiHgOB3xE75MR/kI1OA7mTaOK8uZbQZCtyG1VMtNL+Q4Di0nB9cD\r\ntqfQj1/UCA76Nr9a7p/TUnck94zlsHE5RVGvDy3GKpa4cmCb+nRpF+ybZjuw8fPT\r\nCY5JGTLZreJMgk+Tej7iN+BYyn4Q2QIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFPFGaMbxw/ArLX2LauGy+b41/NFBMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAD6YslCi5IxgKWQYVzHClxGTpTXEarOPDACuQ\r\nnZIgM4hbk0rMqW4aHFd+paZmMUvNU0HWtIq7aAbNZGCdTrb6g9xjQKrdivWr24BZ\r\nBDxlYkU1tNvdQmafd/RESZ+TpElbuBw2EW0qtK2K+BfL1fTcwpIWRoqWcZUc/CzX\r\n43yuA3vE9sw7/HCDOEQF+QW12B6LDt2Y6DR2y8ZjYsIM0X99mgCE8/HYL4AR3+mA\r\nHjlncC3qlXWRUk46kz2yU4gu0k4P5vexNuGvU9uHvmqQERhhHYkAiW5pwCNFdZDw\r\n95vcnWocRk5TaOPp74v06msx58qS9Re9Fz5xwp6dGGqvWgcF9UJtVVyXMGYB1/1+\r\nyd5n8VpvHVWlrPNpcT0p9YLeou/HKZIiekolUKL6SqCbDFwSUMPM1xWSK6RbphmT\r\nJZdAoKKLq7c/4bFPOxeKvBjT6PrWP64ktWN1Z+AYQlBp1rK7A/ZkAOh8l+17K4VJ\r\neb1whd4SmNSnZbv9jhOeWhrbRsxmFJ1SFHhoBhS3Q/WZWMJtLu2Hv1RHnqRgLD3y\r\nlaC9qyj44pXka/MiLauGl0qjRsO6i0ZV/nU43/eZt4EhWewfmXRnfNlXA/u6abVS\r\n3lkNTlQaJAmTijbKk4JI0qQl4e+xZloOXJVNiqKgYSh3N93Bi+8ROZCLqqpwrO+C\r\n8C5Y9Bk=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIFVjCCAz6gAwIBAgIQJdrLVcnGd4FAnlaUgt5N/jANBgkqhkiG9w0BAQsFADA8\r\nMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAwDgYD\r\nVQQDEwdhbWVyb290MB4XDTE2MDUyNDIyNTI1NFoXDTI2MDUyNDIyNTcwM1owPDET\r\nMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEQMA4GA1UE\r\nAxMHYW1lcm9vdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALv4uChY\r\noVuO+bxBOcn8v4FajoGkxo0YgVwEqEPDVPI6vzmnEqHVhQ1GMVeDyiRrgQT1vCk1\r\nHMMzo9LlWowPrzbXOwjOTFbXc36+UU41yNN2GeNa49RXbAkfbzKE/SYLfbqOD0dN\r\nZLwvOhgIb25oA1eAxW/DI/hvJLLKh2SscvkIyd3o2BUeFm7NtyYG/buCKJh8lOq8\r\n0iBwRoEoInb0vhorHaswSMmqY1g+AJndY/M7uGUqkhDGBhLu53bU9wbUPHsEI+wa\r\nq6WypCijZYT+C4BS5GJrEPZ2O92pztd+ULqhzNRoPj5RuElUww7+z5RnbCaupyBY\r\nOmmJMH30EiRSq8dK/irixXXwJraSywR5kyfmAkv6GYWlRlxFUiK3/co47JLA3TDK\r\nN0wfutbpqxdZQYyGfO2nZrr5JbKfSU0sMtOZDkK6hlafV++hfkVSvFfNHE5B5uN1\r\nMK6agl1dzi28HfJT9aO7cmjGxl1SJ5qoCvcwZNQ2SPHFdrslcwXEFOMDaEzVOA3V\r\n7j3+6lrT8sHXg0sErkcd8lrBImfzhLxM/Wh8CgOUNeUu3flUoxmFv3el+QWalSNy\r\n2SXs2NgWuYE5Iog7CHD/xCnoEnZwwjqLkrro4hYWE4Xj3VlA2Eq+VxqJOgdyFl3m\r\nckSZ08OcwLeprY4+2GEvCXNGNdXUmNNgk2PvAgMBAAGjVDBSMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEBMB0GA1UdDgQWBBQpXlFeZK40ueusnA2njHUB\r\n0QkLKDAQBgkrBgEEAYI3FQEEAwIBADANBgkqhkiG9w0BAQsFAAOCAgEAcznFDnJx\r\nsXaazFY1DuIPvUaiWS7ELxAVXMGZ7ROjLrDq1FNYVewL4emDqyEIEMFncec8rqyk\r\nVBvLQA5YqMCxQWJpL0SlgRSknzLh9ZVcQw1TshC49/XV2N/CLOuyInEQwS//46so\r\nT20Cf8UGUiOK472LZlvM4KchyDR3FTNtmMg0B/LKVjevpX9sk5MiyjjLUj3jtPIP\r\n7jpsfZDd/BNsg/89kpsIF5O64I7iYFj3MHu9o4UJcEX0hRt7OzUxqa9THTssvzE5\r\nVkWo8Rtou2T5TobKV6Rr5Ob9wchLXqVtCyZF16voEKheBnalhGUvErI/6VtBwLb7\r\n13C0JkKLBNMen+HClNliicVIaubnpY2g+AqxOgKBHiZnzq2HhE1qqEUf4VfqahNU\r\niaXtbtyo54f2dCf9UL9uG9dllN3nxBE/Y/aWF6E1M8Bslj1aYAtfUQ/xlhEXCly6\r\nzohw697i3XFUt76RwvfW8quvqdH9Mx0PBpYo4wJJRwAecSJQNy6wIJhAuDgOemXJ\r\nYViBi/bDnhPcFEVQxsypQSw91BUw7Mxh+W59H5MC25SAIw9fLMT9LRqSYpPyasNp\r\n4nACjR+bv/6cI+ICOrGmD2mrk2c4dNnYpDx96FfX/Y158RV0wotqIglACk6m1qyo\r\nyTra6P0Kvo6xz4KaVm8F7VDzUP+heAAhPAs=\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wenting-monitor-test-rg/providers/Microsoft.DocumentDB/cassandraClusters/wenting-eastus2euap2","name":"wenting-eastus2euap2","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2 EUAP","tags":{},"systemData":{"createdBy":"wentingwu@microsoft.com","createdByType":"User","createdAt":"2021-10-20T14:39:03.6415662Z","lastModifiedBy":"wentingwu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-20T14:39:03.6415662Z"},"identity":null,"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"wenting-eastus2euap2","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wenting-monitor-test-rg/providers/Microsoft.Network/virtualNetworks/wenting-eastus2euap2-vnet/subnets/default","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAE5Hd9yskSH1BgAAAAAATjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDU1OVoXDTI1MDkxNTAzMTU1OVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA5UFGOQgmohqJHkbMMcN4cnK+mAoScYUAR/njrD0x/GyFeTko+QXMU1JJ\r\nIePmVcugmyO4xX5ITShZWy+/qPAWy3vwT6HzBdFq5eTGbkbFCrQdh5w1+jwOApMe\r\n9ZDlMDO+RUtJe1XxWqi3KRY0e/pJmpOk4IUEjx6wxvv5MnSWhMa7aepnkuCS8lvF\r\nNl9D5oUGIYvoDUgVMQSBazQP2zjRunMT9JOopFKnZE+L7NY+XDtla3I1uZeMeakA\r\nfqkNjx6lkUIgcHPhSMy5XHBpOeFdSDjBA8dNk6E3VSlLzvPcHdaHI7QrmK/43wzf\r\n+kHpDdTXx8EdOqm+pLHoKLWcjw/P8O9RAMiXefxGnQKNuP8T+/prskR5esucJQkj\r\nrWSu7W7YycmIg1rPCd7Qw005/sc58eLPN+Xrj/Aw7RSR0A719CPZMjoSfKTphSEK\r\np+ZB+5j/V3VEzjGbL6XFUezFfaIZ+A7ZtkaEQYDH0fVVziPnhQhJB+Uym7a5arB3\r\nqiMMw7Yjos6iWkkOaqhaCHuN1zC374xsBec9mrJ7bfuLTNtBEKC1PhdZrJM3UDCo\r\n76v+3mnKouN/7vyVkbiLNb27MXRigXFbO02opR8prTkvv3af+iq6+xjmVWZhsILI\r\n0HIBk9/HoMZCCb9e95RQVmVwVNrwa24neVWl+JEw50sqLMapsGkCAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUOsfDysjeDdOSwCeJyL6X\r\nR09FaWAwHQYDVR0OBBYEFEKY1e9GMTrmL0fNVVel5jUfu/yRMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAuaX699r+ayL7JphKgdiDuy4iPTwf7fTkUsLx\r\n7ixBzvnUrUASdS9GJEkpsewdipRfMycn3UXatnQ6rudCqBgsExJzHBGlokhvVaZK\r\nue0oIlJstnKQDOJCpJem9NkvwALP5z3WZoqYf4EaaQXUkMAJJ2qxw+mksSBEu+MJ\r\noxgbStKv98q28ypOVLjaFNH/VbtAG/rIcqNyOdjAPcgMcohe7lGO1WQtFxPxtzvS\r\nZfgao/ZjWeNDFzy8FSInim1q69Syl3Y4dzeAlG6PiC8t7upDQzo2AJxI1tW0AkKV\r\naJIS9rGZquLN5MTbYozjEyzMvSEYFEpx+7YKQGayHz3eCGH4BzD43YPt20Cm4BMN\r\neyV64+d9PufCA2tzrIQ+VJhsZKb6qRgV+Bp6AfpgeyU6oRkqsWKJyKyzp6o0D+Si\r\nq3gYJdD3W0+X1jUJcQuywYLRg78rVE3A6VJ7RIEjXARQV19hJvxchCoqfbny/0bX\r\n9Bb3Rtr1OAYhUml6Z6JdfnH33KfEJvFa4wlKRBxpuw9gMG5ydOsbZ3YIJDWccTLH\r\nQZWJk/Lakd/+uLPWOzzWQCf7nPapwSRjtfRRLZoX49PIQkrGM3dpLLGktC+sg8bc\r\nvQ2bO79bKJazcsKuNK0dOpepIBA1mMD81DphYmc/RMF9KXKdKz4Ugh4HNqkltIsG\r\nEtaYPCM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAE2e+Zx9LtWjEwAAAAAATTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDUwOFoXDTI1MDkxNTAzMTUwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1RZFKUUXNWXgbh7dm52Irso1hGPDEL9ZZXYz0civ0AAlDu9P/1okXVpc\r\nOPQnRxE7e7O8roTSctA4MTBGFIjrCythVzk6MJC1bgGv7qwCV6o5P4zVSxQrHPx+\r\n2DPDIZlt3UV4RNLuKVvSZdzQt1UsxUOxvTZ/0mO22d6mcspf3I5Xt5h+7WlTgHAy\r\nWvvlpuX7LR8yTK/um4526bdhUG98I2nEURH2vnNSt3/Dbt1R6qoPMja0HhghuOtY\r\nt7Z77nyI2gOY2fRu3oM15Xqe8b3Qwx5IsSV/pTWJ34VPz24TfUmCQOVtu/m84ayA\r\nwSZ754d+JvkyPSdINV3tuLtbo/QVewIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBQbRewlXgZoN1BD7V/nign/FlWETTAdBgNVHQ4EFgQU\r\nvZx3N/n1PWYwyjVonISvG5ZVEL4wgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQBFtFQSE7TjElKEmwHyydrA/UEAzho7rEMy2lvNr2tgX/7WVWDqmDrTK4La\r\nm6/MGOUBYbF334Ywvprij/UoSpyMEq5HgXiCBxOgyUPSZx8x+XyINgCujVXRk9za\r\nPh1lXpYCV2qhIYAhazeprDYzX2im0Jwe8X/Xsl0kzgs3TE7medDW9CVEYS+T7SqG\r\ntmXhOg1FW04yUM0+Z73ZQGF5oqnE76kzpLvfn+YWA6KbLfH84yTpqylAD5UFvfeW\r\nMRoNUUckpsteddNba90soUzxeRwU0Loxj5Qsds2gB0tSIpVh330BxEDTIJ73FZIv\r\nvURqyoDor+Eu1NOVk3sdCM5nXuN38dc0a9fsSRoJkbQYTP9UNJPcUDO3kZoYWNxD\r\nWrn5J/ltaxPc1o7+USSm02C023HIrWBJkfnepIZKV8m7wkddcygJ6FQkxFU+NQUW\r\n+a91tIw3HTEHvmNlJddPmjgnE3k6GS1NLOC5IV/s1s4sSME3QYQAt+zr5TKRdZ06\r\ndBOSXrz66pVpkR2wuAvlCEuFk7gaBrKz4j+3wJ9CPhETezARvgpzQCw9es9y2qde\r\nO1rHPYa6IRtmjcVDvxfmjei66bQwoapDH/OMS6sPqqqn53l9g4HDDgWywWn9ad51\r\nL5NAvQYhHwSCG0E2Os5mUFYM56ZVA4WHVUn7NZsAXGnDtIwlPw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAACbGTID3uXpE1wAAAAAAJjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE4MDMxOTE4MjcwOFoXDTIzMDMxOTE4MzcwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAvBsRcCD4Z38LQPG73ci9jIpQv5tVQh8lLrcQ9lO2lH6pUVWi7T7jCyX/\r\naCSmit7fT6seN/kf6LP0hpgsU/wxMMv4c4+w1M16EiRc6GPJtSPNszl8ZNAzZj39\r\nxeJnAMhPzeABRLgzYgLH+9R3k8sIJMhSjcUfp63GAhKtdqhQeTOs7m87REtmAdo7\r\neZh/Ubn4HR1ZxAswmoWmMxMZw1KZj87395IxE3Ybj0m/V8dyskpxWdAzkvGeO//l\r\nb4FfAHVCCix9wsijqomj+jeJPHR/AF/5+MZXjoNDs6/+UMdSrEqa2fi8910J6ogL\r\nSMdL7NdV77U5551wZxeUwSEHUc4qkQr9cFAdHcdYiMnIrU28zk7O3yQdsyWdrTqx\r\nTbkoYn36Ji+aSyzs/u/Zh3pAWw9IvLaoq254Rpf1SWsvufE2YXaP6kUmvOE9Qrnt\r\nQ138fwe9CmPUT9I/cM0v16BDvELEH3KGsWez8WRFA5RAB5pPDKjMyZ7mNl+0+EDv\r\nMq+KYjtc9uWJoRsRe8mDnVt2JGRBazTCFd/m5HGywdUvg/fZyVfBrvsRhcahMXn+\r\nb+a6kw+gMY29dcNutHNl1ZuKbwUuvp0ShWnauFVqMSRP6kSgXjzM0Oez2CHEtnX7\r\nNTKy9+eXsqxkzVXop81HCR7QCDlKPkc78IRETKfQA/nHdu2iOd8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQonG1RafqmxKhDxP+NNvoz\r\n3/1FMDCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAJFaZ9bHSEXBMKUi\r\nxLJgRr0yPOBbkZAHGsXGsAAdXnsAcmRZnoMsJZwHJY9qa2SDdjWzCnEuk50KJ0Rm\r\nvePgWmDtQWwyfFT//JIccaFgxYsU2SjdHEi0DmRElJtLkYQorDjkqn8s2T8y95f0\r\nmdcNme7cQ8PsjawgV1hb7r1I0bRh93M4pDzRt0g08RoFtMGuqRdU3roMDbuid5Hj\r\nBnoT5MdJlYzklABw+JPOIFeqZ0LMq/RPyk8Dpzo7m2dSc78GitdNnWxj4Ku6l8lb\r\n0OHX3BL1eVKyKi8Vta3BjpzWuMQompgdzp1Eh+mDyfKV/+dlfIEPJI1stEHIEKWR\r\nR5yt35+RGXrmsmAwTZT5mcJk4JdAMhVnRnyWvxPzieYCR9DcIaT6+NBBYzQegOG+\r\nIMnLpnZp6qhbG7Nq9MXCqRY2ooojLCTLTCx8R2cqdYonJpB4lSkYMFYbuV7HoiNr\r\nXdZm0gMRi2DmIaZ7cxXUn0BmZd/lXSXNKdxwHKecu0F8ByT1Zlg3NgIhCb+6SDYB\r\nlOv5YhnwSd00aUaSSYc2dKJmR2yfCKT5Li9wdtjlB6rYIb7vHRl3x98OIVE+O20S\r\n1jQEqRLzkaDIWOA8D9VeuuIW05tahms61dDi5gx7M/ALhFa/QsbkCJXRf07Pe4ki\r\nHE/1Nk3cohSibWYZqHssdutHBd+Q\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAEnEBGqOfE69FwAAAAAASTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDA1MVoXDTI1MDkxNTAzMTA1MVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAw9b7oiITgLVh8Yry44fRHl/xMuYtsI0Cg944jlh0S5ljKgUEMvt8/S63\r\nRH9+9eXvbFN4L9EL2+RDhWd5hGyg4gQeKtxO7D/+JUoTIamIl4pXTxhO5oORnS9k\r\ntWp6lc1OfpYnkgzrkFHICKggDtCpQxp7cMtM8evEvY/7WvmJDbAsgSRlBIeyVZqU\r\ndfw4ahzvsNmMfDGx2JBKgB5mndVGyg96yCHy5+7XKOkkcr+NKHdnBM3k546rGlCV\r\nErgPVuUkRxrwIa3xD9BRewoihWG7sbuxny49CrdbDi3WqK0VPSJGZ2y5ipUTwndi\r\n/+QhiK5expoHO0hl20DwRgq74qB5zSs379PcTQz59OvUDMi2fiErDYnCT75X3w1b\r\nh2uGBFIwonYXGHU1s/SaxQlXErGplgkLv/tBPAXu8sk+qANHaY1EfPwpPfOXjIxl\r\nRT95moW0IP+CPmhV0g2ZPKNn0mIRPpf8IzI5O4pLe6xfXDekQnNcGaBY9nN9LBO3\r\noi7pBBNObi17J/ebVg2rScg+KAWVVf09iLF2inpoFxKOJQz//poXo2fAvYVXnXJm\r\n99qJvY8gFyOyg2Cr2x/Wp8yw/u7H4DztXuFMYuPEVpR9/EeLP2bzrpdbJpj+SPT4\r\nU0OmtjVtKNR4aOBNBVWmzxV+WKRBfpkq+pjpRMkgFapXWtjlXV0CAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUluoFkm4uQswgfjWGaL4s\r\nMWhX+14wHQYDVR0OBBYEFBxS0IHKkOkG4KzpGA07z01trd55MIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAa08V3/BsJsIOjn2Qu6zUb0GosfdvggVX36PY\r\n9OZyOn5d2+tPPjG2re+uovdpuLKx1YH0iBX4kIL05yObqKMAv+YO3Ihj4MkcYy6A\r\nk9DbHyQTYoeSfaryn6yo7kLYCz6E+li6HJ4FVx13PxpwqDXWUu+Yf5Kszj56IqHx\r\nTI9LV1ZbqmZYk7fQIPETYENkE23ypgh5snRtqSZYTw6HASkHI4E7NgFkOATnIcs2\r\npLGzcc9vc/QYlj3PT3ciGdpGkz8l/A2MMqC4eleYFTBSX9rNNG0tf0M+5fVF417D\r\nmtqDlglm9bWpgrdLpmcj28f3766EBJBq9zza4M9dAGBWBQx0c8BR9saGATd/U8lY\r\nmlTDhnRdqJvvTbtPzFFmTF5jrANky12jKlaHHTyLETDu6OeDbVEyJNuhj0a+cQ6r\r\nZwYCG/k0WCzUx3MMq1A11uxvseoOmpIqLOGfkEdmBPQXkKC02vyjZkxF0pGPNNcy\r\nBSCIlZ11UtC5ghcZ2Wg/U4bAogTv/XAnjwzLpp5V7mcepzcBagiFlQkdnvUKNI/I\r\nLkerOmrgKe0rgT+ICALZiq7hIyeuM2uthyD3FaBFf62WOtDD6Jfwkg/3LI7of+HC\r\nGZ99J/xaocq6NFYqzD/9H6n0+biogXUJtm7mKhQO3PeLz/1aDIwLfKqZFr3PCStN\r\nvTWqAdQ=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFYLVFiDd8BlgAAAAAAAVjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4Mzg0OFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAxIoR15PqTSSMns55DdeR97gCwVWRoA6zCYbU66RoYrXuHSpcJM+1tnHN\r\n6B2gITXD0iDoTLpuOvRlM+12v0c8cWdzVoHuRuG0k1ViNgSELeNw8SXSQ6jmvgPy\r\nH6fg+NiKLkjYrJuIp5me3/asqMTeO6MOkeimS67PYerzkMYoC7BUEUacludZswsM\r\nFZnsM/vHCjIpzQMGWyUzju2ANT+J41Wz9AmukpPQFNzyq9566BEU/4MJh9Yg5aSR\r\npzI1gU8r4Y9ABdOgjsFnEm8BSSdlWLgalKevYPMLX/FO2rFufFgcNJq3Y8rnAtJD\r\n0k9jt7isXmJgS+JNfANvY7+jXQaCkwIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUOLjGDtr98qbFC/XuACeceItvo7EwHQYD\r\nVR0OBBYEFOXZm2f8+Oy6u/DAqJ2KV4i53z5jMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAYI9s0aXNjS8k6w/pyYwcd8HBPAjpWHJp7vBNsa9rDbau6raD\r\n+QWjj+hO5OKUkNchKIkK3xUc/iDAMNALDLFqUOaVTeMh5fu/e8Pr1AX1R1c5U1Yd\r\nxExItrFARqTCCIQpLz3cTu/9KA5QgUQlnFlrxA9IHq9G6k3TvTB2AngUzXBhNhl5\r\nb8ya7LK3dhfqf2BQHJ7k1XReCJLYMxI6PaG0F6mWTCFNBbBxgjsXeXfjYv2li33v\r\n48ALT/NXFoOTbAOP4EFfLhMDnx2O6cFOKrYT9O+EU64oJ/0MQDQSq9PVos5J+RW8\r\nvD/h2ycPqMnmsjvpJ4pWJZP+YSxy/HWMwbZt/Dv/UobeQqLCIXGnODv87K+1JVo0\r\nO3c1NtGJu61JyXwW8id8VSQuc2NzEr58rOOGMfU3gHZMSNY2gsFs1gqXC6MjtX9O\r\nipJ+dqr7lgRvpDN9bD2kd9CdOWsxz6PRPxOmbUittmpHdABMZuaeKB/5MnxVrpNw\r\nlYtJYXvKRY1V30kjFSsyLv02YYKb8MI/NfWcjMLw4eaEn//ST+sf+LjB9KF8TxBX\r\nxuBUpQVA/TJX9GEqYMZt557A5u5odSVcac+w0/Nn4E6WzFLfxMr1O8OOOQjzlG3u\r\n5BPqprm+utwEHBCU4iVcZOdnSgk1dm7C5xmmTylFRYOlwVrFSPcyKy0+6H8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAEso8JmcB0l1ZwAAAAAASzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDMxN1oXDTI1MDkxNTAzMTMxN1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1FFhjk/dgVlthN00OKObtbEisXfH40OyapM9KcVlUPnMElPROdKi7XPQ\r\nagq+Ry3QLSSZgNWnkahCSxE81oyudrvlhpR7NpcDPZHsYFw6qsEiirml0hc5awSq\r\n+MtFo9pfnr/zQstb7xg8wjduWjANvO3E34jZbfmCyw4gU4TRPIa9rpaV0N14hQTk\r\nKcBv+S12udS181oWcTc66zxVXUHNK15PRv31jElEYQKX8EJWCe6ccJA/cJD282sR\r\noEhfuUvzXHOeWD1jXH+Eh+mKuhLqiQHPJH7TJRMsN77ndtHH9us3Ak4l9AmGNZZf\r\nwNquVrHAiTw9Ai90btckoeMRn8eogQIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBTX/nF7X/NZN2T02QZU2G6DYuwmyDAdBgNVHQ4EFgQU\r\nlUWMsJMswORfcQ0UpecnwcNjm/cwgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQCb7VpPdQaBSKQdwDpgFquVkVtcKzEAwsVlzIENIrlRsOcBgvZlW9QKwgCd\r\n6xvrF9smidaMzlYuxYQypQ0RQEHDKJ1SJQLc1ZtR7fWf0xHqU0cgX3hktDNyN5t4\r\n7rMtYOUhygcZIxVQ2cpkyLoilwnb/q0Y0jOnA7eo0r9K67TJ9CP2m3ZUApzRaCwv\r\nqQE8eNZvngy+613PU11A2EFuTPXoVNb7S3w8amz+mYYnJCBhxf4PdYA/3DZ0q3FP\r\nfFxqKAbuNtXXHFmYn3BBMGSn082Uq8RsAvj5XEkI/xylDlwG3zT+QaIOrJ/06Toz\r\ncT0ewSlyNAB6LzGp/HLTIffhSNBVX8ILs558r6VcnTE21awdkWqnd3PiPkWADD78\r\nDVSb/7QOsBdZp6BKkcDzTc/uaDGahR55UcapkOMBSbngkomK986ITx3yUITn0aV4\r\nBEVbYQQ6b9l/eNHRosiwL52QPnYl6fJRsl0JuUzy9T5DrwGGnRgKQAOmSWPRTdt2\r\n14MWrxbLFRRwvqt2COK82jPTAiZ3XqYSZzZce9bSDsGSm5VpwWz5+xyBYc3djzKR\r\nThctXJrwftNyZD+LBc/4oLOTYLpDB23eI8rvb6Xfm3A8ANucIq2muavxi1A+eyYM\r\nQXwyB2foIV9yhDIA5I1psyJo+CwM9CcibRTjjNL5ghEkoSDjyA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFSoP4knG2YAHAAAAAAAVDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzczNFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApuAstd+jxOmcAhw1KNXa7fDE4SFe/7SdG4avz6VQqep4ofwJwZTxQJNQ\r\nBC7dybKZO2RBiDzzayV9PCxmK9HPRMRmuj68x9BRyoEbVU1tX4HtiBK+hAGiRNQu\r\nPRTYcSs24CgjI3JrxOjNesp8iE8HUVntN8ueXnpTQLSYOR2TmTGM835tkTplflX/\r\n/zPtZvsXSZz+JssQ9SRcXS2t/fPDpKfNVatOmq4iwtX7Q6IO/WCzAyEzacjAFqml\r\n0/PRYT5O+jiRO+TImZ2RD0CB9rP5CYwN2T504drkKteNaT+FT/teBLC+JraDjh27\r\nv24yknl1t8dXCSS6l/UBGBGVk+gr0wIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUVSrR7NlDI9ZN5GcKVaV9JEKwIbEwHQYD\r\nVR0OBBYEFK55wmtdJYgTBvYHCcOXfHuXjx1VMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAbgp2LNvP1OVFkH9JTg9rTMksjvLIpzaqJehSp5+3YNzGl/TH\r\ni3Kg/rbtQaKErwipeLMhmqWFuT9kB22eeyoBSxx3JTzRmKtcJO47IX0qymW04v2i\r\nI2tVWQigwJWtE08Z16Q3NVdgAox6DDnAvmV8QDlPhWdW0gGcszZqFD47SJltU8JJ\r\n6D+xuDl+xUIA5wQ0987HRo4dSx3Vny1cd98GdMepsOnCpfm7ZQDWJUggp8m8T/jv\r\ngj28G4JNV9nsx3TT5D4xFZ0rXUlQNmhJFesprLt8NqOoKqmP40WdqrpVIxlu5pdH\r\naf/uT89gHO3Zy+iqNbCDRB7zSBtaalaqLvGpE0xV3p+xpjY1CujjvKp+rUrGwA1t\r\n7aNRowd45Dn+kESi95bE16V2k54YbRvgkwQgqyFUiissogOtaOwQIjuv5NUMkKnj\r\nWz1S1nsMTwZWQ20pT+SG9IMWxAP+63fLIMxWXSbwkTo1Q7JVbr7ZnbNjPrzwerrq\r\nTx+CgfCjU2TZ2WaqYnKoGlgjiZkVraQ1JYJkEr5N5+12CnAuVNzn7pMs6HUSxc8Y\r\numBjy+KA0I1XMvFerh+fhEVad7kOgOxqE1uLdXZxkOXHC1N4FQlkI65Padcd8dyM\r\n3g+er8suC1gf9/fWU0AlgIqls48Wis2JISOeSsMAi3BDvCIpp5PHbuNfj7A=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFr7ZWQR1r6OSQAAAAAAWjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzN1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEArMu8k7Kq5y6uDXZk0QxV9Ya5K3Mb0/sCyV4fs48XfAgL3YOHYTZ5o1uB\r\n97VZ/oXuenXaDcoDE18WhOavpqjWHc4eb1QeGGCaB0MoijTLGPzqwWRdByW6l2U2\r\ngFzjKWKtFncIj/VW5S98uCDD8b0SX278XKubkKv0Zn3m1E2wVrTvG8Jc/MuXF0WX\r\ntjFRRJPY3keED1zFNEKjckE4ywTV1atTqnKbmj2rcQucHJ4ufZ89Hel/xLL0bFxc\r\nJnW4Ky8lZ4Q+G9brYexh/iEBcSpNQlfLVJrKZMlAwGPcp1SBGxU9GlSV7kE1LLCS\r\njpS5d6/qw4VA+z5y9HsHN225oBhpAQIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFHrWGYUoeWxxdh5g+PNL76IFQhYdMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAU2IUk2qTwWTtRBKzMTaRxYKvTyvU1nyQLxko\r\nA3304lciVsdA86+jhEkvnCwZeAHoOtYuPeQJdeyhYUhVRDAhhJauvE87FB69gM6h\r\nYUnRqiy+vekLrHB/1x8njoLHmcppjOvBzziOPSqvf8s6O8tJ5AjY3398sm5ckH37\r\nVYHa/+bAYCvEsYmgDGN8L25QvXScTmTthSXHlzsCItPpKFs385dsGJnFD0KcQ5c1\r\ngLmV1bdHnrWyy2mqB819CFWtzhnojtzXxZLuEfTBS18u0qoLdN8KvgB2BvfgZtY7\r\nx+fbkiyoZfnZak0Oj45Z9Z/6AQ1uHGSRadAh19mkcrkPwHktc/3M1PJ69dwZn8Ez\r\nASzYFf8QH58i5uxdou73v+5Bd1m5nmtFCyLC6QDtFYH0pkvmafBx7PwyrgTjq2Xv\r\n7eWL0wXESxzY4HpjMDO36ncsLvzI6j4CyG4cpA8F8+9jwizWqmKMQUWt+VMICsP7\r\nRrzCJ35ogFGWF/dC2hjdjBXjcyLaliR5nE+sDx1PVDdIu7y8oBi60+Vzl0+BSf8P\r\nOdssgwciUpWVP+9xf6SZ7D9BPmLwgIJZ4oPc5K7cTOR6ksQQg8fO44fmOCRfVD/T\r\nDj1e39ijjkmcXUvrcu1sh93vbupLKp4Guruj3Le6iQ4Hla6Pr4znFKCzKk1+RrcQ\r\nVnsaqio=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFOufo2CImJDvAAAAAAAUzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzYxMFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAz2IfhGnsNWpW1cYZrm7f0KG7FjkmtAufsz6xSPNM86b5+jPDUpkOb7U7\r\nj4cWGBVdrYYqWUkziZmWPyl9WLw43KGzaMT3xTnm1xWyok8Z1D/ytHfxFI5t+Xzk\r\n+pcWwIZzuElzEzAQYnVMyfdxD6sM2winZ1ehDpvJeLTPcuTPf5fDYpcrnebODQ+r\r\nnsvq7oU7bHp/jTkGP/2hNzNLR7QJq+rOaHTHDky5yWrsMdgGj0dJXmId6RIfgbeq\r\nJyz7pK0OnoqopPXzZcEQJGNdh9tTh0DWpPGkCWvp4yC2Sd6VSDIApnIpXRn5WNGc\r\n79eeuL9eKvQ5W1zq3/j5HlmwZvPOE+3kPe9r1+WMazNqbhmVk0gUfZX+cnJcy8ZH\r\nqZhjCnW1ihCHzNxMQypQLrnOgVCBkkkRj466iLGDMGL5IyTji2AAp50wMiZuVQX6\r\nwY4kcKqLsjSPpDpHGIie+58/dh9xFgqJzV0kNbAvehRlbwzQnRJWzr1UgZJgjluN\r\nlLpJwTmUIe3I4FzbwrzGMOltYu8XbdFAfyPM4fcfqJwFTF2xI5OYNC3Rcou9OSQT\r\no+ce9/rON//vZNZmQ+TPQ3nkPoKus+JX3EFJbevLeG0IvvC8c2ABwv6cNcvbSSoV\r\nXP+XaBLuXe5A3G+Tdr33bVhKKnbKiravs7sEeKvXVrpDgilOuG8CAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFJbqBZJuLkLM\r\nIH41hmi+LDFoV/teMB0GA1UdDgQWBBRIo61gdWpv7GDzaVXRALEyV/xs5DCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAArPH6tJjsM3VsG3zdh/1Rh3LDz4\r\nDqyUEJEXiM+Sa1kCncVvIqI5GkFKGM3Ur3hdx6xxe5F9gPvUdL22Qf0DLaOclksk\r\nO2FABXqDRv0P7k5yyryzTM/RmLhleut3Fc8BUdfrkmif8Znyxp12sRxK0UgEf6iI\r\n+dEZugVpwAl8IRUk9O201Q87q3zI30NgPT2BJiDycKaKQJF634qatubvL28JaiOd\r\nk3uxWfcqKjO0oeSJ7pxgAiH1rCah7UN5T2d3V4AmDQGLPo7lwX1SKZewa10PnF0X\r\npjE+8welxOK+4pEPl2kRdMDpr9/XPXWpAPt2h67Z0j7x5c7nDU/eZ3UjRkJePoIQ\r\n5aGZuxZ2diziI4JWhbW+kF9M8T0CM1EUIcQV+8wvvualM1q0IN+SJ1X49tt8n3y5\r\nfEAur2599a16z7zg4uF1xI/SafWXMjC8MObCHjR5xodSQ7IxvGyl+6uIkENsiQBF\r\ncuM55MMUELl0VM0+n7Kv5K2Ur+heLzNlTTy2eoiU048g8iQmZzP5C9y4hUE3rYgJ\r\nRxP9ovHl2km91RDTei9aANUGIB8U2uFA7pxe0G8Kp8WSF0a2DtZu7sf2lGjKvP+7\r\nJGaMrJn2bJW6cDEPgfyKCio8kCVtFg7QTtkaZjF5J6AIB0B7aHNPKlAE2T8O2/Z7\r\nJIvM+ijPG5W96tZP\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFjSjQKPPAEB6wAAAAAAWDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4NDAwOVoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA3Pi3nd+o2ItxXWvhyaIDXRbrxgB1wqI0wK/wgC3vs2vSbIHdSuOrtac+\r\nmR6Ag8rE69QQOykN2KJIQI53O0egLWUqjDMa43Fkh1EWTAD0B6snyV91Lt24YPPq\r\nOyJZLhGCtYJoQfPQxZjgW0PknDvWCGIBPFacj86c84QzQdmNBMPrObC21S/ilK+H\r\nGjwcYx9Z3dSeK2CPLLkb3C0HzWWLBL5lFHrdM7qphSAJ07g8/ggis/b4aHdWOlN3\r\nfyySWbuTLQnX8J1XZdWGc+7Z60gzt2jwUc2kgpjcpHvV7QYmy141rjiQyFDNUf7x\r\nFBeFIpLDPoxcfAsOo/dtVfxp/dNMqfAEC27QrUogtIUOcCaSZ5r09ECOuBW6Mood\r\nDIx4bUEhXOJmZBtpzRXhVVKTC7Aqs3PTrPehspCxOclx7c8aESASwj6SSWpDQi+x\r\nrKm2DgTIgvVIdyBNdKhxhGNyl1t9jTEMAdwDmY6pN0kMLCEdM6v9fG0nvtFFLU/m\r\nj9Ojh8Rtf3YWiUPd2cI62tVoXckaP3TbdCNmGysT8ShFNEypEINWIl49U7V00Iec\r\nOveCbkfsnKnT/o69znrWUH+Pt65GxrqO5A+To6WU83OqLxljS/cyBTQmrDh70Dgz\r\nKXDXN3JVW93RLoXuNyAhd1nUOjKOI2tmPhEC4Cz7lqmVxDsQaZMCAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFDrHw8rI3g3T\r\nksAnici+l0dPRWlgMB0GA1UdDgQWBBQ5cV2pFRAtxN9+L1luQE3A3+82mjCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAI68ze1N9ZqKBI7Q7BXGlc0k99wW\r\nCoCZu0m02crvYeITKUC/eizH7s6Sx2Kk5Hnzz0Rzc8G8NpiWEfp7ppKeP1jOMv11\r\n7P1KB6IHyRLdW7vAIBiJy1qhbLAxseR7xkvDKv9yjZYL9Q7XtlSgrd9NuEiuFsfj\r\n0ANzVf/Ea4br00gGc8ALfnvgGE7eUdBNqWKTzHcQREdjJPRMUqTYqcvd4qQbRXZt\r\ncXLt4Fr3pXcwG1UExrz3TP4ueyrqGot/OFDvMihs6Tak0qjYygT2dC3bEOBg3GSQ\r\nDdQVzBFO98f62/l51TBlWizuw3D4/dKIPfQU1Qt7sr9e7CLbecoO8EVtyt/yGRr1\r\nD4BPBGyEzC6QoqCo5Nh27yG+DxFtAGdm/vLaFeJOVM3q2d6nL1FvNzlHTHfOYPJ3\r\nNwHB30X9TpdRqoBLM5UC0m/ybKj4ygXAZBlkJXMO/bjtpqyidJ0SaFuE8EdV9YoJ\r\nKUmBw1ZuZd5GHbc+Ilz82WX+JWZ0efU/f+75Ywvntu/3s0OsnpVoqrqM7TDdzE0d\r\nwRiZ+mvtgIwp85+et1iEdaWPj+d6LfJxpDDCPhaqh9hnNIkZFptndwDwRE2MV9Wr\r\nlUCSA96/2ubHsKt4E2D96KvNog6MKdyEGz1sZep1yZKqE4cnNzGNBGRel0BRa2MK\r\nyTOQsCbnpQGhEz0m\r\n-----END + CERTIFICATE-----"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFlFSsCTnaMEFgAAAAAAWTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzM1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA0E8VPmTCi+s/ukALr8kiz9n0QMveOlaFztd/3QikdEPvOujCuE/CXDKt\r\n0KhyGBUshmHGEC580aoe2Ze2gBJ/Dhs8FjdCjH4IyWU22QOervNkIc2Xd3EMxVZL\r\nYmWmDp5yfa0DwHqsqLq1PLwyk9BfYhh2gp9Dp+vECu4FzvVoZd73UaTpvcQKDsXA\r\nTVR43QC8AiL2AiHgOB3xE75MR/kI1OA7mTaOK8uZbQZCtyG1VMtNL+Q4Di0nB9cD\r\ntqfQj1/UCA76Nr9a7p/TUnck94zlsHE5RVGvDy3GKpa4cmCb+nRpF+ybZjuw8fPT\r\nCY5JGTLZreJMgk+Tej7iN+BYyn4Q2QIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFPFGaMbxw/ArLX2LauGy+b41/NFBMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAD6YslCi5IxgKWQYVzHClxGTpTXEarOPDACuQ\r\nnZIgM4hbk0rMqW4aHFd+paZmMUvNU0HWtIq7aAbNZGCdTrb6g9xjQKrdivWr24BZ\r\nBDxlYkU1tNvdQmafd/RESZ+TpElbuBw2EW0qtK2K+BfL1fTcwpIWRoqWcZUc/CzX\r\n43yuA3vE9sw7/HCDOEQF+QW12B6LDt2Y6DR2y8ZjYsIM0X99mgCE8/HYL4AR3+mA\r\nHjlncC3qlXWRUk46kz2yU4gu0k4P5vexNuGvU9uHvmqQERhhHYkAiW5pwCNFdZDw\r\n95vcnWocRk5TaOPp74v06msx58qS9Re9Fz5xwp6dGGqvWgcF9UJtVVyXMGYB1/1+\r\nyd5n8VpvHVWlrPNpcT0p9YLeou/HKZIiekolUKL6SqCbDFwSUMPM1xWSK6RbphmT\r\nJZdAoKKLq7c/4bFPOxeKvBjT6PrWP64ktWN1Z+AYQlBp1rK7A/ZkAOh8l+17K4VJ\r\neb1whd4SmNSnZbv9jhOeWhrbRsxmFJ1SFHhoBhS3Q/WZWMJtLu2Hv1RHnqRgLD3y\r\nlaC9qyj44pXka/MiLauGl0qjRsO6i0ZV/nU43/eZt4EhWewfmXRnfNlXA/u6abVS\r\n3lkNTlQaJAmTijbKk4JI0qQl4e+xZloOXJVNiqKgYSh3N93Bi+8ROZCLqqpwrO+C\r\n8C5Y9Bk=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIFVjCCAz6gAwIBAgIQJdrLVcnGd4FAnlaUgt5N/jANBgkqhkiG9w0BAQsFADA8\r\nMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAwDgYD\r\nVQQDEwdhbWVyb290MB4XDTE2MDUyNDIyNTI1NFoXDTI2MDUyNDIyNTcwM1owPDET\r\nMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEQMA4GA1UE\r\nAxMHYW1lcm9vdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALv4uChY\r\noVuO+bxBOcn8v4FajoGkxo0YgVwEqEPDVPI6vzmnEqHVhQ1GMVeDyiRrgQT1vCk1\r\nHMMzo9LlWowPrzbXOwjOTFbXc36+UU41yNN2GeNa49RXbAkfbzKE/SYLfbqOD0dN\r\nZLwvOhgIb25oA1eAxW/DI/hvJLLKh2SscvkIyd3o2BUeFm7NtyYG/buCKJh8lOq8\r\n0iBwRoEoInb0vhorHaswSMmqY1g+AJndY/M7uGUqkhDGBhLu53bU9wbUPHsEI+wa\r\nq6WypCijZYT+C4BS5GJrEPZ2O92pztd+ULqhzNRoPj5RuElUww7+z5RnbCaupyBY\r\nOmmJMH30EiRSq8dK/irixXXwJraSywR5kyfmAkv6GYWlRlxFUiK3/co47JLA3TDK\r\nN0wfutbpqxdZQYyGfO2nZrr5JbKfSU0sMtOZDkK6hlafV++hfkVSvFfNHE5B5uN1\r\nMK6agl1dzi28HfJT9aO7cmjGxl1SJ5qoCvcwZNQ2SPHFdrslcwXEFOMDaEzVOA3V\r\n7j3+6lrT8sHXg0sErkcd8lrBImfzhLxM/Wh8CgOUNeUu3flUoxmFv3el+QWalSNy\r\n2SXs2NgWuYE5Iog7CHD/xCnoEnZwwjqLkrro4hYWE4Xj3VlA2Eq+VxqJOgdyFl3m\r\nckSZ08OcwLeprY4+2GEvCXNGNdXUmNNgk2PvAgMBAAGjVDBSMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEBMB0GA1UdDgQWBBQpXlFeZK40ueusnA2njHUB\r\n0QkLKDAQBgkrBgEEAYI3FQEEAwIBADANBgkqhkiG9w0BAQsFAAOCAgEAcznFDnJx\r\nsXaazFY1DuIPvUaiWS7ELxAVXMGZ7ROjLrDq1FNYVewL4emDqyEIEMFncec8rqyk\r\nVBvLQA5YqMCxQWJpL0SlgRSknzLh9ZVcQw1TshC49/XV2N/CLOuyInEQwS//46so\r\nT20Cf8UGUiOK472LZlvM4KchyDR3FTNtmMg0B/LKVjevpX9sk5MiyjjLUj3jtPIP\r\n7jpsfZDd/BNsg/89kpsIF5O64I7iYFj3MHu9o4UJcEX0hRt7OzUxqa9THTssvzE5\r\nVkWo8Rtou2T5TobKV6Rr5Ob9wchLXqVtCyZF16voEKheBnalhGUvErI/6VtBwLb7\r\n13C0JkKLBNMen+HClNliicVIaubnpY2g+AqxOgKBHiZnzq2HhE1qqEUf4VfqahNU\r\niaXtbtyo54f2dCf9UL9uG9dllN3nxBE/Y/aWF6E1M8Bslj1aYAtfUQ/xlhEXCly6\r\nzohw697i3XFUt76RwvfW8quvqdH9Mx0PBpYo4wJJRwAecSJQNy6wIJhAuDgOemXJ\r\nYViBi/bDnhPcFEVQxsypQSw91BUw7Mxh+W59H5MC25SAIw9fLMT9LRqSYpPyasNp\r\n4nACjR+bv/6cI+ICOrGmD2mrk2c4dNnYpDx96FfX/Y158RV0wotqIglACk6m1qyo\r\nyTra6P0Kvo6xz4KaVm8F7VDzUP+heAAhPAs=\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{},"provisioningState":"Failed","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pall-canary-oct12-rg/providers/Microsoft.DocumentDB/cassandraClusters/pall-canary-oct20","name":"pall-canary-oct20","type":"Microsoft.DocumentDB/cassandraClusters","location":"East + US 2 EUAP","tags":{},"systemData":{"createdBy":"piyengar@microsoft.com","createdByType":"User","createdAt":"2021-10-21T18:05:56.2765997Z","lastModifiedBy":"piyengar@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-21T18:05:56.2765997Z"},"identity":{"principalId":"d3f1fd4a-1211-422d-a14a-6686410807e4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"authenticationMethod":"Cassandra","cassandraVersion":"3.11","clientCertificates":[],"clusterNameOverride":"pall-canary-oct20","deallocated":false,"delegatedManagementSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pall-canary-may12-rg/providers/Microsoft.Network/virtualNetworks/pall_canary/subnets/pall_canary_subnet","externalGossipCertificates":[],"externalSeedNodes":[],"gossipCertificates":[{"pem":"\r\n-----BEGIN + CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABdSYeX7sQBCUwAAAAAAFzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMloXDTIyMDMyMDE3NDcxMlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAs/sujUqYPkRKZeaOyIl9pn0D3BpvZ6V0711WlDN2pc8OBPHiG8POqq8+\r\n0/Dr7uZFYxGKJhGX8KO7zsIAaC6NPw2s9Xy2BudkMa1m37W4TUbnxFwwXn5NALAp\r\n9tvUbC6wmYAhlT66OJm18niw+JAxEe12+abvtiSRBQ4O//rWiBndzN//Ypftk3VN\r\n4Zw4JPQ0gzDrD3wRhuwSgAMmdXvbs++KF0cch1mXXQNRWm/9ppsKSjYghHJ15uIO\r\naNH3z2oqogk4o+FpWqrckVmRPdT+eSL8C4+1+BTBjSat7zA3d/m6I2IMB9maTfqU\r\naKy97PMH0ABF366uL+bDVc2BJGi2qQIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFKD2eMrr4bYjijHEbpM3VCzyi+jMMB0GA1Ud\r\nDgQWBBTSHNLxjYDGS1U4HbKOhJb7PCB+yTCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAETivlnWMRsdpFNRwBzzzGco/JjCcnpxhi3CauWZHh++/A5TbFZB\r\nXtEXbm+AEN6Kd7+h05Ptdm2GW7SCvy77Y0+0ND/djiLV71heeBMM5x6TwpZrCrWo\r\nkuacsuax0Kg2rTLyNZytkiFXZrJLk2SFTpFenX3EOskJILgtOPEX/ZTv7/wzL++Z\r\n+LT9j9xYVnUvwLqB/4sdQNwRYKBCui9sBH8Y3hCE3g+dXAPS/kn+cRnRgqeCnTTQ\r\nvxhJPR1LOfTBXyco+NQ+dA8ZwmVojNkkBabEYc/aF70aTI1K8tyP1ptJVs1sdgwR\r\nsoyQ8tDBpj8sSxtWjKnVoOLeYp3o3C6eoSvFMpzaj5BFTY4NIIp56kAeXfB+E24D\r\ngQbhuMJxRPXMo34npwjM5GGAdZBi9KVTpASY0wknAL+jrVCqG6Ax4V+ELi9Dk6Hb\r\nA9+Qucd1ykdL+W8jDxyw+JrQaxi7+Gv8GPh+o7IudTXvlQNo6XENS6kHoA+JxmI+\r\nxY5o4GomKx1xo00VxVuwtDubLph+FScgWE/zuvu3ZldC/7/MB/Y0CtQaVT5Wo5NF\r\noosuIkAc4Y2f2gdGQoJtiENqb0GayfgwJJMmMpp9ar8yKXrE4jTG53a8+abXWDKS\r\nstv9KvSwb9ihY8cSz5yR4kDWTNOL3U9KIWLyITyIF0fbafdXCeiKBLUm\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIljCCBn6gAwIBAgITHwAAABVaV8yWAc0NPQAAAAAAFTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDMyMDE3MzcxMVoXDTIyMDMyMDE3NDcxMVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApAQZTI26Rg4HnWX8jy/vY26Y4fTLjb9jWemYlRaM4zhUjj4GN97uR2zg\r\nw517b3WUzWT7M2ADJ9gAJprnp5F6zx3dICmU1m44cgaJN8lASiLhUEJGNTqY+o5j\r\nchaCGSi+rBlY6JS+lzY0AfHkNcgt/LjWFjNP8P0Q6NVS3/kDuo8aq7Wc3TZowX0Y\r\nHVbcCsa7YC3ZatP+8D3DAYl6R3I6E6PjEOvdUCunOrjX0p7xrY5aNPFJHxcQO6za\r\npFKJScK6m17KX46tFoA1pPAhXWPot9CP2IPhXoCRrLLqmE+Kf5F+pIW5TeTqxKeA\r\n/+OYjI28jFKosBF1icOUcvcfHQP7+wIDAQABo4IEhzCCBIMwEAYJKwYBBAGCNxUB\r\nBAMCAQIwIwYJKwYBBAGCNxUCBBYEFNgnvX2JlUJ8CL+jG4wlvbEPmqNAMB0GA1Ud\r\nDgQWBBTPhFh+dv51gY7bMGt+Rl7ukpSXNjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMF\r\nBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYB\r\nBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdA\r\nAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcU\r\nAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P\r\nBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnr\r\nrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDov\r\nL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9h\r\nbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNE\r\nUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25m\r\naWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlz\r\ndD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYB\r\nBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQu\r\nY29tL3BraWluZnJhL2NlcnRzL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUH\r\nMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQw\r\nNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVy\r\nb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNl\r\ncyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9i\r\nYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcN\r\nAQELBQADggIBAIp/445MHh9JPotcAV35MMD743LgowsZo16lizEEFLYgHoNlTPni\r\nvPc1STpxl24CP0kzb/FWfBwKfrnRtZODTSwdEnU5gyz2WUWP97Qsigj8WjsXDbp3\r\nVJjdc/nnLJ3bhN5stvpZ83Z3YPoWx2GS5GYVOz8mLIxqZSH9783a3ovWpjugqIOM\r\nCdgccpdVyS5oHenfmC9TW6TGvmpWCMel2F2lpHay2QElcJQX4UCijQ8lEYHXiecH\r\nr9/blghkDGYCHeCjMKWQpwSRNQPQyBt3vzwi8/e0B9lLx6S2dGV2nX7c/eKsbcwW\r\nVcpUNDnLLHKLM0hVLVVZxpF93jinOLsLZti+JzcmLpvOlBKUeywfGLJD1wYTWywm\r\nxkZfuxTewFnIU0Rq32DSWcsKqnjLkyP+SDJxnlKaujPxSq7o903OcrwLTv+/3mI3\r\nRyo8mg3PbFsNI+RYMX36uYAWXsgfm2Y1kJd6ycQdJcfNc8ZyWP6oB+p9eRpcmKqQ\r\nIjCcXtr0HrE5t8fpAQCGBGT8+Hm5Ns+3k/nkdNMo77l5wBNuWzGuInYbn/sEZ7FI\r\n+/Lw/GpOOKT8V34yuWfW/FanefuG6a9PcNK/ldNPb4yHiF8dt3YgR7hPPXF5bDdX\r\nkftTGF6DHddMs7HECICC+dQ9BfdjZCNWEeV7zWvgGIuQY29ObaYhW+yS\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAABre8vFiwgugAQAAAAAAGjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE3MDYyMjE2MDg1MloXDTIyMDYyMjE2MTg1Mlow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAsJjqenLdUDi/kglkC//iGuHJRiBIM8TYPvvWiP+HKZU/KAbLcxFcvQkk\r\nH3TQnF4g7I898SN4W/l8H2OnAcE/MTcVBQ6lwVQ2WIVOZZCn+DNUBLOrGaOYuqLm\r\n0f8vWYCLwk36e56PK5h1a6cDaMXJ07J1gSaYwAgy8mHbCGhrUxLuvPXjgznpOXl3\r\nqLbnxW+3N/ZMpPSpnVNvwI0knkjKuCnSE+z63QdbfT0iJBtbPHmfwaYuLOCQHBq4\r\nyheqpYjFSpb1vpgNQm3ByW1zEdLa1+t11t63iRv/7k74fM5Riy6ouToo03biMuKo\r\nHbLIw6PKXp0TnZTT8XMS9KpgipCdTlw0SBxxlgUCX/idiQm1cfb6Z3GwSJTNbyVB\r\nIKi+iE0XUDrxhkYNGbwX0RSjzvBgjMC45ek3cwKUSS7/pQ54OXx6UdYfJOD0+vQJ\r\nz9NujIlN6RxaZ9y/XIj18zgr4EfcPb3rXX0jJwxnWpFe+BXnLK666oK0I9MYKCNF\r\nOt26QTWp1kPWA8xVCybWdrbF3fp+qWwmA8QGgzBYOol3q+AaxJH19RLbhKRrOkHx\r\n9rXckhevXAGuQOvdR9tU1XsO/kl/dRxyv2pR0/MQLFCzbyXIh/9G/0St9VGqKxRq\r\n1IYTpzF5/mCYh5mjCjPEaQKwNlxS4s3upsa7203bAKjqwYFozy8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRQMfDvQi7A/72kCQvKxMKG\r\nfdQ/MjCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAFh3zTh6hfG/zoMx\r\nmQdummULCEZJtMrIAcOZ0wPJDaFIzuithuIGkA1i0cHWluUe5ad1t4e73Z/ZL4lJ\r\nn6rxhPGv5OHUVd+D/e8VK8+o+egj66AIubP5gwRsSkpYjfmpjVC4co/ZgtxvrhtQ\r\nOhWQ2lpqqXrN+UnDT6NWigAa/DzLT1GbiczKlUDnFNAqgUZoclJHvXSxIwqq+EtZ\r\nOEzmjf1u13riyWbLyvkCKgsJwpyfxZScVlcHwHnDQCNn2+G/jWN676lNGW7IQRbs\r\nxtm/Y8m5n93qFWJNBngVoaj+Zq0dJFNGtk/qdAEMob1g98H58BOBh4k6F1CSTQQx\r\nOPxQp8ylU37VjPa+4gPwIdLQAtISFXixU3wyy2nhdWzqBBAAnEYwdyuaQVcFuUuE\r\nNQBjNKv8D9t8k5BEFh9fgjFiDyHGzlbpXEuLxESusAZNfVoh10FsxXorrIFwcgCY\r\nq1cZotKwfwQ9un3oJDZYsaJ9mqrs872R7pmDJ3ys/H44Ps5gUj5cnBEU77vnrzoC\r\nd07Z30/ZwSNZ5HzaV13zEKtbitg5XAb36IpqrD9mZsiIs4YVh9lztNVVVMkdieZ7\r\nzg2KunhqwKZtqixW9hZ6vg8ME1BNJJ6Gz0cL+2F+r3g4CJWQUOw7+rpVNYoFCd/Q\r\nIZ8ZA+FGiS1PzSDaylCTd5Ce9+d1\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAE5Hd9yskSH1BgAAAAAATjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDU1OVoXDTI1MDkxNTAzMTU1OVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA5UFGOQgmohqJHkbMMcN4cnK+mAoScYUAR/njrD0x/GyFeTko+QXMU1JJ\r\nIePmVcugmyO4xX5ITShZWy+/qPAWy3vwT6HzBdFq5eTGbkbFCrQdh5w1+jwOApMe\r\n9ZDlMDO+RUtJe1XxWqi3KRY0e/pJmpOk4IUEjx6wxvv5MnSWhMa7aepnkuCS8lvF\r\nNl9D5oUGIYvoDUgVMQSBazQP2zjRunMT9JOopFKnZE+L7NY+XDtla3I1uZeMeakA\r\nfqkNjx6lkUIgcHPhSMy5XHBpOeFdSDjBA8dNk6E3VSlLzvPcHdaHI7QrmK/43wzf\r\n+kHpDdTXx8EdOqm+pLHoKLWcjw/P8O9RAMiXefxGnQKNuP8T+/prskR5esucJQkj\r\nrWSu7W7YycmIg1rPCd7Qw005/sc58eLPN+Xrj/Aw7RSR0A719CPZMjoSfKTphSEK\r\np+ZB+5j/V3VEzjGbL6XFUezFfaIZ+A7ZtkaEQYDH0fVVziPnhQhJB+Uym7a5arB3\r\nqiMMw7Yjos6iWkkOaqhaCHuN1zC374xsBec9mrJ7bfuLTNtBEKC1PhdZrJM3UDCo\r\n76v+3mnKouN/7vyVkbiLNb27MXRigXFbO02opR8prTkvv3af+iq6+xjmVWZhsILI\r\n0HIBk9/HoMZCCb9e95RQVmVwVNrwa24neVWl+JEw50sqLMapsGkCAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUOsfDysjeDdOSwCeJyL6X\r\nR09FaWAwHQYDVR0OBBYEFEKY1e9GMTrmL0fNVVel5jUfu/yRMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAuaX699r+ayL7JphKgdiDuy4iPTwf7fTkUsLx\r\n7ixBzvnUrUASdS9GJEkpsewdipRfMycn3UXatnQ6rudCqBgsExJzHBGlokhvVaZK\r\nue0oIlJstnKQDOJCpJem9NkvwALP5z3WZoqYf4EaaQXUkMAJJ2qxw+mksSBEu+MJ\r\noxgbStKv98q28ypOVLjaFNH/VbtAG/rIcqNyOdjAPcgMcohe7lGO1WQtFxPxtzvS\r\nZfgao/ZjWeNDFzy8FSInim1q69Syl3Y4dzeAlG6PiC8t7upDQzo2AJxI1tW0AkKV\r\naJIS9rGZquLN5MTbYozjEyzMvSEYFEpx+7YKQGayHz3eCGH4BzD43YPt20Cm4BMN\r\neyV64+d9PufCA2tzrIQ+VJhsZKb6qRgV+Bp6AfpgeyU6oRkqsWKJyKyzp6o0D+Si\r\nq3gYJdD3W0+X1jUJcQuywYLRg78rVE3A6VJ7RIEjXARQV19hJvxchCoqfbny/0bX\r\n9Bb3Rtr1OAYhUml6Z6JdfnH33KfEJvFa4wlKRBxpuw9gMG5ydOsbZ3YIJDWccTLH\r\nQZWJk/Lakd/+uLPWOzzWQCf7nPapwSRjtfRRLZoX49PIQkrGM3dpLLGktC+sg8bc\r\nvQ2bO79bKJazcsKuNK0dOpepIBA1mMD81DphYmc/RMF9KXKdKz4Ugh4HNqkltIsG\r\nEtaYPCM=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAE2e+Zx9LtWjEwAAAAAATTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDUwOFoXDTI1MDkxNTAzMTUwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1RZFKUUXNWXgbh7dm52Irso1hGPDEL9ZZXYz0civ0AAlDu9P/1okXVpc\r\nOPQnRxE7e7O8roTSctA4MTBGFIjrCythVzk6MJC1bgGv7qwCV6o5P4zVSxQrHPx+\r\n2DPDIZlt3UV4RNLuKVvSZdzQt1UsxUOxvTZ/0mO22d6mcspf3I5Xt5h+7WlTgHAy\r\nWvvlpuX7LR8yTK/um4526bdhUG98I2nEURH2vnNSt3/Dbt1R6qoPMja0HhghuOtY\r\nt7Z77nyI2gOY2fRu3oM15Xqe8b3Qwx5IsSV/pTWJ34VPz24TfUmCQOVtu/m84ayA\r\nwSZ754d+JvkyPSdINV3tuLtbo/QVewIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBQbRewlXgZoN1BD7V/nign/FlWETTAdBgNVHQ4EFgQU\r\nvZx3N/n1PWYwyjVonISvG5ZVEL4wgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQBFtFQSE7TjElKEmwHyydrA/UEAzho7rEMy2lvNr2tgX/7WVWDqmDrTK4La\r\nm6/MGOUBYbF334Ywvprij/UoSpyMEq5HgXiCBxOgyUPSZx8x+XyINgCujVXRk9za\r\nPh1lXpYCV2qhIYAhazeprDYzX2im0Jwe8X/Xsl0kzgs3TE7medDW9CVEYS+T7SqG\r\ntmXhOg1FW04yUM0+Z73ZQGF5oqnE76kzpLvfn+YWA6KbLfH84yTpqylAD5UFvfeW\r\nMRoNUUckpsteddNba90soUzxeRwU0Loxj5Qsds2gB0tSIpVh330BxEDTIJ73FZIv\r\nvURqyoDor+Eu1NOVk3sdCM5nXuN38dc0a9fsSRoJkbQYTP9UNJPcUDO3kZoYWNxD\r\nWrn5J/ltaxPc1o7+USSm02C023HIrWBJkfnepIZKV8m7wkddcygJ6FQkxFU+NQUW\r\n+a91tIw3HTEHvmNlJddPmjgnE3k6GS1NLOC5IV/s1s4sSME3QYQAt+zr5TKRdZ06\r\ndBOSXrz66pVpkR2wuAvlCEuFk7gaBrKz4j+3wJ9CPhETezARvgpzQCw9es9y2qde\r\nO1rHPYa6IRtmjcVDvxfmjei66bQwoapDH/OMS6sPqqqn53l9g4HDDgWywWn9ad51\r\nL5NAvQYhHwSCG0E2Os5mUFYM56ZVA4WHVUn7NZsAXGnDtIwlPw==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJcTCCB1mgAwIBAgITHwAAACbGTID3uXpE1wAAAAAAJjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTE4MDMxOTE4MjcwOFoXDTIzMDMxOTE4MzcwOFow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAvBsRcCD4Z38LQPG73ci9jIpQv5tVQh8lLrcQ9lO2lH6pUVWi7T7jCyX/\r\naCSmit7fT6seN/kf6LP0hpgsU/wxMMv4c4+w1M16EiRc6GPJtSPNszl8ZNAzZj39\r\nxeJnAMhPzeABRLgzYgLH+9R3k8sIJMhSjcUfp63GAhKtdqhQeTOs7m87REtmAdo7\r\neZh/Ubn4HR1ZxAswmoWmMxMZw1KZj87395IxE3Ybj0m/V8dyskpxWdAzkvGeO//l\r\nb4FfAHVCCix9wsijqomj+jeJPHR/AF/5+MZXjoNDs6/+UMdSrEqa2fi8910J6ogL\r\nSMdL7NdV77U5551wZxeUwSEHUc4qkQr9cFAdHcdYiMnIrU28zk7O3yQdsyWdrTqx\r\nTbkoYn36Ji+aSyzs/u/Zh3pAWw9IvLaoq254Rpf1SWsvufE2YXaP6kUmvOE9Qrnt\r\nQ138fwe9CmPUT9I/cM0v16BDvELEH3KGsWez8WRFA5RAB5pPDKjMyZ7mNl+0+EDv\r\nMq+KYjtc9uWJoRsRe8mDnVt2JGRBazTCFd/m5HGywdUvg/fZyVfBrvsRhcahMXn+\r\nb+a6kw+gMY29dcNutHNl1ZuKbwUuvp0ShWnauFVqMSRP6kSgXjzM0Oez2CHEtnX7\r\nNTKy9+eXsqxkzVXop81HCR7QCDlKPkc78IRETKfQA/nHdu2iOd8CAwEAAaOCBGIw\r\nggReMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBQonG1RafqmxKhDxP+NNvoz\r\n3/1FMDCBsgYDVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIG\r\nCisGAQQBgjcUAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggr\r\nBgEFBQcDCQYIKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEE\r\nAYI3CgMEBgkrBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYB\r\nBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYB\r\nAf8CAQAwHwYDVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8E\r\nggFfMIIBWzCCAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br\r\naWluZnJhL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwv\r\nYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3Js\r\nhiNodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8v\r\nQ049YW1lcm9vdCxDTj1BTUVST09ULENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y2VydGlmaWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNS\r\nTERpc3RyaWJ1dGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEF\r\nBQcwAoY7aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FN\r\nRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5n\r\nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwzLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKG\r\nK2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNRVJPT1RfYW1lcm9vdC5jcnQwgaIG\r\nCCsGAQUFBzAChoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMl\r\nMjBLZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERD\r\nPUFNRSxEQz1HQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp\r\nZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAJFaZ9bHSEXBMKUi\r\nxLJgRr0yPOBbkZAHGsXGsAAdXnsAcmRZnoMsJZwHJY9qa2SDdjWzCnEuk50KJ0Rm\r\nvePgWmDtQWwyfFT//JIccaFgxYsU2SjdHEi0DmRElJtLkYQorDjkqn8s2T8y95f0\r\nmdcNme7cQ8PsjawgV1hb7r1I0bRh93M4pDzRt0g08RoFtMGuqRdU3roMDbuid5Hj\r\nBnoT5MdJlYzklABw+JPOIFeqZ0LMq/RPyk8Dpzo7m2dSc78GitdNnWxj4Ku6l8lb\r\n0OHX3BL1eVKyKi8Vta3BjpzWuMQompgdzp1Eh+mDyfKV/+dlfIEPJI1stEHIEKWR\r\nR5yt35+RGXrmsmAwTZT5mcJk4JdAMhVnRnyWvxPzieYCR9DcIaT6+NBBYzQegOG+\r\nIMnLpnZp6qhbG7Nq9MXCqRY2ooojLCTLTCx8R2cqdYonJpB4lSkYMFYbuV7HoiNr\r\nXdZm0gMRi2DmIaZ7cxXUn0BmZd/lXSXNKdxwHKecu0F8ByT1Zlg3NgIhCb+6SDYB\r\nlOv5YhnwSd00aUaSSYc2dKJmR2yfCKT5Li9wdtjlB6rYIb7vHRl3x98OIVE+O20S\r\n1jQEqRLzkaDIWOA8D9VeuuIW05tahms61dDi5gx7M/ALhFa/QsbkCJXRf07Pe4ki\r\nHE/1Nk3cohSibWYZqHssdutHBd+Q\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIKITCCCAmgAwIBAgITHwAAAEnEBGqOfE69FwAAAAAASTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDA1MVoXDTI1MDkxNTAzMTA1MVow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAw9b7oiITgLVh8Yry44fRHl/xMuYtsI0Cg944jlh0S5ljKgUEMvt8/S63\r\nRH9+9eXvbFN4L9EL2+RDhWd5hGyg4gQeKtxO7D/+JUoTIamIl4pXTxhO5oORnS9k\r\ntWp6lc1OfpYnkgzrkFHICKggDtCpQxp7cMtM8evEvY/7WvmJDbAsgSRlBIeyVZqU\r\ndfw4ahzvsNmMfDGx2JBKgB5mndVGyg96yCHy5+7XKOkkcr+NKHdnBM3k546rGlCV\r\nErgPVuUkRxrwIa3xD9BRewoihWG7sbuxny49CrdbDi3WqK0VPSJGZ2y5ipUTwndi\r\n/+QhiK5expoHO0hl20DwRgq74qB5zSs379PcTQz59OvUDMi2fiErDYnCT75X3w1b\r\nh2uGBFIwonYXGHU1s/SaxQlXErGplgkLv/tBPAXu8sk+qANHaY1EfPwpPfOXjIxl\r\nRT95moW0IP+CPmhV0g2ZPKNn0mIRPpf8IzI5O4pLe6xfXDekQnNcGaBY9nN9LBO3\r\noi7pBBNObi17J/ebVg2rScg+KAWVVf09iLF2inpoFxKOJQz//poXo2fAvYVXnXJm\r\n99qJvY8gFyOyg2Cr2x/Wp8yw/u7H4DztXuFMYuPEVpR9/EeLP2bzrpdbJpj+SPT4\r\nU0OmtjVtKNR4aOBNBVWmzxV+WKRBfpkq+pjpRMkgFapXWtjlXV0CAwEAAaOCBRIw\r\nggUOMIGGBgNVHR4BAf8EfDB6oXgwH6AdBgorBgEEAYI3FAIDoA8MDUBzYXcubXNm\r\ndC5uZXQwD4INLnNhdy5tc2Z0Lm5ldDBEpEIwQDETMBEGCgmSJomT8ixkARkWA25l\r\ndDEUMBIGCgmSJomT8ixkARkWBG1zZnQxEzARBgoJkiaJk/IsZAEZFgNzYXcwEgYJ\r\nKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUluoFkm4uQswgfjWGaL4s\r\nMWhX+14wHQYDVR0OBBYEFBxS0IHKkOkG4KzpGA07z01trd55MIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAa08V3/BsJsIOjn2Qu6zUb0GosfdvggVX36PY\r\n9OZyOn5d2+tPPjG2re+uovdpuLKx1YH0iBX4kIL05yObqKMAv+YO3Ihj4MkcYy6A\r\nk9DbHyQTYoeSfaryn6yo7kLYCz6E+li6HJ4FVx13PxpwqDXWUu+Yf5Kszj56IqHx\r\nTI9LV1ZbqmZYk7fQIPETYENkE23ypgh5snRtqSZYTw6HASkHI4E7NgFkOATnIcs2\r\npLGzcc9vc/QYlj3PT3ciGdpGkz8l/A2MMqC4eleYFTBSX9rNNG0tf0M+5fVF417D\r\nmtqDlglm9bWpgrdLpmcj28f3766EBJBq9zza4M9dAGBWBQx0c8BR9saGATd/U8lY\r\nmlTDhnRdqJvvTbtPzFFmTF5jrANky12jKlaHHTyLETDu6OeDbVEyJNuhj0a+cQ6r\r\nZwYCG/k0WCzUx3MMq1A11uxvseoOmpIqLOGfkEdmBPQXkKC02vyjZkxF0pGPNNcy\r\nBSCIlZ11UtC5ghcZ2Wg/U4bAogTv/XAnjwzLpp5V7mcepzcBagiFlQkdnvUKNI/I\r\nLkerOmrgKe0rgT+ICALZiq7hIyeuM2uthyD3FaBFf62WOtDD6Jfwkg/3LI7of+HC\r\nGZ99J/xaocq6NFYqzD/9H6n0+biogXUJtm7mKhQO3PeLz/1aDIwLfKqZFr3PCStN\r\nvTWqAdQ=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFYLVFiDd8BlgAAAAAAAVjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4Mzg0OFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIElORlJBIENBIDAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEAxIoR15PqTSSMns55DdeR97gCwVWRoA6zCYbU66RoYrXuHSpcJM+1tnHN\r\n6B2gITXD0iDoTLpuOvRlM+12v0c8cWdzVoHuRuG0k1ViNgSELeNw8SXSQ6jmvgPy\r\nH6fg+NiKLkjYrJuIp5me3/asqMTeO6MOkeimS67PYerzkMYoC7BUEUacludZswsM\r\nFZnsM/vHCjIpzQMGWyUzju2ANT+J41Wz9AmukpPQFNzyq9566BEU/4MJh9Yg5aSR\r\npzI1gU8r4Y9ABdOgjsFnEm8BSSdlWLgalKevYPMLX/FO2rFufFgcNJq3Y8rnAtJD\r\n0k9jt7isXmJgS+JNfANvY7+jXQaCkwIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUOLjGDtr98qbFC/XuACeceItvo7EwHQYD\r\nVR0OBBYEFOXZm2f8+Oy6u/DAqJ2KV4i53z5jMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAYI9s0aXNjS8k6w/pyYwcd8HBPAjpWHJp7vBNsa9rDbau6raD\r\n+QWjj+hO5OKUkNchKIkK3xUc/iDAMNALDLFqUOaVTeMh5fu/e8Pr1AX1R1c5U1Yd\r\nxExItrFARqTCCIQpLz3cTu/9KA5QgUQlnFlrxA9IHq9G6k3TvTB2AngUzXBhNhl5\r\nb8ya7LK3dhfqf2BQHJ7k1XReCJLYMxI6PaG0F6mWTCFNBbBxgjsXeXfjYv2li33v\r\n48ALT/NXFoOTbAOP4EFfLhMDnx2O6cFOKrYT9O+EU64oJ/0MQDQSq9PVos5J+RW8\r\nvD/h2ycPqMnmsjvpJ4pWJZP+YSxy/HWMwbZt/Dv/UobeQqLCIXGnODv87K+1JVo0\r\nO3c1NtGJu61JyXwW8id8VSQuc2NzEr58rOOGMfU3gHZMSNY2gsFs1gqXC6MjtX9O\r\nipJ+dqr7lgRvpDN9bD2kd9CdOWsxz6PRPxOmbUittmpHdABMZuaeKB/5MnxVrpNw\r\nlYtJYXvKRY1V30kjFSsyLv02YYKb8MI/NfWcjMLw4eaEn//ST+sf+LjB9KF8TxBX\r\nxuBUpQVA/TJX9GEqYMZt557A5u5odSVcac+w0/Nn4E6WzFLfxMr1O8OOOQjzlG3u\r\n5BPqprm+utwEHBCU4iVcZOdnSgk1dm7C5xmmTylFRYOlwVrFSPcyKy0+6H8=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJITCCBwmgAwIBAgITHwAAAEso8JmcB0l1ZwAAAAAASzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIwMDkxNTAzMDMxN1oXDTI1MDkxNTAzMTMxN1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA1FFhjk/dgVlthN00OKObtbEisXfH40OyapM9KcVlUPnMElPROdKi7XPQ\r\nagq+Ry3QLSSZgNWnkahCSxE81oyudrvlhpR7NpcDPZHsYFw6qsEiirml0hc5awSq\r\n+MtFo9pfnr/zQstb7xg8wjduWjANvO3E34jZbfmCyw4gU4TRPIa9rpaV0N14hQTk\r\nKcBv+S12udS181oWcTc66zxVXUHNK15PRv31jElEYQKX8EJWCe6ccJA/cJD282sR\r\noEhfuUvzXHOeWD1jXH+Eh+mKuhLqiQHPJH7TJRMsN77ndtHH9us3Ak4l9AmGNZZf\r\nwNquVrHAiTw9Ai90btckoeMRn8eogQIDAQABo4IFEjCCBQ4wgYYGA1UdHgEB/wR8\r\nMHqheDAfoB0GCisGAQQBgjcUAgOgDwwNQHNhdy5tc2Z0Lm5ldDAPgg0uc2F3Lm1z\r\nZnQubmV0MESkQjBAMRMwEQYKCZImiZPyLGQBGRYDbmV0MRQwEgYKCZImiZPyLGQB\r\nGRYEbXNmdDETMBEGCgmSJomT8ixkARkWA3NhdzASBgkrBgEEAYI3FQEEBQIDAwAD\r\nMCMGCSsGAQQBgjcVAgQWBBTX/nF7X/NZN2T02QZU2G6DYuwmyDAdBgNVHQ4EFgQU\r\nlUWMsJMswORfcQ0UpecnwcNjm/cwgbIGA1UdJQSBqjCBpwYHKwYBBQIDBQYIKwYB\r\nBQUHAwEGCCsGAQUFBwMCBgorBgEEAYI3FAIBBgkrBgEEAYI3FQYGCisGAQQBgjcK\r\nAwwGCSsGAQQBgjcVBgYIKwYBBQUHAwkGCCsGAQUFCAICBgorBgEEAYI3QAEBBgsr\r\nBgEEAYI3CgMEAQYKKwYBBAGCNwoDBAYJKwYBBAGCNxUFBgorBgEEAYI3FAICBgor\r\nBgEEAYI3FAIDMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEAMB8GA1UdIwQYMBaAFCleUV5krjS566ycDaeM\r\ndQHRCQsoMIIBaAYDVR0fBIIBXzCCAVswggFXoIIBU6CCAU+GMWh0dHA6Ly9jcmwu\r\nbWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9j\r\ncmwyLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8vY3JsMy5hbWUuZ2Js\r\nL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDEuYW1lLmdibC9jcmwvYW1lcm9v\r\ndC5jcmyGgapsZGFwOi8vL0NOPWFtZXJvb3QsQ049QU1FUm9vdCxDTj1DRFAsQ049\r\nUHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049Q29uZmlndXJh\r\ndGlvbixEQz1BTUUsREM9R0JMP2NlcnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFz\r\nZT9vYmplY3RDbGFzcz1jUkxEaXN0cmlidXRpb25Qb2ludDCCAasGCCsGAQUFBwEB\r\nBIIBnTCCAZkwRwYIKwYBBQUHMAKGO2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w\r\na2lpbmZyYS9jZXJ0cy9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsGAQUFBzAChito\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3QuY3J0MDcGCCsG\r\nAQUFBzAChitodHRwOi8vY3JsMy5hbWUuZ2JsL2FpYS9BTUVSb290X2FtZXJvb3Qu\r\nY3J0MDcGCCsGAQUFBzAChitodHRwOi8vY3JsMS5hbWUuZ2JsL2FpYS9BTUVSb290\r\nX2FtZXJvb3QuY3J0MIGiBggrBgEFBQcwAoaBlWxkYXA6Ly8vQ049YW1lcm9vdCxD\r\nTj1BSUEsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMsQ049U2VydmljZXMsQ049\r\nQ29uZmlndXJhdGlvbixEQz1BTUUsREM9R0JMP2NBQ2VydGlmaWNhdGU/YmFzZT9v\r\nYmplY3RDbGFzcz1jZXJ0aWZpY2F0aW9uQXV0aG9yaXR5MA0GCSqGSIb3DQEBCwUA\r\nA4ICAQCb7VpPdQaBSKQdwDpgFquVkVtcKzEAwsVlzIENIrlRsOcBgvZlW9QKwgCd\r\n6xvrF9smidaMzlYuxYQypQ0RQEHDKJ1SJQLc1ZtR7fWf0xHqU0cgX3hktDNyN5t4\r\n7rMtYOUhygcZIxVQ2cpkyLoilwnb/q0Y0jOnA7eo0r9K67TJ9CP2m3ZUApzRaCwv\r\nqQE8eNZvngy+613PU11A2EFuTPXoVNb7S3w8amz+mYYnJCBhxf4PdYA/3DZ0q3FP\r\nfFxqKAbuNtXXHFmYn3BBMGSn082Uq8RsAvj5XEkI/xylDlwG3zT+QaIOrJ/06Toz\r\ncT0ewSlyNAB6LzGp/HLTIffhSNBVX8ILs558r6VcnTE21awdkWqnd3PiPkWADD78\r\nDVSb/7QOsBdZp6BKkcDzTc/uaDGahR55UcapkOMBSbngkomK986ITx3yUITn0aV4\r\nBEVbYQQ6b9l/eNHRosiwL52QPnYl6fJRsl0JuUzy9T5DrwGGnRgKQAOmSWPRTdt2\r\n14MWrxbLFRRwvqt2COK82jPTAiZ3XqYSZzZce9bSDsGSm5VpwWz5+xyBYc3djzKR\r\nThctXJrwftNyZD+LBc/4oLOTYLpDB23eI8rvb6Xfm3A8ANucIq2muavxi1A+eyYM\r\nQXwyB2foIV9yhDIA5I1psyJo+CwM9CcibRTjjNL5ghEkoSDjyA==\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIImDCCBoCgAwIBAgITHwAAAFSoP4knG2YAHAAAAAAAVDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzczNFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEApuAstd+jxOmcAhw1KNXa7fDE4SFe/7SdG4avz6VQqep4ofwJwZTxQJNQ\r\nBC7dybKZO2RBiDzzayV9PCxmK9HPRMRmuj68x9BRyoEbVU1tX4HtiBK+hAGiRNQu\r\nPRTYcSs24CgjI3JrxOjNesp8iE8HUVntN8ueXnpTQLSYOR2TmTGM835tkTplflX/\r\n/zPtZvsXSZz+JssQ9SRcXS2t/fPDpKfNVatOmq4iwtX7Q6IO/WCzAyEzacjAFqml\r\n0/PRYT5O+jiRO+TImZ2RD0CB9rP5CYwN2T504drkKteNaT+FT/teBLC+JraDjh27\r\nv24yknl1t8dXCSS6l/UBGBGVk+gr0wIDAQABo4IEiTCCBIUwEgYJKwYBBAGCNxUB\r\nBAUCAwQABDAjBgkrBgEEAYI3FQIEFgQUVSrR7NlDI9ZN5GcKVaV9JEKwIbEwHQYD\r\nVR0OBBYEFK55wmtdJYgTBvYHCcOXfHuXjx1VMIGyBgNVHSUEgaowgacGBysGAQUC\r\nAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYBBAGCNxUGBgor\r\nBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgCAgYKKwYBBAGC\r\nN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcVBQYKKwYBBAGC\r\nNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV\r\nHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAWgBQpXlFeZK40\r\nueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOgggFPhjFodHRw\r\nOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJvb3QuY3JshiNo\r\ndHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0cDovL2NybDMu\r\nYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFtZS5nYmwvY3Js\r\nL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFNRVJvb3QsQ049\r\nQ0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENOPUNv\r\nbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJldm9jYXRpb25M\r\naXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9pbnQwggGrBggr\r\nBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3JsLm1pY3Jvc29m\r\ndC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEF\r\nBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFwOi8vL0NOPWFt\r\nZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNlcnRpZmljYXRl\r\nP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0eTANBgkqhkiG\r\n9w0BAQsFAAOCAgEAbgp2LNvP1OVFkH9JTg9rTMksjvLIpzaqJehSp5+3YNzGl/TH\r\ni3Kg/rbtQaKErwipeLMhmqWFuT9kB22eeyoBSxx3JTzRmKtcJO47IX0qymW04v2i\r\nI2tVWQigwJWtE08Z16Q3NVdgAox6DDnAvmV8QDlPhWdW0gGcszZqFD47SJltU8JJ\r\n6D+xuDl+xUIA5wQ0987HRo4dSx3Vny1cd98GdMepsOnCpfm7ZQDWJUggp8m8T/jv\r\ngj28G4JNV9nsx3TT5D4xFZ0rXUlQNmhJFesprLt8NqOoKqmP40WdqrpVIxlu5pdH\r\naf/uT89gHO3Zy+iqNbCDRB7zSBtaalaqLvGpE0xV3p+xpjY1CujjvKp+rUrGwA1t\r\n7aNRowd45Dn+kESi95bE16V2k54YbRvgkwQgqyFUiissogOtaOwQIjuv5NUMkKnj\r\nWz1S1nsMTwZWQ20pT+SG9IMWxAP+63fLIMxWXSbwkTo1Q7JVbr7ZnbNjPrzwerrq\r\nTx+CgfCjU2TZ2WaqYnKoGlgjiZkVraQ1JYJkEr5N5+12CnAuVNzn7pMs6HUSxc8Y\r\numBjy+KA0I1XMvFerh+fhEVad7kOgOxqE1uLdXZxkOXHC1N4FQlkI65Padcd8dyM\r\n3g+er8suC1gf9/fWU0AlgIqls48Wis2JISOeSsMAi3BDvCIpp5PHbuNfj7A=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFr7ZWQR1r6OSQAAAAAAWjANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzN1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA1MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEArMu8k7Kq5y6uDXZk0QxV9Ya5K3Mb0/sCyV4fs48XfAgL3YOHYTZ5o1uB\r\n97VZ/oXuenXaDcoDE18WhOavpqjWHc4eb1QeGGCaB0MoijTLGPzqwWRdByW6l2U2\r\ngFzjKWKtFncIj/VW5S98uCDD8b0SX278XKubkKv0Zn3m1E2wVrTvG8Jc/MuXF0WX\r\ntjFRRJPY3keED1zFNEKjckE4ywTV1atTqnKbmj2rcQucHJ4ufZ89Hel/xLL0bFxc\r\nJnW4Ky8lZ4Q+G9brYexh/iEBcSpNQlfLVJrKZMlAwGPcp1SBGxU9GlSV7kE1LLCS\r\njpS5d6/qw4VA+z5y9HsHN225oBhpAQIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFHrWGYUoeWxxdh5g+PNL76IFQhYdMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAU2IUk2qTwWTtRBKzMTaRxYKvTyvU1nyQLxko\r\nA3304lciVsdA86+jhEkvnCwZeAHoOtYuPeQJdeyhYUhVRDAhhJauvE87FB69gM6h\r\nYUnRqiy+vekLrHB/1x8njoLHmcppjOvBzziOPSqvf8s6O8tJ5AjY3398sm5ckH37\r\nVYHa/+bAYCvEsYmgDGN8L25QvXScTmTthSXHlzsCItPpKFs385dsGJnFD0KcQ5c1\r\ngLmV1bdHnrWyy2mqB819CFWtzhnojtzXxZLuEfTBS18u0qoLdN8KvgB2BvfgZtY7\r\nx+fbkiyoZfnZak0Oj45Z9Z/6AQ1uHGSRadAh19mkcrkPwHktc/3M1PJ69dwZn8Ez\r\nASzYFf8QH58i5uxdou73v+5Bd1m5nmtFCyLC6QDtFYH0pkvmafBx7PwyrgTjq2Xv\r\n7eWL0wXESxzY4HpjMDO36ncsLvzI6j4CyG4cpA8F8+9jwizWqmKMQUWt+VMICsP7\r\nRrzCJ35ogFGWF/dC2hjdjBXjcyLaliR5nE+sDx1PVDdIu7y8oBi60+Vzl0+BSf8P\r\nOdssgwciUpWVP+9xf6SZ7D9BPmLwgIJZ4oPc5K7cTOR6ksQQg8fO44fmOCRfVD/T\r\nDj1e39ijjkmcXUvrcu1sh93vbupLKp4Guruj3Le6iQ4Hla6Pr4znFKCzKk1+RrcQ\r\nVnsaqio=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFOufo2CImJDvAAAAAAAUzANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4MzYxMFoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDAzMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEAz2IfhGnsNWpW1cYZrm7f0KG7FjkmtAufsz6xSPNM86b5+jPDUpkOb7U7\r\nj4cWGBVdrYYqWUkziZmWPyl9WLw43KGzaMT3xTnm1xWyok8Z1D/ytHfxFI5t+Xzk\r\n+pcWwIZzuElzEzAQYnVMyfdxD6sM2winZ1ehDpvJeLTPcuTPf5fDYpcrnebODQ+r\r\nnsvq7oU7bHp/jTkGP/2hNzNLR7QJq+rOaHTHDky5yWrsMdgGj0dJXmId6RIfgbeq\r\nJyz7pK0OnoqopPXzZcEQJGNdh9tTh0DWpPGkCWvp4yC2Sd6VSDIApnIpXRn5WNGc\r\n79eeuL9eKvQ5W1zq3/j5HlmwZvPOE+3kPe9r1+WMazNqbhmVk0gUfZX+cnJcy8ZH\r\nqZhjCnW1ihCHzNxMQypQLrnOgVCBkkkRj466iLGDMGL5IyTji2AAp50wMiZuVQX6\r\nwY4kcKqLsjSPpDpHGIie+58/dh9xFgqJzV0kNbAvehRlbwzQnRJWzr1UgZJgjluN\r\nlLpJwTmUIe3I4FzbwrzGMOltYu8XbdFAfyPM4fcfqJwFTF2xI5OYNC3Rcou9OSQT\r\no+ce9/rON//vZNZmQ+TPQ3nkPoKus+JX3EFJbevLeG0IvvC8c2ABwv6cNcvbSSoV\r\nXP+XaBLuXe5A3G+Tdr33bVhKKnbKiravs7sEeKvXVrpDgilOuG8CAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFJbqBZJuLkLM\r\nIH41hmi+LDFoV/teMB0GA1UdDgQWBBRIo61gdWpv7GDzaVXRALEyV/xs5DCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAArPH6tJjsM3VsG3zdh/1Rh3LDz4\r\nDqyUEJEXiM+Sa1kCncVvIqI5GkFKGM3Ur3hdx6xxe5F9gPvUdL22Qf0DLaOclksk\r\nO2FABXqDRv0P7k5yyryzTM/RmLhleut3Fc8BUdfrkmif8Znyxp12sRxK0UgEf6iI\r\n+dEZugVpwAl8IRUk9O201Q87q3zI30NgPT2BJiDycKaKQJF634qatubvL28JaiOd\r\nk3uxWfcqKjO0oeSJ7pxgAiH1rCah7UN5T2d3V4AmDQGLPo7lwX1SKZewa10PnF0X\r\npjE+8welxOK+4pEPl2kRdMDpr9/XPXWpAPt2h67Z0j7x5c7nDU/eZ3UjRkJePoIQ\r\n5aGZuxZ2diziI4JWhbW+kF9M8T0CM1EUIcQV+8wvvualM1q0IN+SJ1X49tt8n3y5\r\nfEAur2599a16z7zg4uF1xI/SafWXMjC8MObCHjR5xodSQ7IxvGyl+6uIkENsiQBF\r\ncuM55MMUELl0VM0+n7Kv5K2Ur+heLzNlTTy2eoiU048g8iQmZzP5C9y4hUE3rYgJ\r\nRxP9ovHl2km91RDTei9aANUGIB8U2uFA7pxe0G8Kp8WSF0a2DtZu7sf2lGjKvP+7\r\nJGaMrJn2bJW6cDEPgfyKCio8kCVtFg7QTtkaZjF5J6AIB0B7aHNPKlAE2T8O2/Z7\r\nJIvM+ijPG5W96tZP\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIJmDCCB4CgAwIBAgITHwAAAFjSjQKPPAEB6wAAAAAAWDANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMjE4NDAwOVoXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\r\nCgKCAgEA3Pi3nd+o2ItxXWvhyaIDXRbrxgB1wqI0wK/wgC3vs2vSbIHdSuOrtac+\r\nmR6Ag8rE69QQOykN2KJIQI53O0egLWUqjDMa43Fkh1EWTAD0B6snyV91Lt24YPPq\r\nOyJZLhGCtYJoQfPQxZjgW0PknDvWCGIBPFacj86c84QzQdmNBMPrObC21S/ilK+H\r\nGjwcYx9Z3dSeK2CPLLkb3C0HzWWLBL5lFHrdM7qphSAJ07g8/ggis/b4aHdWOlN3\r\nfyySWbuTLQnX8J1XZdWGc+7Z60gzt2jwUc2kgpjcpHvV7QYmy141rjiQyFDNUf7x\r\nFBeFIpLDPoxcfAsOo/dtVfxp/dNMqfAEC27QrUogtIUOcCaSZ5r09ECOuBW6Mood\r\nDIx4bUEhXOJmZBtpzRXhVVKTC7Aqs3PTrPehspCxOclx7c8aESASwj6SSWpDQi+x\r\nrKm2DgTIgvVIdyBNdKhxhGNyl1t9jTEMAdwDmY6pN0kMLCEdM6v9fG0nvtFFLU/m\r\nj9Ojh8Rtf3YWiUPd2cI62tVoXckaP3TbdCNmGysT8ShFNEypEINWIl49U7V00Iec\r\nOveCbkfsnKnT/o69znrWUH+Pt65GxrqO5A+To6WU83OqLxljS/cyBTQmrDh70Dgz\r\nKXDXN3JVW93RLoXuNyAhd1nUOjKOI2tmPhEC4Cz7lqmVxDsQaZMCAwEAAaOCBIkw\r\nggSFMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFDrHw8rI3g3T\r\nksAnici+l0dPRWlgMB0GA1UdDgQWBBQ5cV2pFRAtxN9+L1luQE3A3+82mjCBsgYD\r\nVR0lBIGqMIGnBgcrBgEFAgMFBggrBgEFBQcDAQYIKwYBBQUHAwIGCisGAQQBgjcU\r\nAgEGCSsGAQQBgjcVBgYKKwYBBAGCNwoDDAYJKwYBBAGCNxUGBggrBgEFBQcDCQYI\r\nKwYBBQUIAgIGCisGAQQBgjdAAQEGCysGAQQBgjcKAwQBBgorBgEEAYI3CgMEBgkr\r\nBgEEAYI3FQUGCisGAQQBgjcUAgIGCisGAQQBgjcUAgMwGQYJKwYBBAGCNxQCBAwe\r\nCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHwYD\r\nVR0jBBgwFoAUKV5RXmSuNLnrrJwNp4x1AdEJCygwggFoBgNVHR8EggFfMIIBWzCC\r\nAVegggFToIIBT4YxaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2Ny\r\nbC9hbWVyb290LmNybIYjaHR0cDovL2NybDIuYW1lLmdibC9jcmwvYW1lcm9vdC5j\r\ncmyGI2h0dHA6Ly9jcmwzLmFtZS5nYmwvY3JsL2FtZXJvb3QuY3JshiNodHRwOi8v\r\nY3JsMS5hbWUuZ2JsL2NybC9hbWVyb290LmNybIaBqmxkYXA6Ly8vQ049YW1lcm9v\r\ndCxDTj1BTUVSb290LENOPUNEUCxDTj1QdWJsaWMlMjBLZXklMjBTZXJ2aWNlcyxD\r\nTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1HQkw/Y2VydGlm\r\naWNhdGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1\r\ndGlvblBvaW50MIIBqwYIKwYBBQUHAQEEggGdMIIBmTBHBggrBgEFBQcwAoY7aHR0\r\ncDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL2NlcnRzL0FNRVJvb3RfYW1l\r\ncm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwyLmFtZS5nYmwvYWlhL0FN\r\nRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9jcmwzLmFtZS5n\r\nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwNwYIKwYBBQUHMAKGK2h0dHA6Ly9j\r\ncmwxLmFtZS5nYmwvYWlhL0FNRVJvb3RfYW1lcm9vdC5jcnQwgaIGCCsGAQUFBzAC\r\nhoGVbGRhcDovLy9DTj1hbWVyb290LENOPUFJQSxDTj1QdWJsaWMlMjBLZXklMjBT\r\nZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPUFNRSxEQz1H\r\nQkw/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRpZmljYXRpb25B\r\ndXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAI68ze1N9ZqKBI7Q7BXGlc0k99wW\r\nCoCZu0m02crvYeITKUC/eizH7s6Sx2Kk5Hnzz0Rzc8G8NpiWEfp7ppKeP1jOMv11\r\n7P1KB6IHyRLdW7vAIBiJy1qhbLAxseR7xkvDKv9yjZYL9Q7XtlSgrd9NuEiuFsfj\r\n0ANzVf/Ea4br00gGc8ALfnvgGE7eUdBNqWKTzHcQREdjJPRMUqTYqcvd4qQbRXZt\r\ncXLt4Fr3pXcwG1UExrz3TP4ueyrqGot/OFDvMihs6Tak0qjYygT2dC3bEOBg3GSQ\r\nDdQVzBFO98f62/l51TBlWizuw3D4/dKIPfQU1Qt7sr9e7CLbecoO8EVtyt/yGRr1\r\nD4BPBGyEzC6QoqCo5Nh27yG+DxFtAGdm/vLaFeJOVM3q2d6nL1FvNzlHTHfOYPJ3\r\nNwHB30X9TpdRqoBLM5UC0m/ybKj4ygXAZBlkJXMO/bjtpqyidJ0SaFuE8EdV9YoJ\r\nKUmBw1ZuZd5GHbc+Ilz82WX+JWZ0efU/f+75Ywvntu/3s0OsnpVoqrqM7TDdzE0d\r\nwRiZ+mvtgIwp85+et1iEdaWPj+d6LfJxpDDCPhaqh9hnNIkZFptndwDwRE2MV9Wr\r\nlUCSA96/2ubHsKt4E2D96KvNog6MKdyEGz1sZep1yZKqE4cnNzGNBGRel0BRa2MK\r\nyTOQsCbnpQGhEz0m\r\n-----END + CERTIFICATE-----"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIIcTCCBlmgAwIBAgITHwAAAFlFSsCTnaMEFgAAAAAAWTANBgkqhkiG9w0BAQsF\r\nADA8MRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAw\r\nDgYDVQQDEwdhbWVyb290MB4XDTIxMDkwMTIxNDMzM1oXDTI2MDUyNDIyNTcwM1ow\r\nRDETMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEYMBYG\r\nA1UEAxMPQU1FIEluZnJhIENBIDA2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\r\nCgKCAQEA0E8VPmTCi+s/ukALr8kiz9n0QMveOlaFztd/3QikdEPvOujCuE/CXDKt\r\n0KhyGBUshmHGEC580aoe2Ze2gBJ/Dhs8FjdCjH4IyWU22QOervNkIc2Xd3EMxVZL\r\nYmWmDp5yfa0DwHqsqLq1PLwyk9BfYhh2gp9Dp+vECu4FzvVoZd73UaTpvcQKDsXA\r\nTVR43QC8AiL2AiHgOB3xE75MR/kI1OA7mTaOK8uZbQZCtyG1VMtNL+Q4Di0nB9cD\r\ntqfQj1/UCA76Nr9a7p/TUnck94zlsHE5RVGvDy3GKpa4cmCb+nRpF+ybZjuw8fPT\r\nCY5JGTLZreJMgk+Tej7iN+BYyn4Q2QIDAQABo4IEYjCCBF4wEAYJKwYBBAGCNxUB\r\nBAMCAQAwHQYDVR0OBBYEFPFGaMbxw/ArLX2LauGy+b41/NFBMIGyBgNVHSUEgaow\r\ngacGBysGAQUCAwUGCCsGAQUFBwMBBggrBgEFBQcDAgYKKwYBBAGCNxQCAQYJKwYB\r\nBAGCNxUGBgorBgEEAYI3CgMMBgkrBgEEAYI3FQYGCCsGAQUFBwMJBggrBgEFBQgC\r\nAgYKKwYBBAGCN0ABAQYLKwYBBAGCNwoDBAEGCisGAQQBgjcKAwQGCSsGAQQBgjcV\r\nBQYKKwYBBAGCNxQCAgYKKwYBBAGCNxQCAzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi\r\nAEMAQTALBgNVHQ8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAfBgNVHSMEGDAW\r\ngBQpXlFeZK40ueusnA2njHUB0QkLKDCCAWgGA1UdHwSCAV8wggFbMIIBV6CCAVOg\r\nggFPhjFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY3JsL2FtZXJv\r\nb3QuY3JshiNodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9hbWVyb290LmNybIYjaHR0\r\ncDovL2NybDMuYW1lLmdibC9jcmwvYW1lcm9vdC5jcmyGI2h0dHA6Ly9jcmwxLmFt\r\nZS5nYmwvY3JsL2FtZXJvb3QuY3JshoGqbGRhcDovLy9DTj1hbWVyb290LENOPUFN\r\nRVJvb3QsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZp\r\nY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jZXJ0aWZpY2F0ZVJl\r\ndm9jYXRpb25MaXN0P2Jhc2U/b2JqZWN0Q2xhc3M9Y1JMRGlzdHJpYnV0aW9uUG9p\r\nbnQwggGrBggrBgEFBQcBAQSCAZ0wggGZMEcGCCsGAQUFBzAChjtodHRwOi8vY3Js\r\nLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvY2VydHMvQU1FUm9vdF9hbWVyb290LmNy\r\ndDA3BggrBgEFBQcwAoYraHR0cDovL2NybDIuYW1lLmdibC9haWEvQU1FUm9vdF9h\r\nbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDMuYW1lLmdibC9haWEv\r\nQU1FUm9vdF9hbWVyb290LmNydDA3BggrBgEFBQcwAoYraHR0cDovL2NybDEuYW1l\r\nLmdibC9haWEvQU1FUm9vdF9hbWVyb290LmNydDCBogYIKwYBBQUHMAKGgZVsZGFw\r\nOi8vL0NOPWFtZXJvb3QsQ049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2Vz\r\nLENOPVNlcnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9QU1FLERDPUdCTD9jQUNl\r\ncnRpZmljYXRlP2Jhc2U/b2JqZWN0Q2xhc3M9Y2VydGlmaWNhdGlvbkF1dGhvcml0\r\neTANBgkqhkiG9w0BAQsFAAOCAgEAD6YslCi5IxgKWQYVzHClxGTpTXEarOPDACuQ\r\nnZIgM4hbk0rMqW4aHFd+paZmMUvNU0HWtIq7aAbNZGCdTrb6g9xjQKrdivWr24BZ\r\nBDxlYkU1tNvdQmafd/RESZ+TpElbuBw2EW0qtK2K+BfL1fTcwpIWRoqWcZUc/CzX\r\n43yuA3vE9sw7/HCDOEQF+QW12B6LDt2Y6DR2y8ZjYsIM0X99mgCE8/HYL4AR3+mA\r\nHjlncC3qlXWRUk46kz2yU4gu0k4P5vexNuGvU9uHvmqQERhhHYkAiW5pwCNFdZDw\r\n95vcnWocRk5TaOPp74v06msx58qS9Re9Fz5xwp6dGGqvWgcF9UJtVVyXMGYB1/1+\r\nyd5n8VpvHVWlrPNpcT0p9YLeou/HKZIiekolUKL6SqCbDFwSUMPM1xWSK6RbphmT\r\nJZdAoKKLq7c/4bFPOxeKvBjT6PrWP64ktWN1Z+AYQlBp1rK7A/ZkAOh8l+17K4VJ\r\neb1whd4SmNSnZbv9jhOeWhrbRsxmFJ1SFHhoBhS3Q/WZWMJtLu2Hv1RHnqRgLD3y\r\nlaC9qyj44pXka/MiLauGl0qjRsO6i0ZV/nU43/eZt4EhWewfmXRnfNlXA/u6abVS\r\n3lkNTlQaJAmTijbKk4JI0qQl4e+xZloOXJVNiqKgYSh3N93Bi+8ROZCLqqpwrO+C\r\n8C5Y9Bk=\r\n-----END + CERTIFICATE-----\r\n"},{"pem":"\r\n-----BEGIN CERTIFICATE-----\r\nMIIFVjCCAz6gAwIBAgIQJdrLVcnGd4FAnlaUgt5N/jANBgkqhkiG9w0BAQsFADA8\r\nMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRAwDgYD\r\nVQQDEwdhbWVyb290MB4XDTE2MDUyNDIyNTI1NFoXDTI2MDUyNDIyNTcwM1owPDET\r\nMBEGCgmSJomT8ixkARkWA0dCTDETMBEGCgmSJomT8ixkARkWA0FNRTEQMA4GA1UE\r\nAxMHYW1lcm9vdDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALv4uChY\r\noVuO+bxBOcn8v4FajoGkxo0YgVwEqEPDVPI6vzmnEqHVhQ1GMVeDyiRrgQT1vCk1\r\nHMMzo9LlWowPrzbXOwjOTFbXc36+UU41yNN2GeNa49RXbAkfbzKE/SYLfbqOD0dN\r\nZLwvOhgIb25oA1eAxW/DI/hvJLLKh2SscvkIyd3o2BUeFm7NtyYG/buCKJh8lOq8\r\n0iBwRoEoInb0vhorHaswSMmqY1g+AJndY/M7uGUqkhDGBhLu53bU9wbUPHsEI+wa\r\nq6WypCijZYT+C4BS5GJrEPZ2O92pztd+ULqhzNRoPj5RuElUww7+z5RnbCaupyBY\r\nOmmJMH30EiRSq8dK/irixXXwJraSywR5kyfmAkv6GYWlRlxFUiK3/co47JLA3TDK\r\nN0wfutbpqxdZQYyGfO2nZrr5JbKfSU0sMtOZDkK6hlafV++hfkVSvFfNHE5B5uN1\r\nMK6agl1dzi28HfJT9aO7cmjGxl1SJ5qoCvcwZNQ2SPHFdrslcwXEFOMDaEzVOA3V\r\n7j3+6lrT8sHXg0sErkcd8lrBImfzhLxM/Wh8CgOUNeUu3flUoxmFv3el+QWalSNy\r\n2SXs2NgWuYE5Iog7CHD/xCnoEnZwwjqLkrro4hYWE4Xj3VlA2Eq+VxqJOgdyFl3m\r\nckSZ08OcwLeprY4+2GEvCXNGNdXUmNNgk2PvAgMBAAGjVDBSMAsGA1UdDwQEAwIB\r\nhjASBgNVHRMBAf8ECDAGAQH/AgEBMB0GA1UdDgQWBBQpXlFeZK40ueusnA2njHUB\r\n0QkLKDAQBgkrBgEEAYI3FQEEAwIBADANBgkqhkiG9w0BAQsFAAOCAgEAcznFDnJx\r\nsXaazFY1DuIPvUaiWS7ELxAVXMGZ7ROjLrDq1FNYVewL4emDqyEIEMFncec8rqyk\r\nVBvLQA5YqMCxQWJpL0SlgRSknzLh9ZVcQw1TshC49/XV2N/CLOuyInEQwS//46so\r\nT20Cf8UGUiOK472LZlvM4KchyDR3FTNtmMg0B/LKVjevpX9sk5MiyjjLUj3jtPIP\r\n7jpsfZDd/BNsg/89kpsIF5O64I7iYFj3MHu9o4UJcEX0hRt7OzUxqa9THTssvzE5\r\nVkWo8Rtou2T5TobKV6Rr5Ob9wchLXqVtCyZF16voEKheBnalhGUvErI/6VtBwLb7\r\n13C0JkKLBNMen+HClNliicVIaubnpY2g+AqxOgKBHiZnzq2HhE1qqEUf4VfqahNU\r\niaXtbtyo54f2dCf9UL9uG9dllN3nxBE/Y/aWF6E1M8Bslj1aYAtfUQ/xlhEXCly6\r\nzohw697i3XFUt76RwvfW8quvqdH9Mx0PBpYo4wJJRwAecSJQNy6wIJhAuDgOemXJ\r\nYViBi/bDnhPcFEVQxsypQSw91BUw7Mxh+W59H5MC25SAIw9fLMT9LRqSYpPyasNp\r\n4nACjR+bv/6cI+ICOrGmD2mrk2c4dNnYpDx96FfX/Y158RV0wotqIglACk6m1qyo\r\nyTra6P0Kvo6xz4KaVm8F7VDzUP+heAAhPAs=\r\n-----END + CERTIFICATE-----\r\n"}],"hoursBetweenBackups":24,"prometheusEndpoint":{"ipAddress":"127.0.0.1"},"provisioningState":"Succeeded","repairEnabled":true,"seedNodes":[],"cassandraAuditLoggingEnabled":false}}],"nextLink":"https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/cassandraClusters?api-version=2021-10-15-preview&%24skiptoken=1Y7RSsMwGIXfJdemabJFR0GkbgWFqWA6dp0m%2fzRok5A%2fqeLYuxsfw7vD4fB950w8fOe98x9IujM5DmrcDs%2fja78%2fKNKR95wjdowZ8Dnpz4JQdGxm7fUbzLVr9E9J0JgwMywTmuRidsEjs3bFwWigaykEXV9vgG4mcUPlBCfbSm6tXLGYwuIsJGRPzqSA4ZSbXTDlj7y7Z0Yjam%2bT3lZxrrM7HR1daqiKW9EKTnlLuaQxweLgi1wR9XIYH4Zejb167P%2fd%2f8vlFw%3d%3d"}' headers: cache-control: - - no-store, no-cache + - no-cache content-length: - - '11457' + - '1198521' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 22 Sep 2021 21:51:35 GMT + - Thu, 21 Oct 2021 22:29:04 GMT + expires: + - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2270,11 +2726,19 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-gatewayversion: - - version=2.14.0 + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 - message: Ok + message: OK - request: body: null headers: @@ -2291,15 +2755,15 @@ interactions: ParameterSetName: - -c -g --yes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_managed_cassandra000001/providers/Microsoft.DocumentDB/cassandraClusters/cli000002?api-version=2021-10-15-preview response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1f522125-96d6-4301-a427-9cc33685910f?api-version=2021-07-01-preview + - https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/53c4ef9e-a77d-4dfb-b9ef-e2b198cbdd09?api-version=2021-10-15-preview cache-control: - no-store, no-cache content-length: @@ -2307,9 +2771,9 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:51:36 GMT + - Thu, 21 Oct 2021 22:29:17 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationResults/1f522125-96d6-4301-a427-9cc33685910f?api-version=2021-07-01-preview + - https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationResults/53c4ef9e-a77d-4dfb-b9ef-e2b198cbdd09?api-version=2021-10-15-preview pragma: - no-cache server: @@ -2339,55 +2803,9 @@ interactions: ParameterSetName: - -c -g --yes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1f522125-96d6-4301-a427-9cc33685910f?api-version=2021-07-01-preview - response: - body: - string: '{"status":"Dequeued"}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '21' - content-type: - - application/json - date: - - Wed, 22 Sep 2021 21:52:06 GMT - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-gatewayversion: - - version=2.14.0 - status: - code: 200 - message: Ok -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - managed-cassandra cluster delete - Connection: - - keep-alive - ParameterSetName: - - -c -g --yes - User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1f522125-96d6-4301-a427-9cc33685910f?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/53c4ef9e-a77d-4dfb-b9ef-e2b198cbdd09?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -2399,7 +2817,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:52:37 GMT + - Thu, 21 Oct 2021 22:29:49 GMT pragma: - no-cache server: @@ -2431,9 +2849,9 @@ interactions: ParameterSetName: - -c -g --yes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1f522125-96d6-4301-a427-9cc33685910f?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/53c4ef9e-a77d-4dfb-b9ef-e2b198cbdd09?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -2445,7 +2863,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:53:07 GMT + - Thu, 21 Oct 2021 22:30:19 GMT pragma: - no-cache server: @@ -2477,9 +2895,9 @@ interactions: ParameterSetName: - -c -g --yes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1f522125-96d6-4301-a427-9cc33685910f?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/53c4ef9e-a77d-4dfb-b9ef-e2b198cbdd09?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -2491,7 +2909,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:53:37 GMT + - Thu, 21 Oct 2021 22:30:50 GMT pragma: - no-cache server: @@ -2523,9 +2941,9 @@ interactions: ParameterSetName: - -c -g --yes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1f522125-96d6-4301-a427-9cc33685910f?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/53c4ef9e-a77d-4dfb-b9ef-e2b198cbdd09?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -2537,7 +2955,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:54:07 GMT + - Thu, 21 Oct 2021 22:31:21 GMT pragma: - no-cache server: @@ -2569,9 +2987,9 @@ interactions: ParameterSetName: - -c -g --yes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1f522125-96d6-4301-a427-9cc33685910f?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/53c4ef9e-a77d-4dfb-b9ef-e2b198cbdd09?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -2583,7 +3001,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:54:37 GMT + - Thu, 21 Oct 2021 22:31:51 GMT pragma: - no-cache server: @@ -2615,9 +3033,9 @@ interactions: ParameterSetName: - -c -g --yes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1f522125-96d6-4301-a427-9cc33685910f?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/53c4ef9e-a77d-4dfb-b9ef-e2b198cbdd09?api-version=2021-10-15-preview response: body: string: '{"status":"Dequeued"}' @@ -2629,7 +3047,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:55:07 GMT + - Thu, 21 Oct 2021 22:32:22 GMT pragma: - no-cache server: @@ -2661,9 +3079,9 @@ interactions: ParameterSetName: - -c -g --yes User-Agent: - - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.28.1 azsdk-python-mgmt-cosmosdb/0.7.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus2/operationsStatus/1f522125-96d6-4301-a427-9cc33685910f?api-version=2021-07-01-preview + uri: https://centraluseuap.management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus2/operationsStatus/53c4ef9e-a77d-4dfb-b9ef-e2b198cbdd09?api-version=2021-10-15-preview response: body: string: '{"status":"Succeeded"}' @@ -2675,7 +3093,7 @@ interactions: content-type: - application/json date: - - Wed, 22 Sep 2021 21:55:37 GMT + - Thu, 21 Oct 2021 22:32:52 GMT pragma: - no-cache server: diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-cassandrami_scenario.py b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-cassandrami_scenario.py index e84ec37cb6e..d8a55420e37 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-cassandrami_scenario.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/tests/latest/test_cosmosdb-cassandrami_scenario.py @@ -7,7 +7,7 @@ from unittest import mock from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/_configuration.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/_configuration.py index 6ff3e742876..c1c3a9dbdb8 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/_configuration.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/_configuration.py @@ -48,7 +48,7 @@ def __init__( self.credential = credential self.subscription_id = subscription_id - self.api_version = "2021-07-01-preview" + self.api_version = "2021-10-15-preview" self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) kwargs.setdefault('sdk_moniker', 'mgmt-cosmosdb/{}'.format(VERSION)) self._configure(**kwargs) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/_cosmos_db_management_client.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/_cosmos_db_management_client.py index c5abb79574e..dd59a291906 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/_cosmos_db_management_client.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/_cosmos_db_management_client.py @@ -38,7 +38,9 @@ from .operations import TableResourcesOperations from .operations import CassandraResourcesOperations from .operations import GremlinResourcesOperations -from .operations import CosmosDBManagementClientOperationsMixin +from .operations import LocationsOperations +from .operations import CassandraClustersOperations +from .operations import CassandraDataCentersOperations from .operations import NotebookWorkspacesOperations from .operations import PrivateEndpointConnectionsOperations from .operations import PrivateLinkResourcesOperations @@ -49,13 +51,12 @@ from .operations import RestorableMongodbDatabasesOperations from .operations import RestorableMongodbCollectionsOperations from .operations import RestorableMongodbResourcesOperations -from .operations import CassandraClustersOperations -from .operations import CassandraDataCentersOperations from .operations import ServiceOperations +from .operations import DataTransferJobsOperations from . import models -class CosmosDBManagementClient(CosmosDBManagementClientOperationsMixin): +class CosmosDBManagementClient(object): """Azure Cosmos DB Database Service Resource Provider REST API. :ivar database_accounts: DatabaseAccountsOperations operations @@ -96,6 +97,12 @@ class CosmosDBManagementClient(CosmosDBManagementClientOperationsMixin): :vartype cassandra_resources: azure.mgmt.cosmosdb.operations.CassandraResourcesOperations :ivar gremlin_resources: GremlinResourcesOperations operations :vartype gremlin_resources: azure.mgmt.cosmosdb.operations.GremlinResourcesOperations + :ivar locations: LocationsOperations operations + :vartype locations: azure.mgmt.cosmosdb.operations.LocationsOperations + :ivar cassandra_clusters: CassandraClustersOperations operations + :vartype cassandra_clusters: azure.mgmt.cosmosdb.operations.CassandraClustersOperations + :ivar cassandra_data_centers: CassandraDataCentersOperations operations + :vartype cassandra_data_centers: azure.mgmt.cosmosdb.operations.CassandraDataCentersOperations :ivar notebook_workspaces: NotebookWorkspacesOperations operations :vartype notebook_workspaces: azure.mgmt.cosmosdb.operations.NotebookWorkspacesOperations :ivar private_endpoint_connections: PrivateEndpointConnectionsOperations operations @@ -116,12 +123,10 @@ class CosmosDBManagementClient(CosmosDBManagementClientOperationsMixin): :vartype restorable_mongodb_collections: azure.mgmt.cosmosdb.operations.RestorableMongodbCollectionsOperations :ivar restorable_mongodb_resources: RestorableMongodbResourcesOperations operations :vartype restorable_mongodb_resources: azure.mgmt.cosmosdb.operations.RestorableMongodbResourcesOperations - :ivar cassandra_clusters: CassandraClustersOperations operations - :vartype cassandra_clusters: azure.mgmt.cosmosdb.operations.CassandraClustersOperations - :ivar cassandra_data_centers: CassandraDataCentersOperations operations - :vartype cassandra_data_centers: azure.mgmt.cosmosdb.operations.CassandraDataCentersOperations :ivar service: ServiceOperations operations :vartype service: azure.mgmt.cosmosdb.operations.ServiceOperations + :ivar data_transfer_jobs: DataTransferJobsOperations operations + :vartype data_transfer_jobs: azure.mgmt.cosmosdb.operations.DataTransferJobsOperations :param credential: Credential needed for the client to connect to Azure. :type credential: ~azure.core.credentials.TokenCredential :param subscription_id: The ID of the target subscription. @@ -186,6 +191,12 @@ def __init__( self._client, self._config, self._serialize, self._deserialize) self.gremlin_resources = GremlinResourcesOperations( self._client, self._config, self._serialize, self._deserialize) + self.locations = LocationsOperations( + self._client, self._config, self._serialize, self._deserialize) + self.cassandra_clusters = CassandraClustersOperations( + self._client, self._config, self._serialize, self._deserialize) + self.cassandra_data_centers = CassandraDataCentersOperations( + self._client, self._config, self._serialize, self._deserialize) self.notebook_workspaces = NotebookWorkspacesOperations( self._client, self._config, self._serialize, self._deserialize) self.private_endpoint_connections = PrivateEndpointConnectionsOperations( @@ -206,12 +217,10 @@ def __init__( self._client, self._config, self._serialize, self._deserialize) self.restorable_mongodb_resources = RestorableMongodbResourcesOperations( self._client, self._config, self._serialize, self._deserialize) - self.cassandra_clusters = CassandraClustersOperations( - self._client, self._config, self._serialize, self._deserialize) - self.cassandra_data_centers = CassandraDataCentersOperations( - self._client, self._config, self._serialize, self._deserialize) self.service = ServiceOperations( self._client, self._config, self._serialize, self._deserialize) + self.data_transfer_jobs = DataTransferJobsOperations( + self._client, self._config, self._serialize, self._deserialize) def _send_request(self, http_request, **kwargs): # type: (HttpRequest, Any) -> HttpResponse diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/_configuration.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/_configuration.py index 60bb9254b97..c807778dd42 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/_configuration.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/_configuration.py @@ -45,7 +45,7 @@ def __init__( self.credential = credential self.subscription_id = subscription_id - self.api_version = "2021-07-01-preview" + self.api_version = "2021-10-15-preview" self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) kwargs.setdefault('sdk_moniker', 'mgmt-cosmosdb/{}'.format(VERSION)) self._configure(**kwargs) diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/_cosmos_db_management_client.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/_cosmos_db_management_client.py index 4de01d4be8a..a238e02897e 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/_cosmos_db_management_client.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/_cosmos_db_management_client.py @@ -36,7 +36,9 @@ from .operations import TableResourcesOperations from .operations import CassandraResourcesOperations from .operations import GremlinResourcesOperations -from .operations import CosmosDBManagementClientOperationsMixin +from .operations import LocationsOperations +from .operations import CassandraClustersOperations +from .operations import CassandraDataCentersOperations from .operations import NotebookWorkspacesOperations from .operations import PrivateEndpointConnectionsOperations from .operations import PrivateLinkResourcesOperations @@ -47,13 +49,12 @@ from .operations import RestorableMongodbDatabasesOperations from .operations import RestorableMongodbCollectionsOperations from .operations import RestorableMongodbResourcesOperations -from .operations import CassandraClustersOperations -from .operations import CassandraDataCentersOperations from .operations import ServiceOperations +from .operations import DataTransferJobsOperations from .. import models -class CosmosDBManagementClient(CosmosDBManagementClientOperationsMixin): +class CosmosDBManagementClient(object): """Azure Cosmos DB Database Service Resource Provider REST API. :ivar database_accounts: DatabaseAccountsOperations operations @@ -94,6 +95,12 @@ class CosmosDBManagementClient(CosmosDBManagementClientOperationsMixin): :vartype cassandra_resources: azure.mgmt.cosmosdb.aio.operations.CassandraResourcesOperations :ivar gremlin_resources: GremlinResourcesOperations operations :vartype gremlin_resources: azure.mgmt.cosmosdb.aio.operations.GremlinResourcesOperations + :ivar locations: LocationsOperations operations + :vartype locations: azure.mgmt.cosmosdb.aio.operations.LocationsOperations + :ivar cassandra_clusters: CassandraClustersOperations operations + :vartype cassandra_clusters: azure.mgmt.cosmosdb.aio.operations.CassandraClustersOperations + :ivar cassandra_data_centers: CassandraDataCentersOperations operations + :vartype cassandra_data_centers: azure.mgmt.cosmosdb.aio.operations.CassandraDataCentersOperations :ivar notebook_workspaces: NotebookWorkspacesOperations operations :vartype notebook_workspaces: azure.mgmt.cosmosdb.aio.operations.NotebookWorkspacesOperations :ivar private_endpoint_connections: PrivateEndpointConnectionsOperations operations @@ -114,12 +121,10 @@ class CosmosDBManagementClient(CosmosDBManagementClientOperationsMixin): :vartype restorable_mongodb_collections: azure.mgmt.cosmosdb.aio.operations.RestorableMongodbCollectionsOperations :ivar restorable_mongodb_resources: RestorableMongodbResourcesOperations operations :vartype restorable_mongodb_resources: azure.mgmt.cosmosdb.aio.operations.RestorableMongodbResourcesOperations - :ivar cassandra_clusters: CassandraClustersOperations operations - :vartype cassandra_clusters: azure.mgmt.cosmosdb.aio.operations.CassandraClustersOperations - :ivar cassandra_data_centers: CassandraDataCentersOperations operations - :vartype cassandra_data_centers: azure.mgmt.cosmosdb.aio.operations.CassandraDataCentersOperations :ivar service: ServiceOperations operations :vartype service: azure.mgmt.cosmosdb.aio.operations.ServiceOperations + :ivar data_transfer_jobs: DataTransferJobsOperations operations + :vartype data_transfer_jobs: azure.mgmt.cosmosdb.aio.operations.DataTransferJobsOperations :param credential: Credential needed for the client to connect to Azure. :type credential: ~azure.core.credentials_async.AsyncTokenCredential :param subscription_id: The ID of the target subscription. @@ -183,6 +188,12 @@ def __init__( self._client, self._config, self._serialize, self._deserialize) self.gremlin_resources = GremlinResourcesOperations( self._client, self._config, self._serialize, self._deserialize) + self.locations = LocationsOperations( + self._client, self._config, self._serialize, self._deserialize) + self.cassandra_clusters = CassandraClustersOperations( + self._client, self._config, self._serialize, self._deserialize) + self.cassandra_data_centers = CassandraDataCentersOperations( + self._client, self._config, self._serialize, self._deserialize) self.notebook_workspaces = NotebookWorkspacesOperations( self._client, self._config, self._serialize, self._deserialize) self.private_endpoint_connections = PrivateEndpointConnectionsOperations( @@ -203,12 +214,10 @@ def __init__( self._client, self._config, self._serialize, self._deserialize) self.restorable_mongodb_resources = RestorableMongodbResourcesOperations( self._client, self._config, self._serialize, self._deserialize) - self.cassandra_clusters = CassandraClustersOperations( - self._client, self._config, self._serialize, self._deserialize) - self.cassandra_data_centers = CassandraDataCentersOperations( - self._client, self._config, self._serialize, self._deserialize) self.service = ServiceOperations( self._client, self._config, self._serialize, self._deserialize) + self.data_transfer_jobs = DataTransferJobsOperations( + self._client, self._config, self._serialize, self._deserialize) async def _send_request(self, http_request: HttpRequest, **kwargs: Any) -> AsyncHttpResponse: """Runs the network request through the client's chained policies. diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/__init__.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/__init__.py index a7c7808a801..807107e6f55 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/__init__.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/__init__.py @@ -25,7 +25,9 @@ from ._table_resources_operations import TableResourcesOperations from ._cassandra_resources_operations import CassandraResourcesOperations from ._gremlin_resources_operations import GremlinResourcesOperations -from ._cosmos_db_management_client_operations import CosmosDBManagementClientOperationsMixin +from ._locations_operations import LocationsOperations +from ._cassandra_clusters_operations import CassandraClustersOperations +from ._cassandra_data_centers_operations import CassandraDataCentersOperations from ._notebook_workspaces_operations import NotebookWorkspacesOperations from ._private_endpoint_connections_operations import PrivateEndpointConnectionsOperations from ._private_link_resources_operations import PrivateLinkResourcesOperations @@ -36,9 +38,8 @@ from ._restorable_mongodb_databases_operations import RestorableMongodbDatabasesOperations from ._restorable_mongodb_collections_operations import RestorableMongodbCollectionsOperations from ._restorable_mongodb_resources_operations import RestorableMongodbResourcesOperations -from ._cassandra_clusters_operations import CassandraClustersOperations -from ._cassandra_data_centers_operations import CassandraDataCentersOperations from ._service_operations import ServiceOperations +from ._data_transfer_jobs_operations import DataTransferJobsOperations __all__ = [ 'DatabaseAccountsOperations', @@ -60,7 +61,9 @@ 'TableResourcesOperations', 'CassandraResourcesOperations', 'GremlinResourcesOperations', - 'CosmosDBManagementClientOperationsMixin', + 'LocationsOperations', + 'CassandraClustersOperations', + 'CassandraDataCentersOperations', 'NotebookWorkspacesOperations', 'PrivateEndpointConnectionsOperations', 'PrivateLinkResourcesOperations', @@ -71,7 +74,6 @@ 'RestorableMongodbDatabasesOperations', 'RestorableMongodbCollectionsOperations', 'RestorableMongodbResourcesOperations', - 'CassandraClustersOperations', - 'CassandraDataCentersOperations', 'ServiceOperations', + 'DataTransferJobsOperations', ] diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_cassandra_clusters_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_cassandra_clusters_operations.py index 1d4def89693..de55507e125 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_cassandra_clusters_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_cassandra_clusters_operations.py @@ -59,7 +59,7 @@ def list_by_subscription( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -128,7 +128,7 @@ def list_by_resource_group( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -201,7 +201,7 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -248,7 +248,7 @@ async def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -357,7 +357,7 @@ async def _create_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -486,7 +486,7 @@ async def _update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -602,24 +602,24 @@ def get_long_running_output(pipeline_response): return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) begin_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}'} # type: ignore - async def _request_repair_initial( + async def _invoke_command_initial( self, resource_group_name: str, cluster_name: str, - body: "_models.RepairPostBody", + body: "_models.CommandPostBody", **kwargs: Any - ) -> None: - cls = kwargs.pop('cls', None) # type: ClsType[None] + ) -> "_models.CommandOutput": + cls = kwargs.pop('cls', None) # type: ClsType["_models.CommandOutput"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" # Construct URL - url = self._request_repair_initial.metadata['url'] # type: ignore + url = self._invoke_command_initial.metadata['url'] # type: ignore path_format_arguments = { 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), @@ -637,55 +637,58 @@ async def _request_repair_initial( header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') body_content_kwargs = {} # type: Dict[str, Any] - body_content = self._serialize.body(body, 'RepairPostBody') + body_content = self._serialize.body(body, 'CommandPostBody') body_content_kwargs['content'] = body_content request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) response = pipeline_response.http_response - if response.status_code not in [200]: + if response.status_code not in [202]: map_error(status_code=response.status_code, response=response, error_map=error_map) raise HttpResponseError(response=response, error_format=ARMErrorFormat) + deserialized = self._deserialize('CommandOutput', pipeline_response) + if cls: - return cls(pipeline_response, None, {}) + return cls(pipeline_response, deserialized, {}) - _request_repair_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/repair'} # type: ignore + return deserialized + _invoke_command_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/invokeCommand'} # type: ignore - async def begin_request_repair( + async def begin_invoke_command( self, resource_group_name: str, cluster_name: str, - body: "_models.RepairPostBody", + body: "_models.CommandPostBody", **kwargs: Any - ) -> AsyncLROPoller[None]: - """Request that repair begin on this cluster as soon as possible. + ) -> AsyncLROPoller["_models.CommandOutput"]: + """Invoke a command like nodetool for cassandra maintenance. :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param cluster_name: Managed Cassandra cluster name. :type cluster_name: str - :param body: Specification of what keyspaces and tables to run repair on. - :type body: ~azure.mgmt.cosmosdb.models.RepairPostBody + :param body: Specification which command to run where. + :type body: ~azure.mgmt.cosmosdb.models.CommandPostBody :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. - :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) - :rtype: ~azure.core.polling.AsyncLROPoller[None] + :return: An instance of AsyncLROPoller that returns either CommandOutput or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.cosmosdb.models.CommandOutput] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] - cls = kwargs.pop('cls', None) # type: ClsType[None] + cls = kwargs.pop('cls', None) # type: ClsType["_models.CommandOutput"] lro_delay = kwargs.pop( 'polling_interval', self._config.polling_interval ) cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] if cont_token is None: - raw_result = await self._request_repair_initial( + raw_result = await self._invoke_command_initial( resource_group_name=resource_group_name, cluster_name=cluster_name, body=body, @@ -697,8 +700,11 @@ async def begin_request_repair( kwargs.pop('content_type', None) def get_long_running_output(pipeline_response): + deserialized = self._deserialize('CommandOutput', pipeline_response) + if cls: - return cls(pipeline_response, None, {}) + return cls(pipeline_response, deserialized, {}) + return deserialized path_format_arguments = { 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -718,28 +724,117 @@ def get_long_running_output(pipeline_response): ) else: return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_request_repair.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/repair'} # type: ignore + begin_invoke_command.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/invokeCommand'} # type: ignore - async def _fetch_node_status_initial( + def list_backups( self, resource_group_name: str, cluster_name: str, **kwargs: Any - ) -> Optional["_models.ClusterNodeStatus"]: - cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ClusterNodeStatus"]] + ) -> AsyncIterable["_models.ListBackups"]: + """List the backups of this cluster that are available to restore. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param cluster_name: Managed Cassandra cluster name. + :type cluster_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListBackups or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.cosmosdb.models.ListBackups] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListBackups"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_backups.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str', max_length=100, min_length=1, pattern=r'^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('ListBackups', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list_backups.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/backups'} # type: ignore + + async def get_backup( + self, + resource_group_name: str, + cluster_name: str, + backup_id: str, + **kwargs: Any + ) -> "_models.BackupResource": + """Get the properties of an individual backup of this cluster that is available to restore. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param cluster_name: Managed Cassandra cluster name. + :type cluster_name: str + :param backup_id: Id of a restorable backup of a Cassandra cluster. + :type backup_id: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: BackupResource, or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.BackupResource + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupResource"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL - url = self._fetch_node_status_initial.metadata['url'] # type: ignore + url = self.get_backup.metadata['url'] # type: ignore path_format_arguments = { 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str', max_length=100, min_length=1, pattern=r'^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$'), + 'backupId': self._serialize.url("backup_id", backup_id, 'str', max_length=15, min_length=1, pattern=r'^[0-9]+$'), } url = self._client.format_url(url, **path_format_arguments) @@ -751,31 +846,75 @@ async def _fetch_node_status_initial( header_parameters = {} # type: Dict[str, Any] header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - request = self._client.post(url, query_parameters, header_parameters) + request = self._client.get(url, query_parameters, header_parameters) pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) response = pipeline_response.http_response - if response.status_code not in [200, 202]: + if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) raise HttpResponseError(response=response, error_format=ARMErrorFormat) - deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('ClusterNodeStatus', pipeline_response) + deserialized = self._deserialize('BackupResource', pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - _fetch_node_status_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/fetchNodeStatus'} # type: ignore + get_backup.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/backups/{backupId}'} # type: ignore + + async def _deallocate_initial( + self, + resource_group_name: str, + cluster_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + # Construct URL + url = self._deallocate_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str', max_length=100, min_length=1, pattern=r'^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.post(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _deallocate_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/deallocate'} # type: ignore - async def begin_fetch_node_status( + async def begin_deallocate( self, resource_group_name: str, cluster_name: str, **kwargs: Any - ) -> AsyncLROPoller["_models.ClusterNodeStatus"]: - """Request the status of all nodes in the cluster (as returned by 'nodetool status'). + ) -> AsyncLROPoller[None]: + """Deallocate the Managed Cassandra Cluster and Associated Data Centers. Deallocation will + deallocate the host virtual machine of this cluster, and reserved the data disk. This won't do + anything on an already deallocated cluster. Use Start to restart the cluster. :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str @@ -787,19 +926,19 @@ async def begin_fetch_node_status( Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. - :return: An instance of AsyncLROPoller that returns either ClusterNodeStatus or the result of cls(response) - :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.cosmosdb.models.ClusterNodeStatus] + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] - cls = kwargs.pop('cls', None) # type: ClsType["_models.ClusterNodeStatus"] + cls = kwargs.pop('cls', None) # type: ClsType[None] lro_delay = kwargs.pop( 'polling_interval', self._config.polling_interval ) cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] if cont_token is None: - raw_result = await self._fetch_node_status_initial( + raw_result = await self._deallocate_initial( resource_group_name=resource_group_name, cluster_name=cluster_name, cls=lambda x,y,z: x, @@ -810,11 +949,8 @@ async def begin_fetch_node_status( kwargs.pop('content_type', None) def get_long_running_output(pipeline_response): - deserialized = self._deserialize('ClusterNodeStatus', pipeline_response) - if cls: - return cls(pipeline_response, deserialized, {}) - return deserialized + return cls(pipeline_response, None, {}) path_format_arguments = { 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -834,117 +970,149 @@ def get_long_running_output(pipeline_response): ) else: return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_fetch_node_status.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/fetchNodeStatus'} # type: ignore + begin_deallocate.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/deallocate'} # type: ignore - def list_backups( + async def _start_initial( self, resource_group_name: str, cluster_name: str, **kwargs: Any - ) -> AsyncIterable["_models.ListBackups"]: - """List the backups of this cluster that are available to restore. - - :param resource_group_name: The name of the resource group. The name is case insensitive. - :type resource_group_name: str - :param cluster_name: Managed Cassandra cluster name. - :type cluster_name: str - :keyword callable cls: A custom type or function that will be passed the direct response - :return: An iterator like instance of either ListBackups or the result of cls(response) - :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.cosmosdb.models.ListBackups] - :raises: ~azure.core.exceptions.HttpResponseError - """ - cls = kwargs.pop('cls', None) # type: ClsType["_models.ListBackups"] + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" - def prepare_request(next_link=None): - # Construct headers - header_parameters = {} # type: Dict[str, Any] - header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + # Construct URL + url = self._start_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str', max_length=100, min_length=1, pattern=r'^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$'), + } + url = self._client.format_url(url, **path_format_arguments) - if not next_link: - # Construct URL - url = self.list_backups.metadata['url'] # type: ignore - path_format_arguments = { - 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), - 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str', max_length=100, min_length=1, pattern=r'^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$'), - } - url = self._client.format_url(url, **path_format_arguments) - # Construct parameters - query_parameters = {} # type: Dict[str, Any] - query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') - request = self._client.get(url, query_parameters, header_parameters) - else: - url = next_link - query_parameters = {} # type: Dict[str, Any] - request = self._client.get(url, query_parameters, header_parameters) - return request + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - async def extract_data(pipeline_response): - deserialized = self._deserialize('ListBackups', pipeline_response) - list_of_elem = deserialized.value - if cls: - list_of_elem = cls(list_of_elem) - return None, AsyncList(list_of_elem) + request = self._client.post(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response - async def get_next(next_link=None): - request = prepare_request(next_link) + if response.status_code not in [202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) - response = pipeline_response.http_response + if cls: + return cls(pipeline_response, None, {}) - if response.status_code not in [200]: - map_error(status_code=response.status_code, response=response, error_map=error_map) - raise HttpResponseError(response=response, error_format=ARMErrorFormat) + _start_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/start'} # type: ignore - return pipeline_response + async def begin_start( + self, + resource_group_name: str, + cluster_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Start the Managed Cassandra Cluster and Associated Data Centers. Start will start the host + virtual machine of this cluster with reserved data disk. This won't do anything on an already + running cluster. Use Deallocate to deallocate the cluster. - return AsyncItemPaged( - get_next, extract_data + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param cluster_name: Managed Cassandra cluster name. + :type cluster_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. + Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval ) - list_backups.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/backups'} # type: ignore + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._start_initial( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + cls=lambda x,y,z: x, + **kwargs + ) - async def get_backup( + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str', max_length=100, min_length=1, pattern=r'^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_start.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/start'} # type: ignore + + async def status( self, resource_group_name: str, cluster_name: str, - backup_id: str, **kwargs: Any - ) -> "_models.BackupResource": - """Get the properties of an individual backup of this cluster that is available to restore. + ) -> "_models.CassandraClusterPublicStatus": + """Gets the CPU, memory, and disk usage statistics for each Cassandra node in a cluster. :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param cluster_name: Managed Cassandra cluster name. :type cluster_name: str - :param backup_id: Id of a restorable backup of a Cassandra cluster. - :type backup_id: str :keyword callable cls: A custom type or function that will be passed the direct response - :return: BackupResource, or the result of cls(response) - :rtype: ~azure.mgmt.cosmosdb.models.BackupResource + :return: CassandraClusterPublicStatus, or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.CassandraClusterPublicStatus :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupResource"] + cls = kwargs.pop('cls', None) # type: ClsType["_models.CassandraClusterPublicStatus"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL - url = self.get_backup.metadata['url'] # type: ignore + url = self.status.metadata['url'] # type: ignore path_format_arguments = { 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str', max_length=100, min_length=1, pattern=r'^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$'), - 'backupId': self._serialize.url("backup_id", backup_id, 'str', max_length=15, min_length=1, pattern=r'^[0-9]+$'), } url = self._client.format_url(url, **path_format_arguments) @@ -964,10 +1132,10 @@ async def get_backup( map_error(status_code=response.status_code, response=response, error_map=error_map) raise HttpResponseError(response=response, error_format=ARMErrorFormat) - deserialized = self._deserialize('BackupResource', pipeline_response) + deserialized = self._deserialize('CassandraClusterPublicStatus', pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - get_backup.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/backups/{backupId}'} # type: ignore + status.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/status'} # type: ignore diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_cassandra_data_centers_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_cassandra_data_centers_operations.py index 0e07a7e4289..6ef93f656bd 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_cassandra_data_centers_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_cassandra_data_centers_operations.py @@ -65,7 +65,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -142,7 +142,7 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -191,7 +191,7 @@ async def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -307,7 +307,7 @@ async def _create_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -443,7 +443,7 @@ async def _update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_cassandra_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_cassandra_resources_operations.py index 058af5373e5..e056c5e48ee 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_cassandra_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_cassandra_resources_operations.py @@ -65,7 +65,7 @@ def list_cassandra_keyspaces( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -143,7 +143,7 @@ async def get_cassandra_keyspace( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -193,7 +193,7 @@ async def _create_update_cassandra_keyspace_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -326,7 +326,7 @@ async def _delete_cassandra_keyspace_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_cassandra_keyspace_initial.metadata['url'] # type: ignore @@ -453,7 +453,7 @@ async def get_cassandra_keyspace_throughput( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -503,7 +503,7 @@ async def _update_cassandra_keyspace_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -636,7 +636,7 @@ async def _migrate_cassandra_keyspace_to_autoscale_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -759,7 +759,7 @@ async def _migrate_cassandra_keyspace_to_manual_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -895,7 +895,7 @@ def list_cassandra_tables( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -976,7 +976,7 @@ async def get_cassandra_table( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1028,7 +1028,7 @@ async def _create_update_cassandra_table_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1168,7 +1168,7 @@ async def _delete_cassandra_table_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_cassandra_table_initial.metadata['url'] # type: ignore @@ -1304,7 +1304,7 @@ async def get_cassandra_table_throughput( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1356,7 +1356,7 @@ async def _update_cassandra_table_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1496,7 +1496,7 @@ async def _migrate_cassandra_table_to_autoscale_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1626,7 +1626,7 @@ async def _migrate_cassandra_table_to_manual_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1768,7 +1768,7 @@ def list_cassandra_views( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -1849,7 +1849,7 @@ async def get_cassandra_view( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1901,7 +1901,7 @@ async def _create_update_cassandra_view_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -2041,7 +2041,7 @@ async def _delete_cassandra_view_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_cassandra_view_initial.metadata['url'] # type: ignore @@ -2177,7 +2177,7 @@ async def get_cassandra_view_throughput( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -2229,7 +2229,7 @@ async def _update_cassandra_view_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -2369,7 +2369,7 @@ async def _migrate_cassandra_view_to_autoscale_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -2499,7 +2499,7 @@ async def _migrate_cassandra_view_to_manual_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_collection_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_collection_operations.py index d6e7d2667ae..c067fa05eb3 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_collection_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_collection_operations.py @@ -75,7 +75,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -162,7 +162,7 @@ def list_usages( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -246,7 +246,7 @@ def list_metric_definitions( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_collection_partition_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_collection_partition_operations.py index c8346c18f1a..19940e84c5f 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_collection_partition_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_collection_partition_operations.py @@ -75,7 +75,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -162,7 +162,7 @@ def list_usages( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_collection_partition_region_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_collection_partition_region_operations.py index 8e255eec67d..44db09148e0 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_collection_partition_region_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_collection_partition_region_operations.py @@ -78,7 +78,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_collection_region_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_collection_region_operations.py index 3f5b718e1a3..f24252943a4 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_collection_region_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_collection_region_operations.py @@ -78,7 +78,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_data_transfer_jobs_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_data_transfer_jobs_operations.py new file mode 100644 index 00000000000..159b58628f5 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_data_transfer_jobs_operations.py @@ -0,0 +1,248 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar +import warnings + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models as _models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class DataTransferJobsOperations: + """DataTransferJobsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.cosmosdb.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def create( + self, + resource_group_name: str, + account_name: str, + job_name: str, + job_create_parameters: "_models.CreateJobRequest", + **kwargs: Any + ) -> "_models.DataTransferJobGetResults": + """Creates a Data Transfer Job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :param job_name: Name of the Data Transfer Job. + :type job_name: str + :param job_create_parameters: + :type job_create_parameters: ~azure.mgmt.cosmosdb.models.CreateJobRequest + :keyword callable cls: A custom type or function that will be passed the direct response + :return: DataTransferJobGetResults, or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.DataTransferJobGetResults + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.DataTransferJobGetResults"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self.create.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(job_create_parameters, 'CreateJobRequest') + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('DataTransferJobGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + create.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/dataTransferJobs/{jobName}'} # type: ignore + + async def get( + self, + resource_group_name: str, + account_name: str, + job_name: str, + **kwargs: Any + ) -> "_models.DataTransferJobGetResults": + """Get a Data Transfer Job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :param job_name: Name of the Data Transfer Job. + :type job_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: DataTransferJobGetResults, or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.DataTransferJobGetResults + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.DataTransferJobGetResults"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('DataTransferJobGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/dataTransferJobs/{jobName}'} # type: ignore + + def list_by_database_account( + self, + resource_group_name: str, + account_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.DataTransferJobFeedResults"]: + """Get a list of Data Transfer jobs. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either DataTransferJobFeedResults or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.cosmosdb.models.DataTransferJobFeedResults] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.DataTransferJobFeedResults"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_by_database_account.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('DataTransferJobFeedResults', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_database_account.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/dataTransferJobs'} # type: ignore diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_database_account_region_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_database_account_region_operations.py index 16cef787b1d..80259ba3bf7 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_database_account_region_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_database_account_region_operations.py @@ -71,7 +71,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_database_accounts_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_database_accounts_operations.py index be33c45d936..8360772378c 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_database_accounts_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_database_accounts_operations.py @@ -65,7 +65,7 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -113,7 +113,7 @@ async def _update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -237,7 +237,7 @@ async def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -361,7 +361,7 @@ async def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_initial.metadata['url'] # type: ignore @@ -468,7 +468,7 @@ async def _failover_priority_change_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") # Construct URL @@ -591,7 +591,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -660,7 +660,7 @@ def list_by_resource_group( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -733,7 +733,7 @@ async def list_keys( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -791,7 +791,7 @@ async def list_connection_strings( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -839,7 +839,7 @@ async def _offline_region_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -958,7 +958,7 @@ async def _online_region_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1087,7 +1087,7 @@ async def get_read_only_keys( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1145,7 +1145,7 @@ async def list_read_only_keys( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1193,7 +1193,7 @@ async def _regenerate_key_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") # Construct URL @@ -1318,7 +1318,7 @@ async def check_name_exists( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self.check_name_exists.metadata['url'] # type: ignore @@ -1375,7 +1375,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -1454,7 +1454,7 @@ def list_usages( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -1530,7 +1530,7 @@ def list_metric_definitions( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_database_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_database_operations.py index d9ae67a8275..f529043f3b3 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_database_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_database_operations.py @@ -72,7 +72,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -155,7 +155,7 @@ def list_usages( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -235,7 +235,7 @@ def list_metric_definitions( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_graph_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_graph_resources_operations.py index f65ec3e0bee..6ffea56d40c 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_graph_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_graph_resources_operations.py @@ -65,7 +65,7 @@ def list_graphs( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -143,7 +143,7 @@ async def get_graph( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -193,7 +193,7 @@ async def _create_update_graph_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -325,7 +325,7 @@ async def _delete_graph_resource_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_graph_resource_initial.metadata['url'] # type: ignore diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_gremlin_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_gremlin_resources_operations.py index 0b2dbd84500..be80ff63f3b 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_gremlin_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_gremlin_resources_operations.py @@ -65,7 +65,7 @@ def list_gremlin_databases( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -143,7 +143,7 @@ async def get_gremlin_database( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -193,7 +193,7 @@ async def _create_update_gremlin_database_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -326,7 +326,7 @@ async def _delete_gremlin_database_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_gremlin_database_initial.metadata['url'] # type: ignore @@ -453,7 +453,7 @@ async def get_gremlin_database_throughput( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -503,7 +503,7 @@ async def _update_gremlin_database_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -636,7 +636,7 @@ async def _migrate_gremlin_database_to_autoscale_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -759,7 +759,7 @@ async def _migrate_gremlin_database_to_manual_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -895,7 +895,7 @@ def list_gremlin_graphs( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -976,7 +976,7 @@ async def get_gremlin_graph( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1028,7 +1028,7 @@ async def _create_update_gremlin_graph_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1168,7 +1168,7 @@ async def _delete_gremlin_graph_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_gremlin_graph_initial.metadata['url'] # type: ignore @@ -1304,7 +1304,7 @@ async def get_gremlin_graph_throughput( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1356,7 +1356,7 @@ async def _update_gremlin_graph_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1496,7 +1496,7 @@ async def _migrate_gremlin_graph_to_autoscale_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1626,7 +1626,7 @@ async def _migrate_gremlin_graph_to_manual_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_locations_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_locations_operations.py new file mode 100644 index 00000000000..2b696a5a1e7 --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_locations_operations.py @@ -0,0 +1,162 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar +import warnings + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models as _models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class LocationsOperations: + """LocationsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.cosmosdb.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def list( + self, + **kwargs: Any + ) -> AsyncIterable["_models.LocationListResult"]: + """List Cosmos DB locations and their properties. + + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either LocationListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.cosmosdb.models.LocationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.LocationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('LocationListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/locations'} # type: ignore + + async def get( + self, + location: str, + **kwargs: Any + ) -> "_models.LocationGetResult": + """Get the properties of an existing Cosmos DB location. + + :param location: Cosmos DB region, with spaces between words and each word capitalized. + :type location: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: LocationGetResult, or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.LocationGetResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.LocationGetResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'location': self._serialize.url("location", location, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('LocationGetResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/locations/{location}'} # type: ignore diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_mongo_db_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_mongo_db_resources_operations.py index 8e75deeb311..2b936ee6536 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_mongo_db_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_mongo_db_resources_operations.py @@ -65,7 +65,7 @@ def list_mongo_db_databases( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -143,7 +143,7 @@ async def get_mongo_db_database( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -193,7 +193,7 @@ async def _create_update_mongo_db_database_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -326,7 +326,7 @@ async def _delete_mongo_db_database_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_mongo_db_database_initial.metadata['url'] # type: ignore @@ -453,7 +453,7 @@ async def get_mongo_db_database_throughput( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -503,7 +503,7 @@ async def _update_mongo_db_database_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -636,7 +636,7 @@ async def _migrate_mongo_db_database_to_autoscale_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -759,7 +759,7 @@ async def _migrate_mongo_db_database_to_manual_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -895,7 +895,7 @@ def list_mongo_db_collections( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -976,7 +976,7 @@ async def get_mongo_db_collection( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1028,7 +1028,7 @@ async def _create_update_mongo_db_collection_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1168,7 +1168,7 @@ async def _delete_mongo_db_collection_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_mongo_db_collection_initial.metadata['url'] # type: ignore @@ -1304,7 +1304,7 @@ async def get_mongo_db_collection_throughput( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1356,7 +1356,7 @@ async def _update_mongo_db_collection_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1496,7 +1496,7 @@ async def _migrate_mongo_db_collection_to_autoscale_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1626,7 +1626,7 @@ async def _migrate_mongo_db_collection_to_manual_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1742,3 +1742,915 @@ def get_long_running_output(pipeline_response): else: return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) begin_migrate_mongo_db_collection_to_manual_throughput.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbDatabases/{databaseName}/collections/{collectionName}/throughputSettings/default/migrateToManualThroughput'} # type: ignore + + async def _retrieve_continuous_backup_information_initial( + self, + resource_group_name: str, + account_name: str, + database_name: str, + collection_name: str, + location: "_models.ContinuousBackupRestoreLocation", + **kwargs: Any + ) -> Optional["_models.BackupInformation"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.BackupInformation"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._retrieve_continuous_backup_information_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + 'databaseName': self._serialize.url("database_name", database_name, 'str'), + 'collectionName': self._serialize.url("collection_name", collection_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(location, 'ContinuousBackupRestoreLocation') + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('BackupInformation', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _retrieve_continuous_backup_information_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbDatabases/{databaseName}/collections/{collectionName}/retrieveContinuousBackupInformation'} # type: ignore + + async def begin_retrieve_continuous_backup_information( + self, + resource_group_name: str, + account_name: str, + database_name: str, + collection_name: str, + location: "_models.ContinuousBackupRestoreLocation", + **kwargs: Any + ) -> AsyncLROPoller["_models.BackupInformation"]: + """Retrieves continuous backup information for a Mongodb collection. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :param database_name: Cosmos DB database name. + :type database_name: str + :param collection_name: Cosmos DB collection name. + :type collection_name: str + :param location: The name of the continuous backup restore location. + :type location: ~azure.mgmt.cosmosdb.models.ContinuousBackupRestoreLocation + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. + Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either BackupInformation or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.cosmosdb.models.BackupInformation] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupInformation"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._retrieve_continuous_backup_information_initial( + resource_group_name=resource_group_name, + account_name=account_name, + database_name=database_name, + collection_name=collection_name, + location=location, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('BackupInformation', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + 'databaseName': self._serialize.url("database_name", database_name, 'str'), + 'collectionName': self._serialize.url("collection_name", collection_name, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_retrieve_continuous_backup_information.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbDatabases/{databaseName}/collections/{collectionName}/retrieveContinuousBackupInformation'} # type: ignore + + async def get_mongo_role_definition( + self, + mongo_role_definition_id: str, + resource_group_name: str, + account_name: str, + **kwargs: Any + ) -> "_models.MongoRoleDefinitionGetResults": + """Retrieves the properties of an existing Azure Cosmos DB Mongo Role Definition with the given + Id. + + :param mongo_role_definition_id: The ID for the Role Definition {dbName.roleName}. + :type mongo_role_definition_id: str + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: MongoRoleDefinitionGetResults, or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.MongoRoleDefinitionGetResults + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.MongoRoleDefinitionGetResults"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + # Construct URL + url = self.get_mongo_role_definition.metadata['url'] # type: ignore + path_format_arguments = { + 'mongoRoleDefinitionId': self._serialize.url("mongo_role_definition_id", mongo_role_definition_id, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('MongoRoleDefinitionGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get_mongo_role_definition.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbRoleDefinitions/{mongoRoleDefinitionId}'} # type: ignore + + async def _create_update_mongo_role_definition_initial( + self, + mongo_role_definition_id: str, + resource_group_name: str, + account_name: str, + create_update_mongo_role_definition_parameters: "_models.MongoRoleDefinitionCreateUpdateParameters", + **kwargs: Any + ) -> Optional["_models.MongoRoleDefinitionGetResults"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.MongoRoleDefinitionGetResults"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._create_update_mongo_role_definition_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'mongoRoleDefinitionId': self._serialize.url("mongo_role_definition_id", mongo_role_definition_id, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(create_update_mongo_role_definition_parameters, 'MongoRoleDefinitionCreateUpdateParameters') + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('MongoRoleDefinitionGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _create_update_mongo_role_definition_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbRoleDefinitions/{mongoRoleDefinitionId}'} # type: ignore + + async def begin_create_update_mongo_role_definition( + self, + mongo_role_definition_id: str, + resource_group_name: str, + account_name: str, + create_update_mongo_role_definition_parameters: "_models.MongoRoleDefinitionCreateUpdateParameters", + **kwargs: Any + ) -> AsyncLROPoller["_models.MongoRoleDefinitionGetResults"]: + """Creates or updates an Azure Cosmos DB Mongo Role Definition. + + :param mongo_role_definition_id: The ID for the Role Definition {dbName.roleName}. + :type mongo_role_definition_id: str + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :param create_update_mongo_role_definition_parameters: The properties required to create or + update a Role Definition. + :type create_update_mongo_role_definition_parameters: ~azure.mgmt.cosmosdb.models.MongoRoleDefinitionCreateUpdateParameters + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. + Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either MongoRoleDefinitionGetResults or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.cosmosdb.models.MongoRoleDefinitionGetResults] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.MongoRoleDefinitionGetResults"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_update_mongo_role_definition_initial( + mongo_role_definition_id=mongo_role_definition_id, + resource_group_name=resource_group_name, + account_name=account_name, + create_update_mongo_role_definition_parameters=create_update_mongo_role_definition_parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('MongoRoleDefinitionGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'mongoRoleDefinitionId': self._serialize.url("mongo_role_definition_id", mongo_role_definition_id, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_create_update_mongo_role_definition.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbRoleDefinitions/{mongoRoleDefinitionId}'} # type: ignore + + async def _delete_mongo_role_definition_initial( + self, + mongo_role_definition_id: str, + resource_group_name: str, + account_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + # Construct URL + url = self._delete_mongo_role_definition_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'mongoRoleDefinitionId': self._serialize.url("mongo_role_definition_id", mongo_role_definition_id, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.delete(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_mongo_role_definition_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbRoleDefinitions/{mongoRoleDefinitionId}'} # type: ignore + + async def begin_delete_mongo_role_definition( + self, + mongo_role_definition_id: str, + resource_group_name: str, + account_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes an existing Azure Cosmos DB Mongo Role Definition. + + :param mongo_role_definition_id: The ID for the Role Definition {dbName.roleName}. + :type mongo_role_definition_id: str + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. + Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_mongo_role_definition_initial( + mongo_role_definition_id=mongo_role_definition_id, + resource_group_name=resource_group_name, + account_name=account_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'mongoRoleDefinitionId': self._serialize.url("mongo_role_definition_id", mongo_role_definition_id, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_delete_mongo_role_definition.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbRoleDefinitions/{mongoRoleDefinitionId}'} # type: ignore + + def list_mongo_role_definitions( + self, + resource_group_name: str, + account_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.MongoRoleDefinitionListResult"]: + """Retrieves the list of all Azure Cosmos DB Mongo Role Definitions. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either MongoRoleDefinitionListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.cosmosdb.models.MongoRoleDefinitionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.MongoRoleDefinitionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_mongo_role_definitions.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('MongoRoleDefinitionListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list_mongo_role_definitions.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbRoleDefinitions'} # type: ignore + + async def get_mongo_user_definition( + self, + mongo_user_definition_id: str, + resource_group_name: str, + account_name: str, + **kwargs: Any + ) -> "_models.MongoUserDefinitionGetResults": + """Retrieves the properties of an existing Azure Cosmos DB Mongo User Definition with the given + Id. + + :param mongo_user_definition_id: The ID for the User Definition {dbName.userName}. + :type mongo_user_definition_id: str + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: MongoUserDefinitionGetResults, or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.MongoUserDefinitionGetResults + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.MongoUserDefinitionGetResults"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + # Construct URL + url = self.get_mongo_user_definition.metadata['url'] # type: ignore + path_format_arguments = { + 'mongoUserDefinitionId': self._serialize.url("mongo_user_definition_id", mongo_user_definition_id, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('MongoUserDefinitionGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get_mongo_user_definition.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbUserDefinitions/{mongoUserDefinitionId}'} # type: ignore + + async def _create_update_mongo_user_definition_initial( + self, + mongo_user_definition_id: str, + resource_group_name: str, + account_name: str, + create_update_mongo_user_definition_parameters: "_models.MongoUserDefinitionCreateUpdateParameters", + **kwargs: Any + ) -> Optional["_models.MongoUserDefinitionGetResults"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.MongoUserDefinitionGetResults"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._create_update_mongo_user_definition_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'mongoUserDefinitionId': self._serialize.url("mongo_user_definition_id", mongo_user_definition_id, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(create_update_mongo_user_definition_parameters, 'MongoUserDefinitionCreateUpdateParameters') + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('MongoUserDefinitionGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _create_update_mongo_user_definition_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbUserDefinitions/{mongoUserDefinitionId}'} # type: ignore + + async def begin_create_update_mongo_user_definition( + self, + mongo_user_definition_id: str, + resource_group_name: str, + account_name: str, + create_update_mongo_user_definition_parameters: "_models.MongoUserDefinitionCreateUpdateParameters", + **kwargs: Any + ) -> AsyncLROPoller["_models.MongoUserDefinitionGetResults"]: + """Creates or updates an Azure Cosmos DB Mongo User Definition. + + :param mongo_user_definition_id: The ID for the User Definition {dbName.userName}. + :type mongo_user_definition_id: str + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :param create_update_mongo_user_definition_parameters: The properties required to create or + update a User Definition. + :type create_update_mongo_user_definition_parameters: ~azure.mgmt.cosmosdb.models.MongoUserDefinitionCreateUpdateParameters + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. + Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either MongoUserDefinitionGetResults or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.cosmosdb.models.MongoUserDefinitionGetResults] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.MongoUserDefinitionGetResults"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_update_mongo_user_definition_initial( + mongo_user_definition_id=mongo_user_definition_id, + resource_group_name=resource_group_name, + account_name=account_name, + create_update_mongo_user_definition_parameters=create_update_mongo_user_definition_parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('MongoUserDefinitionGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'mongoUserDefinitionId': self._serialize.url("mongo_user_definition_id", mongo_user_definition_id, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_create_update_mongo_user_definition.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbUserDefinitions/{mongoUserDefinitionId}'} # type: ignore + + async def _delete_mongo_user_definition_initial( + self, + mongo_user_definition_id: str, + resource_group_name: str, + account_name: str, + **kwargs: Any + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + # Construct URL + url = self._delete_mongo_user_definition_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'mongoUserDefinitionId': self._serialize.url("mongo_user_definition_id", mongo_user_definition_id, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.delete(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_mongo_user_definition_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbUserDefinitions/{mongoUserDefinitionId}'} # type: ignore + + async def begin_delete_mongo_user_definition( + self, + mongo_user_definition_id: str, + resource_group_name: str, + account_name: str, + **kwargs: Any + ) -> AsyncLROPoller[None]: + """Deletes an existing Azure Cosmos DB Mongo User Definition. + + :param mongo_user_definition_id: The ID for the User Definition {dbName.userName}. + :type mongo_user_definition_id: str + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. + Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_mongo_user_definition_initial( + mongo_user_definition_id=mongo_user_definition_id, + resource_group_name=resource_group_name, + account_name=account_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'mongoUserDefinitionId': self._serialize.url("mongo_user_definition_id", mongo_user_definition_id, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_delete_mongo_user_definition.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbUserDefinitions/{mongoUserDefinitionId}'} # type: ignore + + def list_mongo_user_definitions( + self, + resource_group_name: str, + account_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.MongoUserDefinitionListResult"]: + """Retrieves the list of all Azure Cosmos DB Mongo User Definition. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either MongoUserDefinitionListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.cosmosdb.models.MongoUserDefinitionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.MongoUserDefinitionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_mongo_user_definitions.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('MongoUserDefinitionListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list_mongo_user_definitions.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbUserDefinitions'} # type: ignore diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_notebook_workspaces_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_notebook_workspaces_operations.py index 5488f88866d..ab39dda7ea8 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_notebook_workspaces_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_notebook_workspaces_operations.py @@ -65,7 +65,7 @@ def list_by_database_account( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -143,7 +143,7 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -194,7 +194,7 @@ async def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -326,7 +326,7 @@ async def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -455,7 +455,7 @@ async def list_connection_info( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -505,7 +505,7 @@ async def _regenerate_auth_token_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -621,7 +621,7 @@ async def _start_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_operations.py index bfeb2f139a3..346501bbd04 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_operations.py @@ -57,7 +57,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_partition_key_range_id_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_partition_key_range_id_operations.py index af7028cef78..cbd94f1857a 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_partition_key_range_id_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_partition_key_range_id_operations.py @@ -77,7 +77,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_partition_key_range_id_region_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_partition_key_range_id_region_operations.py index 1b0d6bcfcdc..d41027aabd7 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_partition_key_range_id_region_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_partition_key_range_id_region_operations.py @@ -81,7 +81,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_percentile_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_percentile_operations.py index 2507cadc3b2..115cabe15be 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_percentile_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_percentile_operations.py @@ -69,7 +69,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_percentile_source_target_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_percentile_source_target_operations.py index c7befa09b34..45065f12fb4 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_percentile_source_target_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_percentile_source_target_operations.py @@ -77,7 +77,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_percentile_target_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_percentile_target_operations.py index 58c388ca36e..e8635b4215b 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_percentile_target_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_percentile_target_operations.py @@ -73,7 +73,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_private_endpoint_connections_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_private_endpoint_connections_operations.py index 62954af56d4..edb42bf2af8 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_private_endpoint_connections_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_private_endpoint_connections_operations.py @@ -65,7 +65,7 @@ def list_by_database_account( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -142,7 +142,7 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -192,7 +192,7 @@ async def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -325,7 +325,7 @@ async def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_private_link_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_private_link_resources_operations.py index 816102320c2..20c24911ae9 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_private_link_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_private_link_resources_operations.py @@ -63,7 +63,7 @@ def list_by_database_account( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -140,7 +140,7 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_database_accounts_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_database_accounts_operations.py index fde3489c5f5..81c5b89a977 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_database_accounts_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_database_accounts_operations.py @@ -62,7 +62,7 @@ def list_by_location( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -130,7 +130,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -203,7 +203,7 @@ async def get_by_location( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_mongodb_collections_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_mongodb_collections_operations.py index 6a33eadd6b0..9729b0921c9 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_mongodb_collections_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_mongodb_collections_operations.py @@ -68,7 +68,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_mongodb_databases_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_mongodb_databases_operations.py index 7ae4d775bcd..cba10e92524 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_mongodb_databases_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_mongodb_databases_operations.py @@ -66,7 +66,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_mongodb_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_mongodb_resources_operations.py index 7d252b39ff8..f52317208ed 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_mongodb_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_mongodb_resources_operations.py @@ -72,7 +72,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_sql_containers_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_sql_containers_operations.py index 6a7094a952e..8465a374282 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_sql_containers_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_sql_containers_operations.py @@ -74,7 +74,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_sql_databases_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_sql_databases_operations.py index d38d7ac721c..089a4ffe745 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_sql_databases_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_sql_databases_operations.py @@ -66,7 +66,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_sql_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_sql_resources_operations.py index 437c5c96c68..d4d41f85632 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_sql_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_restorable_sql_resources_operations.py @@ -72,7 +72,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_service_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_service_operations.py index d046ec679f4..cb8f8ee88ee 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_service_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_service_operations.py @@ -65,7 +65,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -130,7 +130,7 @@ async def _create_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -275,7 +275,7 @@ async def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -324,7 +324,7 @@ async def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_sql_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_sql_resources_operations.py index aa7430cf409..76a5f0207e4 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_sql_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_sql_resources_operations.py @@ -65,7 +65,7 @@ def list_sql_databases( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -143,7 +143,7 @@ async def get_sql_database( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -193,7 +193,7 @@ async def _create_update_sql_database_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -326,7 +326,7 @@ async def _delete_sql_database_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_sql_database_initial.metadata['url'] # type: ignore @@ -453,7 +453,7 @@ async def get_sql_database_throughput( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -503,7 +503,7 @@ async def _update_sql_database_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -636,7 +636,7 @@ async def _migrate_sql_database_to_autoscale_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -759,7 +759,7 @@ async def _migrate_sql_database_to_manual_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -870,6 +870,292 @@ def get_long_running_output(pipeline_response): return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) begin_migrate_sql_database_to_manual_throughput.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/sqlDatabases/{databaseName}/throughputSettings/default/migrateToManualThroughput'} # type: ignore + def list_client_encryption_keys( + self, + resource_group_name: str, + account_name: str, + database_name: str, + **kwargs: Any + ) -> AsyncIterable["_models.ClientEncryptionKeysListResult"]: + """Lists the ClientEncryptionKeys under an existing Azure Cosmos DB SQL database. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :param database_name: Cosmos DB database name. + :type database_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ClientEncryptionKeysListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.cosmosdb.models.ClientEncryptionKeysListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ClientEncryptionKeysListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_client_encryption_keys.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + 'databaseName': self._serialize.url("database_name", database_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('ClientEncryptionKeysListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list_client_encryption_keys.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/sqlDatabases/{databaseName}/clientEncryptionKeys'} # type: ignore + + async def get_client_encryption_key( + self, + resource_group_name: str, + account_name: str, + database_name: str, + client_encryption_key_name: str, + **kwargs: Any + ) -> "_models.ClientEncryptionKeyGetResults": + """Gets the ClientEncryptionKey under an existing Azure Cosmos DB SQL database. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :param database_name: Cosmos DB database name. + :type database_name: str + :param client_encryption_key_name: Cosmos DB ClientEncryptionKey name. + :type client_encryption_key_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ClientEncryptionKeyGetResults, or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.ClientEncryptionKeyGetResults + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ClientEncryptionKeyGetResults"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + # Construct URL + url = self.get_client_encryption_key.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + 'databaseName': self._serialize.url("database_name", database_name, 'str'), + 'clientEncryptionKeyName': self._serialize.url("client_encryption_key_name", client_encryption_key_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ClientEncryptionKeyGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get_client_encryption_key.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/sqlDatabases/{databaseName}/clientEncryptionKeys/{clientEncryptionKeyName}'} # type: ignore + + async def _create_update_client_encryption_key_initial( + self, + resource_group_name: str, + account_name: str, + database_name: str, + client_encryption_key_name: str, + create_update_client_encryption_key_parameters: "_models.ClientEncryptionKeyCreateUpdateParameters", + **kwargs: Any + ) -> Optional["_models.ClientEncryptionKeyGetResults"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ClientEncryptionKeyGetResults"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._create_update_client_encryption_key_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + 'databaseName': self._serialize.url("database_name", database_name, 'str'), + 'clientEncryptionKeyName': self._serialize.url("client_encryption_key_name", client_encryption_key_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(create_update_client_encryption_key_parameters, 'ClientEncryptionKeyCreateUpdateParameters') + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ClientEncryptionKeyGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _create_update_client_encryption_key_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/sqlDatabases/{databaseName}/clientEncryptionKeys/{clientEncryptionKeyName}'} # type: ignore + + async def begin_create_update_client_encryption_key( + self, + resource_group_name: str, + account_name: str, + database_name: str, + client_encryption_key_name: str, + create_update_client_encryption_key_parameters: "_models.ClientEncryptionKeyCreateUpdateParameters", + **kwargs: Any + ) -> AsyncLROPoller["_models.ClientEncryptionKeyGetResults"]: + """Create or update a ClientEncryptionKey. This API is meant to be invoked via tools such as the + Azure Powershell (instead of directly). + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :param database_name: Cosmos DB database name. + :type database_name: str + :param client_encryption_key_name: Cosmos DB ClientEncryptionKey name. + :type client_encryption_key_name: str + :param create_update_client_encryption_key_parameters: The parameters to provide for the client + encryption key. + :type create_update_client_encryption_key_parameters: ~azure.mgmt.cosmosdb.models.ClientEncryptionKeyCreateUpdateParameters + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be AsyncARMPolling. + Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ClientEncryptionKeyGetResults or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.cosmosdb.models.ClientEncryptionKeyGetResults] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ClientEncryptionKeyGetResults"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_update_client_encryption_key_initial( + resource_group_name=resource_group_name, + account_name=account_name, + database_name=database_name, + client_encryption_key_name=client_encryption_key_name, + create_update_client_encryption_key_parameters=create_update_client_encryption_key_parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('ClientEncryptionKeyGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + 'databaseName': self._serialize.url("database_name", database_name, 'str'), + 'clientEncryptionKeyName': self._serialize.url("client_encryption_key_name", client_encryption_key_name, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_create_update_client_encryption_key.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/sqlDatabases/{databaseName}/clientEncryptionKeys/{clientEncryptionKeyName}'} # type: ignore + def list_sql_containers( self, resource_group_name: str, @@ -895,7 +1181,7 @@ def list_sql_containers( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -976,7 +1262,7 @@ async def get_sql_container( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1028,7 +1314,7 @@ async def _create_update_sql_container_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1168,7 +1454,7 @@ async def _delete_sql_container_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_sql_container_initial.metadata['url'] # type: ignore @@ -1304,7 +1590,7 @@ async def get_sql_container_throughput( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1356,7 +1642,7 @@ async def _update_sql_container_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1496,7 +1782,7 @@ async def _migrate_sql_container_to_autoscale_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1626,7 +1912,7 @@ async def _migrate_sql_container_to_manual_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1771,7 +2057,7 @@ def list_sql_stored_procedures( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -1856,7 +2142,7 @@ async def get_sql_stored_procedure( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1910,7 +2196,7 @@ async def _create_update_sql_stored_procedure_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -2057,7 +2343,7 @@ async def _delete_sql_stored_procedure_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_sql_stored_procedure_initial.metadata['url'] # type: ignore @@ -2198,7 +2484,7 @@ def list_sql_user_defined_functions( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -2283,7 +2569,7 @@ async def get_sql_user_defined_function( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -2337,7 +2623,7 @@ async def _create_update_sql_user_defined_function_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -2484,7 +2770,7 @@ async def _delete_sql_user_defined_function_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_sql_user_defined_function_initial.metadata['url'] # type: ignore @@ -2625,7 +2911,7 @@ def list_sql_triggers( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -2710,7 +2996,7 @@ async def get_sql_trigger( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -2764,7 +3050,7 @@ async def _create_update_sql_trigger_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -2911,7 +3197,7 @@ async def _delete_sql_trigger_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_sql_trigger_initial.metadata['url'] # type: ignore @@ -3049,7 +3335,7 @@ async def get_sql_role_definition( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -3099,7 +3385,7 @@ async def _create_update_sql_role_definition_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -3232,7 +3518,7 @@ async def _delete_sql_role_definition_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -3357,7 +3643,7 @@ def list_sql_role_definitions( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -3434,7 +3720,7 @@ async def get_sql_role_assignment( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -3484,7 +3770,7 @@ async def _create_update_sql_role_assignment_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -3617,7 +3903,7 @@ async def _delete_sql_role_assignment_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -3742,7 +4028,7 @@ def list_sql_role_assignments( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -3808,7 +4094,7 @@ async def _retrieve_continuous_backup_information_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_table_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_table_resources_operations.py index 2e1b0d56c97..92ac1d5dcf1 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_table_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/aio/operations/_table_resources_operations.py @@ -65,7 +65,7 @@ def list_tables( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -142,7 +142,7 @@ async def get_table( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -192,7 +192,7 @@ async def _create_update_table_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -324,7 +324,7 @@ async def _delete_table_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_table_initial.metadata['url'] # type: ignore @@ -451,7 +451,7 @@ async def get_table_throughput( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -501,7 +501,7 @@ async def _update_table_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -634,7 +634,7 @@ async def _migrate_table_to_autoscale_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -757,7 +757,7 @@ async def _migrate_table_to_manual_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/__init__.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/__init__.py index d64473d6369..9e690c092c5 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/__init__.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/__init__.py @@ -11,15 +11,20 @@ from ._models_py3 import ARMResourceProperties from ._models_py3 import AnalyticalStorageConfiguration from ._models_py3 import ApiProperties + from ._models_py3 import AuthenticationMethodLdapProperties from ._models_py3 import AutoUpgradePolicyResource from ._models_py3 import AutoscaleSettings from ._models_py3 import AutoscaleSettingsResource + from ._models_py3 import AzureBlobDataTransferDataSourceSink from ._models_py3 import BackupInformation from ._models_py3 import BackupPolicy from ._models_py3 import BackupPolicyMigrationState from ._models_py3 import BackupResource from ._models_py3 import BackupResourceProperties from ._models_py3 import Capability + from ._models_py3 import Capacity + from ._models_py3 import CassandraClusterPublicStatus + from ._models_py3 import CassandraClusterPublicStatusDataCentersItem from ._models_py3 import CassandraKeyspaceCreateUpdateParameters from ._models_py3 import CassandraKeyspaceGetPropertiesOptions from ._models_py3 import CassandraKeyspaceGetPropertiesResource @@ -41,30 +46,42 @@ from ._models_py3 import CassandraViewListResult from ._models_py3 import CassandraViewResource from ._models_py3 import Certificate + from ._models_py3 import ClientEncryptionKeyCreateUpdateParameters + from ._models_py3 import ClientEncryptionKeyGetPropertiesResource + from ._models_py3 import ClientEncryptionKeyGetResults + from ._models_py3 import ClientEncryptionKeyResource + from ._models_py3 import ClientEncryptionKeysListResult from ._models_py3 import ClusterKey - from ._models_py3 import ClusterNodeStatus - from ._models_py3 import ClusterNodeStatusNodesItem from ._models_py3 import ClusterResource from ._models_py3 import ClusterResourceProperties from ._models_py3 import Column + from ._models_py3 import CommandOutput + from ._models_py3 import CommandPostBody from ._models_py3 import Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties + from ._models_py3 import ComponentsM9L909SchemasCassandraclusterpublicstatusPropertiesDatacentersItemsPropertiesNodesItems from ._models_py3 import CompositePath from ._models_py3 import ConflictResolutionPolicy + from ._models_py3 import ConnectionError from ._models_py3 import ConsistencyPolicy from ._models_py3 import ContainerPartitionKey from ._models_py3 import ContinuousBackupInformation from ._models_py3 import ContinuousBackupRestoreLocation from ._models_py3 import ContinuousModeBackupPolicy from ._models_py3 import CorsPolicy + from ._models_py3 import CosmosCassandraDataTransferDataSourceSink + from ._models_py3 import CreateJobRequest from ._models_py3 import CreateUpdateOptions from ._models_py3 import DataCenterResource from ._models_py3 import DataCenterResourceProperties + from ._models_py3 import DataTransferDataSourceSink + from ._models_py3 import DataTransferJobFeedResults + from ._models_py3 import DataTransferJobGetResults + from ._models_py3 import DataTransferJobProperties from ._models_py3 import DataTransferRegionalServiceResource from ._models_py3 import DataTransferServiceResource from ._models_py3 import DataTransferServiceResourceProperties from ._models_py3 import DatabaseAccountConnectionString from ._models_py3 import DatabaseAccountCreateUpdateParameters - from ._models_py3 import DatabaseAccountCreateUpdateProperties from ._models_py3 import DatabaseAccountGetResults from ._models_py3 import DatabaseAccountListConnectionStringsResult from ._models_py3 import DatabaseAccountListKeysResult @@ -73,7 +90,6 @@ from ._models_py3 import DatabaseAccountUpdateParameters from ._models_py3 import DatabaseAccountsListResult from ._models_py3 import DatabaseRestoreResource - from ._models_py3 import DefaultRequestDatabaseAccountCreateUpdateProperties from ._models_py3 import DiagnosticLogSettings from ._models_py3 import ErrorResponse from ._models_py3 import ExcludedPath @@ -105,6 +121,7 @@ from ._models_py3 import Indexes from ._models_py3 import IndexingPolicy from ._models_py3 import IpAddressOrRange + from ._models_py3 import KeyWrapMetadata from ._models_py3 import ListBackups from ._models_py3 import ListClusters from ._models_py3 import ListDataCenters @@ -112,7 +129,13 @@ from ._models_py3 import LocationGetResult from ._models_py3 import LocationListResult from ._models_py3 import LocationProperties + from ._models_py3 import ManagedCassandraARMResourceProperties + from ._models_py3 import ManagedCassandraManagedServiceIdentity + from ._models_py3 import ManagedCassandraReaperStatus from ._models_py3 import ManagedServiceIdentity + from ._models_py3 import MaterializedViewsBuilderRegionalServiceResource + from ._models_py3 import MaterializedViewsBuilderServiceResource + from ._models_py3 import MaterializedViewsBuilderServiceResourceProperties from ._models_py3 import Metric from ._models_py3 import MetricAvailability from ._models_py3 import MetricDefinition @@ -135,6 +158,12 @@ from ._models_py3 import MongoIndex from ._models_py3 import MongoIndexKeys from ._models_py3 import MongoIndexOptions + from ._models_py3 import MongoRoleDefinitionCreateUpdateParameters + from ._models_py3 import MongoRoleDefinitionGetResults + from ._models_py3 import MongoRoleDefinitionListResult + from ._models_py3 import MongoUserDefinitionCreateUpdateParameters + from ._models_py3 import MongoUserDefinitionGetResults + from ._models_py3 import MongoUserDefinitionListResult from ._models_py3 import NotebookWorkspace from ._models_py3 import NotebookWorkspaceConnectionInfoResult from ._models_py3 import NotebookWorkspaceCreateUpdateParameters @@ -159,10 +188,11 @@ from ._models_py3 import PrivateLinkResource from ._models_py3 import PrivateLinkResourceListResult from ._models_py3 import PrivateLinkServiceConnectionStateProperty + from ._models_py3 import Privilege + from ._models_py3 import PrivilegeResource from ._models_py3 import ProxyResource from ._models_py3 import RegionForOnlineOffline from ._models_py3 import RegionalServiceResource - from ._models_py3 import RepairPostBody from ._models_py3 import Resource from ._models_py3 import RestorableDatabaseAccountGetResult from ._models_py3 import RestorableDatabaseAccountsListResult @@ -184,6 +214,7 @@ from ._models_py3 import RestorableSqlDatabasesListResult from ._models_py3 import RestorableSqlResourcesListResult from ._models_py3 import RestoreParameters + from ._models_py3 import Role from ._models_py3 import SeedNode from ._models_py3 import ServiceResource from ._models_py3 import ServiceResourceCreateUpdateParameters @@ -248,15 +279,20 @@ from ._models import ARMResourceProperties # type: ignore from ._models import AnalyticalStorageConfiguration # type: ignore from ._models import ApiProperties # type: ignore + from ._models import AuthenticationMethodLdapProperties # type: ignore from ._models import AutoUpgradePolicyResource # type: ignore from ._models import AutoscaleSettings # type: ignore from ._models import AutoscaleSettingsResource # type: ignore + from ._models import AzureBlobDataTransferDataSourceSink # type: ignore from ._models import BackupInformation # type: ignore from ._models import BackupPolicy # type: ignore from ._models import BackupPolicyMigrationState # type: ignore from ._models import BackupResource # type: ignore from ._models import BackupResourceProperties # type: ignore from ._models import Capability # type: ignore + from ._models import Capacity # type: ignore + from ._models import CassandraClusterPublicStatus # type: ignore + from ._models import CassandraClusterPublicStatusDataCentersItem # type: ignore from ._models import CassandraKeyspaceCreateUpdateParameters # type: ignore from ._models import CassandraKeyspaceGetPropertiesOptions # type: ignore from ._models import CassandraKeyspaceGetPropertiesResource # type: ignore @@ -278,30 +314,42 @@ from ._models import CassandraViewListResult # type: ignore from ._models import CassandraViewResource # type: ignore from ._models import Certificate # type: ignore + from ._models import ClientEncryptionKeyCreateUpdateParameters # type: ignore + from ._models import ClientEncryptionKeyGetPropertiesResource # type: ignore + from ._models import ClientEncryptionKeyGetResults # type: ignore + from ._models import ClientEncryptionKeyResource # type: ignore + from ._models import ClientEncryptionKeysListResult # type: ignore from ._models import ClusterKey # type: ignore - from ._models import ClusterNodeStatus # type: ignore - from ._models import ClusterNodeStatusNodesItem # type: ignore from ._models import ClusterResource # type: ignore from ._models import ClusterResourceProperties # type: ignore from ._models import Column # type: ignore + from ._models import CommandOutput # type: ignore + from ._models import CommandPostBody # type: ignore from ._models import Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties # type: ignore + from ._models import ComponentsM9L909SchemasCassandraclusterpublicstatusPropertiesDatacentersItemsPropertiesNodesItems # type: ignore from ._models import CompositePath # type: ignore from ._models import ConflictResolutionPolicy # type: ignore + from ._models import ConnectionError # type: ignore from ._models import ConsistencyPolicy # type: ignore from ._models import ContainerPartitionKey # type: ignore from ._models import ContinuousBackupInformation # type: ignore from ._models import ContinuousBackupRestoreLocation # type: ignore from ._models import ContinuousModeBackupPolicy # type: ignore from ._models import CorsPolicy # type: ignore + from ._models import CosmosCassandraDataTransferDataSourceSink # type: ignore + from ._models import CreateJobRequest # type: ignore from ._models import CreateUpdateOptions # type: ignore from ._models import DataCenterResource # type: ignore from ._models import DataCenterResourceProperties # type: ignore + from ._models import DataTransferDataSourceSink # type: ignore + from ._models import DataTransferJobFeedResults # type: ignore + from ._models import DataTransferJobGetResults # type: ignore + from ._models import DataTransferJobProperties # type: ignore from ._models import DataTransferRegionalServiceResource # type: ignore from ._models import DataTransferServiceResource # type: ignore from ._models import DataTransferServiceResourceProperties # type: ignore from ._models import DatabaseAccountConnectionString # type: ignore from ._models import DatabaseAccountCreateUpdateParameters # type: ignore - from ._models import DatabaseAccountCreateUpdateProperties # type: ignore from ._models import DatabaseAccountGetResults # type: ignore from ._models import DatabaseAccountListConnectionStringsResult # type: ignore from ._models import DatabaseAccountListKeysResult # type: ignore @@ -310,7 +358,6 @@ from ._models import DatabaseAccountUpdateParameters # type: ignore from ._models import DatabaseAccountsListResult # type: ignore from ._models import DatabaseRestoreResource # type: ignore - from ._models import DefaultRequestDatabaseAccountCreateUpdateProperties # type: ignore from ._models import DiagnosticLogSettings # type: ignore from ._models import ErrorResponse # type: ignore from ._models import ExcludedPath # type: ignore @@ -342,6 +389,7 @@ from ._models import Indexes # type: ignore from ._models import IndexingPolicy # type: ignore from ._models import IpAddressOrRange # type: ignore + from ._models import KeyWrapMetadata # type: ignore from ._models import ListBackups # type: ignore from ._models import ListClusters # type: ignore from ._models import ListDataCenters # type: ignore @@ -349,7 +397,13 @@ from ._models import LocationGetResult # type: ignore from ._models import LocationListResult # type: ignore from ._models import LocationProperties # type: ignore + from ._models import ManagedCassandraARMResourceProperties # type: ignore + from ._models import ManagedCassandraManagedServiceIdentity # type: ignore + from ._models import ManagedCassandraReaperStatus # type: ignore from ._models import ManagedServiceIdentity # type: ignore + from ._models import MaterializedViewsBuilderRegionalServiceResource # type: ignore + from ._models import MaterializedViewsBuilderServiceResource # type: ignore + from ._models import MaterializedViewsBuilderServiceResourceProperties # type: ignore from ._models import Metric # type: ignore from ._models import MetricAvailability # type: ignore from ._models import MetricDefinition # type: ignore @@ -372,6 +426,12 @@ from ._models import MongoIndex # type: ignore from ._models import MongoIndexKeys # type: ignore from ._models import MongoIndexOptions # type: ignore + from ._models import MongoRoleDefinitionCreateUpdateParameters # type: ignore + from ._models import MongoRoleDefinitionGetResults # type: ignore + from ._models import MongoRoleDefinitionListResult # type: ignore + from ._models import MongoUserDefinitionCreateUpdateParameters # type: ignore + from ._models import MongoUserDefinitionGetResults # type: ignore + from ._models import MongoUserDefinitionListResult # type: ignore from ._models import NotebookWorkspace # type: ignore from ._models import NotebookWorkspaceConnectionInfoResult # type: ignore from ._models import NotebookWorkspaceCreateUpdateParameters # type: ignore @@ -396,10 +456,11 @@ from ._models import PrivateLinkResource # type: ignore from ._models import PrivateLinkResourceListResult # type: ignore from ._models import PrivateLinkServiceConnectionStateProperty # type: ignore + from ._models import Privilege # type: ignore + from ._models import PrivilegeResource # type: ignore from ._models import ProxyResource # type: ignore from ._models import RegionForOnlineOffline # type: ignore from ._models import RegionalServiceResource # type: ignore - from ._models import RepairPostBody # type: ignore from ._models import Resource # type: ignore from ._models import RestorableDatabaseAccountGetResult # type: ignore from ._models import RestorableDatabaseAccountsListResult # type: ignore @@ -421,6 +482,7 @@ from ._models import RestorableSqlDatabasesListResult # type: ignore from ._models import RestorableSqlResourcesListResult # type: ignore from ._models import RestoreParameters # type: ignore + from ._models import Role # type: ignore from ._models import SeedNode # type: ignore from ._models import ServiceResource # type: ignore from ._models import ServiceResourceCreateUpdateParameters # type: ignore @@ -490,9 +552,11 @@ BackupStorageRedundancy, CompositePathSortOrder, ConflictResolutionMode, + ConnectionState, ConnectorOffer, CreateMode, CreatedByType, + DataTransferComponent, DataType, DatabaseAccountKind, DefaultConsistencyLevel, @@ -501,6 +565,8 @@ IndexingMode, KeyKind, ManagedCassandraProvisioningState, + ManagedCassandraResourceIdentityType, + MongoRoleDefinitionType, NetworkAclBypass, NodeState, NodeStatus, @@ -527,15 +593,20 @@ 'ARMResourceProperties', 'AnalyticalStorageConfiguration', 'ApiProperties', + 'AuthenticationMethodLdapProperties', 'AutoUpgradePolicyResource', 'AutoscaleSettings', 'AutoscaleSettingsResource', + 'AzureBlobDataTransferDataSourceSink', 'BackupInformation', 'BackupPolicy', 'BackupPolicyMigrationState', 'BackupResource', 'BackupResourceProperties', 'Capability', + 'Capacity', + 'CassandraClusterPublicStatus', + 'CassandraClusterPublicStatusDataCentersItem', 'CassandraKeyspaceCreateUpdateParameters', 'CassandraKeyspaceGetPropertiesOptions', 'CassandraKeyspaceGetPropertiesResource', @@ -557,30 +628,42 @@ 'CassandraViewListResult', 'CassandraViewResource', 'Certificate', + 'ClientEncryptionKeyCreateUpdateParameters', + 'ClientEncryptionKeyGetPropertiesResource', + 'ClientEncryptionKeyGetResults', + 'ClientEncryptionKeyResource', + 'ClientEncryptionKeysListResult', 'ClusterKey', - 'ClusterNodeStatus', - 'ClusterNodeStatusNodesItem', 'ClusterResource', 'ClusterResourceProperties', 'Column', + 'CommandOutput', + 'CommandPostBody', 'Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties', + 'ComponentsM9L909SchemasCassandraclusterpublicstatusPropertiesDatacentersItemsPropertiesNodesItems', 'CompositePath', 'ConflictResolutionPolicy', + 'ConnectionError', 'ConsistencyPolicy', 'ContainerPartitionKey', 'ContinuousBackupInformation', 'ContinuousBackupRestoreLocation', 'ContinuousModeBackupPolicy', 'CorsPolicy', + 'CosmosCassandraDataTransferDataSourceSink', + 'CreateJobRequest', 'CreateUpdateOptions', 'DataCenterResource', 'DataCenterResourceProperties', + 'DataTransferDataSourceSink', + 'DataTransferJobFeedResults', + 'DataTransferJobGetResults', + 'DataTransferJobProperties', 'DataTransferRegionalServiceResource', 'DataTransferServiceResource', 'DataTransferServiceResourceProperties', 'DatabaseAccountConnectionString', 'DatabaseAccountCreateUpdateParameters', - 'DatabaseAccountCreateUpdateProperties', 'DatabaseAccountGetResults', 'DatabaseAccountListConnectionStringsResult', 'DatabaseAccountListKeysResult', @@ -589,7 +672,6 @@ 'DatabaseAccountUpdateParameters', 'DatabaseAccountsListResult', 'DatabaseRestoreResource', - 'DefaultRequestDatabaseAccountCreateUpdateProperties', 'DiagnosticLogSettings', 'ErrorResponse', 'ExcludedPath', @@ -621,6 +703,7 @@ 'Indexes', 'IndexingPolicy', 'IpAddressOrRange', + 'KeyWrapMetadata', 'ListBackups', 'ListClusters', 'ListDataCenters', @@ -628,7 +711,13 @@ 'LocationGetResult', 'LocationListResult', 'LocationProperties', + 'ManagedCassandraARMResourceProperties', + 'ManagedCassandraManagedServiceIdentity', + 'ManagedCassandraReaperStatus', 'ManagedServiceIdentity', + 'MaterializedViewsBuilderRegionalServiceResource', + 'MaterializedViewsBuilderServiceResource', + 'MaterializedViewsBuilderServiceResourceProperties', 'Metric', 'MetricAvailability', 'MetricDefinition', @@ -651,6 +740,12 @@ 'MongoIndex', 'MongoIndexKeys', 'MongoIndexOptions', + 'MongoRoleDefinitionCreateUpdateParameters', + 'MongoRoleDefinitionGetResults', + 'MongoRoleDefinitionListResult', + 'MongoUserDefinitionCreateUpdateParameters', + 'MongoUserDefinitionGetResults', + 'MongoUserDefinitionListResult', 'NotebookWorkspace', 'NotebookWorkspaceConnectionInfoResult', 'NotebookWorkspaceCreateUpdateParameters', @@ -675,10 +770,11 @@ 'PrivateLinkResource', 'PrivateLinkResourceListResult', 'PrivateLinkServiceConnectionStateProperty', + 'Privilege', + 'PrivilegeResource', 'ProxyResource', 'RegionForOnlineOffline', 'RegionalServiceResource', - 'RepairPostBody', 'Resource', 'RestorableDatabaseAccountGetResult', 'RestorableDatabaseAccountsListResult', @@ -700,6 +796,7 @@ 'RestorableSqlDatabasesListResult', 'RestorableSqlResourcesListResult', 'RestoreParameters', + 'Role', 'SeedNode', 'ServiceResource', 'ServiceResourceCreateUpdateParameters', @@ -767,9 +864,11 @@ 'BackupStorageRedundancy', 'CompositePathSortOrder', 'ConflictResolutionMode', + 'ConnectionState', 'ConnectorOffer', 'CreateMode', 'CreatedByType', + 'DataTransferComponent', 'DataType', 'DatabaseAccountKind', 'DefaultConsistencyLevel', @@ -778,6 +877,8 @@ 'IndexingMode', 'KeyKind', 'ManagedCassandraProvisioningState', + 'ManagedCassandraResourceIdentityType', + 'MongoRoleDefinitionType', 'NetworkAclBypass', 'NodeState', 'NodeStatus', diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/_cosmos_db_management_client_enums.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/_cosmos_db_management_client_enums.py index ec0159dc473..3b3479d0f40 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/_cosmos_db_management_client_enums.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/_cosmos_db_management_client_enums.py @@ -47,11 +47,12 @@ class ApiType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): class AuthenticationMethod(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """Which authentication method Cassandra should use to authenticate clients. 'None' turns off authentication, so should not be used except in emergencies. 'Cassandra' is the default - password based authentication. The default is 'Cassandra'. + password based authentication. The default is 'Cassandra'. 'Ldap' is in preview. """ NONE = "None" CASSANDRA = "Cassandra" + LDAP = "Ldap" class BackupPolicyMigrationStatus(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """Describes the status of migration between backup policy types. @@ -91,6 +92,17 @@ class ConflictResolutionMode(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum) LAST_WRITER_WINS = "LastWriterWins" CUSTOM = "Custom" +class ConnectionState(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """The kind of connection error that occurred. + """ + + UNKNOWN = "Unknown" + OK = "OK" + OPERATOR_TO_DATA_CENTER_NETWORK_ERROR = "OperatorToDataCenterNetworkError" + DATACENTER_TO_DATACENTER_NETWORK_ERROR = "DatacenterToDatacenterNetworkError" + INTERNAL_OPERATOR_TO_DATA_CENTER_CERTIFICATE_ERROR = "InternalOperatorToDataCenterCertificateError" + INTERNAL_ERROR = "InternalError" + class ConnectorOffer(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """The cassandra connector offer type for the Cosmos DB C* database account. """ @@ -121,6 +133,11 @@ class DatabaseAccountKind(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): MONGO_DB = "MongoDB" PARSE = "Parse" +class DataTransferComponent(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + + COSMOS_DB_CASSANDRA = "CosmosDBCassandra" + AZURE_STORAGE = "AzureStorage" + class DataType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """The datatype for which the indexing behavior is applied to. """ @@ -186,6 +203,20 @@ class ManagedCassandraProvisioningState(with_metaclass(_CaseInsensitiveEnumMeta, FAILED = "Failed" CANCELED = "Canceled" +class ManagedCassandraResourceIdentityType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """The type of the resource. + """ + + SYSTEM_ASSIGNED = "SystemAssigned" + NONE = "None" + +class MongoRoleDefinitionType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Indicates whether the Role Definition was built-in or user created. + """ + + BUILT_IN_ROLE = "BuiltInRole" + CUSTOM_ROLE = "CustomRole" + class NetworkAclBypass(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """Indicates what services are allowed to bypass firewall checks. """ @@ -194,7 +225,7 @@ class NetworkAclBypass(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): AZURE_SERVICES = "AzureServices" class NodeState(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): - """The state of the node in relation to the cluster. + """The state of the node in Cassandra ring. """ NORMAL = "Normal" @@ -308,6 +339,7 @@ class ServiceType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): SQL_DEDICATED_GATEWAY = "SqlDedicatedGateway" DATA_TRANSFER = "DataTransfer" GRAPH_API_COMPUTE = "GraphAPICompute" + MATERIALIZED_VIEWS_BUILDER = "MaterializedViewsBuilder" class SpatialType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """Indicates the spatial type of index. diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/_models.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/_models.py index 5570f3633e7..9bfecc8792f 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/_models.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/_models.py @@ -137,6 +137,52 @@ def __init__( self.identity = kwargs.get('identity', None) +class AuthenticationMethodLdapProperties(msrest.serialization.Model): + """Ldap authentication method properties. This feature is in preview. + + :param server_hostname: Hostname of the LDAP server. + :type server_hostname: str + :param server_port: Port of the LDAP server. + :type server_port: int + :param service_user_distinguished_name: Distinguished name of the look up user account, who can + look up user details on authentication. + :type service_user_distinguished_name: str + :param service_user_password: Password of the look up user. + :type service_user_password: str + :param search_base_distinguished_name: Distinguished name of the object to start the recursive + search of users from. + :type search_base_distinguished_name: str + :param search_filter_template: Template to use for searching. Defaults to (cn=%s) where %s will + be replaced by the username used to login. + :type search_filter_template: str + :param server_certificates: + :type server_certificates: list[~azure.mgmt.cosmosdb.models.Certificate] + """ + + _attribute_map = { + 'server_hostname': {'key': 'serverHostname', 'type': 'str'}, + 'server_port': {'key': 'serverPort', 'type': 'int'}, + 'service_user_distinguished_name': {'key': 'serviceUserDistinguishedName', 'type': 'str'}, + 'service_user_password': {'key': 'serviceUserPassword', 'type': 'str'}, + 'search_base_distinguished_name': {'key': 'searchBaseDistinguishedName', 'type': 'str'}, + 'search_filter_template': {'key': 'searchFilterTemplate', 'type': 'str'}, + 'server_certificates': {'key': 'serverCertificates', 'type': '[Certificate]'}, + } + + def __init__( + self, + **kwargs + ): + super(AuthenticationMethodLdapProperties, self).__init__(**kwargs) + self.server_hostname = kwargs.get('server_hostname', None) + self.server_port = kwargs.get('server_port', None) + self.service_user_distinguished_name = kwargs.get('service_user_distinguished_name', None) + self.service_user_password = kwargs.get('service_user_password', None) + self.search_base_distinguished_name = kwargs.get('search_base_distinguished_name', None) + self.search_filter_template = kwargs.get('search_filter_template', None) + self.server_certificates = kwargs.get('server_certificates', None) + + class AutoscaleSettings(msrest.serialization.Model): """AutoscaleSettings. @@ -213,6 +259,74 @@ def __init__( self.throughput_policy = kwargs.get('throughput_policy', None) +class DataTransferDataSourceSink(msrest.serialization.Model): + """Base class for all DataTransfer source/sink. + + You probably want to use the sub-classes and not this class directly. Known + sub-classes are: AzureBlobDataTransferDataSourceSink, CosmosCassandraDataTransferDataSourceSink. + + All required parameters must be populated in order to send to Azure. + + :param component: Required. Constant filled by server. Possible values include: + "CosmosDBCassandra", "AzureStorage". Default value: "CosmosDBCassandra". + :type component: str or ~azure.mgmt.cosmosdb.models.DataTransferComponent + """ + + _validation = { + 'component': {'required': True}, + } + + _attribute_map = { + 'component': {'key': 'component', 'type': 'str'}, + } + + _subtype_map = { + 'component': {'AzureBlobStorage': 'AzureBlobDataTransferDataSourceSink', 'CosmosDBCassandra': 'CosmosCassandraDataTransferDataSourceSink'} + } + + def __init__( + self, + **kwargs + ): + super(DataTransferDataSourceSink, self).__init__(**kwargs) + self.component = None # type: Optional[str] + + +class AzureBlobDataTransferDataSourceSink(DataTransferDataSourceSink): + """An Azure Blob Storage data source/sink. + + All required parameters must be populated in order to send to Azure. + + :param component: Required. Constant filled by server. Possible values include: + "CosmosDBCassandra", "AzureStorage". Default value: "CosmosDBCassandra". + :type component: str or ~azure.mgmt.cosmosdb.models.DataTransferComponent + :param container_name: Required. + :type container_name: str + :param endpoint_url: + :type endpoint_url: str + """ + + _validation = { + 'component': {'required': True}, + 'container_name': {'required': True}, + } + + _attribute_map = { + 'component': {'key': 'component', 'type': 'str'}, + 'container_name': {'key': 'containerName', 'type': 'str'}, + 'endpoint_url': {'key': 'endpointUrl', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(AzureBlobDataTransferDataSourceSink, self).__init__(**kwargs) + self.component = 'AzureBlobStorage' # type: str + self.container_name = kwargs['container_name'] + self.endpoint_url = kwargs.get('endpoint_url', None) + + class BackupInformation(msrest.serialization.Model): """Backup information of a resource. @@ -380,6 +494,93 @@ def __init__( self.name = kwargs.get('name', None) +class Capacity(msrest.serialization.Model): + """The object that represents all properties related to capacity enforcement on an account. + + :param total_throughput_limit: The total throughput limit imposed on the account. A + totalThroughputLimit of 2000 imposes a strict limit of max throughput that can be provisioned + on that account to be 2000. A totalThroughputLimit of -1 indicates no limits on provisioning of + throughput. + :type total_throughput_limit: int + """ + + _validation = { + 'total_throughput_limit': {'minimum': -1}, + } + + _attribute_map = { + 'total_throughput_limit': {'key': 'totalThroughputLimit', 'type': 'int'}, + } + + def __init__( + self, + **kwargs + ): + super(Capacity, self).__init__(**kwargs) + self.total_throughput_limit = kwargs.get('total_throughput_limit', None) + + +class CassandraClusterPublicStatus(msrest.serialization.Model): + """Properties of a managed Cassandra cluster public status. + + :param e_tag: + :type e_tag: str + :param reaper_status: + :type reaper_status: ~azure.mgmt.cosmosdb.models.ManagedCassandraReaperStatus + :param connection_errors: List relevant information about any connection errors to the + Datacenters. + :type connection_errors: list[~azure.mgmt.cosmosdb.models.ConnectionError] + :param data_centers: List of the status of each datacenter in this cluster. + :type data_centers: + list[~azure.mgmt.cosmosdb.models.CassandraClusterPublicStatusDataCentersItem] + """ + + _attribute_map = { + 'e_tag': {'key': 'eTag', 'type': 'str'}, + 'reaper_status': {'key': 'reaperStatus', 'type': 'ManagedCassandraReaperStatus'}, + 'connection_errors': {'key': 'connectionErrors', 'type': '[ConnectionError]'}, + 'data_centers': {'key': 'dataCenters', 'type': '[CassandraClusterPublicStatusDataCentersItem]'}, + } + + def __init__( + self, + **kwargs + ): + super(CassandraClusterPublicStatus, self).__init__(**kwargs) + self.e_tag = kwargs.get('e_tag', None) + self.reaper_status = kwargs.get('reaper_status', None) + self.connection_errors = kwargs.get('connection_errors', None) + self.data_centers = kwargs.get('data_centers', None) + + +class CassandraClusterPublicStatusDataCentersItem(msrest.serialization.Model): + """CassandraClusterPublicStatusDataCentersItem. + + :param name: The name of this Datacenter. + :type name: str + :param seed_nodes: A list of all seed nodes in the cluster, managed and unmanaged. + :type seed_nodes: list[str] + :param nodes: + :type nodes: + list[~azure.mgmt.cosmosdb.models.ComponentsM9L909SchemasCassandraclusterpublicstatusPropertiesDatacentersItemsPropertiesNodesItems] + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'seed_nodes': {'key': 'seedNodes', 'type': '[str]'}, + 'nodes': {'key': 'nodes', 'type': '[ComponentsM9L909SchemasCassandraclusterpublicstatusPropertiesDatacentersItemsPropertiesNodesItems]'}, + } + + def __init__( + self, + **kwargs + ): + super(CassandraClusterPublicStatusDataCentersItem, self).__init__(**kwargs) + self.name = kwargs.get('name', None) + self.seed_nodes = kwargs.get('seed_nodes', None) + self.nodes = kwargs.get('nodes', None) + + class CassandraKeyspaceCreateUpdateParameters(ARMResourceProperties): """Parameters to create and update Cosmos DB Cassandra keyspace. @@ -1051,12 +1252,13 @@ class CassandraViewResource(msrest.serialization.Model): :param id: Required. Name of the Cosmos DB Cassandra view. :type id: str - :param view_definition: View Definition of the Cosmos DB Cassandra view. + :param view_definition: Required. View Definition of the Cosmos DB Cassandra view. :type view_definition: str """ _validation = { 'id': {'required': True}, + 'view_definition': {'required': True}, } _attribute_map = { @@ -1070,7 +1272,7 @@ def __init__( ): super(CassandraViewResource, self).__init__(**kwargs) self.id = kwargs['id'] - self.view_definition = kwargs.get('view_definition', None) + self.view_definition = kwargs['view_definition'] class CassandraViewGetPropertiesResource(ExtendedResourceProperties, CassandraViewResource): @@ -1082,7 +1284,7 @@ class CassandraViewGetPropertiesResource(ExtendedResourceProperties, CassandraVi :param id: Required. Name of the Cosmos DB Cassandra view. :type id: str - :param view_definition: View Definition of the Cosmos DB Cassandra view. + :param view_definition: Required. View Definition of the Cosmos DB Cassandra view. :type view_definition: str :ivar rid: A system generated property. A unique identifier. :vartype rid: str @@ -1095,6 +1297,7 @@ class CassandraViewGetPropertiesResource(ExtendedResourceProperties, CassandraVi _validation = { 'id': {'required': True}, + 'view_definition': {'required': True}, 'rid': {'readonly': True}, 'ts': {'readonly': True}, 'etag': {'readonly': True}, @@ -1114,7 +1317,7 @@ def __init__( ): super(CassandraViewGetPropertiesResource, self).__init__(**kwargs) self.id = kwargs['id'] - self.view_definition = kwargs.get('view_definition', None) + self.view_definition = kwargs['view_definition'] self.rid = None self.ts = None self.etag = None @@ -1218,110 +1421,207 @@ def __init__( self.pem = kwargs.get('pem', None) -class ClusterKey(msrest.serialization.Model): - """Cosmos DB Cassandra table cluster key. +class ClientEncryptionKeyCreateUpdateParameters(msrest.serialization.Model): + """Parameters to create and update ClientEncryptionKey. - :param name: Name of the Cosmos DB Cassandra table cluster key. - :type name: str - :param order_by: Order of the Cosmos DB Cassandra table cluster key, only support "Asc" and - "Desc". - :type order_by: str + All required parameters must be populated in order to send to Azure. + + :param resource: Required. The standard JSON format of a ClientEncryptionKey. + :type resource: ~azure.mgmt.cosmosdb.models.ClientEncryptionKeyResource + """ + + _validation = { + 'resource': {'required': True}, + } + + _attribute_map = { + 'resource': {'key': 'properties.resource', 'type': 'ClientEncryptionKeyResource'}, + } + + def __init__( + self, + **kwargs + ): + super(ClientEncryptionKeyCreateUpdateParameters, self).__init__(**kwargs) + self.resource = kwargs['resource'] + + +class ClientEncryptionKeyResource(msrest.serialization.Model): + """Cosmos DB client encryption key resource object. + + :param id: Name of the ClientEncryptionKey. + :type id: str + :param encryption_algorithm: Encryption algorithm that will be used along with this client + encryption key to encrypt/decrypt data. + :type encryption_algorithm: str + :param wrapped_data_encryption_key: Wrapped (encrypted) form of the key represented as a byte + array. + :type wrapped_data_encryption_key: bytearray + :param key_wrap_metadata: Metadata for the wrapping provider that can be used to unwrap the + wrapped client encryption key. + :type key_wrap_metadata: ~azure.mgmt.cosmosdb.models.KeyWrapMetadata + """ + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'encryption_algorithm': {'key': 'encryptionAlgorithm', 'type': 'str'}, + 'wrapped_data_encryption_key': {'key': 'wrappedDataEncryptionKey', 'type': 'bytearray'}, + 'key_wrap_metadata': {'key': 'keyWrapMetadata', 'type': 'KeyWrapMetadata'}, + } + + def __init__( + self, + **kwargs + ): + super(ClientEncryptionKeyResource, self).__init__(**kwargs) + self.id = kwargs.get('id', None) + self.encryption_algorithm = kwargs.get('encryption_algorithm', None) + self.wrapped_data_encryption_key = kwargs.get('wrapped_data_encryption_key', None) + self.key_wrap_metadata = kwargs.get('key_wrap_metadata', None) + + +class ClientEncryptionKeyGetPropertiesResource(ExtendedResourceProperties, ClientEncryptionKeyResource): + """ClientEncryptionKeyGetPropertiesResource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :param id: Name of the ClientEncryptionKey. + :type id: str + :param encryption_algorithm: Encryption algorithm that will be used along with this client + encryption key to encrypt/decrypt data. + :type encryption_algorithm: str + :param wrapped_data_encryption_key: Wrapped (encrypted) form of the key represented as a byte + array. + :type wrapped_data_encryption_key: bytearray + :param key_wrap_metadata: Metadata for the wrapping provider that can be used to unwrap the + wrapped client encryption key. + :type key_wrap_metadata: ~azure.mgmt.cosmosdb.models.KeyWrapMetadata + :ivar rid: A system generated property. A unique identifier. + :vartype rid: str + :ivar ts: A system generated property that denotes the last updated timestamp of the resource. + :vartype ts: float + :ivar etag: A system generated property representing the resource etag required for optimistic + concurrency control. + :vartype etag: str + """ + + _validation = { + 'rid': {'readonly': True}, + 'ts': {'readonly': True}, + 'etag': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'encryption_algorithm': {'key': 'encryptionAlgorithm', 'type': 'str'}, + 'wrapped_data_encryption_key': {'key': 'wrappedDataEncryptionKey', 'type': 'bytearray'}, + 'key_wrap_metadata': {'key': 'keyWrapMetadata', 'type': 'KeyWrapMetadata'}, + 'rid': {'key': '_rid', 'type': 'str'}, + 'ts': {'key': '_ts', 'type': 'float'}, + 'etag': {'key': '_etag', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(ClientEncryptionKeyGetPropertiesResource, self).__init__(**kwargs) + self.id = kwargs.get('id', None) + self.encryption_algorithm = kwargs.get('encryption_algorithm', None) + self.wrapped_data_encryption_key = kwargs.get('wrapped_data_encryption_key', None) + self.key_wrap_metadata = kwargs.get('key_wrap_metadata', None) + self.rid = None + self.ts = None + self.etag = None + + +class ClientEncryptionKeyGetResults(ARMProxyResource): + """Client Encryption Key. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: The unique resource identifier of the database account. + :vartype id: str + :ivar name: The name of the database account. + :vartype name: str + :ivar type: The type of Azure resource. + :vartype type: str + :param resource: + :type resource: ~azure.mgmt.cosmosdb.models.ClientEncryptionKeyGetPropertiesResource """ + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, 'name': {'key': 'name', 'type': 'str'}, - 'order_by': {'key': 'orderBy', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'resource': {'key': 'properties.resource', 'type': 'ClientEncryptionKeyGetPropertiesResource'}, } def __init__( self, **kwargs ): - super(ClusterKey, self).__init__(**kwargs) - self.name = kwargs.get('name', None) - self.order_by = kwargs.get('order_by', None) + super(ClientEncryptionKeyGetResults, self).__init__(**kwargs) + self.resource = kwargs.get('resource', None) + +class ClientEncryptionKeysListResult(msrest.serialization.Model): + """The List operation response, that contains the client encryption keys and their properties. -class ClusterNodeStatus(msrest.serialization.Model): - """The status of all nodes in the cluster (as returned by 'nodetool status'). + Variables are only populated by the server, and will be ignored when sending a request. - :param nodes: Information about nodes in the cluster (corresponds to what is returned from - nodetool info). - :type nodes: list[~azure.mgmt.cosmosdb.models.ClusterNodeStatusNodesItem] + :ivar value: List of client encryption keys and their properties. + :vartype value: list[~azure.mgmt.cosmosdb.models.ClientEncryptionKeyGetResults] """ + _validation = { + 'value': {'readonly': True}, + } + _attribute_map = { - 'nodes': {'key': 'nodes', 'type': '[ClusterNodeStatusNodesItem]'}, + 'value': {'key': 'value', 'type': '[ClientEncryptionKeyGetResults]'}, } def __init__( self, **kwargs ): - super(ClusterNodeStatus, self).__init__(**kwargs) - self.nodes = kwargs.get('nodes', None) + super(ClientEncryptionKeysListResult, self).__init__(**kwargs) + self.value = None -class ClusterNodeStatusNodesItem(msrest.serialization.Model): - """ClusterNodeStatusNodesItem. +class ClusterKey(msrest.serialization.Model): + """Cosmos DB Cassandra table cluster key. - :param datacenter: The Cassandra data center this node resides in. - :type datacenter: str - :param status: Indicates whether the node is functioning or not. Possible values include: "Up", - "Down". - :type status: str or ~azure.mgmt.cosmosdb.models.NodeStatus - :param state: The state of the node in relation to the cluster. Possible values include: - "Normal", "Leaving", "Joining", "Moving", "Stopped". - :type state: str or ~azure.mgmt.cosmosdb.models.NodeState - :param address: The node's URL. - :type address: str - :param load: The amount of file system data in the data directory (e.g., 47.66 KB), excluding - all content in the snapshots subdirectories. Because all SSTable data files are included, any - data that is not cleaned up (such as TTL-expired cell or tombstoned data) is counted. - :type load: str - :param tokens: List of tokens. - :type tokens: list[str] - :param owns: The percentage of the data owned by the node per datacenter times the replication - factor (e.g., 33.3, or null if the data is not available). For example, a node can own 33% of - the ring, but shows 100% if the replication factor is 3. For non-system keyspaces, the endpoint - percentage ownership information is shown. - :type owns: float - :param host_id: The network ID of the node. - :type host_id: str - :param rack: The rack this node is part of. - :type rack: str + :param name: Name of the Cosmos DB Cassandra table cluster key. + :type name: str + :param order_by: Order of the Cosmos DB Cassandra table cluster key, only support "Asc" and + "Desc". + :type order_by: str """ _attribute_map = { - 'datacenter': {'key': 'datacenter', 'type': 'str'}, - 'status': {'key': 'status', 'type': 'str'}, - 'state': {'key': 'state', 'type': 'str'}, - 'address': {'key': 'address', 'type': 'str'}, - 'load': {'key': 'load', 'type': 'str'}, - 'tokens': {'key': 'tokens', 'type': '[str]'}, - 'owns': {'key': 'owns', 'type': 'float'}, - 'host_id': {'key': 'hostId', 'type': 'str'}, - 'rack': {'key': 'rack', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'order_by': {'key': 'orderBy', 'type': 'str'}, } def __init__( self, **kwargs ): - super(ClusterNodeStatusNodesItem, self).__init__(**kwargs) - self.datacenter = kwargs.get('datacenter', None) - self.status = kwargs.get('status', None) - self.state = kwargs.get('state', None) - self.address = kwargs.get('address', None) - self.load = kwargs.get('load', None) - self.tokens = kwargs.get('tokens', None) - self.owns = kwargs.get('owns', None) - self.host_id = kwargs.get('host_id', None) - self.rack = kwargs.get('rack', None) + super(ClusterKey, self).__init__(**kwargs) + self.name = kwargs.get('name', None) + self.order_by = kwargs.get('order_by', None) -class ClusterResource(ARMResourceProperties): - """Representation of a managed Cassandra cluster. +class ManagedCassandraARMResourceProperties(msrest.serialization.Model): + """The core properties of ARM resources. Variables are only populated by the server, and will be ignored when sending a request. @@ -1341,9 +1641,7 @@ class ClusterResource(ARMResourceProperties): also include "Table", "Graph", "DocumentDB", and "MongoDB". :type tags: dict[str, str] :param identity: Identity for the resource. - :type identity: ~azure.mgmt.cosmosdb.models.ManagedServiceIdentity - :param properties: Properties of a managed Cassandra cluster. - :type properties: ~azure.mgmt.cosmosdb.models.ClusterResourceProperties + :type identity: ~azure.mgmt.cosmosdb.models.ManagedCassandraManagedServiceIdentity """ _validation = { @@ -1358,26 +1656,80 @@ class ClusterResource(ARMResourceProperties): 'type': {'key': 'type', 'type': 'str'}, 'location': {'key': 'location', 'type': 'str'}, 'tags': {'key': 'tags', 'type': '{str}'}, - 'identity': {'key': 'identity', 'type': 'ManagedServiceIdentity'}, - 'properties': {'key': 'properties', 'type': 'ClusterResourceProperties'}, + 'identity': {'key': 'identity', 'type': 'ManagedCassandraManagedServiceIdentity'}, } def __init__( self, **kwargs ): - super(ClusterResource, self).__init__(**kwargs) - self.properties = kwargs.get('properties', None) + super(ManagedCassandraARMResourceProperties, self).__init__(**kwargs) + self.id = None + self.name = None + self.type = None + self.location = kwargs.get('location', None) + self.tags = kwargs.get('tags', None) + self.identity = kwargs.get('identity', None) -class ClusterResourceProperties(msrest.serialization.Model): - """Properties of a managed Cassandra cluster. +class ClusterResource(ManagedCassandraARMResourceProperties): + """Representation of a managed Cassandra cluster. Variables are only populated by the server, and will be ignored when sending a request. - :param provisioning_state: The status of the resource at the time the operation was called. - Possible values include: "Creating", "Updating", "Deleting", "Succeeded", "Failed", "Canceled". - :type provisioning_state: str or ~azure.mgmt.cosmosdb.models.ManagedCassandraProvisioningState + :ivar id: The unique resource identifier of the ARM resource. + :vartype id: str + :ivar name: The name of the ARM resource. + :vartype name: str + :ivar type: The type of Azure resource. + :vartype type: str + :param location: The location of the resource group to which the resource belongs. + :type location: str + :param tags: A set of tags. Tags are a list of key-value pairs that describe the resource. + These tags can be used in viewing and grouping this resource (across resource groups). A + maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 + characters and value no greater than 256 characters. For example, the default experience for a + template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values + also include "Table", "Graph", "DocumentDB", and "MongoDB". + :type tags: dict[str, str] + :param identity: Identity for the resource. + :type identity: ~azure.mgmt.cosmosdb.models.ManagedCassandraManagedServiceIdentity + :param properties: Properties of a managed Cassandra cluster. + :type properties: ~azure.mgmt.cosmosdb.models.ClusterResourceProperties + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'identity': {'key': 'identity', 'type': 'ManagedCassandraManagedServiceIdentity'}, + 'properties': {'key': 'properties', 'type': 'ClusterResourceProperties'}, + } + + def __init__( + self, + **kwargs + ): + super(ClusterResource, self).__init__(**kwargs) + self.properties = kwargs.get('properties', None) + + +class ClusterResourceProperties(msrest.serialization.Model): + """Properties of a managed Cassandra cluster. + + Variables are only populated by the server, and will be ignored when sending a request. + + :param provisioning_state: The status of the resource at the time the operation was called. + Possible values include: "Creating", "Updating", "Deleting", "Succeeded", "Failed", "Canceled". + :type provisioning_state: str or ~azure.mgmt.cosmosdb.models.ManagedCassandraProvisioningState :param restore_from_backup_id: To create an empty cluster, omit this field or set it to null. To restore a backup into a new cluster, set this field to the resource id of the backup. :type restore_from_backup_id: str @@ -1396,16 +1748,13 @@ class ClusterResourceProperties(msrest.serialization.Model): :type cluster_name_override: str :param authentication_method: Which authentication method Cassandra should use to authenticate clients. 'None' turns off authentication, so should not be used except in emergencies. - 'Cassandra' is the default password based authentication. The default is 'Cassandra'. Possible - values include: "None", "Cassandra". + 'Cassandra' is the default password based authentication. The default is 'Cassandra'. 'Ldap' is + in preview. Possible values include: "None", "Cassandra", "Ldap". :type authentication_method: str or ~azure.mgmt.cosmosdb.models.AuthenticationMethod :param initial_cassandra_admin_password: Initial password for clients connecting as admin to the cluster. Should be changed after cluster creation. Returns null on GET. This field only applies when the authenticationMethod field is 'Cassandra'. :type initial_cassandra_admin_password: str - :param hours_between_backups: Number of hours to wait between taking a backup of the cluster. - To disable backups, set this property to 0. - :type hours_between_backups: int :param prometheus_endpoint: Hostname or IP address where the Prometheus endpoint containing data about the managed Cassandra nodes can be reached. :type prometheus_endpoint: ~azure.mgmt.cosmosdb.models.SeedNode @@ -1433,6 +1782,12 @@ class ClusterResourceProperties(msrest.serialization.Model): :ivar seed_nodes: List of IP addresses of seed nodes in the managed data centers. These should be added to the seed node lists of all unmanaged nodes. :vartype seed_nodes: list[~azure.mgmt.cosmosdb.models.SeedNode] + :param hours_between_backups: Number of hours to wait between taking a backup of the cluster. + :type hours_between_backups: int + :param deallocated: Whether the cluster and associated data centers has been deallocated. + :type deallocated: bool + :param cassandra_audit_logging_enabled: Whether Cassandra audit logging is enabled. + :type cassandra_audit_logging_enabled: bool """ _validation = { @@ -1448,7 +1803,6 @@ class ClusterResourceProperties(msrest.serialization.Model): 'cluster_name_override': {'key': 'clusterNameOverride', 'type': 'str'}, 'authentication_method': {'key': 'authenticationMethod', 'type': 'str'}, 'initial_cassandra_admin_password': {'key': 'initialCassandraAdminPassword', 'type': 'str'}, - 'hours_between_backups': {'key': 'hoursBetweenBackups', 'type': 'int'}, 'prometheus_endpoint': {'key': 'prometheusEndpoint', 'type': 'SeedNode'}, 'repair_enabled': {'key': 'repairEnabled', 'type': 'bool'}, 'client_certificates': {'key': 'clientCertificates', 'type': '[Certificate]'}, @@ -1456,6 +1810,9 @@ class ClusterResourceProperties(msrest.serialization.Model): 'gossip_certificates': {'key': 'gossipCertificates', 'type': '[Certificate]'}, 'external_seed_nodes': {'key': 'externalSeedNodes', 'type': '[SeedNode]'}, 'seed_nodes': {'key': 'seedNodes', 'type': '[SeedNode]'}, + 'hours_between_backups': {'key': 'hoursBetweenBackups', 'type': 'int'}, + 'deallocated': {'key': 'deallocated', 'type': 'bool'}, + 'cassandra_audit_logging_enabled': {'key': 'cassandraAuditLoggingEnabled', 'type': 'bool'}, } def __init__( @@ -1470,7 +1827,6 @@ def __init__( self.cluster_name_override = kwargs.get('cluster_name_override', None) self.authentication_method = kwargs.get('authentication_method', None) self.initial_cassandra_admin_password = kwargs.get('initial_cassandra_admin_password', None) - self.hours_between_backups = kwargs.get('hours_between_backups', None) self.prometheus_endpoint = kwargs.get('prometheus_endpoint', None) self.repair_enabled = kwargs.get('repair_enabled', None) self.client_certificates = kwargs.get('client_certificates', None) @@ -1478,6 +1834,9 @@ def __init__( self.gossip_certificates = None self.external_seed_nodes = kwargs.get('external_seed_nodes', None) self.seed_nodes = None + self.hours_between_backups = kwargs.get('hours_between_backups', None) + self.deallocated = kwargs.get('deallocated', None) + self.cassandra_audit_logging_enabled = kwargs.get('cassandra_audit_logging_enabled', None) class Column(msrest.serialization.Model): @@ -1503,6 +1862,69 @@ def __init__( self.type = kwargs.get('type', None) +class CommandOutput(msrest.serialization.Model): + """Response of /command api. + + :param command_output: Output of the command. + :type command_output: str + """ + + _attribute_map = { + 'command_output': {'key': 'commandOutput', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(CommandOutput, self).__init__(**kwargs) + self.command_output = kwargs.get('command_output', None) + + +class CommandPostBody(msrest.serialization.Model): + """Specification of which command to run where. + + All required parameters must be populated in order to send to Azure. + + :param command: Required. The command which should be run. + :type command: str + :param arguments: The arguments for the command to be run. + :type arguments: dict[str, str] + :param host: Required. IP address of the cassandra host to run the command on. + :type host: str + :param cassandra_stop_start: If true, stops cassandra before executing the command and then + start it again. + :type cassandra_stop_start: bool + :param readwrite: If true, allows the command to *write* to the cassandra directory, otherwise + read-only. + :type readwrite: bool + """ + + _validation = { + 'command': {'required': True}, + 'host': {'required': True}, + } + + _attribute_map = { + 'command': {'key': 'command', 'type': 'str'}, + 'arguments': {'key': 'arguments', 'type': '{str}'}, + 'host': {'key': 'host', 'type': 'str'}, + 'cassandra_stop_start': {'key': 'cassandra-stop-start', 'type': 'bool'}, + 'readwrite': {'key': 'readwrite', 'type': 'bool'}, + } + + def __init__( + self, + **kwargs + ): + super(CommandPostBody, self).__init__(**kwargs) + self.command = kwargs['command'] + self.arguments = kwargs.get('arguments', None) + self.host = kwargs['host'] + self.cassandra_stop_start = kwargs.get('cassandra_stop_start', None) + self.readwrite = kwargs.get('readwrite', None) + + class Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties(msrest.serialization.Model): """Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties. @@ -1533,6 +1955,90 @@ def __init__( self.client_id = None +class ComponentsM9L909SchemasCassandraclusterpublicstatusPropertiesDatacentersItemsPropertiesNodesItems(msrest.serialization.Model): + """ComponentsM9L909SchemasCassandraclusterpublicstatusPropertiesDatacentersItemsPropertiesNodesItems. + + :param address: The node's IP address. + :type address: str + :param state: The state of the node in Cassandra ring. Possible values include: "Normal", + "Leaving", "Joining", "Moving", "Stopped". + :type state: str or ~azure.mgmt.cosmosdb.models.NodeState + :param status: + :type status: str + :param load: The amount of file system data in the data directory (e.g., 47.66 kB), excluding + all content in the snapshots subdirectories. Because all SSTable data files are included, any + data that is not cleaned up (such as TTL-expired cells or tombstones) is counted. + :type load: str + :param tokens: List of tokens this node covers. + :type tokens: list[str] + :param size: + :type size: int + :param host_id: The network ID of the node. + :type host_id: str + :param rack: The rack this node is part of. + :type rack: str + :param timestamp: The timestamp at which that snapshot of these usage statistics were taken. + :type timestamp: str + :param disk_used_kb: The amount of disk used, in kB, of the directory /var/lib/cassandra. + :type disk_used_kb: long + :param disk_free_kb: The amount of disk free, in kB, of the directory /var/lib/cassandra. + :type disk_free_kb: long + :param memory_used_kb: Used memory (calculated as total - free - buffers - cache), in kB. + :type memory_used_kb: long + :param memory_buffers_and_cached_kb: Memory used by kernel buffers (Buffers in /proc/meminfo) + and page cache and slabs (Cached and SReclaimable in /proc/meminfo), in kB. + :type memory_buffers_and_cached_kb: long + :param memory_free_kb: Unused memory (MemFree and SwapFree in /proc/meminfo), in kB. + :type memory_free_kb: long + :param memory_total_kb: Total installed memory (MemTotal and SwapTotal in /proc/meminfo), in + kB. + :type memory_total_kb: long + :param cpu_usage: A float representing the current system-wide CPU utilization as a percentage. + :type cpu_usage: float + """ + + _attribute_map = { + 'address': {'key': 'address', 'type': 'str'}, + 'state': {'key': 'state', 'type': 'str'}, + 'status': {'key': 'status', 'type': 'str'}, + 'load': {'key': 'load', 'type': 'str'}, + 'tokens': {'key': 'tokens', 'type': '[str]'}, + 'size': {'key': 'size', 'type': 'int'}, + 'host_id': {'key': 'hostID', 'type': 'str'}, + 'rack': {'key': 'rack', 'type': 'str'}, + 'timestamp': {'key': 'timestamp', 'type': 'str'}, + 'disk_used_kb': {'key': 'diskUsedKB', 'type': 'long'}, + 'disk_free_kb': {'key': 'diskFreeKB', 'type': 'long'}, + 'memory_used_kb': {'key': 'memoryUsedKB', 'type': 'long'}, + 'memory_buffers_and_cached_kb': {'key': 'memoryBuffersAndCachedKB', 'type': 'long'}, + 'memory_free_kb': {'key': 'memoryFreeKB', 'type': 'long'}, + 'memory_total_kb': {'key': 'memoryTotalKB', 'type': 'long'}, + 'cpu_usage': {'key': 'cpuUsage', 'type': 'float'}, + } + + def __init__( + self, + **kwargs + ): + super(ComponentsM9L909SchemasCassandraclusterpublicstatusPropertiesDatacentersItemsPropertiesNodesItems, self).__init__(**kwargs) + self.address = kwargs.get('address', None) + self.state = kwargs.get('state', None) + self.status = kwargs.get('status', None) + self.load = kwargs.get('load', None) + self.tokens = kwargs.get('tokens', None) + self.size = kwargs.get('size', None) + self.host_id = kwargs.get('host_id', None) + self.rack = kwargs.get('rack', None) + self.timestamp = kwargs.get('timestamp', None) + self.disk_used_kb = kwargs.get('disk_used_kb', None) + self.disk_free_kb = kwargs.get('disk_free_kb', None) + self.memory_used_kb = kwargs.get('memory_used_kb', None) + self.memory_buffers_and_cached_kb = kwargs.get('memory_buffers_and_cached_kb', None) + self.memory_free_kb = kwargs.get('memory_free_kb', None) + self.memory_total_kb = kwargs.get('memory_total_kb', None) + self.cpu_usage = kwargs.get('cpu_usage', None) + + class CompositePath(msrest.serialization.Model): """CompositePath. @@ -1588,6 +2094,43 @@ def __init__( self.conflict_resolution_procedure = kwargs.get('conflict_resolution_procedure', None) +class ConnectionError(msrest.serialization.Model): + """ConnectionError. + + :param connection_state: The kind of connection error that occurred. Possible values include: + "Unknown", "OK", "OperatorToDataCenterNetworkError", "DatacenterToDatacenterNetworkError", + "InternalOperatorToDataCenterCertificateError", "InternalError". + :type connection_state: str or ~azure.mgmt.cosmosdb.models.ConnectionState + :param i_p_from: The IP of host that originated the failed connection. + :type i_p_from: str + :param i_p_to: The IP that the connection attempted to reach. + :type i_p_to: str + :param port: The TCP port the connection was attempted on. + :type port: int + :param exception: Detailed error message about the failed connection. + :type exception: str + """ + + _attribute_map = { + 'connection_state': {'key': 'connectionState', 'type': 'str'}, + 'i_p_from': {'key': 'iPFrom', 'type': 'str'}, + 'i_p_to': {'key': 'iPTo', 'type': 'str'}, + 'port': {'key': 'port', 'type': 'int'}, + 'exception': {'key': 'exception', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(ConnectionError, self).__init__(**kwargs) + self.connection_state = kwargs.get('connection_state', None) + self.i_p_from = kwargs.get('i_p_from', None) + self.i_p_to = kwargs.get('i_p_to', None) + self.port = kwargs.get('port', None) + self.exception = kwargs.get('exception', None) + + class ConsistencyPolicy(msrest.serialization.Model): """The consistency policy for the Cosmos DB database account. @@ -1784,6 +2327,81 @@ def __init__( self.max_age_in_seconds = kwargs.get('max_age_in_seconds', None) +class CosmosCassandraDataTransferDataSourceSink(DataTransferDataSourceSink): + """A CosmosDB Cassandra API data source/sink. + + All required parameters must be populated in order to send to Azure. + + :param component: Required. Constant filled by server. Possible values include: + "CosmosDBCassandra", "AzureStorage". Default value: "CosmosDBCassandra". + :type component: str or ~azure.mgmt.cosmosdb.models.DataTransferComponent + :param keyspace_name: Required. + :type keyspace_name: str + :param table_name: Required. + :type table_name: str + """ + + _validation = { + 'component': {'required': True}, + 'keyspace_name': {'required': True}, + 'table_name': {'required': True}, + } + + _attribute_map = { + 'component': {'key': 'component', 'type': 'str'}, + 'keyspace_name': {'key': 'keyspaceName', 'type': 'str'}, + 'table_name': {'key': 'tableName', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(CosmosCassandraDataTransferDataSourceSink, self).__init__(**kwargs) + self.component = 'CosmosDBCassandra' # type: str + self.keyspace_name = kwargs['keyspace_name'] + self.table_name = kwargs['table_name'] + + +class CreateJobRequest(ARMProxyResource): + """Parameters to create Data Transfer Job. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :ivar id: The unique resource identifier of the database account. + :vartype id: str + :ivar name: The name of the database account. + :vartype name: str + :ivar type: The type of Azure resource. + :vartype type: str + :param properties: Required. Data Transfer Create Job Properties. + :type properties: ~azure.mgmt.cosmosdb.models.DataTransferJobProperties + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'properties': {'required': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'properties': {'key': 'properties', 'type': 'DataTransferJobProperties'}, + } + + def __init__( + self, + **kwargs + ): + super(CreateJobRequest, self).__init__(**kwargs) + self.properties = kwargs['properties'] + + class CreateUpdateOptions(msrest.serialization.Model): """CreateUpdateOptions are a list of key-value pairs that describe the resource. Supported keys are "If-Match", "If-None-Match", "Session-Token" and "Throughput". @@ -1915,8 +2533,8 @@ class DatabaseAccountCreateUpdateParameters(ARMResourceProperties): :param analytical_storage_configuration: Analytical storage specific properties. :type analytical_storage_configuration: ~azure.mgmt.cosmosdb.models.AnalyticalStorageConfiguration - :param create_mode: Required. Enum to indicate the mode of account creation.Constant filled by - server. Possible values include: "Default", "Restore". Default value: "Default". + :param create_mode: Enum to indicate the mode of account creation. Possible values include: + "Default", "Restore". Default value: "Default". :type create_mode: str or ~azure.mgmt.cosmosdb.models.CreateMode :param backup_policy: The object representing the policy for taking backups on an account. :type backup_policy: ~azure.mgmt.cosmosdb.models.BackupPolicy @@ -1936,6 +2554,9 @@ class DatabaseAccountCreateUpdateParameters(ARMResourceProperties): :type disable_local_auth: bool :param restore_parameters: Parameters to indicate the information about the restore. :type restore_parameters: ~azure.mgmt.cosmosdb.models.RestoreParameters + :param capacity: The object that represents all properties related to capacity enforcement on + an account. + :type capacity: ~azure.mgmt.cosmosdb.models.Capacity """ _validation = { @@ -1944,7 +2565,6 @@ class DatabaseAccountCreateUpdateParameters(ARMResourceProperties): 'type': {'readonly': True}, 'locations': {'required': True}, 'database_account_offer_type': {'required': True, 'constant': True}, - 'create_mode': {'required': True}, } _attribute_map = { @@ -1982,6 +2602,7 @@ class DatabaseAccountCreateUpdateParameters(ARMResourceProperties): 'diagnostic_log_settings': {'key': 'properties.diagnosticLogSettings', 'type': 'DiagnosticLogSettings'}, 'disable_local_auth': {'key': 'properties.disableLocalAuth', 'type': 'bool'}, 'restore_parameters': {'key': 'properties.restoreParameters', 'type': 'RestoreParameters'}, + 'capacity': {'key': 'properties.capacity', 'type': 'Capacity'}, } database_account_offer_type = "Standard" @@ -2010,166 +2631,7 @@ def __init__( self.api_properties = kwargs.get('api_properties', None) self.enable_analytical_storage = kwargs.get('enable_analytical_storage', None) self.analytical_storage_configuration = kwargs.get('analytical_storage_configuration', None) - self.create_mode = None # type: Optional[str] - self.backup_policy = kwargs.get('backup_policy', None) - self.cors = kwargs.get('cors', None) - self.network_acl_bypass = kwargs.get('network_acl_bypass', None) - self.network_acl_bypass_resource_ids = kwargs.get('network_acl_bypass_resource_ids', None) - self.diagnostic_log_settings = kwargs.get('diagnostic_log_settings', None) - self.disable_local_auth = kwargs.get('disable_local_auth', None) - self.restore_parameters = kwargs.get('restore_parameters', None) - - -class DatabaseAccountCreateUpdateProperties(msrest.serialization.Model): - """Properties to create and update Azure Cosmos DB database accounts. - - You probably want to use the sub-classes and not this class directly. Known - sub-classes are: DefaultRequestDatabaseAccountCreateUpdateProperties. - - Variables are only populated by the server, and will be ignored when sending a request. - - All required parameters must be populated in order to send to Azure. - - :param consistency_policy: The consistency policy for the Cosmos DB account. - :type consistency_policy: ~azure.mgmt.cosmosdb.models.ConsistencyPolicy - :param locations: Required. An array that contains the georeplication locations enabled for the - Cosmos DB account. - :type locations: list[~azure.mgmt.cosmosdb.models.Location] - :ivar database_account_offer_type: The offer type for the database. Has constant value: - "Standard". - :vartype database_account_offer_type: str - :param ip_rules: List of IpRules. - :type ip_rules: list[~azure.mgmt.cosmosdb.models.IpAddressOrRange] - :param is_virtual_network_filter_enabled: Flag to indicate whether to enable/disable Virtual - Network ACL rules. - :type is_virtual_network_filter_enabled: bool - :param enable_automatic_failover: Enables automatic failover of the write region in the rare - event that the region is unavailable due to an outage. Automatic failover will result in a new - write region for the account and is chosen based on the failover priorities configured for the - account. - :type enable_automatic_failover: bool - :param capabilities: List of Cosmos DB capabilities for the account. - :type capabilities: list[~azure.mgmt.cosmosdb.models.Capability] - :param virtual_network_rules: List of Virtual Network ACL rules configured for the Cosmos DB - account. - :type virtual_network_rules: list[~azure.mgmt.cosmosdb.models.VirtualNetworkRule] - :param enable_multiple_write_locations: Enables the account to write in multiple locations. - :type enable_multiple_write_locations: bool - :param enable_cassandra_connector: Enables the cassandra connector on the Cosmos DB C* account. - :type enable_cassandra_connector: bool - :param connector_offer: The cassandra connector offer type for the Cosmos DB database C* - account. Possible values include: "Small". - :type connector_offer: str or ~azure.mgmt.cosmosdb.models.ConnectorOffer - :param disable_key_based_metadata_write_access: Disable write operations on metadata resources - (databases, containers, throughput) via account keys. - :type disable_key_based_metadata_write_access: bool - :param key_vault_key_uri: The URI of the key vault. - :type key_vault_key_uri: str - :param default_identity: The default identity for accessing key vault used in features like - customer managed keys. The default identity needs to be explicitly set by the users. It can be - "FirstPartyIdentity", "SystemAssignedIdentity" and more. - :type default_identity: str - :param public_network_access: Whether requests from Public Network are allowed. Possible values - include: "Enabled", "Disabled". - :type public_network_access: str or ~azure.mgmt.cosmosdb.models.PublicNetworkAccess - :param enable_free_tier: Flag to indicate whether Free Tier is enabled. - :type enable_free_tier: bool - :param api_properties: API specific properties. Currently, supported only for MongoDB API. - :type api_properties: ~azure.mgmt.cosmosdb.models.ApiProperties - :param enable_analytical_storage: Flag to indicate whether to enable storage analytics. - :type enable_analytical_storage: bool - :param analytical_storage_configuration: Analytical storage specific properties. - :type analytical_storage_configuration: - ~azure.mgmt.cosmosdb.models.AnalyticalStorageConfiguration - :param create_mode: Required. Enum to indicate the mode of account creation.Constant filled by - server. Possible values include: "Default", "Restore". Default value: "Default". - :type create_mode: str or ~azure.mgmt.cosmosdb.models.CreateMode - :param backup_policy: The object representing the policy for taking backups on an account. - :type backup_policy: ~azure.mgmt.cosmosdb.models.BackupPolicy - :param cors: The CORS policy for the Cosmos DB database account. - :type cors: list[~azure.mgmt.cosmosdb.models.CorsPolicy] - :param network_acl_bypass: Indicates what services are allowed to bypass firewall checks. - Possible values include: "None", "AzureServices". - :type network_acl_bypass: str or ~azure.mgmt.cosmosdb.models.NetworkAclBypass - :param network_acl_bypass_resource_ids: An array that contains the Resource Ids for Network Acl - Bypass for the Cosmos DB account. - :type network_acl_bypass_resource_ids: list[str] - :param diagnostic_log_settings: The Object representing the different Diagnostic log settings - for the Cosmos DB Account. - :type diagnostic_log_settings: ~azure.mgmt.cosmosdb.models.DiagnosticLogSettings - :param disable_local_auth: Opt-out of local authentication and ensure only MSI and AAD can be - used exclusively for authentication. - :type disable_local_auth: bool - :param restore_parameters: Parameters to indicate the information about the restore. - :type restore_parameters: ~azure.mgmt.cosmosdb.models.RestoreParameters - """ - - _validation = { - 'locations': {'required': True}, - 'database_account_offer_type': {'required': True, 'constant': True}, - 'create_mode': {'required': True}, - } - - _attribute_map = { - 'consistency_policy': {'key': 'consistencyPolicy', 'type': 'ConsistencyPolicy'}, - 'locations': {'key': 'locations', 'type': '[Location]'}, - 'database_account_offer_type': {'key': 'databaseAccountOfferType', 'type': 'str'}, - 'ip_rules': {'key': 'ipRules', 'type': '[IpAddressOrRange]'}, - 'is_virtual_network_filter_enabled': {'key': 'isVirtualNetworkFilterEnabled', 'type': 'bool'}, - 'enable_automatic_failover': {'key': 'enableAutomaticFailover', 'type': 'bool'}, - 'capabilities': {'key': 'capabilities', 'type': '[Capability]'}, - 'virtual_network_rules': {'key': 'virtualNetworkRules', 'type': '[VirtualNetworkRule]'}, - 'enable_multiple_write_locations': {'key': 'enableMultipleWriteLocations', 'type': 'bool'}, - 'enable_cassandra_connector': {'key': 'enableCassandraConnector', 'type': 'bool'}, - 'connector_offer': {'key': 'connectorOffer', 'type': 'str'}, - 'disable_key_based_metadata_write_access': {'key': 'disableKeyBasedMetadataWriteAccess', 'type': 'bool'}, - 'key_vault_key_uri': {'key': 'keyVaultKeyUri', 'type': 'str'}, - 'default_identity': {'key': 'defaultIdentity', 'type': 'str'}, - 'public_network_access': {'key': 'publicNetworkAccess', 'type': 'str'}, - 'enable_free_tier': {'key': 'enableFreeTier', 'type': 'bool'}, - 'api_properties': {'key': 'apiProperties', 'type': 'ApiProperties'}, - 'enable_analytical_storage': {'key': 'enableAnalyticalStorage', 'type': 'bool'}, - 'analytical_storage_configuration': {'key': 'analyticalStorageConfiguration', 'type': 'AnalyticalStorageConfiguration'}, - 'create_mode': {'key': 'createMode', 'type': 'str'}, - 'backup_policy': {'key': 'backupPolicy', 'type': 'BackupPolicy'}, - 'cors': {'key': 'cors', 'type': '[CorsPolicy]'}, - 'network_acl_bypass': {'key': 'networkAclBypass', 'type': 'str'}, - 'network_acl_bypass_resource_ids': {'key': 'networkAclBypassResourceIds', 'type': '[str]'}, - 'diagnostic_log_settings': {'key': 'diagnosticLogSettings', 'type': 'DiagnosticLogSettings'}, - 'disable_local_auth': {'key': 'disableLocalAuth', 'type': 'bool'}, - 'restore_parameters': {'key': 'restoreParameters', 'type': 'RestoreParameters'}, - } - - _subtype_map = { - 'create_mode': {'Default': 'DefaultRequestDatabaseAccountCreateUpdateProperties'} - } - - database_account_offer_type = "Standard" - - def __init__( - self, - **kwargs - ): - super(DatabaseAccountCreateUpdateProperties, self).__init__(**kwargs) - self.consistency_policy = kwargs.get('consistency_policy', None) - self.locations = kwargs['locations'] - self.ip_rules = kwargs.get('ip_rules', None) - self.is_virtual_network_filter_enabled = kwargs.get('is_virtual_network_filter_enabled', None) - self.enable_automatic_failover = kwargs.get('enable_automatic_failover', None) - self.capabilities = kwargs.get('capabilities', None) - self.virtual_network_rules = kwargs.get('virtual_network_rules', None) - self.enable_multiple_write_locations = kwargs.get('enable_multiple_write_locations', None) - self.enable_cassandra_connector = kwargs.get('enable_cassandra_connector', None) - self.connector_offer = kwargs.get('connector_offer', None) - self.disable_key_based_metadata_write_access = kwargs.get('disable_key_based_metadata_write_access', None) - self.key_vault_key_uri = kwargs.get('key_vault_key_uri', None) - self.default_identity = kwargs.get('default_identity', None) - self.public_network_access = kwargs.get('public_network_access', None) - self.enable_free_tier = kwargs.get('enable_free_tier', None) - self.api_properties = kwargs.get('api_properties', None) - self.enable_analytical_storage = kwargs.get('enable_analytical_storage', None) - self.analytical_storage_configuration = kwargs.get('analytical_storage_configuration', None) - self.create_mode = None # type: Optional[str] + self.create_mode = kwargs.get('create_mode', "Default") self.backup_policy = kwargs.get('backup_policy', None) self.cors = kwargs.get('cors', None) self.network_acl_bypass = kwargs.get('network_acl_bypass', None) @@ -2177,6 +2639,7 @@ def __init__( self.diagnostic_log_settings = kwargs.get('diagnostic_log_settings', None) self.disable_local_auth = kwargs.get('disable_local_auth', None) self.restore_parameters = kwargs.get('restore_parameters', None) + self.capacity = kwargs.get('capacity', None) class DatabaseAccountGetResults(ARMResourceProperties): @@ -2302,6 +2765,9 @@ class DatabaseAccountGetResults(ARMResourceProperties): :param disable_local_auth: Opt-out of local authentication and ensure only MSI and AAD can be used exclusively for authentication. :type disable_local_auth: bool + :param capacity: The object that represents all properties related to capacity enforcement on + an account. + :type capacity: ~azure.mgmt.cosmosdb.models.Capacity """ _validation = { @@ -2363,6 +2829,7 @@ class DatabaseAccountGetResults(ARMResourceProperties): 'network_acl_bypass_resource_ids': {'key': 'properties.networkAclBypassResourceIds', 'type': '[str]'}, 'diagnostic_log_settings': {'key': 'properties.diagnosticLogSettings', 'type': 'DiagnosticLogSettings'}, 'disable_local_auth': {'key': 'properties.disableLocalAuth', 'type': 'bool'}, + 'capacity': {'key': 'properties.capacity', 'type': 'Capacity'}, } def __init__( @@ -2406,6 +2873,7 @@ def __init__( self.network_acl_bypass_resource_ids = kwargs.get('network_acl_bypass_resource_ids', None) self.diagnostic_log_settings = kwargs.get('diagnostic_log_settings', None) self.disable_local_auth = kwargs.get('disable_local_auth', None) + self.capacity = kwargs.get('capacity', None) class DatabaseAccountListConnectionStringsResult(msrest.serialization.Model): @@ -2625,6 +3093,9 @@ class DatabaseAccountUpdateParameters(msrest.serialization.Model): :param disable_local_auth: Opt-out of local authentication and ensure only MSI and AAD can be used exclusively for authentication. :type disable_local_auth: bool + :param capacity: The object that represents all properties related to capacity enforcement on + an account. + :type capacity: ~azure.mgmt.cosmosdb.models.Capacity """ _attribute_map = { @@ -2655,6 +3126,7 @@ class DatabaseAccountUpdateParameters(msrest.serialization.Model): 'network_acl_bypass_resource_ids': {'key': 'properties.networkAclBypassResourceIds', 'type': '[str]'}, 'diagnostic_log_settings': {'key': 'properties.diagnosticLogSettings', 'type': 'DiagnosticLogSettings'}, 'disable_local_auth': {'key': 'properties.disableLocalAuth', 'type': 'bool'}, + 'capacity': {'key': 'properties.capacity', 'type': 'Capacity'}, } def __init__( @@ -2689,6 +3161,7 @@ def __init__( self.network_acl_bypass_resource_ids = kwargs.get('network_acl_bypass_resource_ids', None) self.diagnostic_log_settings = kwargs.get('diagnostic_log_settings', None) self.disable_local_auth = kwargs.get('disable_local_auth', None) + self.capacity = kwargs.get('capacity', None) class DatabaseRestoreResource(msrest.serialization.Model): @@ -2780,6 +3253,26 @@ class DataCenterResourceProperties(msrest.serialization.Model): file to be included in the cassandra.yaml for all nodes in this data center. The fragment should be Base64 encoded, and only a subset of keys are allowed. :type base64_encoded_cassandra_yaml_fragment: str + :param managed_disk_customer_key_uri: Key uri to use for encryption of managed disks. Ensure + the system assigned identity of the cluster has been assigned appropriate permissions(key + get/wrap/unwrap permissions) on the key. + :type managed_disk_customer_key_uri: str + :param backup_storage_customer_key_uri: Indicates the Key Uri of the customer key to use for + encryption of the backup storage account. + :type backup_storage_customer_key_uri: str + :param sku: Virtual Machine SKU used for data centers. Default value is Standard_DS14_v2. + :type sku: str + :param disk_sku: Disk SKU used for data centers. Default value is P30. + :type disk_sku: str + :param disk_capacity: Number of disk used for data centers. Default value is 4. + :type disk_capacity: int + :param availability_zone: If the data center has Availability Zone feature, apply it to the + Virtual Machine ScaleSet that host the cassandra data center virtual machines. + :type availability_zone: bool + :param authentication_method_ldap_properties: Ldap authentication method properties. This + feature is in preview. + :type authentication_method_ldap_properties: + ~azure.mgmt.cosmosdb.models.AuthenticationMethodLdapProperties """ _validation = { @@ -2793,19 +3286,195 @@ class DataCenterResourceProperties(msrest.serialization.Model): 'node_count': {'key': 'nodeCount', 'type': 'int'}, 'seed_nodes': {'key': 'seedNodes', 'type': '[SeedNode]'}, 'base64_encoded_cassandra_yaml_fragment': {'key': 'base64EncodedCassandraYamlFragment', 'type': 'str'}, + 'managed_disk_customer_key_uri': {'key': 'managedDiskCustomerKeyUri', 'type': 'str'}, + 'backup_storage_customer_key_uri': {'key': 'backupStorageCustomerKeyUri', 'type': 'str'}, + 'sku': {'key': 'sku', 'type': 'str'}, + 'disk_sku': {'key': 'diskSku', 'type': 'str'}, + 'disk_capacity': {'key': 'diskCapacity', 'type': 'int'}, + 'availability_zone': {'key': 'availabilityZone', 'type': 'bool'}, + 'authentication_method_ldap_properties': {'key': 'authenticationMethodLdapProperties', 'type': 'AuthenticationMethodLdapProperties'}, + } + + def __init__( + self, + **kwargs + ): + super(DataCenterResourceProperties, self).__init__(**kwargs) + self.provisioning_state = kwargs.get('provisioning_state', None) + self.data_center_location = kwargs.get('data_center_location', None) + self.delegated_subnet_id = kwargs.get('delegated_subnet_id', None) + self.node_count = kwargs.get('node_count', None) + self.seed_nodes = None + self.base64_encoded_cassandra_yaml_fragment = kwargs.get('base64_encoded_cassandra_yaml_fragment', None) + self.managed_disk_customer_key_uri = kwargs.get('managed_disk_customer_key_uri', None) + self.backup_storage_customer_key_uri = kwargs.get('backup_storage_customer_key_uri', None) + self.sku = kwargs.get('sku', None) + self.disk_sku = kwargs.get('disk_sku', None) + self.disk_capacity = kwargs.get('disk_capacity', None) + self.availability_zone = kwargs.get('availability_zone', None) + self.authentication_method_ldap_properties = kwargs.get('authentication_method_ldap_properties', None) + + +class DataTransferJobFeedResults(msrest.serialization.Model): + """The List operation response, that contains the Data Transfer jobs and their properties. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: List of Data Transfer jobs and their properties. + :vartype value: list[~azure.mgmt.cosmosdb.models.DataTransferJobGetResults] + :ivar next_link: URL to get the next set of Data Transfer job list results if there are any. + :vartype next_link: str + """ + + _validation = { + 'value': {'readonly': True}, + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[DataTransferJobGetResults]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(DataTransferJobFeedResults, self).__init__(**kwargs) + self.value = None + self.next_link = None + + +class DataTransferJobGetResults(ARMProxyResource): + """A Cosmos DB Data Transfer Job. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: The unique resource identifier of the database account. + :vartype id: str + :ivar name: The name of the database account. + :vartype name: str + :ivar type: The type of Azure resource. + :vartype type: str + :ivar job_name: Job Name. + :vartype job_name: str + :param source: Source DataStore details. + :type source: ~azure.mgmt.cosmosdb.models.DataTransferDataSourceSink + :param destination: Destination DataStore details. + :type destination: ~azure.mgmt.cosmosdb.models.DataTransferDataSourceSink + :ivar status: Job Status. + :vartype status: str + :ivar percentage_complete: Percentage of completion. + :vartype percentage_complete: float + :ivar last_updated_utc_time: Last Updated Time (ISO-8601 format). + :vartype last_updated_utc_time: ~datetime.datetime + :param worker_count: Worker count. + :type worker_count: int + :ivar error: Error response for Faulted job. + :vartype error: ~azure.mgmt.cosmosdb.models.ErrorResponse + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'job_name': {'readonly': True}, + 'status': {'readonly': True}, + 'percentage_complete': {'readonly': True}, + 'last_updated_utc_time': {'readonly': True}, + 'worker_count': {'minimum': 0}, + 'error': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'job_name': {'key': 'properties.jobName', 'type': 'str'}, + 'source': {'key': 'properties.source', 'type': 'DataTransferDataSourceSink'}, + 'destination': {'key': 'properties.destination', 'type': 'DataTransferDataSourceSink'}, + 'status': {'key': 'properties.status', 'type': 'str'}, + 'percentage_complete': {'key': 'properties.percentageComplete', 'type': 'float'}, + 'last_updated_utc_time': {'key': 'properties.lastUpdatedUtcTime', 'type': 'iso-8601'}, + 'worker_count': {'key': 'properties.workerCount', 'type': 'int'}, + 'error': {'key': 'properties.error', 'type': 'ErrorResponse'}, + } + + def __init__( + self, + **kwargs + ): + super(DataTransferJobGetResults, self).__init__(**kwargs) + self.job_name = None + self.source = kwargs.get('source', None) + self.destination = kwargs.get('destination', None) + self.status = None + self.percentage_complete = None + self.last_updated_utc_time = None + self.worker_count = kwargs.get('worker_count', None) + self.error = None + + +class DataTransferJobProperties(msrest.serialization.Model): + """The properties of a DataTransfer Job. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :ivar job_name: Job Name. + :vartype job_name: str + :param source: Required. Source DataStore details. + :type source: ~azure.mgmt.cosmosdb.models.DataTransferDataSourceSink + :param destination: Required. Destination DataStore details. + :type destination: ~azure.mgmt.cosmosdb.models.DataTransferDataSourceSink + :ivar status: Job Status. + :vartype status: str + :ivar percentage_complete: Percentage of completion. + :vartype percentage_complete: float + :ivar last_updated_utc_time: Last Updated Time (ISO-8601 format). + :vartype last_updated_utc_time: ~datetime.datetime + :param worker_count: Worker count. + :type worker_count: int + :ivar error: Error response for Faulted job. + :vartype error: ~azure.mgmt.cosmosdb.models.ErrorResponse + """ + + _validation = { + 'job_name': {'readonly': True}, + 'source': {'required': True}, + 'destination': {'required': True}, + 'status': {'readonly': True}, + 'percentage_complete': {'readonly': True}, + 'last_updated_utc_time': {'readonly': True}, + 'worker_count': {'minimum': 0}, + 'error': {'readonly': True}, + } + + _attribute_map = { + 'job_name': {'key': 'jobName', 'type': 'str'}, + 'source': {'key': 'source', 'type': 'DataTransferDataSourceSink'}, + 'destination': {'key': 'destination', 'type': 'DataTransferDataSourceSink'}, + 'status': {'key': 'status', 'type': 'str'}, + 'percentage_complete': {'key': 'percentageComplete', 'type': 'float'}, + 'last_updated_utc_time': {'key': 'lastUpdatedUtcTime', 'type': 'iso-8601'}, + 'worker_count': {'key': 'workerCount', 'type': 'int'}, + 'error': {'key': 'error', 'type': 'ErrorResponse'}, } def __init__( self, **kwargs ): - super(DataCenterResourceProperties, self).__init__(**kwargs) - self.provisioning_state = kwargs.get('provisioning_state', None) - self.data_center_location = kwargs.get('data_center_location', None) - self.delegated_subnet_id = kwargs.get('delegated_subnet_id', None) - self.node_count = kwargs.get('node_count', None) - self.seed_nodes = None - self.base64_encoded_cassandra_yaml_fragment = kwargs.get('base64_encoded_cassandra_yaml_fragment', None) + super(DataTransferJobProperties, self).__init__(**kwargs) + self.job_name = None + self.source = kwargs['source'] + self.destination = kwargs['destination'] + self.status = None + self.percentage_complete = None + self.last_updated_utc_time = None + self.worker_count = kwargs.get('worker_count', None) + self.error = None class RegionalServiceResource(msrest.serialization.Model): @@ -2899,6 +3568,9 @@ def __init__( class ServiceResourceProperties(msrest.serialization.Model): """Services response resource. + You probably want to use the sub-classes and not this class directly. Known + sub-classes are: DataTransferServiceResourceProperties, GraphAPIComputeServiceResourceProperties, MaterializedViewsBuilderServiceResourceProperties, SqlDedicatedGatewayServiceResourceProperties. + Variables are only populated by the server, and will be ignored when sending a request. All required parameters must be populated in order to send to Azure. @@ -2913,8 +3585,9 @@ class ServiceResourceProperties(msrest.serialization.Model): :type instance_size: str or ~azure.mgmt.cosmosdb.models.ServiceSize :param instance_count: Instance count for the service. :type instance_count: int - :param service_type: Required. ServiceType for the service. Possible values include: - "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute". + :param service_type: Required. ServiceType for the service.Constant filled by server. Possible + values include: "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute", + "MaterializedViewsBuilder". :type service_type: str or ~azure.mgmt.cosmosdb.models.ServiceType :ivar status: Describes the status of a service. Possible values include: "Creating", "Running", "Updating", "Deleting", "Error", "Stopped". @@ -2937,6 +3610,10 @@ class ServiceResourceProperties(msrest.serialization.Model): 'status': {'key': 'status', 'type': 'str'}, } + _subtype_map = { + 'service_type': {'DataTransfer': 'DataTransferServiceResourceProperties', 'GraphAPICompute': 'GraphAPIComputeServiceResourceProperties', 'MaterializedViewsBuilder': 'MaterializedViewsBuilderServiceResourceProperties', 'SqlDedicatedGateway': 'SqlDedicatedGatewayServiceResourceProperties'} + } + def __init__( self, **kwargs @@ -2946,7 +3623,7 @@ def __init__( self.creation_time = None self.instance_size = kwargs.get('instance_size', None) self.instance_count = kwargs.get('instance_count', None) - self.service_type = kwargs['service_type'] + self.service_type = 'ServiceResourceProperties' # type: str self.status = None @@ -2967,8 +3644,9 @@ class DataTransferServiceResourceProperties(ServiceResourceProperties): :type instance_size: str or ~azure.mgmt.cosmosdb.models.ServiceSize :param instance_count: Instance count for the service. :type instance_count: int - :param service_type: Required. ServiceType for the service. Possible values include: - "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute". + :param service_type: Required. ServiceType for the service.Constant filled by server. Possible + values include: "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute", + "MaterializedViewsBuilder". :type service_type: str or ~azure.mgmt.cosmosdb.models.ServiceType :ivar status: Describes the status of a service. Possible values include: "Creating", "Running", "Updating", "Deleting", "Error", "Stopped". @@ -3000,136 +3678,10 @@ def __init__( **kwargs ): super(DataTransferServiceResourceProperties, self).__init__(**kwargs) + self.service_type = 'DataTransfer' # type: str self.locations = None -class DefaultRequestDatabaseAccountCreateUpdateProperties(DatabaseAccountCreateUpdateProperties): - """Properties for non-restore Azure Cosmos DB database account requests. - - Variables are only populated by the server, and will be ignored when sending a request. - - All required parameters must be populated in order to send to Azure. - - :param consistency_policy: The consistency policy for the Cosmos DB account. - :type consistency_policy: ~azure.mgmt.cosmosdb.models.ConsistencyPolicy - :param locations: Required. An array that contains the georeplication locations enabled for the - Cosmos DB account. - :type locations: list[~azure.mgmt.cosmosdb.models.Location] - :ivar database_account_offer_type: The offer type for the database. Has constant value: - "Standard". - :vartype database_account_offer_type: str - :param ip_rules: List of IpRules. - :type ip_rules: list[~azure.mgmt.cosmosdb.models.IpAddressOrRange] - :param is_virtual_network_filter_enabled: Flag to indicate whether to enable/disable Virtual - Network ACL rules. - :type is_virtual_network_filter_enabled: bool - :param enable_automatic_failover: Enables automatic failover of the write region in the rare - event that the region is unavailable due to an outage. Automatic failover will result in a new - write region for the account and is chosen based on the failover priorities configured for the - account. - :type enable_automatic_failover: bool - :param capabilities: List of Cosmos DB capabilities for the account. - :type capabilities: list[~azure.mgmt.cosmosdb.models.Capability] - :param virtual_network_rules: List of Virtual Network ACL rules configured for the Cosmos DB - account. - :type virtual_network_rules: list[~azure.mgmt.cosmosdb.models.VirtualNetworkRule] - :param enable_multiple_write_locations: Enables the account to write in multiple locations. - :type enable_multiple_write_locations: bool - :param enable_cassandra_connector: Enables the cassandra connector on the Cosmos DB C* account. - :type enable_cassandra_connector: bool - :param connector_offer: The cassandra connector offer type for the Cosmos DB database C* - account. Possible values include: "Small". - :type connector_offer: str or ~azure.mgmt.cosmosdb.models.ConnectorOffer - :param disable_key_based_metadata_write_access: Disable write operations on metadata resources - (databases, containers, throughput) via account keys. - :type disable_key_based_metadata_write_access: bool - :param key_vault_key_uri: The URI of the key vault. - :type key_vault_key_uri: str - :param default_identity: The default identity for accessing key vault used in features like - customer managed keys. The default identity needs to be explicitly set by the users. It can be - "FirstPartyIdentity", "SystemAssignedIdentity" and more. - :type default_identity: str - :param public_network_access: Whether requests from Public Network are allowed. Possible values - include: "Enabled", "Disabled". - :type public_network_access: str or ~azure.mgmt.cosmosdb.models.PublicNetworkAccess - :param enable_free_tier: Flag to indicate whether Free Tier is enabled. - :type enable_free_tier: bool - :param api_properties: API specific properties. Currently, supported only for MongoDB API. - :type api_properties: ~azure.mgmt.cosmosdb.models.ApiProperties - :param enable_analytical_storage: Flag to indicate whether to enable storage analytics. - :type enable_analytical_storage: bool - :param analytical_storage_configuration: Analytical storage specific properties. - :type analytical_storage_configuration: - ~azure.mgmt.cosmosdb.models.AnalyticalStorageConfiguration - :param create_mode: Required. Enum to indicate the mode of account creation.Constant filled by - server. Possible values include: "Default", "Restore". Default value: "Default". - :type create_mode: str or ~azure.mgmt.cosmosdb.models.CreateMode - :param backup_policy: The object representing the policy for taking backups on an account. - :type backup_policy: ~azure.mgmt.cosmosdb.models.BackupPolicy - :param cors: The CORS policy for the Cosmos DB database account. - :type cors: list[~azure.mgmt.cosmosdb.models.CorsPolicy] - :param network_acl_bypass: Indicates what services are allowed to bypass firewall checks. - Possible values include: "None", "AzureServices". - :type network_acl_bypass: str or ~azure.mgmt.cosmosdb.models.NetworkAclBypass - :param network_acl_bypass_resource_ids: An array that contains the Resource Ids for Network Acl - Bypass for the Cosmos DB account. - :type network_acl_bypass_resource_ids: list[str] - :param diagnostic_log_settings: The Object representing the different Diagnostic log settings - for the Cosmos DB Account. - :type diagnostic_log_settings: ~azure.mgmt.cosmosdb.models.DiagnosticLogSettings - :param disable_local_auth: Opt-out of local authentication and ensure only MSI and AAD can be - used exclusively for authentication. - :type disable_local_auth: bool - :param restore_parameters: Parameters to indicate the information about the restore. - :type restore_parameters: ~azure.mgmt.cosmosdb.models.RestoreParameters - """ - - _validation = { - 'locations': {'required': True}, - 'database_account_offer_type': {'required': True, 'constant': True}, - 'create_mode': {'required': True}, - } - - _attribute_map = { - 'consistency_policy': {'key': 'consistencyPolicy', 'type': 'ConsistencyPolicy'}, - 'locations': {'key': 'locations', 'type': '[Location]'}, - 'database_account_offer_type': {'key': 'databaseAccountOfferType', 'type': 'str'}, - 'ip_rules': {'key': 'ipRules', 'type': '[IpAddressOrRange]'}, - 'is_virtual_network_filter_enabled': {'key': 'isVirtualNetworkFilterEnabled', 'type': 'bool'}, - 'enable_automatic_failover': {'key': 'enableAutomaticFailover', 'type': 'bool'}, - 'capabilities': {'key': 'capabilities', 'type': '[Capability]'}, - 'virtual_network_rules': {'key': 'virtualNetworkRules', 'type': '[VirtualNetworkRule]'}, - 'enable_multiple_write_locations': {'key': 'enableMultipleWriteLocations', 'type': 'bool'}, - 'enable_cassandra_connector': {'key': 'enableCassandraConnector', 'type': 'bool'}, - 'connector_offer': {'key': 'connectorOffer', 'type': 'str'}, - 'disable_key_based_metadata_write_access': {'key': 'disableKeyBasedMetadataWriteAccess', 'type': 'bool'}, - 'key_vault_key_uri': {'key': 'keyVaultKeyUri', 'type': 'str'}, - 'default_identity': {'key': 'defaultIdentity', 'type': 'str'}, - 'public_network_access': {'key': 'publicNetworkAccess', 'type': 'str'}, - 'enable_free_tier': {'key': 'enableFreeTier', 'type': 'bool'}, - 'api_properties': {'key': 'apiProperties', 'type': 'ApiProperties'}, - 'enable_analytical_storage': {'key': 'enableAnalyticalStorage', 'type': 'bool'}, - 'analytical_storage_configuration': {'key': 'analyticalStorageConfiguration', 'type': 'AnalyticalStorageConfiguration'}, - 'create_mode': {'key': 'createMode', 'type': 'str'}, - 'backup_policy': {'key': 'backupPolicy', 'type': 'BackupPolicy'}, - 'cors': {'key': 'cors', 'type': '[CorsPolicy]'}, - 'network_acl_bypass': {'key': 'networkAclBypass', 'type': 'str'}, - 'network_acl_bypass_resource_ids': {'key': 'networkAclBypassResourceIds', 'type': '[str]'}, - 'diagnostic_log_settings': {'key': 'diagnosticLogSettings', 'type': 'DiagnosticLogSettings'}, - 'disable_local_auth': {'key': 'disableLocalAuth', 'type': 'bool'}, - 'restore_parameters': {'key': 'restoreParameters', 'type': 'RestoreParameters'}, - } - - database_account_offer_type = "Standard" - - def __init__( - self, - **kwargs - ): - super(DefaultRequestDatabaseAccountCreateUpdateProperties, self).__init__(**kwargs) - self.create_mode = 'Default' # type: str - - class DiagnosticLogSettings(msrest.serialization.Model): """Indicates what diagnostic log settings are to be enabled. @@ -3330,8 +3882,9 @@ class GraphAPIComputeServiceResourceProperties(ServiceResourceProperties): :type instance_size: str or ~azure.mgmt.cosmosdb.models.ServiceSize :param instance_count: Instance count for the service. :type instance_count: int - :param service_type: Required. ServiceType for the service. Possible values include: - "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute". + :param service_type: Required. ServiceType for the service.Constant filled by server. Possible + values include: "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute", + "MaterializedViewsBuilder". :type service_type: str or ~azure.mgmt.cosmosdb.models.ServiceType :ivar status: Describes the status of a service. Possible values include: "Creating", "Running", "Updating", "Deleting", "Error", "Stopped". @@ -3366,6 +3919,7 @@ def __init__( **kwargs ): super(GraphAPIComputeServiceResourceProperties, self).__init__(**kwargs) + self.service_type = 'GraphAPICompute' # type: str self.graph_api_compute_endpoint = kwargs.get('graph_api_compute_endpoint', None) self.locations = None @@ -4214,6 +4768,33 @@ def __init__( self.ip_address_or_range = kwargs.get('ip_address_or_range', None) +class KeyWrapMetadata(msrest.serialization.Model): + """Represents key wrap metadata that a key wrapping provider can use to wrap/unwrap a client encryption key. + + :param name: The name of associated KeyEncryptionKey (aka CustomerManagedKey). + :type name: str + :param type: ProviderName of KeyStoreProvider. + :type type: str + :param value: Reference / link to the KeyEncryptionKey. + :type value: str + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'value': {'key': 'value', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(KeyWrapMetadata, self).__init__(**kwargs) + self.name = kwargs.get('name', None) + self.type = kwargs.get('type', None) + self.value = kwargs.get('value', None) + + class ListBackups(msrest.serialization.Model): """List of restorable backups for a Cassandra cluster. @@ -4439,57 +5020,226 @@ def __init__( self, **kwargs ): - super(LocationProperties, self).__init__(**kwargs) - self.status = None - self.supports_availability_zone = None - self.is_residency_restricted = None - self.backup_storage_redundancies = None + super(LocationProperties, self).__init__(**kwargs) + self.status = None + self.supports_availability_zone = None + self.is_residency_restricted = None + self.backup_storage_redundancies = None + + +class ManagedCassandraManagedServiceIdentity(msrest.serialization.Model): + """Identity for the resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar principal_id: The object id of the identity resource. + :vartype principal_id: str + :ivar tenant_id: The tenant id of the resource. + :vartype tenant_id: str + :param type: The type of the resource. Possible values include: "SystemAssigned", "None". + :type type: str or ~azure.mgmt.cosmosdb.models.ManagedCassandraResourceIdentityType + """ + + _validation = { + 'principal_id': {'readonly': True}, + 'tenant_id': {'readonly': True}, + } + + _attribute_map = { + 'principal_id': {'key': 'principalId', 'type': 'str'}, + 'tenant_id': {'key': 'tenantId', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(ManagedCassandraManagedServiceIdentity, self).__init__(**kwargs) + self.principal_id = None + self.tenant_id = None + self.type = kwargs.get('type', None) + + +class ManagedCassandraReaperStatus(msrest.serialization.Model): + """ManagedCassandraReaperStatus. + + :param healthy: + :type healthy: bool + :param repair_run_ids: Dictionary of :code:``. + :type repair_run_ids: dict[str, str] + :param repair_schedules: Dictionary of :code:``. + :type repair_schedules: dict[str, str] + """ + + _attribute_map = { + 'healthy': {'key': 'healthy', 'type': 'bool'}, + 'repair_run_ids': {'key': 'repairRunIds', 'type': '{str}'}, + 'repair_schedules': {'key': 'repairSchedules', 'type': '{str}'}, + } + + def __init__( + self, + **kwargs + ): + super(ManagedCassandraReaperStatus, self).__init__(**kwargs) + self.healthy = kwargs.get('healthy', None) + self.repair_run_ids = kwargs.get('repair_run_ids', None) + self.repair_schedules = kwargs.get('repair_schedules', None) + + +class ManagedServiceIdentity(msrest.serialization.Model): + """Identity for the resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar principal_id: The principal id of the system assigned identity. This property will only + be provided for a system assigned identity. + :vartype principal_id: str + :ivar tenant_id: The tenant id of the system assigned identity. This property will only be + provided for a system assigned identity. + :vartype tenant_id: str + :param type: The type of identity used for the resource. The type 'SystemAssigned,UserAssigned' + includes both an implicitly created identity and a set of user assigned identities. The type + 'None' will remove any identities from the service. Possible values include: "SystemAssigned", + "UserAssigned", "SystemAssigned,UserAssigned", "None". + :type type: str or ~azure.mgmt.cosmosdb.models.ResourceIdentityType + :param user_assigned_identities: The list of user identities associated with resource. The user + identity dictionary key references will be ARM resource ids in the form: + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. + :type user_assigned_identities: dict[str, + ~azure.mgmt.cosmosdb.models.Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties] + """ + + _validation = { + 'principal_id': {'readonly': True}, + 'tenant_id': {'readonly': True}, + } + + _attribute_map = { + 'principal_id': {'key': 'principalId', 'type': 'str'}, + 'tenant_id': {'key': 'tenantId', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'user_assigned_identities': {'key': 'userAssignedIdentities', 'type': '{Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties}'}, + } + + def __init__( + self, + **kwargs + ): + super(ManagedServiceIdentity, self).__init__(**kwargs) + self.principal_id = None + self.tenant_id = None + self.type = kwargs.get('type', None) + self.user_assigned_identities = kwargs.get('user_assigned_identities', None) + + +class MaterializedViewsBuilderRegionalServiceResource(RegionalServiceResource): + """Resource for a regional service location. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar name: The regional service name. + :vartype name: str + :ivar location: The location name. + :vartype location: str + :ivar status: Describes the status of a service. Possible values include: "Creating", + "Running", "Updating", "Deleting", "Error", "Stopped". + :vartype status: str or ~azure.mgmt.cosmosdb.models.ServiceStatus + """ + + _validation = { + 'name': {'readonly': True}, + 'location': {'readonly': True}, + 'status': {'readonly': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'status': {'key': 'status', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(MaterializedViewsBuilderRegionalServiceResource, self).__init__(**kwargs) + + +class MaterializedViewsBuilderServiceResource(msrest.serialization.Model): + """Describes the service response property for MaterializedViewsBuilder. + + :param properties: Properties for MaterializedViewsBuilderServiceResource. + :type properties: ~azure.mgmt.cosmosdb.models.MaterializedViewsBuilderServiceResourceProperties + """ + + _attribute_map = { + 'properties': {'key': 'properties', 'type': 'MaterializedViewsBuilderServiceResourceProperties'}, + } + + def __init__( + self, + **kwargs + ): + super(MaterializedViewsBuilderServiceResource, self).__init__(**kwargs) + self.properties = kwargs.get('properties', None) -class ManagedServiceIdentity(msrest.serialization.Model): - """Identity for the resource. +class MaterializedViewsBuilderServiceResourceProperties(ServiceResourceProperties): + """Properties for MaterializedViewsBuilderServiceResource. Variables are only populated by the server, and will be ignored when sending a request. - :ivar principal_id: The principal id of the system assigned identity. This property will only - be provided for a system assigned identity. - :vartype principal_id: str - :ivar tenant_id: The tenant id of the system assigned identity. This property will only be - provided for a system assigned identity. - :vartype tenant_id: str - :param type: The type of identity used for the resource. The type 'SystemAssigned,UserAssigned' - includes both an implicitly created identity and a set of user assigned identities. The type - 'None' will remove any identities from the service. Possible values include: "SystemAssigned", - "UserAssigned", "SystemAssigned,UserAssigned", "None". - :type type: str or ~azure.mgmt.cosmosdb.models.ResourceIdentityType - :param user_assigned_identities: The list of user identities associated with resource. The user - identity dictionary key references will be ARM resource ids in the form: - '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. - :type user_assigned_identities: dict[str, - ~azure.mgmt.cosmosdb.models.Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties] + All required parameters must be populated in order to send to Azure. + + :param additional_properties: Unmatched properties from the message are deserialized to this + collection. + :type additional_properties: dict[str, any] + :ivar creation_time: Time of the last state change (ISO-8601 format). + :vartype creation_time: ~datetime.datetime + :param instance_size: Instance type for the service. Possible values include: "Cosmos.D4s", + "Cosmos.D8s", "Cosmos.D16s". + :type instance_size: str or ~azure.mgmt.cosmosdb.models.ServiceSize + :param instance_count: Instance count for the service. + :type instance_count: int + :param service_type: Required. ServiceType for the service.Constant filled by server. Possible + values include: "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute", + "MaterializedViewsBuilder". + :type service_type: str or ~azure.mgmt.cosmosdb.models.ServiceType + :ivar status: Describes the status of a service. Possible values include: "Creating", + "Running", "Updating", "Deleting", "Error", "Stopped". + :vartype status: str or ~azure.mgmt.cosmosdb.models.ServiceStatus + :ivar locations: An array that contains all of the locations for the service. + :vartype locations: + list[~azure.mgmt.cosmosdb.models.MaterializedViewsBuilderRegionalServiceResource] """ _validation = { - 'principal_id': {'readonly': True}, - 'tenant_id': {'readonly': True}, + 'creation_time': {'readonly': True}, + 'instance_count': {'minimum': 0}, + 'service_type': {'required': True}, + 'status': {'readonly': True}, + 'locations': {'readonly': True}, } _attribute_map = { - 'principal_id': {'key': 'principalId', 'type': 'str'}, - 'tenant_id': {'key': 'tenantId', 'type': 'str'}, - 'type': {'key': 'type', 'type': 'str'}, - 'user_assigned_identities': {'key': 'userAssignedIdentities', 'type': '{Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties}'}, + 'additional_properties': {'key': '', 'type': '{object}'}, + 'creation_time': {'key': 'creationTime', 'type': 'iso-8601'}, + 'instance_size': {'key': 'instanceSize', 'type': 'str'}, + 'instance_count': {'key': 'instanceCount', 'type': 'int'}, + 'service_type': {'key': 'serviceType', 'type': 'str'}, + 'status': {'key': 'status', 'type': 'str'}, + 'locations': {'key': 'locations', 'type': '[MaterializedViewsBuilderRegionalServiceResource]'}, } def __init__( self, **kwargs ): - super(ManagedServiceIdentity, self).__init__(**kwargs) - self.principal_id = None - self.tenant_id = None - self.type = kwargs.get('type', None) - self.user_assigned_identities = kwargs.get('user_assigned_identities', None) + super(MaterializedViewsBuilderServiceResourceProperties, self).__init__(**kwargs) + self.service_type = 'MaterializedViewsBuilder' # type: str + self.locations = None class Metric(msrest.serialization.Model): @@ -5293,6 +6043,252 @@ def __init__( self.unique = kwargs.get('unique', None) +class MongoRoleDefinitionCreateUpdateParameters(msrest.serialization.Model): + """Parameters to create and update an Azure Cosmos DB Mongo Role Definition. + + :param role_name: A user-friendly name for the Role Definition. Must be unique for the database + account. + :type role_name: str + :param type: Indicates whether the Role Definition was built-in or user created. Possible + values include: "BuiltInRole", "CustomRole". + :type type: str or ~azure.mgmt.cosmosdb.models.MongoRoleDefinitionType + :param database_name: The database name for which access is being granted for this Role + Definition. + :type database_name: str + :param privileges: A set of privileges contained by the Role Definition. This will allow + application of this Role Definition on the entire database account or any underlying Database / + Collection. Scopes higher than Database are not enforceable as privilege. + :type privileges: list[~azure.mgmt.cosmosdb.models.Privilege] + :param roles: The set of roles inherited by this Role Definition. + :type roles: list[~azure.mgmt.cosmosdb.models.Role] + """ + + _attribute_map = { + 'role_name': {'key': 'properties.roleName', 'type': 'str'}, + 'type': {'key': 'properties.type', 'type': 'str'}, + 'database_name': {'key': 'properties.databaseName', 'type': 'str'}, + 'privileges': {'key': 'properties.privileges', 'type': '[Privilege]'}, + 'roles': {'key': 'properties.roles', 'type': '[Role]'}, + } + + def __init__( + self, + **kwargs + ): + super(MongoRoleDefinitionCreateUpdateParameters, self).__init__(**kwargs) + self.role_name = kwargs.get('role_name', None) + self.type = kwargs.get('type', None) + self.database_name = kwargs.get('database_name', None) + self.privileges = kwargs.get('privileges', None) + self.roles = kwargs.get('roles', None) + + +class MongoRoleDefinitionGetResults(ARMProxyResource): + """An Azure Cosmos DB Mongo Role Definition. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: The unique resource identifier of the database account. + :vartype id: str + :ivar name: The name of the database account. + :vartype name: str + :ivar type: The type of Azure resource. + :vartype type: str + :param role_name: A user-friendly name for the Role Definition. Must be unique for the database + account. + :type role_name: str + :param type_properties_type: Indicates whether the Role Definition was built-in or user + created. Possible values include: "BuiltInRole", "CustomRole". + :type type_properties_type: str or ~azure.mgmt.cosmosdb.models.MongoRoleDefinitionType + :param database_name: The database name for which access is being granted for this Role + Definition. + :type database_name: str + :param privileges: A set of privileges contained by the Role Definition. This will allow + application of this Role Definition on the entire database account or any underlying Database / + Collection. Scopes higher than Database are not enforceable as privilege. + :type privileges: list[~azure.mgmt.cosmosdb.models.Privilege] + :param roles: The set of roles inherited by this Role Definition. + :type roles: list[~azure.mgmt.cosmosdb.models.Role] + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'role_name': {'key': 'properties.roleName', 'type': 'str'}, + 'type_properties_type': {'key': 'properties.type', 'type': 'str'}, + 'database_name': {'key': 'properties.databaseName', 'type': 'str'}, + 'privileges': {'key': 'properties.privileges', 'type': '[Privilege]'}, + 'roles': {'key': 'properties.roles', 'type': '[Role]'}, + } + + def __init__( + self, + **kwargs + ): + super(MongoRoleDefinitionGetResults, self).__init__(**kwargs) + self.role_name = kwargs.get('role_name', None) + self.type_properties_type = kwargs.get('type_properties_type', None) + self.database_name = kwargs.get('database_name', None) + self.privileges = kwargs.get('privileges', None) + self.roles = kwargs.get('roles', None) + + +class MongoRoleDefinitionListResult(msrest.serialization.Model): + """The relevant Mongo Role Definitions. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: List of Mongo Role Definitions and their properties. + :vartype value: list[~azure.mgmt.cosmosdb.models.MongoRoleDefinitionGetResults] + """ + + _validation = { + 'value': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[MongoRoleDefinitionGetResults]'}, + } + + def __init__( + self, + **kwargs + ): + super(MongoRoleDefinitionListResult, self).__init__(**kwargs) + self.value = None + + +class MongoUserDefinitionCreateUpdateParameters(msrest.serialization.Model): + """Parameters to create and update an Azure Cosmos DB Mongo User Definition. + + :param user_name: The user name for User Definition. + :type user_name: str + :param password: The password for User Definition. Response does not contain user password. + :type password: str + :param database_name: The database name for which access is being granted for this User + Definition. + :type database_name: str + :param custom_data: A custom definition for the USer Definition. + :type custom_data: str + :param roles: The set of roles inherited by the User Definition. + :type roles: list[~azure.mgmt.cosmosdb.models.Role] + :param mechanisms: The Mongo Auth mechanism. For now, we only support auth mechanism + SCRAM-SHA-256. + :type mechanisms: str + """ + + _attribute_map = { + 'user_name': {'key': 'properties.userName', 'type': 'str'}, + 'password': {'key': 'properties.password', 'type': 'str'}, + 'database_name': {'key': 'properties.databaseName', 'type': 'str'}, + 'custom_data': {'key': 'properties.customData', 'type': 'str'}, + 'roles': {'key': 'properties.roles', 'type': '[Role]'}, + 'mechanisms': {'key': 'properties.mechanisms', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(MongoUserDefinitionCreateUpdateParameters, self).__init__(**kwargs) + self.user_name = kwargs.get('user_name', None) + self.password = kwargs.get('password', None) + self.database_name = kwargs.get('database_name', None) + self.custom_data = kwargs.get('custom_data', None) + self.roles = kwargs.get('roles', None) + self.mechanisms = kwargs.get('mechanisms', None) + + +class MongoUserDefinitionGetResults(ARMProxyResource): + """An Azure Cosmos DB User Definition. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: The unique resource identifier of the database account. + :vartype id: str + :ivar name: The name of the database account. + :vartype name: str + :ivar type: The type of Azure resource. + :vartype type: str + :param user_name: The user name for User Definition. + :type user_name: str + :param password: The password for User Definition. Response does not contain user password. + :type password: str + :param database_name: The database name for which access is being granted for this User + Definition. + :type database_name: str + :param custom_data: A custom definition for the USer Definition. + :type custom_data: str + :param roles: The set of roles inherited by the User Definition. + :type roles: list[~azure.mgmt.cosmosdb.models.Role] + :param mechanisms: The Mongo Auth mechanism. For now, we only support auth mechanism + SCRAM-SHA-256. + :type mechanisms: str + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'user_name': {'key': 'properties.userName', 'type': 'str'}, + 'password': {'key': 'properties.password', 'type': 'str'}, + 'database_name': {'key': 'properties.databaseName', 'type': 'str'}, + 'custom_data': {'key': 'properties.customData', 'type': 'str'}, + 'roles': {'key': 'properties.roles', 'type': '[Role]'}, + 'mechanisms': {'key': 'properties.mechanisms', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(MongoUserDefinitionGetResults, self).__init__(**kwargs) + self.user_name = kwargs.get('user_name', None) + self.password = kwargs.get('password', None) + self.database_name = kwargs.get('database_name', None) + self.custom_data = kwargs.get('custom_data', None) + self.roles = kwargs.get('roles', None) + self.mechanisms = kwargs.get('mechanisms', None) + + +class MongoUserDefinitionListResult(msrest.serialization.Model): + """The relevant User Definition. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: List of User Definition and their properties. + :vartype value: list[~azure.mgmt.cosmosdb.models.MongoUserDefinitionGetResults] + """ + + _validation = { + 'value': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[MongoUserDefinitionGetResults]'}, + } + + def __init__( + self, + **kwargs + ): + super(MongoUserDefinitionListResult, self).__init__(**kwargs) + self.value = None + + class NotebookWorkspace(ARMProxyResource): """A notebook workspace resource. @@ -6207,59 +7203,75 @@ def __init__( self.actions_required = None -class RegionForOnlineOffline(msrest.serialization.Model): - """Cosmos DB region to online or offline. - - All required parameters must be populated in order to send to Azure. +class Privilege(msrest.serialization.Model): + """The set of data plane operations permitted through this Role Definition. - :param region: Required. Cosmos DB region, with spaces between words and each word capitalized. - :type region: str + :param resource: An Azure Cosmos DB Mongo DB Resource. + :type resource: ~azure.mgmt.cosmosdb.models.PrivilegeResource + :param actions: An array of actions that are allowed. + :type actions: list[str] """ - _validation = { - 'region': {'required': True}, + _attribute_map = { + 'resource': {'key': 'resource', 'type': 'PrivilegeResource'}, + 'actions': {'key': 'actions', 'type': '[str]'}, } + def __init__( + self, + **kwargs + ): + super(Privilege, self).__init__(**kwargs) + self.resource = kwargs.get('resource', None) + self.actions = kwargs.get('actions', None) + + +class PrivilegeResource(msrest.serialization.Model): + """An Azure Cosmos DB Mongo DB Resource. + + :param db: The database name the role is applied. + :type db: str + :param collection: The collection name the role is applied. + :type collection: str + """ + _attribute_map = { - 'region': {'key': 'region', 'type': 'str'}, + 'db': {'key': 'db', 'type': 'str'}, + 'collection': {'key': 'collection', 'type': 'str'}, } def __init__( self, **kwargs ): - super(RegionForOnlineOffline, self).__init__(**kwargs) - self.region = kwargs['region'] + super(PrivilegeResource, self).__init__(**kwargs) + self.db = kwargs.get('db', None) + self.collection = kwargs.get('collection', None) -class RepairPostBody(msrest.serialization.Model): - """Specification of the keyspaces and tables to run repair on. +class RegionForOnlineOffline(msrest.serialization.Model): + """Cosmos DB region to online or offline. All required parameters must be populated in order to send to Azure. - :param keyspace: Required. The name of the keyspace that repair should be run on. - :type keyspace: str - :param tables: List of tables in the keyspace to repair. If omitted, repair all tables in the - keyspace. - :type tables: list[str] + :param region: Required. Cosmos DB region, with spaces between words and each word capitalized. + :type region: str """ _validation = { - 'keyspace': {'required': True}, + 'region': {'required': True}, } _attribute_map = { - 'keyspace': {'key': 'keyspace', 'type': 'str'}, - 'tables': {'key': 'tables', 'type': '[str]'}, + 'region': {'key': 'region', 'type': 'str'}, } def __init__( self, **kwargs ): - super(RepairPostBody, self).__init__(**kwargs) - self.keyspace = kwargs['keyspace'] - self.tables = kwargs.get('tables', None) + super(RegionForOnlineOffline, self).__init__(**kwargs) + self.region = kwargs['region'] class RestorableDatabaseAccountGetResult(msrest.serialization.Model): @@ -7144,6 +8156,29 @@ def __init__( self.databases_to_restore = kwargs.get('databases_to_restore', None) +class Role(msrest.serialization.Model): + """The set of roles permitted through this Role Definition. + + :param db: The database name the role is applied. + :type db: str + :param role: The role name. + :type role: str + """ + + _attribute_map = { + 'db': {'key': 'db', 'type': 'str'}, + 'role': {'key': 'role', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(Role, self).__init__(**kwargs) + self.db = kwargs.get('db', None) + self.role = kwargs.get('role', None) + + class SeedNode(msrest.serialization.Model): """SeedNode. @@ -7200,7 +8235,7 @@ def __init__( class ServiceResourceCreateUpdateParameters(msrest.serialization.Model): - """ServiceResourceCreateUpdateParameters. + """Parameters for Create or Update Request for ServiceResource. :param instance_size: Instance type for the service. Possible values include: "Cosmos.D4s", "Cosmos.D8s", "Cosmos.D16s". @@ -7208,7 +8243,7 @@ class ServiceResourceCreateUpdateParameters(msrest.serialization.Model): :param instance_count: Instance count for the service. :type instance_count: int :param service_type: ServiceType for the service. Possible values include: - "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute". + "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute", "MaterializedViewsBuilder". :type service_type: str or ~azure.mgmt.cosmosdb.models.ServiceType """ @@ -7798,8 +8833,9 @@ class SqlDedicatedGatewayServiceResourceProperties(ServiceResourceProperties): :type instance_size: str or ~azure.mgmt.cosmosdb.models.ServiceSize :param instance_count: Instance count for the service. :type instance_count: int - :param service_type: Required. ServiceType for the service. Possible values include: - "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute". + :param service_type: Required. ServiceType for the service.Constant filled by server. Possible + values include: "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute", + "MaterializedViewsBuilder". :type service_type: str or ~azure.mgmt.cosmosdb.models.ServiceType :ivar status: Describes the status of a service. Possible values include: "Creating", "Running", "Updating", "Deleting", "Error", "Stopped". @@ -7835,6 +8871,7 @@ def __init__( **kwargs ): super(SqlDedicatedGatewayServiceResourceProperties, self).__init__(**kwargs) + self.service_type = 'SqlDedicatedGateway' # type: str self.sql_dedicated_gateway_endpoint = kwargs.get('sql_dedicated_gateway_endpoint', None) self.locations = None diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/_models_py3.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/_models_py3.py index baa69049e97..8bf280b0411 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/_models_py3.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/models/_models_py3.py @@ -150,6 +150,60 @@ def __init__( self.identity = identity +class AuthenticationMethodLdapProperties(msrest.serialization.Model): + """Ldap authentication method properties. This feature is in preview. + + :param server_hostname: Hostname of the LDAP server. + :type server_hostname: str + :param server_port: Port of the LDAP server. + :type server_port: int + :param service_user_distinguished_name: Distinguished name of the look up user account, who can + look up user details on authentication. + :type service_user_distinguished_name: str + :param service_user_password: Password of the look up user. + :type service_user_password: str + :param search_base_distinguished_name: Distinguished name of the object to start the recursive + search of users from. + :type search_base_distinguished_name: str + :param search_filter_template: Template to use for searching. Defaults to (cn=%s) where %s will + be replaced by the username used to login. + :type search_filter_template: str + :param server_certificates: + :type server_certificates: list[~azure.mgmt.cosmosdb.models.Certificate] + """ + + _attribute_map = { + 'server_hostname': {'key': 'serverHostname', 'type': 'str'}, + 'server_port': {'key': 'serverPort', 'type': 'int'}, + 'service_user_distinguished_name': {'key': 'serviceUserDistinguishedName', 'type': 'str'}, + 'service_user_password': {'key': 'serviceUserPassword', 'type': 'str'}, + 'search_base_distinguished_name': {'key': 'searchBaseDistinguishedName', 'type': 'str'}, + 'search_filter_template': {'key': 'searchFilterTemplate', 'type': 'str'}, + 'server_certificates': {'key': 'serverCertificates', 'type': '[Certificate]'}, + } + + def __init__( + self, + *, + server_hostname: Optional[str] = None, + server_port: Optional[int] = None, + service_user_distinguished_name: Optional[str] = None, + service_user_password: Optional[str] = None, + search_base_distinguished_name: Optional[str] = None, + search_filter_template: Optional[str] = None, + server_certificates: Optional[List["Certificate"]] = None, + **kwargs + ): + super(AuthenticationMethodLdapProperties, self).__init__(**kwargs) + self.server_hostname = server_hostname + self.server_port = server_port + self.service_user_distinguished_name = service_user_distinguished_name + self.service_user_password = service_user_password + self.search_base_distinguished_name = search_base_distinguished_name + self.search_filter_template = search_filter_template + self.server_certificates = server_certificates + + class AutoscaleSettings(msrest.serialization.Model): """AutoscaleSettings. @@ -233,6 +287,77 @@ def __init__( self.throughput_policy = throughput_policy +class DataTransferDataSourceSink(msrest.serialization.Model): + """Base class for all DataTransfer source/sink. + + You probably want to use the sub-classes and not this class directly. Known + sub-classes are: AzureBlobDataTransferDataSourceSink, CosmosCassandraDataTransferDataSourceSink. + + All required parameters must be populated in order to send to Azure. + + :param component: Required. Constant filled by server. Possible values include: + "CosmosDBCassandra", "AzureStorage". Default value: "CosmosDBCassandra". + :type component: str or ~azure.mgmt.cosmosdb.models.DataTransferComponent + """ + + _validation = { + 'component': {'required': True}, + } + + _attribute_map = { + 'component': {'key': 'component', 'type': 'str'}, + } + + _subtype_map = { + 'component': {'AzureBlobStorage': 'AzureBlobDataTransferDataSourceSink', 'CosmosDBCassandra': 'CosmosCassandraDataTransferDataSourceSink'} + } + + def __init__( + self, + **kwargs + ): + super(DataTransferDataSourceSink, self).__init__(**kwargs) + self.component = None # type: Optional[str] + + +class AzureBlobDataTransferDataSourceSink(DataTransferDataSourceSink): + """An Azure Blob Storage data source/sink. + + All required parameters must be populated in order to send to Azure. + + :param component: Required. Constant filled by server. Possible values include: + "CosmosDBCassandra", "AzureStorage". Default value: "CosmosDBCassandra". + :type component: str or ~azure.mgmt.cosmosdb.models.DataTransferComponent + :param container_name: Required. + :type container_name: str + :param endpoint_url: + :type endpoint_url: str + """ + + _validation = { + 'component': {'required': True}, + 'container_name': {'required': True}, + } + + _attribute_map = { + 'component': {'key': 'component', 'type': 'str'}, + 'container_name': {'key': 'containerName', 'type': 'str'}, + 'endpoint_url': {'key': 'endpointUrl', 'type': 'str'}, + } + + def __init__( + self, + *, + container_name: str, + endpoint_url: Optional[str] = None, + **kwargs + ): + super(AzureBlobDataTransferDataSourceSink, self).__init__(**kwargs) + self.component = 'AzureBlobStorage' # type: str + self.container_name = container_name + self.endpoint_url = endpoint_url + + class BackupInformation(msrest.serialization.Model): """Backup information of a resource. @@ -412,6 +537,104 @@ def __init__( self.name = name +class Capacity(msrest.serialization.Model): + """The object that represents all properties related to capacity enforcement on an account. + + :param total_throughput_limit: The total throughput limit imposed on the account. A + totalThroughputLimit of 2000 imposes a strict limit of max throughput that can be provisioned + on that account to be 2000. A totalThroughputLimit of -1 indicates no limits on provisioning of + throughput. + :type total_throughput_limit: int + """ + + _validation = { + 'total_throughput_limit': {'minimum': -1}, + } + + _attribute_map = { + 'total_throughput_limit': {'key': 'totalThroughputLimit', 'type': 'int'}, + } + + def __init__( + self, + *, + total_throughput_limit: Optional[int] = None, + **kwargs + ): + super(Capacity, self).__init__(**kwargs) + self.total_throughput_limit = total_throughput_limit + + +class CassandraClusterPublicStatus(msrest.serialization.Model): + """Properties of a managed Cassandra cluster public status. + + :param e_tag: + :type e_tag: str + :param reaper_status: + :type reaper_status: ~azure.mgmt.cosmosdb.models.ManagedCassandraReaperStatus + :param connection_errors: List relevant information about any connection errors to the + Datacenters. + :type connection_errors: list[~azure.mgmt.cosmosdb.models.ConnectionError] + :param data_centers: List of the status of each datacenter in this cluster. + :type data_centers: + list[~azure.mgmt.cosmosdb.models.CassandraClusterPublicStatusDataCentersItem] + """ + + _attribute_map = { + 'e_tag': {'key': 'eTag', 'type': 'str'}, + 'reaper_status': {'key': 'reaperStatus', 'type': 'ManagedCassandraReaperStatus'}, + 'connection_errors': {'key': 'connectionErrors', 'type': '[ConnectionError]'}, + 'data_centers': {'key': 'dataCenters', 'type': '[CassandraClusterPublicStatusDataCentersItem]'}, + } + + def __init__( + self, + *, + e_tag: Optional[str] = None, + reaper_status: Optional["ManagedCassandraReaperStatus"] = None, + connection_errors: Optional[List["ConnectionError"]] = None, + data_centers: Optional[List["CassandraClusterPublicStatusDataCentersItem"]] = None, + **kwargs + ): + super(CassandraClusterPublicStatus, self).__init__(**kwargs) + self.e_tag = e_tag + self.reaper_status = reaper_status + self.connection_errors = connection_errors + self.data_centers = data_centers + + +class CassandraClusterPublicStatusDataCentersItem(msrest.serialization.Model): + """CassandraClusterPublicStatusDataCentersItem. + + :param name: The name of this Datacenter. + :type name: str + :param seed_nodes: A list of all seed nodes in the cluster, managed and unmanaged. + :type seed_nodes: list[str] + :param nodes: + :type nodes: + list[~azure.mgmt.cosmosdb.models.ComponentsM9L909SchemasCassandraclusterpublicstatusPropertiesDatacentersItemsPropertiesNodesItems] + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'seed_nodes': {'key': 'seedNodes', 'type': '[str]'}, + 'nodes': {'key': 'nodes', 'type': '[ComponentsM9L909SchemasCassandraclusterpublicstatusPropertiesDatacentersItemsPropertiesNodesItems]'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + seed_nodes: Optional[List[str]] = None, + nodes: Optional[List["ComponentsM9L909SchemasCassandraclusterpublicstatusPropertiesDatacentersItemsPropertiesNodesItems"]] = None, + **kwargs + ): + super(CassandraClusterPublicStatusDataCentersItem, self).__init__(**kwargs) + self.name = name + self.seed_nodes = seed_nodes + self.nodes = nodes + + class CassandraKeyspaceCreateUpdateParameters(ARMResourceProperties): """Parameters to create and update Cosmos DB Cassandra keyspace. @@ -1145,12 +1368,13 @@ class CassandraViewResource(msrest.serialization.Model): :param id: Required. Name of the Cosmos DB Cassandra view. :type id: str - :param view_definition: View Definition of the Cosmos DB Cassandra view. + :param view_definition: Required. View Definition of the Cosmos DB Cassandra view. :type view_definition: str """ _validation = { 'id': {'required': True}, + 'view_definition': {'required': True}, } _attribute_map = { @@ -1162,7 +1386,7 @@ def __init__( self, *, id: str, - view_definition: Optional[str] = None, + view_definition: str, **kwargs ): super(CassandraViewResource, self).__init__(**kwargs) @@ -1179,7 +1403,7 @@ class CassandraViewGetPropertiesResource(ExtendedResourceProperties, CassandraVi :param id: Required. Name of the Cosmos DB Cassandra view. :type id: str - :param view_definition: View Definition of the Cosmos DB Cassandra view. + :param view_definition: Required. View Definition of the Cosmos DB Cassandra view. :type view_definition: str :ivar rid: A system generated property. A unique identifier. :vartype rid: str @@ -1192,6 +1416,7 @@ class CassandraViewGetPropertiesResource(ExtendedResourceProperties, CassandraVi _validation = { 'id': {'required': True}, + 'view_definition': {'required': True}, 'rid': {'readonly': True}, 'ts': {'readonly': True}, 'etag': {'readonly': True}, @@ -1209,7 +1434,7 @@ def __init__( self, *, id: str, - view_definition: Optional[str] = None, + view_definition: str, **kwargs ): super(CassandraViewGetPropertiesResource, self).__init__(id=id, view_definition=view_definition, **kwargs) @@ -1326,147 +1551,145 @@ def __init__( self.pem = pem -class ClusterKey(msrest.serialization.Model): - """Cosmos DB Cassandra table cluster key. +class ClientEncryptionKeyCreateUpdateParameters(msrest.serialization.Model): + """Parameters to create and update ClientEncryptionKey. - :param name: Name of the Cosmos DB Cassandra table cluster key. - :type name: str - :param order_by: Order of the Cosmos DB Cassandra table cluster key, only support "Asc" and - "Desc". - :type order_by: str + All required parameters must be populated in order to send to Azure. + + :param resource: Required. The standard JSON format of a ClientEncryptionKey. + :type resource: ~azure.mgmt.cosmosdb.models.ClientEncryptionKeyResource """ + _validation = { + 'resource': {'required': True}, + } + _attribute_map = { - 'name': {'key': 'name', 'type': 'str'}, - 'order_by': {'key': 'orderBy', 'type': 'str'}, + 'resource': {'key': 'properties.resource', 'type': 'ClientEncryptionKeyResource'}, } def __init__( self, *, - name: Optional[str] = None, - order_by: Optional[str] = None, + resource: "ClientEncryptionKeyResource", **kwargs ): - super(ClusterKey, self).__init__(**kwargs) - self.name = name - self.order_by = order_by + super(ClientEncryptionKeyCreateUpdateParameters, self).__init__(**kwargs) + self.resource = resource -class ClusterNodeStatus(msrest.serialization.Model): - """The status of all nodes in the cluster (as returned by 'nodetool status'). +class ClientEncryptionKeyResource(msrest.serialization.Model): + """Cosmos DB client encryption key resource object. - :param nodes: Information about nodes in the cluster (corresponds to what is returned from - nodetool info). - :type nodes: list[~azure.mgmt.cosmosdb.models.ClusterNodeStatusNodesItem] + :param id: Name of the ClientEncryptionKey. + :type id: str + :param encryption_algorithm: Encryption algorithm that will be used along with this client + encryption key to encrypt/decrypt data. + :type encryption_algorithm: str + :param wrapped_data_encryption_key: Wrapped (encrypted) form of the key represented as a byte + array. + :type wrapped_data_encryption_key: bytearray + :param key_wrap_metadata: Metadata for the wrapping provider that can be used to unwrap the + wrapped client encryption key. + :type key_wrap_metadata: ~azure.mgmt.cosmosdb.models.KeyWrapMetadata """ _attribute_map = { - 'nodes': {'key': 'nodes', 'type': '[ClusterNodeStatusNodesItem]'}, + 'id': {'key': 'id', 'type': 'str'}, + 'encryption_algorithm': {'key': 'encryptionAlgorithm', 'type': 'str'}, + 'wrapped_data_encryption_key': {'key': 'wrappedDataEncryptionKey', 'type': 'bytearray'}, + 'key_wrap_metadata': {'key': 'keyWrapMetadata', 'type': 'KeyWrapMetadata'}, } def __init__( self, *, - nodes: Optional[List["ClusterNodeStatusNodesItem"]] = None, + id: Optional[str] = None, + encryption_algorithm: Optional[str] = None, + wrapped_data_encryption_key: Optional[bytearray] = None, + key_wrap_metadata: Optional["KeyWrapMetadata"] = None, **kwargs ): - super(ClusterNodeStatus, self).__init__(**kwargs) - self.nodes = nodes + super(ClientEncryptionKeyResource, self).__init__(**kwargs) + self.id = id + self.encryption_algorithm = encryption_algorithm + self.wrapped_data_encryption_key = wrapped_data_encryption_key + self.key_wrap_metadata = key_wrap_metadata -class ClusterNodeStatusNodesItem(msrest.serialization.Model): - """ClusterNodeStatusNodesItem. +class ClientEncryptionKeyGetPropertiesResource(ExtendedResourceProperties, ClientEncryptionKeyResource): + """ClientEncryptionKeyGetPropertiesResource. - :param datacenter: The Cassandra data center this node resides in. - :type datacenter: str - :param status: Indicates whether the node is functioning or not. Possible values include: "Up", - "Down". - :type status: str or ~azure.mgmt.cosmosdb.models.NodeStatus - :param state: The state of the node in relation to the cluster. Possible values include: - "Normal", "Leaving", "Joining", "Moving", "Stopped". - :type state: str or ~azure.mgmt.cosmosdb.models.NodeState - :param address: The node's URL. - :type address: str - :param load: The amount of file system data in the data directory (e.g., 47.66 KB), excluding - all content in the snapshots subdirectories. Because all SSTable data files are included, any - data that is not cleaned up (such as TTL-expired cell or tombstoned data) is counted. - :type load: str - :param tokens: List of tokens. - :type tokens: list[str] - :param owns: The percentage of the data owned by the node per datacenter times the replication - factor (e.g., 33.3, or null if the data is not available). For example, a node can own 33% of - the ring, but shows 100% if the replication factor is 3. For non-system keyspaces, the endpoint - percentage ownership information is shown. - :type owns: float - :param host_id: The network ID of the node. - :type host_id: str - :param rack: The rack this node is part of. - :type rack: str + Variables are only populated by the server, and will be ignored when sending a request. + + :param id: Name of the ClientEncryptionKey. + :type id: str + :param encryption_algorithm: Encryption algorithm that will be used along with this client + encryption key to encrypt/decrypt data. + :type encryption_algorithm: str + :param wrapped_data_encryption_key: Wrapped (encrypted) form of the key represented as a byte + array. + :type wrapped_data_encryption_key: bytearray + :param key_wrap_metadata: Metadata for the wrapping provider that can be used to unwrap the + wrapped client encryption key. + :type key_wrap_metadata: ~azure.mgmt.cosmosdb.models.KeyWrapMetadata + :ivar rid: A system generated property. A unique identifier. + :vartype rid: str + :ivar ts: A system generated property that denotes the last updated timestamp of the resource. + :vartype ts: float + :ivar etag: A system generated property representing the resource etag required for optimistic + concurrency control. + :vartype etag: str """ + _validation = { + 'rid': {'readonly': True}, + 'ts': {'readonly': True}, + 'etag': {'readonly': True}, + } + _attribute_map = { - 'datacenter': {'key': 'datacenter', 'type': 'str'}, - 'status': {'key': 'status', 'type': 'str'}, - 'state': {'key': 'state', 'type': 'str'}, - 'address': {'key': 'address', 'type': 'str'}, - 'load': {'key': 'load', 'type': 'str'}, - 'tokens': {'key': 'tokens', 'type': '[str]'}, - 'owns': {'key': 'owns', 'type': 'float'}, - 'host_id': {'key': 'hostId', 'type': 'str'}, - 'rack': {'key': 'rack', 'type': 'str'}, + 'id': {'key': 'id', 'type': 'str'}, + 'encryption_algorithm': {'key': 'encryptionAlgorithm', 'type': 'str'}, + 'wrapped_data_encryption_key': {'key': 'wrappedDataEncryptionKey', 'type': 'bytearray'}, + 'key_wrap_metadata': {'key': 'keyWrapMetadata', 'type': 'KeyWrapMetadata'}, + 'rid': {'key': '_rid', 'type': 'str'}, + 'ts': {'key': '_ts', 'type': 'float'}, + 'etag': {'key': '_etag', 'type': 'str'}, } def __init__( self, *, - datacenter: Optional[str] = None, - status: Optional[Union[str, "NodeStatus"]] = None, - state: Optional[Union[str, "NodeState"]] = None, - address: Optional[str] = None, - load: Optional[str] = None, - tokens: Optional[List[str]] = None, - owns: Optional[float] = None, - host_id: Optional[str] = None, - rack: Optional[str] = None, + id: Optional[str] = None, + encryption_algorithm: Optional[str] = None, + wrapped_data_encryption_key: Optional[bytearray] = None, + key_wrap_metadata: Optional["KeyWrapMetadata"] = None, **kwargs ): - super(ClusterNodeStatusNodesItem, self).__init__(**kwargs) - self.datacenter = datacenter - self.status = status - self.state = state - self.address = address - self.load = load - self.tokens = tokens - self.owns = owns - self.host_id = host_id - self.rack = rack + super(ClientEncryptionKeyGetPropertiesResource, self).__init__(id=id, encryption_algorithm=encryption_algorithm, wrapped_data_encryption_key=wrapped_data_encryption_key, key_wrap_metadata=key_wrap_metadata, **kwargs) + self.id = id + self.encryption_algorithm = encryption_algorithm + self.wrapped_data_encryption_key = wrapped_data_encryption_key + self.key_wrap_metadata = key_wrap_metadata + self.rid = None + self.ts = None + self.etag = None -class ClusterResource(ARMResourceProperties): - """Representation of a managed Cassandra cluster. +class ClientEncryptionKeyGetResults(ARMProxyResource): + """Client Encryption Key. Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: The unique resource identifier of the ARM resource. + :ivar id: The unique resource identifier of the database account. :vartype id: str - :ivar name: The name of the ARM resource. + :ivar name: The name of the database account. :vartype name: str :ivar type: The type of Azure resource. :vartype type: str - :param location: The location of the resource group to which the resource belongs. - :type location: str - :param tags: A set of tags. Tags are a list of key-value pairs that describe the resource. - These tags can be used in viewing and grouping this resource (across resource groups). A - maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 - characters and value no greater than 256 characters. For example, the default experience for a - template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values - also include "Table", "Graph", "DocumentDB", and "MongoDB". - :type tags: dict[str, str] - :param identity: Identity for the resource. - :type identity: ~azure.mgmt.cosmosdb.models.ManagedServiceIdentity - :param properties: Properties of a managed Cassandra cluster. - :type properties: ~azure.mgmt.cosmosdb.models.ClusterResourceProperties + :param resource: + :type resource: ~azure.mgmt.cosmosdb.models.ClientEncryptionKeyGetPropertiesResource """ _validation = { @@ -1479,78 +1702,232 @@ class ClusterResource(ARMResourceProperties): 'id': {'key': 'id', 'type': 'str'}, 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, - 'location': {'key': 'location', 'type': 'str'}, - 'tags': {'key': 'tags', 'type': '{str}'}, - 'identity': {'key': 'identity', 'type': 'ManagedServiceIdentity'}, - 'properties': {'key': 'properties', 'type': 'ClusterResourceProperties'}, + 'resource': {'key': 'properties.resource', 'type': 'ClientEncryptionKeyGetPropertiesResource'}, } def __init__( self, *, - location: Optional[str] = None, - tags: Optional[Dict[str, str]] = None, - identity: Optional["ManagedServiceIdentity"] = None, - properties: Optional["ClusterResourceProperties"] = None, + resource: Optional["ClientEncryptionKeyGetPropertiesResource"] = None, **kwargs ): - super(ClusterResource, self).__init__(location=location, tags=tags, identity=identity, **kwargs) - self.properties = properties + super(ClientEncryptionKeyGetResults, self).__init__(**kwargs) + self.resource = resource -class ClusterResourceProperties(msrest.serialization.Model): - """Properties of a managed Cassandra cluster. +class ClientEncryptionKeysListResult(msrest.serialization.Model): + """The List operation response, that contains the client encryption keys and their properties. Variables are only populated by the server, and will be ignored when sending a request. - :param provisioning_state: The status of the resource at the time the operation was called. - Possible values include: "Creating", "Updating", "Deleting", "Succeeded", "Failed", "Canceled". - :type provisioning_state: str or ~azure.mgmt.cosmosdb.models.ManagedCassandraProvisioningState - :param restore_from_backup_id: To create an empty cluster, omit this field or set it to null. - To restore a backup into a new cluster, set this field to the resource id of the backup. - :type restore_from_backup_id: str - :param delegated_management_subnet_id: Resource id of a subnet that this cluster's management - service should have its network interface attached to. The subnet must be routable to all - subnets that will be delegated to data centers. The resource id must be of the form - '/subscriptions/:code:``/resourceGroups/:code:``/providers/Microsoft.Network/virtualNetworks/:code:``/subnets/:code:``'. - :type delegated_management_subnet_id: str - :param cassandra_version: Which version of Cassandra should this cluster converge to running - (e.g., 3.11). When updated, the cluster may take some time to migrate to the new version. - :type cassandra_version: str - :param cluster_name_override: If you need to set the clusterName property in cassandra.yaml to - something besides the resource name of the cluster, set the value to use on this property. - :type cluster_name_override: str - :param authentication_method: Which authentication method Cassandra should use to authenticate - clients. 'None' turns off authentication, so should not be used except in emergencies. - 'Cassandra' is the default password based authentication. The default is 'Cassandra'. Possible - values include: "None", "Cassandra". - :type authentication_method: str or ~azure.mgmt.cosmosdb.models.AuthenticationMethod - :param initial_cassandra_admin_password: Initial password for clients connecting as admin to - the cluster. Should be changed after cluster creation. Returns null on GET. This field only - applies when the authenticationMethod field is 'Cassandra'. - :type initial_cassandra_admin_password: str - :param hours_between_backups: Number of hours to wait between taking a backup of the cluster. - To disable backups, set this property to 0. - :type hours_between_backups: int - :param prometheus_endpoint: Hostname or IP address where the Prometheus endpoint containing - data about the managed Cassandra nodes can be reached. - :type prometheus_endpoint: ~azure.mgmt.cosmosdb.models.SeedNode - :param repair_enabled: Should automatic repairs run on this cluster? If omitted, this is true, - and should stay true unless you are running a hybrid cluster where you are already doing your - own repairs. - :type repair_enabled: bool - :param client_certificates: List of TLS certificates used to authorize clients connecting to - the cluster. All connections are TLS encrypted whether clientCertificates is set or not, but if - clientCertificates is set, the managed Cassandra cluster will reject all connections not - bearing a TLS client certificate that can be validated from one or more of the public - certificates in this property. - :type client_certificates: list[~azure.mgmt.cosmosdb.models.Certificate] - :param external_gossip_certificates: List of TLS certificates used to authorize gossip from - unmanaged data centers. The TLS certificates of all nodes in unmanaged data centers must be - verifiable using one of the certificates provided in this property. - :type external_gossip_certificates: list[~azure.mgmt.cosmosdb.models.Certificate] + :ivar value: List of client encryption keys and their properties. + :vartype value: list[~azure.mgmt.cosmosdb.models.ClientEncryptionKeyGetResults] + """ + + _validation = { + 'value': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[ClientEncryptionKeyGetResults]'}, + } + + def __init__( + self, + **kwargs + ): + super(ClientEncryptionKeysListResult, self).__init__(**kwargs) + self.value = None + + +class ClusterKey(msrest.serialization.Model): + """Cosmos DB Cassandra table cluster key. + + :param name: Name of the Cosmos DB Cassandra table cluster key. + :type name: str + :param order_by: Order of the Cosmos DB Cassandra table cluster key, only support "Asc" and + "Desc". + :type order_by: str + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'order_by': {'key': 'orderBy', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + order_by: Optional[str] = None, + **kwargs + ): + super(ClusterKey, self).__init__(**kwargs) + self.name = name + self.order_by = order_by + + +class ManagedCassandraARMResourceProperties(msrest.serialization.Model): + """The core properties of ARM resources. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: The unique resource identifier of the ARM resource. + :vartype id: str + :ivar name: The name of the ARM resource. + :vartype name: str + :ivar type: The type of Azure resource. + :vartype type: str + :param location: The location of the resource group to which the resource belongs. + :type location: str + :param tags: A set of tags. Tags are a list of key-value pairs that describe the resource. + These tags can be used in viewing and grouping this resource (across resource groups). A + maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 + characters and value no greater than 256 characters. For example, the default experience for a + template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values + also include "Table", "Graph", "DocumentDB", and "MongoDB". + :type tags: dict[str, str] + :param identity: Identity for the resource. + :type identity: ~azure.mgmt.cosmosdb.models.ManagedCassandraManagedServiceIdentity + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'identity': {'key': 'identity', 'type': 'ManagedCassandraManagedServiceIdentity'}, + } + + def __init__( + self, + *, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + identity: Optional["ManagedCassandraManagedServiceIdentity"] = None, + **kwargs + ): + super(ManagedCassandraARMResourceProperties, self).__init__(**kwargs) + self.id = None + self.name = None + self.type = None + self.location = location + self.tags = tags + self.identity = identity + + +class ClusterResource(ManagedCassandraARMResourceProperties): + """Representation of a managed Cassandra cluster. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: The unique resource identifier of the ARM resource. + :vartype id: str + :ivar name: The name of the ARM resource. + :vartype name: str + :ivar type: The type of Azure resource. + :vartype type: str + :param location: The location of the resource group to which the resource belongs. + :type location: str + :param tags: A set of tags. Tags are a list of key-value pairs that describe the resource. + These tags can be used in viewing and grouping this resource (across resource groups). A + maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 + characters and value no greater than 256 characters. For example, the default experience for a + template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values + also include "Table", "Graph", "DocumentDB", and "MongoDB". + :type tags: dict[str, str] + :param identity: Identity for the resource. + :type identity: ~azure.mgmt.cosmosdb.models.ManagedCassandraManagedServiceIdentity + :param properties: Properties of a managed Cassandra cluster. + :type properties: ~azure.mgmt.cosmosdb.models.ClusterResourceProperties + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'identity': {'key': 'identity', 'type': 'ManagedCassandraManagedServiceIdentity'}, + 'properties': {'key': 'properties', 'type': 'ClusterResourceProperties'}, + } + + def __init__( + self, + *, + location: Optional[str] = None, + tags: Optional[Dict[str, str]] = None, + identity: Optional["ManagedCassandraManagedServiceIdentity"] = None, + properties: Optional["ClusterResourceProperties"] = None, + **kwargs + ): + super(ClusterResource, self).__init__(location=location, tags=tags, identity=identity, **kwargs) + self.properties = properties + + +class ClusterResourceProperties(msrest.serialization.Model): + """Properties of a managed Cassandra cluster. + + Variables are only populated by the server, and will be ignored when sending a request. + + :param provisioning_state: The status of the resource at the time the operation was called. + Possible values include: "Creating", "Updating", "Deleting", "Succeeded", "Failed", "Canceled". + :type provisioning_state: str or ~azure.mgmt.cosmosdb.models.ManagedCassandraProvisioningState + :param restore_from_backup_id: To create an empty cluster, omit this field or set it to null. + To restore a backup into a new cluster, set this field to the resource id of the backup. + :type restore_from_backup_id: str + :param delegated_management_subnet_id: Resource id of a subnet that this cluster's management + service should have its network interface attached to. The subnet must be routable to all + subnets that will be delegated to data centers. The resource id must be of the form + '/subscriptions/:code:``/resourceGroups/:code:``/providers/Microsoft.Network/virtualNetworks/:code:``/subnets/:code:``'. + :type delegated_management_subnet_id: str + :param cassandra_version: Which version of Cassandra should this cluster converge to running + (e.g., 3.11). When updated, the cluster may take some time to migrate to the new version. + :type cassandra_version: str + :param cluster_name_override: If you need to set the clusterName property in cassandra.yaml to + something besides the resource name of the cluster, set the value to use on this property. + :type cluster_name_override: str + :param authentication_method: Which authentication method Cassandra should use to authenticate + clients. 'None' turns off authentication, so should not be used except in emergencies. + 'Cassandra' is the default password based authentication. The default is 'Cassandra'. 'Ldap' is + in preview. Possible values include: "None", "Cassandra", "Ldap". + :type authentication_method: str or ~azure.mgmt.cosmosdb.models.AuthenticationMethod + :param initial_cassandra_admin_password: Initial password for clients connecting as admin to + the cluster. Should be changed after cluster creation. Returns null on GET. This field only + applies when the authenticationMethod field is 'Cassandra'. + :type initial_cassandra_admin_password: str + :param prometheus_endpoint: Hostname or IP address where the Prometheus endpoint containing + data about the managed Cassandra nodes can be reached. + :type prometheus_endpoint: ~azure.mgmt.cosmosdb.models.SeedNode + :param repair_enabled: Should automatic repairs run on this cluster? If omitted, this is true, + and should stay true unless you are running a hybrid cluster where you are already doing your + own repairs. + :type repair_enabled: bool + :param client_certificates: List of TLS certificates used to authorize clients connecting to + the cluster. All connections are TLS encrypted whether clientCertificates is set or not, but if + clientCertificates is set, the managed Cassandra cluster will reject all connections not + bearing a TLS client certificate that can be validated from one or more of the public + certificates in this property. + :type client_certificates: list[~azure.mgmt.cosmosdb.models.Certificate] + :param external_gossip_certificates: List of TLS certificates used to authorize gossip from + unmanaged data centers. The TLS certificates of all nodes in unmanaged data centers must be + verifiable using one of the certificates provided in this property. + :type external_gossip_certificates: list[~azure.mgmt.cosmosdb.models.Certificate] :ivar gossip_certificates: List of TLS certificates that unmanaged nodes must trust for gossip with managed nodes. All managed nodes will present TLS client certificates that are verifiable using one of the certificates provided in this property. @@ -1561,6 +1938,12 @@ class ClusterResourceProperties(msrest.serialization.Model): :ivar seed_nodes: List of IP addresses of seed nodes in the managed data centers. These should be added to the seed node lists of all unmanaged nodes. :vartype seed_nodes: list[~azure.mgmt.cosmosdb.models.SeedNode] + :param hours_between_backups: Number of hours to wait between taking a backup of the cluster. + :type hours_between_backups: int + :param deallocated: Whether the cluster and associated data centers has been deallocated. + :type deallocated: bool + :param cassandra_audit_logging_enabled: Whether Cassandra audit logging is enabled. + :type cassandra_audit_logging_enabled: bool """ _validation = { @@ -1576,7 +1959,6 @@ class ClusterResourceProperties(msrest.serialization.Model): 'cluster_name_override': {'key': 'clusterNameOverride', 'type': 'str'}, 'authentication_method': {'key': 'authenticationMethod', 'type': 'str'}, 'initial_cassandra_admin_password': {'key': 'initialCassandraAdminPassword', 'type': 'str'}, - 'hours_between_backups': {'key': 'hoursBetweenBackups', 'type': 'int'}, 'prometheus_endpoint': {'key': 'prometheusEndpoint', 'type': 'SeedNode'}, 'repair_enabled': {'key': 'repairEnabled', 'type': 'bool'}, 'client_certificates': {'key': 'clientCertificates', 'type': '[Certificate]'}, @@ -1584,6 +1966,9 @@ class ClusterResourceProperties(msrest.serialization.Model): 'gossip_certificates': {'key': 'gossipCertificates', 'type': '[Certificate]'}, 'external_seed_nodes': {'key': 'externalSeedNodes', 'type': '[SeedNode]'}, 'seed_nodes': {'key': 'seedNodes', 'type': '[SeedNode]'}, + 'hours_between_backups': {'key': 'hoursBetweenBackups', 'type': 'int'}, + 'deallocated': {'key': 'deallocated', 'type': 'bool'}, + 'cassandra_audit_logging_enabled': {'key': 'cassandraAuditLoggingEnabled', 'type': 'bool'}, } def __init__( @@ -1596,12 +1981,14 @@ def __init__( cluster_name_override: Optional[str] = None, authentication_method: Optional[Union[str, "AuthenticationMethod"]] = None, initial_cassandra_admin_password: Optional[str] = None, - hours_between_backups: Optional[int] = None, prometheus_endpoint: Optional["SeedNode"] = None, repair_enabled: Optional[bool] = None, client_certificates: Optional[List["Certificate"]] = None, external_gossip_certificates: Optional[List["Certificate"]] = None, external_seed_nodes: Optional[List["SeedNode"]] = None, + hours_between_backups: Optional[int] = None, + deallocated: Optional[bool] = None, + cassandra_audit_logging_enabled: Optional[bool] = None, **kwargs ): super(ClusterResourceProperties, self).__init__(**kwargs) @@ -1612,7 +1999,6 @@ def __init__( self.cluster_name_override = cluster_name_override self.authentication_method = authentication_method self.initial_cassandra_admin_password = initial_cassandra_admin_password - self.hours_between_backups = hours_between_backups self.prometheus_endpoint = prometheus_endpoint self.repair_enabled = repair_enabled self.client_certificates = client_certificates @@ -1620,6 +2006,9 @@ def __init__( self.gossip_certificates = None self.external_seed_nodes = external_seed_nodes self.seed_nodes = None + self.hours_between_backups = hours_between_backups + self.deallocated = deallocated + self.cassandra_audit_logging_enabled = cassandra_audit_logging_enabled class Column(msrest.serialization.Model): @@ -1648,6 +2037,77 @@ def __init__( self.type = type +class CommandOutput(msrest.serialization.Model): + """Response of /command api. + + :param command_output: Output of the command. + :type command_output: str + """ + + _attribute_map = { + 'command_output': {'key': 'commandOutput', 'type': 'str'}, + } + + def __init__( + self, + *, + command_output: Optional[str] = None, + **kwargs + ): + super(CommandOutput, self).__init__(**kwargs) + self.command_output = command_output + + +class CommandPostBody(msrest.serialization.Model): + """Specification of which command to run where. + + All required parameters must be populated in order to send to Azure. + + :param command: Required. The command which should be run. + :type command: str + :param arguments: The arguments for the command to be run. + :type arguments: dict[str, str] + :param host: Required. IP address of the cassandra host to run the command on. + :type host: str + :param cassandra_stop_start: If true, stops cassandra before executing the command and then + start it again. + :type cassandra_stop_start: bool + :param readwrite: If true, allows the command to *write* to the cassandra directory, otherwise + read-only. + :type readwrite: bool + """ + + _validation = { + 'command': {'required': True}, + 'host': {'required': True}, + } + + _attribute_map = { + 'command': {'key': 'command', 'type': 'str'}, + 'arguments': {'key': 'arguments', 'type': '{str}'}, + 'host': {'key': 'host', 'type': 'str'}, + 'cassandra_stop_start': {'key': 'cassandra-stop-start', 'type': 'bool'}, + 'readwrite': {'key': 'readwrite', 'type': 'bool'}, + } + + def __init__( + self, + *, + command: str, + host: str, + arguments: Optional[Dict[str, str]] = None, + cassandra_stop_start: Optional[bool] = None, + readwrite: Optional[bool] = None, + **kwargs + ): + super(CommandPostBody, self).__init__(**kwargs) + self.command = command + self.arguments = arguments + self.host = host + self.cassandra_stop_start = cassandra_stop_start + self.readwrite = readwrite + + class Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties(msrest.serialization.Model): """Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties. @@ -1678,6 +2138,107 @@ def __init__( self.client_id = None +class ComponentsM9L909SchemasCassandraclusterpublicstatusPropertiesDatacentersItemsPropertiesNodesItems(msrest.serialization.Model): + """ComponentsM9L909SchemasCassandraclusterpublicstatusPropertiesDatacentersItemsPropertiesNodesItems. + + :param address: The node's IP address. + :type address: str + :param state: The state of the node in Cassandra ring. Possible values include: "Normal", + "Leaving", "Joining", "Moving", "Stopped". + :type state: str or ~azure.mgmt.cosmosdb.models.NodeState + :param status: + :type status: str + :param load: The amount of file system data in the data directory (e.g., 47.66 kB), excluding + all content in the snapshots subdirectories. Because all SSTable data files are included, any + data that is not cleaned up (such as TTL-expired cells or tombstones) is counted. + :type load: str + :param tokens: List of tokens this node covers. + :type tokens: list[str] + :param size: + :type size: int + :param host_id: The network ID of the node. + :type host_id: str + :param rack: The rack this node is part of. + :type rack: str + :param timestamp: The timestamp at which that snapshot of these usage statistics were taken. + :type timestamp: str + :param disk_used_kb: The amount of disk used, in kB, of the directory /var/lib/cassandra. + :type disk_used_kb: long + :param disk_free_kb: The amount of disk free, in kB, of the directory /var/lib/cassandra. + :type disk_free_kb: long + :param memory_used_kb: Used memory (calculated as total - free - buffers - cache), in kB. + :type memory_used_kb: long + :param memory_buffers_and_cached_kb: Memory used by kernel buffers (Buffers in /proc/meminfo) + and page cache and slabs (Cached and SReclaimable in /proc/meminfo), in kB. + :type memory_buffers_and_cached_kb: long + :param memory_free_kb: Unused memory (MemFree and SwapFree in /proc/meminfo), in kB. + :type memory_free_kb: long + :param memory_total_kb: Total installed memory (MemTotal and SwapTotal in /proc/meminfo), in + kB. + :type memory_total_kb: long + :param cpu_usage: A float representing the current system-wide CPU utilization as a percentage. + :type cpu_usage: float + """ + + _attribute_map = { + 'address': {'key': 'address', 'type': 'str'}, + 'state': {'key': 'state', 'type': 'str'}, + 'status': {'key': 'status', 'type': 'str'}, + 'load': {'key': 'load', 'type': 'str'}, + 'tokens': {'key': 'tokens', 'type': '[str]'}, + 'size': {'key': 'size', 'type': 'int'}, + 'host_id': {'key': 'hostID', 'type': 'str'}, + 'rack': {'key': 'rack', 'type': 'str'}, + 'timestamp': {'key': 'timestamp', 'type': 'str'}, + 'disk_used_kb': {'key': 'diskUsedKB', 'type': 'long'}, + 'disk_free_kb': {'key': 'diskFreeKB', 'type': 'long'}, + 'memory_used_kb': {'key': 'memoryUsedKB', 'type': 'long'}, + 'memory_buffers_and_cached_kb': {'key': 'memoryBuffersAndCachedKB', 'type': 'long'}, + 'memory_free_kb': {'key': 'memoryFreeKB', 'type': 'long'}, + 'memory_total_kb': {'key': 'memoryTotalKB', 'type': 'long'}, + 'cpu_usage': {'key': 'cpuUsage', 'type': 'float'}, + } + + def __init__( + self, + *, + address: Optional[str] = None, + state: Optional[Union[str, "NodeState"]] = None, + status: Optional[str] = None, + load: Optional[str] = None, + tokens: Optional[List[str]] = None, + size: Optional[int] = None, + host_id: Optional[str] = None, + rack: Optional[str] = None, + timestamp: Optional[str] = None, + disk_used_kb: Optional[int] = None, + disk_free_kb: Optional[int] = None, + memory_used_kb: Optional[int] = None, + memory_buffers_and_cached_kb: Optional[int] = None, + memory_free_kb: Optional[int] = None, + memory_total_kb: Optional[int] = None, + cpu_usage: Optional[float] = None, + **kwargs + ): + super(ComponentsM9L909SchemasCassandraclusterpublicstatusPropertiesDatacentersItemsPropertiesNodesItems, self).__init__(**kwargs) + self.address = address + self.state = state + self.status = status + self.load = load + self.tokens = tokens + self.size = size + self.host_id = host_id + self.rack = rack + self.timestamp = timestamp + self.disk_used_kb = disk_used_kb + self.disk_free_kb = disk_free_kb + self.memory_used_kb = memory_used_kb + self.memory_buffers_and_cached_kb = memory_buffers_and_cached_kb + self.memory_free_kb = memory_free_kb + self.memory_total_kb = memory_total_kb + self.cpu_usage = cpu_usage + + class CompositePath(msrest.serialization.Model): """CompositePath. @@ -1740,6 +2301,49 @@ def __init__( self.conflict_resolution_procedure = conflict_resolution_procedure +class ConnectionError(msrest.serialization.Model): + """ConnectionError. + + :param connection_state: The kind of connection error that occurred. Possible values include: + "Unknown", "OK", "OperatorToDataCenterNetworkError", "DatacenterToDatacenterNetworkError", + "InternalOperatorToDataCenterCertificateError", "InternalError". + :type connection_state: str or ~azure.mgmt.cosmosdb.models.ConnectionState + :param i_p_from: The IP of host that originated the failed connection. + :type i_p_from: str + :param i_p_to: The IP that the connection attempted to reach. + :type i_p_to: str + :param port: The TCP port the connection was attempted on. + :type port: int + :param exception: Detailed error message about the failed connection. + :type exception: str + """ + + _attribute_map = { + 'connection_state': {'key': 'connectionState', 'type': 'str'}, + 'i_p_from': {'key': 'iPFrom', 'type': 'str'}, + 'i_p_to': {'key': 'iPTo', 'type': 'str'}, + 'port': {'key': 'port', 'type': 'int'}, + 'exception': {'key': 'exception', 'type': 'str'}, + } + + def __init__( + self, + *, + connection_state: Optional[Union[str, "ConnectionState"]] = None, + i_p_from: Optional[str] = None, + i_p_to: Optional[str] = None, + port: Optional[int] = None, + exception: Optional[str] = None, + **kwargs + ): + super(ConnectionError, self).__init__(**kwargs) + self.connection_state = connection_state + self.i_p_from = i_p_from + self.i_p_to = i_p_to + self.port = port + self.exception = exception + + class ConsistencyPolicy(msrest.serialization.Model): """The consistency policy for the Cosmos DB database account. @@ -1926,34 +2530,114 @@ class CorsPolicy(msrest.serialization.Model): """ _validation = { - 'allowed_origins': {'required': True}, - 'max_age_in_seconds': {'maximum': 2147483647, 'minimum': 1}, + 'allowed_origins': {'required': True}, + 'max_age_in_seconds': {'maximum': 2147483647, 'minimum': 1}, + } + + _attribute_map = { + 'allowed_origins': {'key': 'allowedOrigins', 'type': 'str'}, + 'allowed_methods': {'key': 'allowedMethods', 'type': 'str'}, + 'allowed_headers': {'key': 'allowedHeaders', 'type': 'str'}, + 'exposed_headers': {'key': 'exposedHeaders', 'type': 'str'}, + 'max_age_in_seconds': {'key': 'maxAgeInSeconds', 'type': 'long'}, + } + + def __init__( + self, + *, + allowed_origins: str, + allowed_methods: Optional[str] = None, + allowed_headers: Optional[str] = None, + exposed_headers: Optional[str] = None, + max_age_in_seconds: Optional[int] = None, + **kwargs + ): + super(CorsPolicy, self).__init__(**kwargs) + self.allowed_origins = allowed_origins + self.allowed_methods = allowed_methods + self.allowed_headers = allowed_headers + self.exposed_headers = exposed_headers + self.max_age_in_seconds = max_age_in_seconds + + +class CosmosCassandraDataTransferDataSourceSink(DataTransferDataSourceSink): + """A CosmosDB Cassandra API data source/sink. + + All required parameters must be populated in order to send to Azure. + + :param component: Required. Constant filled by server. Possible values include: + "CosmosDBCassandra", "AzureStorage". Default value: "CosmosDBCassandra". + :type component: str or ~azure.mgmt.cosmosdb.models.DataTransferComponent + :param keyspace_name: Required. + :type keyspace_name: str + :param table_name: Required. + :type table_name: str + """ + + _validation = { + 'component': {'required': True}, + 'keyspace_name': {'required': True}, + 'table_name': {'required': True}, + } + + _attribute_map = { + 'component': {'key': 'component', 'type': 'str'}, + 'keyspace_name': {'key': 'keyspaceName', 'type': 'str'}, + 'table_name': {'key': 'tableName', 'type': 'str'}, + } + + def __init__( + self, + *, + keyspace_name: str, + table_name: str, + **kwargs + ): + super(CosmosCassandraDataTransferDataSourceSink, self).__init__(**kwargs) + self.component = 'CosmosDBCassandra' # type: str + self.keyspace_name = keyspace_name + self.table_name = table_name + + +class CreateJobRequest(ARMProxyResource): + """Parameters to create Data Transfer Job. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :ivar id: The unique resource identifier of the database account. + :vartype id: str + :ivar name: The name of the database account. + :vartype name: str + :ivar type: The type of Azure resource. + :vartype type: str + :param properties: Required. Data Transfer Create Job Properties. + :type properties: ~azure.mgmt.cosmosdb.models.DataTransferJobProperties + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'properties': {'required': True}, } _attribute_map = { - 'allowed_origins': {'key': 'allowedOrigins', 'type': 'str'}, - 'allowed_methods': {'key': 'allowedMethods', 'type': 'str'}, - 'allowed_headers': {'key': 'allowedHeaders', 'type': 'str'}, - 'exposed_headers': {'key': 'exposedHeaders', 'type': 'str'}, - 'max_age_in_seconds': {'key': 'maxAgeInSeconds', 'type': 'long'}, + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'properties': {'key': 'properties', 'type': 'DataTransferJobProperties'}, } def __init__( self, *, - allowed_origins: str, - allowed_methods: Optional[str] = None, - allowed_headers: Optional[str] = None, - exposed_headers: Optional[str] = None, - max_age_in_seconds: Optional[int] = None, + properties: "DataTransferJobProperties", **kwargs ): - super(CorsPolicy, self).__init__(**kwargs) - self.allowed_origins = allowed_origins - self.allowed_methods = allowed_methods - self.allowed_headers = allowed_headers - self.exposed_headers = exposed_headers - self.max_age_in_seconds = max_age_in_seconds + super(CreateJobRequest, self).__init__(**kwargs) + self.properties = properties class CreateUpdateOptions(msrest.serialization.Model): @@ -2090,8 +2774,8 @@ class DatabaseAccountCreateUpdateParameters(ARMResourceProperties): :param analytical_storage_configuration: Analytical storage specific properties. :type analytical_storage_configuration: ~azure.mgmt.cosmosdb.models.AnalyticalStorageConfiguration - :param create_mode: Required. Enum to indicate the mode of account creation.Constant filled by - server. Possible values include: "Default", "Restore". Default value: "Default". + :param create_mode: Enum to indicate the mode of account creation. Possible values include: + "Default", "Restore". Default value: "Default". :type create_mode: str or ~azure.mgmt.cosmosdb.models.CreateMode :param backup_policy: The object representing the policy for taking backups on an account. :type backup_policy: ~azure.mgmt.cosmosdb.models.BackupPolicy @@ -2111,6 +2795,9 @@ class DatabaseAccountCreateUpdateParameters(ARMResourceProperties): :type disable_local_auth: bool :param restore_parameters: Parameters to indicate the information about the restore. :type restore_parameters: ~azure.mgmt.cosmosdb.models.RestoreParameters + :param capacity: The object that represents all properties related to capacity enforcement on + an account. + :type capacity: ~azure.mgmt.cosmosdb.models.Capacity """ _validation = { @@ -2119,7 +2806,6 @@ class DatabaseAccountCreateUpdateParameters(ARMResourceProperties): 'type': {'readonly': True}, 'locations': {'required': True}, 'database_account_offer_type': {'required': True, 'constant': True}, - 'create_mode': {'required': True}, } _attribute_map = { @@ -2157,6 +2843,7 @@ class DatabaseAccountCreateUpdateParameters(ARMResourceProperties): 'diagnostic_log_settings': {'key': 'properties.diagnosticLogSettings', 'type': 'DiagnosticLogSettings'}, 'disable_local_auth': {'key': 'properties.disableLocalAuth', 'type': 'bool'}, 'restore_parameters': {'key': 'properties.restoreParameters', 'type': 'RestoreParameters'}, + 'capacity': {'key': 'properties.capacity', 'type': 'Capacity'}, } database_account_offer_type = "Standard" @@ -2186,6 +2873,7 @@ def __init__( api_properties: Optional["ApiProperties"] = None, enable_analytical_storage: Optional[bool] = None, analytical_storage_configuration: Optional["AnalyticalStorageConfiguration"] = None, + create_mode: Optional[Union[str, "CreateMode"]] = "Default", backup_policy: Optional["BackupPolicy"] = None, cors: Optional[List["CorsPolicy"]] = None, network_acl_bypass: Optional[Union[str, "NetworkAclBypass"]] = None, @@ -2193,6 +2881,7 @@ def __init__( diagnostic_log_settings: Optional["DiagnosticLogSettings"] = None, disable_local_auth: Optional[bool] = None, restore_parameters: Optional["RestoreParameters"] = None, + capacity: Optional["Capacity"] = None, **kwargs ): super(DatabaseAccountCreateUpdateParameters, self).__init__(location=location, tags=tags, identity=identity, **kwargs) @@ -2215,192 +2904,7 @@ def __init__( self.api_properties = api_properties self.enable_analytical_storage = enable_analytical_storage self.analytical_storage_configuration = analytical_storage_configuration - self.create_mode = None # type: Optional[str] - self.backup_policy = backup_policy - self.cors = cors - self.network_acl_bypass = network_acl_bypass - self.network_acl_bypass_resource_ids = network_acl_bypass_resource_ids - self.diagnostic_log_settings = diagnostic_log_settings - self.disable_local_auth = disable_local_auth - self.restore_parameters = restore_parameters - - -class DatabaseAccountCreateUpdateProperties(msrest.serialization.Model): - """Properties to create and update Azure Cosmos DB database accounts. - - You probably want to use the sub-classes and not this class directly. Known - sub-classes are: DefaultRequestDatabaseAccountCreateUpdateProperties. - - Variables are only populated by the server, and will be ignored when sending a request. - - All required parameters must be populated in order to send to Azure. - - :param consistency_policy: The consistency policy for the Cosmos DB account. - :type consistency_policy: ~azure.mgmt.cosmosdb.models.ConsistencyPolicy - :param locations: Required. An array that contains the georeplication locations enabled for the - Cosmos DB account. - :type locations: list[~azure.mgmt.cosmosdb.models.Location] - :ivar database_account_offer_type: The offer type for the database. Has constant value: - "Standard". - :vartype database_account_offer_type: str - :param ip_rules: List of IpRules. - :type ip_rules: list[~azure.mgmt.cosmosdb.models.IpAddressOrRange] - :param is_virtual_network_filter_enabled: Flag to indicate whether to enable/disable Virtual - Network ACL rules. - :type is_virtual_network_filter_enabled: bool - :param enable_automatic_failover: Enables automatic failover of the write region in the rare - event that the region is unavailable due to an outage. Automatic failover will result in a new - write region for the account and is chosen based on the failover priorities configured for the - account. - :type enable_automatic_failover: bool - :param capabilities: List of Cosmos DB capabilities for the account. - :type capabilities: list[~azure.mgmt.cosmosdb.models.Capability] - :param virtual_network_rules: List of Virtual Network ACL rules configured for the Cosmos DB - account. - :type virtual_network_rules: list[~azure.mgmt.cosmosdb.models.VirtualNetworkRule] - :param enable_multiple_write_locations: Enables the account to write in multiple locations. - :type enable_multiple_write_locations: bool - :param enable_cassandra_connector: Enables the cassandra connector on the Cosmos DB C* account. - :type enable_cassandra_connector: bool - :param connector_offer: The cassandra connector offer type for the Cosmos DB database C* - account. Possible values include: "Small". - :type connector_offer: str or ~azure.mgmt.cosmosdb.models.ConnectorOffer - :param disable_key_based_metadata_write_access: Disable write operations on metadata resources - (databases, containers, throughput) via account keys. - :type disable_key_based_metadata_write_access: bool - :param key_vault_key_uri: The URI of the key vault. - :type key_vault_key_uri: str - :param default_identity: The default identity for accessing key vault used in features like - customer managed keys. The default identity needs to be explicitly set by the users. It can be - "FirstPartyIdentity", "SystemAssignedIdentity" and more. - :type default_identity: str - :param public_network_access: Whether requests from Public Network are allowed. Possible values - include: "Enabled", "Disabled". - :type public_network_access: str or ~azure.mgmt.cosmosdb.models.PublicNetworkAccess - :param enable_free_tier: Flag to indicate whether Free Tier is enabled. - :type enable_free_tier: bool - :param api_properties: API specific properties. Currently, supported only for MongoDB API. - :type api_properties: ~azure.mgmt.cosmosdb.models.ApiProperties - :param enable_analytical_storage: Flag to indicate whether to enable storage analytics. - :type enable_analytical_storage: bool - :param analytical_storage_configuration: Analytical storage specific properties. - :type analytical_storage_configuration: - ~azure.mgmt.cosmosdb.models.AnalyticalStorageConfiguration - :param create_mode: Required. Enum to indicate the mode of account creation.Constant filled by - server. Possible values include: "Default", "Restore". Default value: "Default". - :type create_mode: str or ~azure.mgmt.cosmosdb.models.CreateMode - :param backup_policy: The object representing the policy for taking backups on an account. - :type backup_policy: ~azure.mgmt.cosmosdb.models.BackupPolicy - :param cors: The CORS policy for the Cosmos DB database account. - :type cors: list[~azure.mgmt.cosmosdb.models.CorsPolicy] - :param network_acl_bypass: Indicates what services are allowed to bypass firewall checks. - Possible values include: "None", "AzureServices". - :type network_acl_bypass: str or ~azure.mgmt.cosmosdb.models.NetworkAclBypass - :param network_acl_bypass_resource_ids: An array that contains the Resource Ids for Network Acl - Bypass for the Cosmos DB account. - :type network_acl_bypass_resource_ids: list[str] - :param diagnostic_log_settings: The Object representing the different Diagnostic log settings - for the Cosmos DB Account. - :type diagnostic_log_settings: ~azure.mgmt.cosmosdb.models.DiagnosticLogSettings - :param disable_local_auth: Opt-out of local authentication and ensure only MSI and AAD can be - used exclusively for authentication. - :type disable_local_auth: bool - :param restore_parameters: Parameters to indicate the information about the restore. - :type restore_parameters: ~azure.mgmt.cosmosdb.models.RestoreParameters - """ - - _validation = { - 'locations': {'required': True}, - 'database_account_offer_type': {'required': True, 'constant': True}, - 'create_mode': {'required': True}, - } - - _attribute_map = { - 'consistency_policy': {'key': 'consistencyPolicy', 'type': 'ConsistencyPolicy'}, - 'locations': {'key': 'locations', 'type': '[Location]'}, - 'database_account_offer_type': {'key': 'databaseAccountOfferType', 'type': 'str'}, - 'ip_rules': {'key': 'ipRules', 'type': '[IpAddressOrRange]'}, - 'is_virtual_network_filter_enabled': {'key': 'isVirtualNetworkFilterEnabled', 'type': 'bool'}, - 'enable_automatic_failover': {'key': 'enableAutomaticFailover', 'type': 'bool'}, - 'capabilities': {'key': 'capabilities', 'type': '[Capability]'}, - 'virtual_network_rules': {'key': 'virtualNetworkRules', 'type': '[VirtualNetworkRule]'}, - 'enable_multiple_write_locations': {'key': 'enableMultipleWriteLocations', 'type': 'bool'}, - 'enable_cassandra_connector': {'key': 'enableCassandraConnector', 'type': 'bool'}, - 'connector_offer': {'key': 'connectorOffer', 'type': 'str'}, - 'disable_key_based_metadata_write_access': {'key': 'disableKeyBasedMetadataWriteAccess', 'type': 'bool'}, - 'key_vault_key_uri': {'key': 'keyVaultKeyUri', 'type': 'str'}, - 'default_identity': {'key': 'defaultIdentity', 'type': 'str'}, - 'public_network_access': {'key': 'publicNetworkAccess', 'type': 'str'}, - 'enable_free_tier': {'key': 'enableFreeTier', 'type': 'bool'}, - 'api_properties': {'key': 'apiProperties', 'type': 'ApiProperties'}, - 'enable_analytical_storage': {'key': 'enableAnalyticalStorage', 'type': 'bool'}, - 'analytical_storage_configuration': {'key': 'analyticalStorageConfiguration', 'type': 'AnalyticalStorageConfiguration'}, - 'create_mode': {'key': 'createMode', 'type': 'str'}, - 'backup_policy': {'key': 'backupPolicy', 'type': 'BackupPolicy'}, - 'cors': {'key': 'cors', 'type': '[CorsPolicy]'}, - 'network_acl_bypass': {'key': 'networkAclBypass', 'type': 'str'}, - 'network_acl_bypass_resource_ids': {'key': 'networkAclBypassResourceIds', 'type': '[str]'}, - 'diagnostic_log_settings': {'key': 'diagnosticLogSettings', 'type': 'DiagnosticLogSettings'}, - 'disable_local_auth': {'key': 'disableLocalAuth', 'type': 'bool'}, - 'restore_parameters': {'key': 'restoreParameters', 'type': 'RestoreParameters'}, - } - - _subtype_map = { - 'create_mode': {'Default': 'DefaultRequestDatabaseAccountCreateUpdateProperties'} - } - - database_account_offer_type = "Standard" - - def __init__( - self, - *, - locations: List["Location"], - consistency_policy: Optional["ConsistencyPolicy"] = None, - ip_rules: Optional[List["IpAddressOrRange"]] = None, - is_virtual_network_filter_enabled: Optional[bool] = None, - enable_automatic_failover: Optional[bool] = None, - capabilities: Optional[List["Capability"]] = None, - virtual_network_rules: Optional[List["VirtualNetworkRule"]] = None, - enable_multiple_write_locations: Optional[bool] = None, - enable_cassandra_connector: Optional[bool] = None, - connector_offer: Optional[Union[str, "ConnectorOffer"]] = None, - disable_key_based_metadata_write_access: Optional[bool] = None, - key_vault_key_uri: Optional[str] = None, - default_identity: Optional[str] = None, - public_network_access: Optional[Union[str, "PublicNetworkAccess"]] = None, - enable_free_tier: Optional[bool] = None, - api_properties: Optional["ApiProperties"] = None, - enable_analytical_storage: Optional[bool] = None, - analytical_storage_configuration: Optional["AnalyticalStorageConfiguration"] = None, - backup_policy: Optional["BackupPolicy"] = None, - cors: Optional[List["CorsPolicy"]] = None, - network_acl_bypass: Optional[Union[str, "NetworkAclBypass"]] = None, - network_acl_bypass_resource_ids: Optional[List[str]] = None, - diagnostic_log_settings: Optional["DiagnosticLogSettings"] = None, - disable_local_auth: Optional[bool] = None, - restore_parameters: Optional["RestoreParameters"] = None, - **kwargs - ): - super(DatabaseAccountCreateUpdateProperties, self).__init__(**kwargs) - self.consistency_policy = consistency_policy - self.locations = locations - self.ip_rules = ip_rules - self.is_virtual_network_filter_enabled = is_virtual_network_filter_enabled - self.enable_automatic_failover = enable_automatic_failover - self.capabilities = capabilities - self.virtual_network_rules = virtual_network_rules - self.enable_multiple_write_locations = enable_multiple_write_locations - self.enable_cassandra_connector = enable_cassandra_connector - self.connector_offer = connector_offer - self.disable_key_based_metadata_write_access = disable_key_based_metadata_write_access - self.key_vault_key_uri = key_vault_key_uri - self.default_identity = default_identity - self.public_network_access = public_network_access - self.enable_free_tier = enable_free_tier - self.api_properties = api_properties - self.enable_analytical_storage = enable_analytical_storage - self.analytical_storage_configuration = analytical_storage_configuration - self.create_mode = None # type: Optional[str] + self.create_mode = create_mode self.backup_policy = backup_policy self.cors = cors self.network_acl_bypass = network_acl_bypass @@ -2408,6 +2912,7 @@ def __init__( self.diagnostic_log_settings = diagnostic_log_settings self.disable_local_auth = disable_local_auth self.restore_parameters = restore_parameters + self.capacity = capacity class DatabaseAccountGetResults(ARMResourceProperties): @@ -2533,6 +3038,9 @@ class DatabaseAccountGetResults(ARMResourceProperties): :param disable_local_auth: Opt-out of local authentication and ensure only MSI and AAD can be used exclusively for authentication. :type disable_local_auth: bool + :param capacity: The object that represents all properties related to capacity enforcement on + an account. + :type capacity: ~azure.mgmt.cosmosdb.models.Capacity """ _validation = { @@ -2594,6 +3102,7 @@ class DatabaseAccountGetResults(ARMResourceProperties): 'network_acl_bypass_resource_ids': {'key': 'properties.networkAclBypassResourceIds', 'type': '[str]'}, 'diagnostic_log_settings': {'key': 'properties.diagnosticLogSettings', 'type': 'DiagnosticLogSettings'}, 'disable_local_auth': {'key': 'properties.disableLocalAuth', 'type': 'bool'}, + 'capacity': {'key': 'properties.capacity', 'type': 'Capacity'}, } def __init__( @@ -2628,6 +3137,7 @@ def __init__( network_acl_bypass_resource_ids: Optional[List[str]] = None, diagnostic_log_settings: Optional["DiagnosticLogSettings"] = None, disable_local_auth: Optional[bool] = None, + capacity: Optional["Capacity"] = None, **kwargs ): super(DatabaseAccountGetResults, self).__init__(location=location, tags=tags, identity=identity, **kwargs) @@ -2667,6 +3177,7 @@ def __init__( self.network_acl_bypass_resource_ids = network_acl_bypass_resource_ids self.diagnostic_log_settings = diagnostic_log_settings self.disable_local_auth = disable_local_auth + self.capacity = capacity class DatabaseAccountListConnectionStringsResult(msrest.serialization.Model): @@ -2890,6 +3401,9 @@ class DatabaseAccountUpdateParameters(msrest.serialization.Model): :param disable_local_auth: Opt-out of local authentication and ensure only MSI and AAD can be used exclusively for authentication. :type disable_local_auth: bool + :param capacity: The object that represents all properties related to capacity enforcement on + an account. + :type capacity: ~azure.mgmt.cosmosdb.models.Capacity """ _attribute_map = { @@ -2920,6 +3434,7 @@ class DatabaseAccountUpdateParameters(msrest.serialization.Model): 'network_acl_bypass_resource_ids': {'key': 'properties.networkAclBypassResourceIds', 'type': '[str]'}, 'diagnostic_log_settings': {'key': 'properties.diagnosticLogSettings', 'type': 'DiagnosticLogSettings'}, 'disable_local_auth': {'key': 'properties.disableLocalAuth', 'type': 'bool'}, + 'capacity': {'key': 'properties.capacity', 'type': 'Capacity'}, } def __init__( @@ -2952,6 +3467,7 @@ def __init__( network_acl_bypass_resource_ids: Optional[List[str]] = None, diagnostic_log_settings: Optional["DiagnosticLogSettings"] = None, disable_local_auth: Optional[bool] = None, + capacity: Optional["Capacity"] = None, **kwargs ): super(DatabaseAccountUpdateParameters, self).__init__(**kwargs) @@ -2982,6 +3498,7 @@ def __init__( self.network_acl_bypass_resource_ids = network_acl_bypass_resource_ids self.diagnostic_log_settings = diagnostic_log_settings self.disable_local_auth = disable_local_auth + self.capacity = capacity class DatabaseRestoreResource(msrest.serialization.Model): @@ -3078,6 +3595,26 @@ class DataCenterResourceProperties(msrest.serialization.Model): file to be included in the cassandra.yaml for all nodes in this data center. The fragment should be Base64 encoded, and only a subset of keys are allowed. :type base64_encoded_cassandra_yaml_fragment: str + :param managed_disk_customer_key_uri: Key uri to use for encryption of managed disks. Ensure + the system assigned identity of the cluster has been assigned appropriate permissions(key + get/wrap/unwrap permissions) on the key. + :type managed_disk_customer_key_uri: str + :param backup_storage_customer_key_uri: Indicates the Key Uri of the customer key to use for + encryption of the backup storage account. + :type backup_storage_customer_key_uri: str + :param sku: Virtual Machine SKU used for data centers. Default value is Standard_DS14_v2. + :type sku: str + :param disk_sku: Disk SKU used for data centers. Default value is P30. + :type disk_sku: str + :param disk_capacity: Number of disk used for data centers. Default value is 4. + :type disk_capacity: int + :param availability_zone: If the data center has Availability Zone feature, apply it to the + Virtual Machine ScaleSet that host the cassandra data center virtual machines. + :type availability_zone: bool + :param authentication_method_ldap_properties: Ldap authentication method properties. This + feature is in preview. + :type authentication_method_ldap_properties: + ~azure.mgmt.cosmosdb.models.AuthenticationMethodLdapProperties """ _validation = { @@ -3091,6 +3628,13 @@ class DataCenterResourceProperties(msrest.serialization.Model): 'node_count': {'key': 'nodeCount', 'type': 'int'}, 'seed_nodes': {'key': 'seedNodes', 'type': '[SeedNode]'}, 'base64_encoded_cassandra_yaml_fragment': {'key': 'base64EncodedCassandraYamlFragment', 'type': 'str'}, + 'managed_disk_customer_key_uri': {'key': 'managedDiskCustomerKeyUri', 'type': 'str'}, + 'backup_storage_customer_key_uri': {'key': 'backupStorageCustomerKeyUri', 'type': 'str'}, + 'sku': {'key': 'sku', 'type': 'str'}, + 'disk_sku': {'key': 'diskSku', 'type': 'str'}, + 'disk_capacity': {'key': 'diskCapacity', 'type': 'int'}, + 'availability_zone': {'key': 'availabilityZone', 'type': 'bool'}, + 'authentication_method_ldap_properties': {'key': 'authenticationMethodLdapProperties', 'type': 'AuthenticationMethodLdapProperties'}, } def __init__( @@ -3101,6 +3645,13 @@ def __init__( delegated_subnet_id: Optional[str] = None, node_count: Optional[int] = None, base64_encoded_cassandra_yaml_fragment: Optional[str] = None, + managed_disk_customer_key_uri: Optional[str] = None, + backup_storage_customer_key_uri: Optional[str] = None, + sku: Optional[str] = None, + disk_sku: Optional[str] = None, + disk_capacity: Optional[int] = None, + availability_zone: Optional[bool] = None, + authentication_method_ldap_properties: Optional["AuthenticationMethodLdapProperties"] = None, **kwargs ): super(DataCenterResourceProperties, self).__init__(**kwargs) @@ -3110,6 +3661,183 @@ def __init__( self.node_count = node_count self.seed_nodes = None self.base64_encoded_cassandra_yaml_fragment = base64_encoded_cassandra_yaml_fragment + self.managed_disk_customer_key_uri = managed_disk_customer_key_uri + self.backup_storage_customer_key_uri = backup_storage_customer_key_uri + self.sku = sku + self.disk_sku = disk_sku + self.disk_capacity = disk_capacity + self.availability_zone = availability_zone + self.authentication_method_ldap_properties = authentication_method_ldap_properties + + +class DataTransferJobFeedResults(msrest.serialization.Model): + """The List operation response, that contains the Data Transfer jobs and their properties. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: List of Data Transfer jobs and their properties. + :vartype value: list[~azure.mgmt.cosmosdb.models.DataTransferJobGetResults] + :ivar next_link: URL to get the next set of Data Transfer job list results if there are any. + :vartype next_link: str + """ + + _validation = { + 'value': {'readonly': True}, + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[DataTransferJobGetResults]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(DataTransferJobFeedResults, self).__init__(**kwargs) + self.value = None + self.next_link = None + + +class DataTransferJobGetResults(ARMProxyResource): + """A Cosmos DB Data Transfer Job. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: The unique resource identifier of the database account. + :vartype id: str + :ivar name: The name of the database account. + :vartype name: str + :ivar type: The type of Azure resource. + :vartype type: str + :ivar job_name: Job Name. + :vartype job_name: str + :param source: Source DataStore details. + :type source: ~azure.mgmt.cosmosdb.models.DataTransferDataSourceSink + :param destination: Destination DataStore details. + :type destination: ~azure.mgmt.cosmosdb.models.DataTransferDataSourceSink + :ivar status: Job Status. + :vartype status: str + :ivar percentage_complete: Percentage of completion. + :vartype percentage_complete: float + :ivar last_updated_utc_time: Last Updated Time (ISO-8601 format). + :vartype last_updated_utc_time: ~datetime.datetime + :param worker_count: Worker count. + :type worker_count: int + :ivar error: Error response for Faulted job. + :vartype error: ~azure.mgmt.cosmosdb.models.ErrorResponse + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'job_name': {'readonly': True}, + 'status': {'readonly': True}, + 'percentage_complete': {'readonly': True}, + 'last_updated_utc_time': {'readonly': True}, + 'worker_count': {'minimum': 0}, + 'error': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'job_name': {'key': 'properties.jobName', 'type': 'str'}, + 'source': {'key': 'properties.source', 'type': 'DataTransferDataSourceSink'}, + 'destination': {'key': 'properties.destination', 'type': 'DataTransferDataSourceSink'}, + 'status': {'key': 'properties.status', 'type': 'str'}, + 'percentage_complete': {'key': 'properties.percentageComplete', 'type': 'float'}, + 'last_updated_utc_time': {'key': 'properties.lastUpdatedUtcTime', 'type': 'iso-8601'}, + 'worker_count': {'key': 'properties.workerCount', 'type': 'int'}, + 'error': {'key': 'properties.error', 'type': 'ErrorResponse'}, + } + + def __init__( + self, + *, + source: Optional["DataTransferDataSourceSink"] = None, + destination: Optional["DataTransferDataSourceSink"] = None, + worker_count: Optional[int] = None, + **kwargs + ): + super(DataTransferJobGetResults, self).__init__(**kwargs) + self.job_name = None + self.source = source + self.destination = destination + self.status = None + self.percentage_complete = None + self.last_updated_utc_time = None + self.worker_count = worker_count + self.error = None + + +class DataTransferJobProperties(msrest.serialization.Model): + """The properties of a DataTransfer Job. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :ivar job_name: Job Name. + :vartype job_name: str + :param source: Required. Source DataStore details. + :type source: ~azure.mgmt.cosmosdb.models.DataTransferDataSourceSink + :param destination: Required. Destination DataStore details. + :type destination: ~azure.mgmt.cosmosdb.models.DataTransferDataSourceSink + :ivar status: Job Status. + :vartype status: str + :ivar percentage_complete: Percentage of completion. + :vartype percentage_complete: float + :ivar last_updated_utc_time: Last Updated Time (ISO-8601 format). + :vartype last_updated_utc_time: ~datetime.datetime + :param worker_count: Worker count. + :type worker_count: int + :ivar error: Error response for Faulted job. + :vartype error: ~azure.mgmt.cosmosdb.models.ErrorResponse + """ + + _validation = { + 'job_name': {'readonly': True}, + 'source': {'required': True}, + 'destination': {'required': True}, + 'status': {'readonly': True}, + 'percentage_complete': {'readonly': True}, + 'last_updated_utc_time': {'readonly': True}, + 'worker_count': {'minimum': 0}, + 'error': {'readonly': True}, + } + + _attribute_map = { + 'job_name': {'key': 'jobName', 'type': 'str'}, + 'source': {'key': 'source', 'type': 'DataTransferDataSourceSink'}, + 'destination': {'key': 'destination', 'type': 'DataTransferDataSourceSink'}, + 'status': {'key': 'status', 'type': 'str'}, + 'percentage_complete': {'key': 'percentageComplete', 'type': 'float'}, + 'last_updated_utc_time': {'key': 'lastUpdatedUtcTime', 'type': 'iso-8601'}, + 'worker_count': {'key': 'workerCount', 'type': 'int'}, + 'error': {'key': 'error', 'type': 'ErrorResponse'}, + } + + def __init__( + self, + *, + source: "DataTransferDataSourceSink", + destination: "DataTransferDataSourceSink", + worker_count: Optional[int] = None, + **kwargs + ): + super(DataTransferJobProperties, self).__init__(**kwargs) + self.job_name = None + self.source = source + self.destination = destination + self.status = None + self.percentage_complete = None + self.last_updated_utc_time = None + self.worker_count = worker_count + self.error = None class RegionalServiceResource(msrest.serialization.Model): @@ -3205,6 +3933,9 @@ def __init__( class ServiceResourceProperties(msrest.serialization.Model): """Services response resource. + You probably want to use the sub-classes and not this class directly. Known + sub-classes are: DataTransferServiceResourceProperties, GraphAPIComputeServiceResourceProperties, MaterializedViewsBuilderServiceResourceProperties, SqlDedicatedGatewayServiceResourceProperties. + Variables are only populated by the server, and will be ignored when sending a request. All required parameters must be populated in order to send to Azure. @@ -3219,8 +3950,9 @@ class ServiceResourceProperties(msrest.serialization.Model): :type instance_size: str or ~azure.mgmt.cosmosdb.models.ServiceSize :param instance_count: Instance count for the service. :type instance_count: int - :param service_type: Required. ServiceType for the service. Possible values include: - "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute". + :param service_type: Required. ServiceType for the service.Constant filled by server. Possible + values include: "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute", + "MaterializedViewsBuilder". :type service_type: str or ~azure.mgmt.cosmosdb.models.ServiceType :ivar status: Describes the status of a service. Possible values include: "Creating", "Running", "Updating", "Deleting", "Error", "Stopped". @@ -3243,10 +3975,13 @@ class ServiceResourceProperties(msrest.serialization.Model): 'status': {'key': 'status', 'type': 'str'}, } + _subtype_map = { + 'service_type': {'DataTransfer': 'DataTransferServiceResourceProperties', 'GraphAPICompute': 'GraphAPIComputeServiceResourceProperties', 'MaterializedViewsBuilder': 'MaterializedViewsBuilderServiceResourceProperties', 'SqlDedicatedGateway': 'SqlDedicatedGatewayServiceResourceProperties'} + } + def __init__( self, *, - service_type: Union[str, "ServiceType"], additional_properties: Optional[Dict[str, Any]] = None, instance_size: Optional[Union[str, "ServiceSize"]] = None, instance_count: Optional[int] = None, @@ -3257,7 +3992,7 @@ def __init__( self.creation_time = None self.instance_size = instance_size self.instance_count = instance_count - self.service_type = service_type + self.service_type = 'ServiceResourceProperties' # type: str self.status = None @@ -3278,8 +4013,9 @@ class DataTransferServiceResourceProperties(ServiceResourceProperties): :type instance_size: str or ~azure.mgmt.cosmosdb.models.ServiceSize :param instance_count: Instance count for the service. :type instance_count: int - :param service_type: Required. ServiceType for the service. Possible values include: - "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute". + :param service_type: Required. ServiceType for the service.Constant filled by server. Possible + values include: "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute", + "MaterializedViewsBuilder". :type service_type: str or ~azure.mgmt.cosmosdb.models.ServiceType :ivar status: Describes the status of a service. Possible values include: "Creating", "Running", "Updating", "Deleting", "Error", "Stopped". @@ -3309,169 +4045,16 @@ class DataTransferServiceResourceProperties(ServiceResourceProperties): def __init__( self, *, - service_type: Union[str, "ServiceType"], additional_properties: Optional[Dict[str, Any]] = None, instance_size: Optional[Union[str, "ServiceSize"]] = None, instance_count: Optional[int] = None, **kwargs ): - super(DataTransferServiceResourceProperties, self).__init__(additional_properties=additional_properties, instance_size=instance_size, instance_count=instance_count, service_type=service_type, **kwargs) + super(DataTransferServiceResourceProperties, self).__init__(additional_properties=additional_properties, instance_size=instance_size, instance_count=instance_count, **kwargs) + self.service_type = 'DataTransfer' # type: str self.locations = None -class DefaultRequestDatabaseAccountCreateUpdateProperties(DatabaseAccountCreateUpdateProperties): - """Properties for non-restore Azure Cosmos DB database account requests. - - Variables are only populated by the server, and will be ignored when sending a request. - - All required parameters must be populated in order to send to Azure. - - :param consistency_policy: The consistency policy for the Cosmos DB account. - :type consistency_policy: ~azure.mgmt.cosmosdb.models.ConsistencyPolicy - :param locations: Required. An array that contains the georeplication locations enabled for the - Cosmos DB account. - :type locations: list[~azure.mgmt.cosmosdb.models.Location] - :ivar database_account_offer_type: The offer type for the database. Has constant value: - "Standard". - :vartype database_account_offer_type: str - :param ip_rules: List of IpRules. - :type ip_rules: list[~azure.mgmt.cosmosdb.models.IpAddressOrRange] - :param is_virtual_network_filter_enabled: Flag to indicate whether to enable/disable Virtual - Network ACL rules. - :type is_virtual_network_filter_enabled: bool - :param enable_automatic_failover: Enables automatic failover of the write region in the rare - event that the region is unavailable due to an outage. Automatic failover will result in a new - write region for the account and is chosen based on the failover priorities configured for the - account. - :type enable_automatic_failover: bool - :param capabilities: List of Cosmos DB capabilities for the account. - :type capabilities: list[~azure.mgmt.cosmosdb.models.Capability] - :param virtual_network_rules: List of Virtual Network ACL rules configured for the Cosmos DB - account. - :type virtual_network_rules: list[~azure.mgmt.cosmosdb.models.VirtualNetworkRule] - :param enable_multiple_write_locations: Enables the account to write in multiple locations. - :type enable_multiple_write_locations: bool - :param enable_cassandra_connector: Enables the cassandra connector on the Cosmos DB C* account. - :type enable_cassandra_connector: bool - :param connector_offer: The cassandra connector offer type for the Cosmos DB database C* - account. Possible values include: "Small". - :type connector_offer: str or ~azure.mgmt.cosmosdb.models.ConnectorOffer - :param disable_key_based_metadata_write_access: Disable write operations on metadata resources - (databases, containers, throughput) via account keys. - :type disable_key_based_metadata_write_access: bool - :param key_vault_key_uri: The URI of the key vault. - :type key_vault_key_uri: str - :param default_identity: The default identity for accessing key vault used in features like - customer managed keys. The default identity needs to be explicitly set by the users. It can be - "FirstPartyIdentity", "SystemAssignedIdentity" and more. - :type default_identity: str - :param public_network_access: Whether requests from Public Network are allowed. Possible values - include: "Enabled", "Disabled". - :type public_network_access: str or ~azure.mgmt.cosmosdb.models.PublicNetworkAccess - :param enable_free_tier: Flag to indicate whether Free Tier is enabled. - :type enable_free_tier: bool - :param api_properties: API specific properties. Currently, supported only for MongoDB API. - :type api_properties: ~azure.mgmt.cosmosdb.models.ApiProperties - :param enable_analytical_storage: Flag to indicate whether to enable storage analytics. - :type enable_analytical_storage: bool - :param analytical_storage_configuration: Analytical storage specific properties. - :type analytical_storage_configuration: - ~azure.mgmt.cosmosdb.models.AnalyticalStorageConfiguration - :param create_mode: Required. Enum to indicate the mode of account creation.Constant filled by - server. Possible values include: "Default", "Restore". Default value: "Default". - :type create_mode: str or ~azure.mgmt.cosmosdb.models.CreateMode - :param backup_policy: The object representing the policy for taking backups on an account. - :type backup_policy: ~azure.mgmt.cosmosdb.models.BackupPolicy - :param cors: The CORS policy for the Cosmos DB database account. - :type cors: list[~azure.mgmt.cosmosdb.models.CorsPolicy] - :param network_acl_bypass: Indicates what services are allowed to bypass firewall checks. - Possible values include: "None", "AzureServices". - :type network_acl_bypass: str or ~azure.mgmt.cosmosdb.models.NetworkAclBypass - :param network_acl_bypass_resource_ids: An array that contains the Resource Ids for Network Acl - Bypass for the Cosmos DB account. - :type network_acl_bypass_resource_ids: list[str] - :param diagnostic_log_settings: The Object representing the different Diagnostic log settings - for the Cosmos DB Account. - :type diagnostic_log_settings: ~azure.mgmt.cosmosdb.models.DiagnosticLogSettings - :param disable_local_auth: Opt-out of local authentication and ensure only MSI and AAD can be - used exclusively for authentication. - :type disable_local_auth: bool - :param restore_parameters: Parameters to indicate the information about the restore. - :type restore_parameters: ~azure.mgmt.cosmosdb.models.RestoreParameters - """ - - _validation = { - 'locations': {'required': True}, - 'database_account_offer_type': {'required': True, 'constant': True}, - 'create_mode': {'required': True}, - } - - _attribute_map = { - 'consistency_policy': {'key': 'consistencyPolicy', 'type': 'ConsistencyPolicy'}, - 'locations': {'key': 'locations', 'type': '[Location]'}, - 'database_account_offer_type': {'key': 'databaseAccountOfferType', 'type': 'str'}, - 'ip_rules': {'key': 'ipRules', 'type': '[IpAddressOrRange]'}, - 'is_virtual_network_filter_enabled': {'key': 'isVirtualNetworkFilterEnabled', 'type': 'bool'}, - 'enable_automatic_failover': {'key': 'enableAutomaticFailover', 'type': 'bool'}, - 'capabilities': {'key': 'capabilities', 'type': '[Capability]'}, - 'virtual_network_rules': {'key': 'virtualNetworkRules', 'type': '[VirtualNetworkRule]'}, - 'enable_multiple_write_locations': {'key': 'enableMultipleWriteLocations', 'type': 'bool'}, - 'enable_cassandra_connector': {'key': 'enableCassandraConnector', 'type': 'bool'}, - 'connector_offer': {'key': 'connectorOffer', 'type': 'str'}, - 'disable_key_based_metadata_write_access': {'key': 'disableKeyBasedMetadataWriteAccess', 'type': 'bool'}, - 'key_vault_key_uri': {'key': 'keyVaultKeyUri', 'type': 'str'}, - 'default_identity': {'key': 'defaultIdentity', 'type': 'str'}, - 'public_network_access': {'key': 'publicNetworkAccess', 'type': 'str'}, - 'enable_free_tier': {'key': 'enableFreeTier', 'type': 'bool'}, - 'api_properties': {'key': 'apiProperties', 'type': 'ApiProperties'}, - 'enable_analytical_storage': {'key': 'enableAnalyticalStorage', 'type': 'bool'}, - 'analytical_storage_configuration': {'key': 'analyticalStorageConfiguration', 'type': 'AnalyticalStorageConfiguration'}, - 'create_mode': {'key': 'createMode', 'type': 'str'}, - 'backup_policy': {'key': 'backupPolicy', 'type': 'BackupPolicy'}, - 'cors': {'key': 'cors', 'type': '[CorsPolicy]'}, - 'network_acl_bypass': {'key': 'networkAclBypass', 'type': 'str'}, - 'network_acl_bypass_resource_ids': {'key': 'networkAclBypassResourceIds', 'type': '[str]'}, - 'diagnostic_log_settings': {'key': 'diagnosticLogSettings', 'type': 'DiagnosticLogSettings'}, - 'disable_local_auth': {'key': 'disableLocalAuth', 'type': 'bool'}, - 'restore_parameters': {'key': 'restoreParameters', 'type': 'RestoreParameters'}, - } - - database_account_offer_type = "Standard" - - def __init__( - self, - *, - locations: List["Location"], - consistency_policy: Optional["ConsistencyPolicy"] = None, - ip_rules: Optional[List["IpAddressOrRange"]] = None, - is_virtual_network_filter_enabled: Optional[bool] = None, - enable_automatic_failover: Optional[bool] = None, - capabilities: Optional[List["Capability"]] = None, - virtual_network_rules: Optional[List["VirtualNetworkRule"]] = None, - enable_multiple_write_locations: Optional[bool] = None, - enable_cassandra_connector: Optional[bool] = None, - connector_offer: Optional[Union[str, "ConnectorOffer"]] = None, - disable_key_based_metadata_write_access: Optional[bool] = None, - key_vault_key_uri: Optional[str] = None, - default_identity: Optional[str] = None, - public_network_access: Optional[Union[str, "PublicNetworkAccess"]] = None, - enable_free_tier: Optional[bool] = None, - api_properties: Optional["ApiProperties"] = None, - enable_analytical_storage: Optional[bool] = None, - analytical_storage_configuration: Optional["AnalyticalStorageConfiguration"] = None, - backup_policy: Optional["BackupPolicy"] = None, - cors: Optional[List["CorsPolicy"]] = None, - network_acl_bypass: Optional[Union[str, "NetworkAclBypass"]] = None, - network_acl_bypass_resource_ids: Optional[List[str]] = None, - diagnostic_log_settings: Optional["DiagnosticLogSettings"] = None, - disable_local_auth: Optional[bool] = None, - restore_parameters: Optional["RestoreParameters"] = None, - **kwargs - ): - super(DefaultRequestDatabaseAccountCreateUpdateProperties, self).__init__(consistency_policy=consistency_policy, locations=locations, ip_rules=ip_rules, is_virtual_network_filter_enabled=is_virtual_network_filter_enabled, enable_automatic_failover=enable_automatic_failover, capabilities=capabilities, virtual_network_rules=virtual_network_rules, enable_multiple_write_locations=enable_multiple_write_locations, enable_cassandra_connector=enable_cassandra_connector, connector_offer=connector_offer, disable_key_based_metadata_write_access=disable_key_based_metadata_write_access, key_vault_key_uri=key_vault_key_uri, default_identity=default_identity, public_network_access=public_network_access, enable_free_tier=enable_free_tier, api_properties=api_properties, enable_analytical_storage=enable_analytical_storage, analytical_storage_configuration=analytical_storage_configuration, backup_policy=backup_policy, cors=cors, network_acl_bypass=network_acl_bypass, network_acl_bypass_resource_ids=network_acl_bypass_resource_ids, diagnostic_log_settings=diagnostic_log_settings, disable_local_auth=disable_local_auth, restore_parameters=restore_parameters, **kwargs) - self.create_mode = 'Default' # type: str - - class DiagnosticLogSettings(msrest.serialization.Model): """Indicates what diagnostic log settings are to be enabled. @@ -3686,8 +4269,9 @@ class GraphAPIComputeServiceResourceProperties(ServiceResourceProperties): :type instance_size: str or ~azure.mgmt.cosmosdb.models.ServiceSize :param instance_count: Instance count for the service. :type instance_count: int - :param service_type: Required. ServiceType for the service. Possible values include: - "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute". + :param service_type: Required. ServiceType for the service.Constant filled by server. Possible + values include: "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute", + "MaterializedViewsBuilder". :type service_type: str or ~azure.mgmt.cosmosdb.models.ServiceType :ivar status: Describes the status of a service. Possible values include: "Creating", "Running", "Updating", "Deleting", "Error", "Stopped". @@ -3720,14 +4304,14 @@ class GraphAPIComputeServiceResourceProperties(ServiceResourceProperties): def __init__( self, *, - service_type: Union[str, "ServiceType"], additional_properties: Optional[Dict[str, Any]] = None, instance_size: Optional[Union[str, "ServiceSize"]] = None, instance_count: Optional[int] = None, graph_api_compute_endpoint: Optional[str] = None, **kwargs ): - super(GraphAPIComputeServiceResourceProperties, self).__init__(additional_properties=additional_properties, instance_size=instance_size, instance_count=instance_count, service_type=service_type, **kwargs) + super(GraphAPIComputeServiceResourceProperties, self).__init__(additional_properties=additional_properties, instance_size=instance_size, instance_count=instance_count, **kwargs) + self.service_type = 'GraphAPICompute' # type: str self.graph_api_compute_endpoint = graph_api_compute_endpoint self.locations = None @@ -4659,6 +5243,37 @@ def __init__( self.ip_address_or_range = ip_address_or_range +class KeyWrapMetadata(msrest.serialization.Model): + """Represents key wrap metadata that a key wrapping provider can use to wrap/unwrap a client encryption key. + + :param name: The name of associated KeyEncryptionKey (aka CustomerManagedKey). + :type name: str + :param type: ProviderName of KeyStoreProvider. + :type type: str + :param value: Reference / link to the KeyEncryptionKey. + :type value: str + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'value': {'key': 'value', 'type': 'str'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + type: Optional[str] = None, + value: Optional[str] = None, + **kwargs + ): + super(KeyWrapMetadata, self).__init__(**kwargs) + self.name = name + self.type = type + self.value = value + + class ListBackups(msrest.serialization.Model): """List of restorable backups for a Cassandra cluster. @@ -4899,6 +5514,73 @@ def __init__( self.backup_storage_redundancies = None +class ManagedCassandraManagedServiceIdentity(msrest.serialization.Model): + """Identity for the resource. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar principal_id: The object id of the identity resource. + :vartype principal_id: str + :ivar tenant_id: The tenant id of the resource. + :vartype tenant_id: str + :param type: The type of the resource. Possible values include: "SystemAssigned", "None". + :type type: str or ~azure.mgmt.cosmosdb.models.ManagedCassandraResourceIdentityType + """ + + _validation = { + 'principal_id': {'readonly': True}, + 'tenant_id': {'readonly': True}, + } + + _attribute_map = { + 'principal_id': {'key': 'principalId', 'type': 'str'}, + 'tenant_id': {'key': 'tenantId', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__( + self, + *, + type: Optional[Union[str, "ManagedCassandraResourceIdentityType"]] = None, + **kwargs + ): + super(ManagedCassandraManagedServiceIdentity, self).__init__(**kwargs) + self.principal_id = None + self.tenant_id = None + self.type = type + + +class ManagedCassandraReaperStatus(msrest.serialization.Model): + """ManagedCassandraReaperStatus. + + :param healthy: + :type healthy: bool + :param repair_run_ids: Dictionary of :code:``. + :type repair_run_ids: dict[str, str] + :param repair_schedules: Dictionary of :code:``. + :type repair_schedules: dict[str, str] + """ + + _attribute_map = { + 'healthy': {'key': 'healthy', 'type': 'bool'}, + 'repair_run_ids': {'key': 'repairRunIds', 'type': '{str}'}, + 'repair_schedules': {'key': 'repairSchedules', 'type': '{str}'}, + } + + def __init__( + self, + *, + healthy: Optional[bool] = None, + repair_run_ids: Optional[Dict[str, str]] = None, + repair_schedules: Optional[Dict[str, str]] = None, + **kwargs + ): + super(ManagedCassandraReaperStatus, self).__init__(**kwargs) + self.healthy = healthy + self.repair_run_ids = repair_run_ids + self.repair_schedules = repair_schedules + + class ManagedServiceIdentity(msrest.serialization.Model): """Identity for the resource. @@ -4923,29 +5605,143 @@ class ManagedServiceIdentity(msrest.serialization.Model): """ _validation = { - 'principal_id': {'readonly': True}, - 'tenant_id': {'readonly': True}, + 'principal_id': {'readonly': True}, + 'tenant_id': {'readonly': True}, + } + + _attribute_map = { + 'principal_id': {'key': 'principalId', 'type': 'str'}, + 'tenant_id': {'key': 'tenantId', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'user_assigned_identities': {'key': 'userAssignedIdentities', 'type': '{Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties}'}, + } + + def __init__( + self, + *, + type: Optional[Union[str, "ResourceIdentityType"]] = None, + user_assigned_identities: Optional[Dict[str, "Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties"]] = None, + **kwargs + ): + super(ManagedServiceIdentity, self).__init__(**kwargs) + self.principal_id = None + self.tenant_id = None + self.type = type + self.user_assigned_identities = user_assigned_identities + + +class MaterializedViewsBuilderRegionalServiceResource(RegionalServiceResource): + """Resource for a regional service location. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar name: The regional service name. + :vartype name: str + :ivar location: The location name. + :vartype location: str + :ivar status: Describes the status of a service. Possible values include: "Creating", + "Running", "Updating", "Deleting", "Error", "Stopped". + :vartype status: str or ~azure.mgmt.cosmosdb.models.ServiceStatus + """ + + _validation = { + 'name': {'readonly': True}, + 'location': {'readonly': True}, + 'status': {'readonly': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'status': {'key': 'status', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(MaterializedViewsBuilderRegionalServiceResource, self).__init__(**kwargs) + + +class MaterializedViewsBuilderServiceResource(msrest.serialization.Model): + """Describes the service response property for MaterializedViewsBuilder. + + :param properties: Properties for MaterializedViewsBuilderServiceResource. + :type properties: ~azure.mgmt.cosmosdb.models.MaterializedViewsBuilderServiceResourceProperties + """ + + _attribute_map = { + 'properties': {'key': 'properties', 'type': 'MaterializedViewsBuilderServiceResourceProperties'}, + } + + def __init__( + self, + *, + properties: Optional["MaterializedViewsBuilderServiceResourceProperties"] = None, + **kwargs + ): + super(MaterializedViewsBuilderServiceResource, self).__init__(**kwargs) + self.properties = properties + + +class MaterializedViewsBuilderServiceResourceProperties(ServiceResourceProperties): + """Properties for MaterializedViewsBuilderServiceResource. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :param additional_properties: Unmatched properties from the message are deserialized to this + collection. + :type additional_properties: dict[str, any] + :ivar creation_time: Time of the last state change (ISO-8601 format). + :vartype creation_time: ~datetime.datetime + :param instance_size: Instance type for the service. Possible values include: "Cosmos.D4s", + "Cosmos.D8s", "Cosmos.D16s". + :type instance_size: str or ~azure.mgmt.cosmosdb.models.ServiceSize + :param instance_count: Instance count for the service. + :type instance_count: int + :param service_type: Required. ServiceType for the service.Constant filled by server. Possible + values include: "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute", + "MaterializedViewsBuilder". + :type service_type: str or ~azure.mgmt.cosmosdb.models.ServiceType + :ivar status: Describes the status of a service. Possible values include: "Creating", + "Running", "Updating", "Deleting", "Error", "Stopped". + :vartype status: str or ~azure.mgmt.cosmosdb.models.ServiceStatus + :ivar locations: An array that contains all of the locations for the service. + :vartype locations: + list[~azure.mgmt.cosmosdb.models.MaterializedViewsBuilderRegionalServiceResource] + """ + + _validation = { + 'creation_time': {'readonly': True}, + 'instance_count': {'minimum': 0}, + 'service_type': {'required': True}, + 'status': {'readonly': True}, + 'locations': {'readonly': True}, } _attribute_map = { - 'principal_id': {'key': 'principalId', 'type': 'str'}, - 'tenant_id': {'key': 'tenantId', 'type': 'str'}, - 'type': {'key': 'type', 'type': 'str'}, - 'user_assigned_identities': {'key': 'userAssignedIdentities', 'type': '{Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties}'}, + 'additional_properties': {'key': '', 'type': '{object}'}, + 'creation_time': {'key': 'creationTime', 'type': 'iso-8601'}, + 'instance_size': {'key': 'instanceSize', 'type': 'str'}, + 'instance_count': {'key': 'instanceCount', 'type': 'int'}, + 'service_type': {'key': 'serviceType', 'type': 'str'}, + 'status': {'key': 'status', 'type': 'str'}, + 'locations': {'key': 'locations', 'type': '[MaterializedViewsBuilderRegionalServiceResource]'}, } def __init__( self, *, - type: Optional[Union[str, "ResourceIdentityType"]] = None, - user_assigned_identities: Optional[Dict[str, "Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties"]] = None, + additional_properties: Optional[Dict[str, Any]] = None, + instance_size: Optional[Union[str, "ServiceSize"]] = None, + instance_count: Optional[int] = None, **kwargs ): - super(ManagedServiceIdentity, self).__init__(**kwargs) - self.principal_id = None - self.tenant_id = None - self.type = type - self.user_assigned_identities = user_assigned_identities + super(MaterializedViewsBuilderServiceResourceProperties, self).__init__(additional_properties=additional_properties, instance_size=instance_size, instance_count=instance_count, **kwargs) + self.service_type = 'MaterializedViewsBuilder' # type: str + self.locations = None class Metric(msrest.serialization.Model): @@ -5801,6 +6597,278 @@ def __init__( self.unique = unique +class MongoRoleDefinitionCreateUpdateParameters(msrest.serialization.Model): + """Parameters to create and update an Azure Cosmos DB Mongo Role Definition. + + :param role_name: A user-friendly name for the Role Definition. Must be unique for the database + account. + :type role_name: str + :param type: Indicates whether the Role Definition was built-in or user created. Possible + values include: "BuiltInRole", "CustomRole". + :type type: str or ~azure.mgmt.cosmosdb.models.MongoRoleDefinitionType + :param database_name: The database name for which access is being granted for this Role + Definition. + :type database_name: str + :param privileges: A set of privileges contained by the Role Definition. This will allow + application of this Role Definition on the entire database account or any underlying Database / + Collection. Scopes higher than Database are not enforceable as privilege. + :type privileges: list[~azure.mgmt.cosmosdb.models.Privilege] + :param roles: The set of roles inherited by this Role Definition. + :type roles: list[~azure.mgmt.cosmosdb.models.Role] + """ + + _attribute_map = { + 'role_name': {'key': 'properties.roleName', 'type': 'str'}, + 'type': {'key': 'properties.type', 'type': 'str'}, + 'database_name': {'key': 'properties.databaseName', 'type': 'str'}, + 'privileges': {'key': 'properties.privileges', 'type': '[Privilege]'}, + 'roles': {'key': 'properties.roles', 'type': '[Role]'}, + } + + def __init__( + self, + *, + role_name: Optional[str] = None, + type: Optional[Union[str, "MongoRoleDefinitionType"]] = None, + database_name: Optional[str] = None, + privileges: Optional[List["Privilege"]] = None, + roles: Optional[List["Role"]] = None, + **kwargs + ): + super(MongoRoleDefinitionCreateUpdateParameters, self).__init__(**kwargs) + self.role_name = role_name + self.type = type + self.database_name = database_name + self.privileges = privileges + self.roles = roles + + +class MongoRoleDefinitionGetResults(ARMProxyResource): + """An Azure Cosmos DB Mongo Role Definition. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: The unique resource identifier of the database account. + :vartype id: str + :ivar name: The name of the database account. + :vartype name: str + :ivar type: The type of Azure resource. + :vartype type: str + :param role_name: A user-friendly name for the Role Definition. Must be unique for the database + account. + :type role_name: str + :param type_properties_type: Indicates whether the Role Definition was built-in or user + created. Possible values include: "BuiltInRole", "CustomRole". + :type type_properties_type: str or ~azure.mgmt.cosmosdb.models.MongoRoleDefinitionType + :param database_name: The database name for which access is being granted for this Role + Definition. + :type database_name: str + :param privileges: A set of privileges contained by the Role Definition. This will allow + application of this Role Definition on the entire database account or any underlying Database / + Collection. Scopes higher than Database are not enforceable as privilege. + :type privileges: list[~azure.mgmt.cosmosdb.models.Privilege] + :param roles: The set of roles inherited by this Role Definition. + :type roles: list[~azure.mgmt.cosmosdb.models.Role] + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'role_name': {'key': 'properties.roleName', 'type': 'str'}, + 'type_properties_type': {'key': 'properties.type', 'type': 'str'}, + 'database_name': {'key': 'properties.databaseName', 'type': 'str'}, + 'privileges': {'key': 'properties.privileges', 'type': '[Privilege]'}, + 'roles': {'key': 'properties.roles', 'type': '[Role]'}, + } + + def __init__( + self, + *, + role_name: Optional[str] = None, + type_properties_type: Optional[Union[str, "MongoRoleDefinitionType"]] = None, + database_name: Optional[str] = None, + privileges: Optional[List["Privilege"]] = None, + roles: Optional[List["Role"]] = None, + **kwargs + ): + super(MongoRoleDefinitionGetResults, self).__init__(**kwargs) + self.role_name = role_name + self.type_properties_type = type_properties_type + self.database_name = database_name + self.privileges = privileges + self.roles = roles + + +class MongoRoleDefinitionListResult(msrest.serialization.Model): + """The relevant Mongo Role Definitions. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: List of Mongo Role Definitions and their properties. + :vartype value: list[~azure.mgmt.cosmosdb.models.MongoRoleDefinitionGetResults] + """ + + _validation = { + 'value': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[MongoRoleDefinitionGetResults]'}, + } + + def __init__( + self, + **kwargs + ): + super(MongoRoleDefinitionListResult, self).__init__(**kwargs) + self.value = None + + +class MongoUserDefinitionCreateUpdateParameters(msrest.serialization.Model): + """Parameters to create and update an Azure Cosmos DB Mongo User Definition. + + :param user_name: The user name for User Definition. + :type user_name: str + :param password: The password for User Definition. Response does not contain user password. + :type password: str + :param database_name: The database name for which access is being granted for this User + Definition. + :type database_name: str + :param custom_data: A custom definition for the USer Definition. + :type custom_data: str + :param roles: The set of roles inherited by the User Definition. + :type roles: list[~azure.mgmt.cosmosdb.models.Role] + :param mechanisms: The Mongo Auth mechanism. For now, we only support auth mechanism + SCRAM-SHA-256. + :type mechanisms: str + """ + + _attribute_map = { + 'user_name': {'key': 'properties.userName', 'type': 'str'}, + 'password': {'key': 'properties.password', 'type': 'str'}, + 'database_name': {'key': 'properties.databaseName', 'type': 'str'}, + 'custom_data': {'key': 'properties.customData', 'type': 'str'}, + 'roles': {'key': 'properties.roles', 'type': '[Role]'}, + 'mechanisms': {'key': 'properties.mechanisms', 'type': 'str'}, + } + + def __init__( + self, + *, + user_name: Optional[str] = None, + password: Optional[str] = None, + database_name: Optional[str] = None, + custom_data: Optional[str] = None, + roles: Optional[List["Role"]] = None, + mechanisms: Optional[str] = None, + **kwargs + ): + super(MongoUserDefinitionCreateUpdateParameters, self).__init__(**kwargs) + self.user_name = user_name + self.password = password + self.database_name = database_name + self.custom_data = custom_data + self.roles = roles + self.mechanisms = mechanisms + + +class MongoUserDefinitionGetResults(ARMProxyResource): + """An Azure Cosmos DB User Definition. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: The unique resource identifier of the database account. + :vartype id: str + :ivar name: The name of the database account. + :vartype name: str + :ivar type: The type of Azure resource. + :vartype type: str + :param user_name: The user name for User Definition. + :type user_name: str + :param password: The password for User Definition. Response does not contain user password. + :type password: str + :param database_name: The database name for which access is being granted for this User + Definition. + :type database_name: str + :param custom_data: A custom definition for the USer Definition. + :type custom_data: str + :param roles: The set of roles inherited by the User Definition. + :type roles: list[~azure.mgmt.cosmosdb.models.Role] + :param mechanisms: The Mongo Auth mechanism. For now, we only support auth mechanism + SCRAM-SHA-256. + :type mechanisms: str + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'user_name': {'key': 'properties.userName', 'type': 'str'}, + 'password': {'key': 'properties.password', 'type': 'str'}, + 'database_name': {'key': 'properties.databaseName', 'type': 'str'}, + 'custom_data': {'key': 'properties.customData', 'type': 'str'}, + 'roles': {'key': 'properties.roles', 'type': '[Role]'}, + 'mechanisms': {'key': 'properties.mechanisms', 'type': 'str'}, + } + + def __init__( + self, + *, + user_name: Optional[str] = None, + password: Optional[str] = None, + database_name: Optional[str] = None, + custom_data: Optional[str] = None, + roles: Optional[List["Role"]] = None, + mechanisms: Optional[str] = None, + **kwargs + ): + super(MongoUserDefinitionGetResults, self).__init__(**kwargs) + self.user_name = user_name + self.password = password + self.database_name = database_name + self.custom_data = custom_data + self.roles = roles + self.mechanisms = mechanisms + + +class MongoUserDefinitionListResult(msrest.serialization.Model): + """The relevant User Definition. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: List of User Definition and their properties. + :vartype value: list[~azure.mgmt.cosmosdb.models.MongoUserDefinitionGetResults] + """ + + _validation = { + 'value': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[MongoUserDefinitionGetResults]'}, + } + + def __init__( + self, + **kwargs + ): + super(MongoUserDefinitionListResult, self).__init__(**kwargs) + self.value = None + + class NotebookWorkspace(ARMProxyResource): """A notebook workspace resource. @@ -6752,64 +7820,83 @@ def __init__( self.actions_required = None -class RegionForOnlineOffline(msrest.serialization.Model): - """Cosmos DB region to online or offline. - - All required parameters must be populated in order to send to Azure. +class Privilege(msrest.serialization.Model): + """The set of data plane operations permitted through this Role Definition. - :param region: Required. Cosmos DB region, with spaces between words and each word capitalized. - :type region: str + :param resource: An Azure Cosmos DB Mongo DB Resource. + :type resource: ~azure.mgmt.cosmosdb.models.PrivilegeResource + :param actions: An array of actions that are allowed. + :type actions: list[str] """ - _validation = { - 'region': {'required': True}, + _attribute_map = { + 'resource': {'key': 'resource', 'type': 'PrivilegeResource'}, + 'actions': {'key': 'actions', 'type': '[str]'}, } + def __init__( + self, + *, + resource: Optional["PrivilegeResource"] = None, + actions: Optional[List[str]] = None, + **kwargs + ): + super(Privilege, self).__init__(**kwargs) + self.resource = resource + self.actions = actions + + +class PrivilegeResource(msrest.serialization.Model): + """An Azure Cosmos DB Mongo DB Resource. + + :param db: The database name the role is applied. + :type db: str + :param collection: The collection name the role is applied. + :type collection: str + """ + _attribute_map = { - 'region': {'key': 'region', 'type': 'str'}, + 'db': {'key': 'db', 'type': 'str'}, + 'collection': {'key': 'collection', 'type': 'str'}, } def __init__( self, *, - region: str, + db: Optional[str] = None, + collection: Optional[str] = None, **kwargs ): - super(RegionForOnlineOffline, self).__init__(**kwargs) - self.region = region + super(PrivilegeResource, self).__init__(**kwargs) + self.db = db + self.collection = collection -class RepairPostBody(msrest.serialization.Model): - """Specification of the keyspaces and tables to run repair on. +class RegionForOnlineOffline(msrest.serialization.Model): + """Cosmos DB region to online or offline. All required parameters must be populated in order to send to Azure. - :param keyspace: Required. The name of the keyspace that repair should be run on. - :type keyspace: str - :param tables: List of tables in the keyspace to repair. If omitted, repair all tables in the - keyspace. - :type tables: list[str] + :param region: Required. Cosmos DB region, with spaces between words and each word capitalized. + :type region: str """ _validation = { - 'keyspace': {'required': True}, + 'region': {'required': True}, } _attribute_map = { - 'keyspace': {'key': 'keyspace', 'type': 'str'}, - 'tables': {'key': 'tables', 'type': '[str]'}, + 'region': {'key': 'region', 'type': 'str'}, } def __init__( self, *, - keyspace: str, - tables: Optional[List[str]] = None, + region: str, **kwargs ): - super(RepairPostBody, self).__init__(**kwargs) - self.keyspace = keyspace - self.tables = tables + super(RegionForOnlineOffline, self).__init__(**kwargs) + self.region = region class RestorableDatabaseAccountGetResult(msrest.serialization.Model): @@ -7736,6 +8823,32 @@ def __init__( self.databases_to_restore = databases_to_restore +class Role(msrest.serialization.Model): + """The set of roles permitted through this Role Definition. + + :param db: The database name the role is applied. + :type db: str + :param role: The role name. + :type role: str + """ + + _attribute_map = { + 'db': {'key': 'db', 'type': 'str'}, + 'role': {'key': 'role', 'type': 'str'}, + } + + def __init__( + self, + *, + db: Optional[str] = None, + role: Optional[str] = None, + **kwargs + ): + super(Role, self).__init__(**kwargs) + self.db = db + self.role = role + + class SeedNode(msrest.serialization.Model): """SeedNode. @@ -7796,7 +8909,7 @@ def __init__( class ServiceResourceCreateUpdateParameters(msrest.serialization.Model): - """ServiceResourceCreateUpdateParameters. + """Parameters for Create or Update Request for ServiceResource. :param instance_size: Instance type for the service. Possible values include: "Cosmos.D4s", "Cosmos.D8s", "Cosmos.D16s". @@ -7804,7 +8917,7 @@ class ServiceResourceCreateUpdateParameters(msrest.serialization.Model): :param instance_count: Instance count for the service. :type instance_count: int :param service_type: ServiceType for the service. Possible values include: - "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute". + "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute", "MaterializedViewsBuilder". :type service_type: str or ~azure.mgmt.cosmosdb.models.ServiceType """ @@ -8445,8 +9558,9 @@ class SqlDedicatedGatewayServiceResourceProperties(ServiceResourceProperties): :type instance_size: str or ~azure.mgmt.cosmosdb.models.ServiceSize :param instance_count: Instance count for the service. :type instance_count: int - :param service_type: Required. ServiceType for the service. Possible values include: - "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute". + :param service_type: Required. ServiceType for the service.Constant filled by server. Possible + values include: "SqlDedicatedGateway", "DataTransfer", "GraphAPICompute", + "MaterializedViewsBuilder". :type service_type: str or ~azure.mgmt.cosmosdb.models.ServiceType :ivar status: Describes the status of a service. Possible values include: "Creating", "Running", "Updating", "Deleting", "Error", "Stopped". @@ -8480,14 +9594,14 @@ class SqlDedicatedGatewayServiceResourceProperties(ServiceResourceProperties): def __init__( self, *, - service_type: Union[str, "ServiceType"], additional_properties: Optional[Dict[str, Any]] = None, instance_size: Optional[Union[str, "ServiceSize"]] = None, instance_count: Optional[int] = None, sql_dedicated_gateway_endpoint: Optional[str] = None, **kwargs ): - super(SqlDedicatedGatewayServiceResourceProperties, self).__init__(additional_properties=additional_properties, instance_size=instance_size, instance_count=instance_count, service_type=service_type, **kwargs) + super(SqlDedicatedGatewayServiceResourceProperties, self).__init__(additional_properties=additional_properties, instance_size=instance_size, instance_count=instance_count, **kwargs) + self.service_type = 'SqlDedicatedGateway' # type: str self.sql_dedicated_gateway_endpoint = sql_dedicated_gateway_endpoint self.locations = None diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/__init__.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/__init__.py index a7c7808a801..807107e6f55 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/__init__.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/__init__.py @@ -25,7 +25,9 @@ from ._table_resources_operations import TableResourcesOperations from ._cassandra_resources_operations import CassandraResourcesOperations from ._gremlin_resources_operations import GremlinResourcesOperations -from ._cosmos_db_management_client_operations import CosmosDBManagementClientOperationsMixin +from ._locations_operations import LocationsOperations +from ._cassandra_clusters_operations import CassandraClustersOperations +from ._cassandra_data_centers_operations import CassandraDataCentersOperations from ._notebook_workspaces_operations import NotebookWorkspacesOperations from ._private_endpoint_connections_operations import PrivateEndpointConnectionsOperations from ._private_link_resources_operations import PrivateLinkResourcesOperations @@ -36,9 +38,8 @@ from ._restorable_mongodb_databases_operations import RestorableMongodbDatabasesOperations from ._restorable_mongodb_collections_operations import RestorableMongodbCollectionsOperations from ._restorable_mongodb_resources_operations import RestorableMongodbResourcesOperations -from ._cassandra_clusters_operations import CassandraClustersOperations -from ._cassandra_data_centers_operations import CassandraDataCentersOperations from ._service_operations import ServiceOperations +from ._data_transfer_jobs_operations import DataTransferJobsOperations __all__ = [ 'DatabaseAccountsOperations', @@ -60,7 +61,9 @@ 'TableResourcesOperations', 'CassandraResourcesOperations', 'GremlinResourcesOperations', - 'CosmosDBManagementClientOperationsMixin', + 'LocationsOperations', + 'CassandraClustersOperations', + 'CassandraDataCentersOperations', 'NotebookWorkspacesOperations', 'PrivateEndpointConnectionsOperations', 'PrivateLinkResourcesOperations', @@ -71,7 +74,6 @@ 'RestorableMongodbDatabasesOperations', 'RestorableMongodbCollectionsOperations', 'RestorableMongodbResourcesOperations', - 'CassandraClustersOperations', - 'CassandraDataCentersOperations', 'ServiceOperations', + 'DataTransferJobsOperations', ] diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_clusters_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_clusters_operations.py index a0e0f51b58d..2f0f74461a2 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_clusters_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_clusters_operations.py @@ -64,7 +64,7 @@ def list_by_subscription( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -134,7 +134,7 @@ def list_by_resource_group( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -208,7 +208,7 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -256,7 +256,7 @@ def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -367,7 +367,7 @@ def _create_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -498,7 +498,7 @@ def _update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -615,25 +615,25 @@ def get_long_running_output(pipeline_response): return LROPoller(self._client, raw_result, get_long_running_output, polling_method) begin_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}'} # type: ignore - def _request_repair_initial( + def _invoke_command_initial( self, resource_group_name, # type: str cluster_name, # type: str - body, # type: "_models.RepairPostBody" + body, # type: "_models.CommandPostBody" **kwargs # type: Any ): - # type: (...) -> None - cls = kwargs.pop('cls', None) # type: ClsType[None] + # type: (...) -> "_models.CommandOutput" + cls = kwargs.pop('cls', None) # type: ClsType["_models.CommandOutput"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" # Construct URL - url = self._request_repair_initial.metadata['url'] # type: ignore + url = self._invoke_command_initial.metadata['url'] # type: ignore path_format_arguments = { 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), @@ -651,56 +651,59 @@ def _request_repair_initial( header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') body_content_kwargs = {} # type: Dict[str, Any] - body_content = self._serialize.body(body, 'RepairPostBody') + body_content = self._serialize.body(body, 'CommandPostBody') body_content_kwargs['content'] = body_content request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) response = pipeline_response.http_response - if response.status_code not in [200]: + if response.status_code not in [202]: map_error(status_code=response.status_code, response=response, error_map=error_map) raise HttpResponseError(response=response, error_format=ARMErrorFormat) + deserialized = self._deserialize('CommandOutput', pipeline_response) + if cls: - return cls(pipeline_response, None, {}) + return cls(pipeline_response, deserialized, {}) - _request_repair_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/repair'} # type: ignore + return deserialized + _invoke_command_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/invokeCommand'} # type: ignore - def begin_request_repair( + def begin_invoke_command( self, resource_group_name, # type: str cluster_name, # type: str - body, # type: "_models.RepairPostBody" + body, # type: "_models.CommandPostBody" **kwargs # type: Any ): - # type: (...) -> LROPoller[None] - """Request that repair begin on this cluster as soon as possible. + # type: (...) -> LROPoller["_models.CommandOutput"] + """Invoke a command like nodetool for cassandra maintenance. :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param cluster_name: Managed Cassandra cluster name. :type cluster_name: str - :param body: Specification of what keyspaces and tables to run repair on. - :type body: ~azure.mgmt.cosmosdb.models.RepairPostBody + :param body: Specification which command to run where. + :type body: ~azure.mgmt.cosmosdb.models.CommandPostBody :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. :paramtype polling: bool or ~azure.core.polling.PollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. - :return: An instance of LROPoller that returns either None or the result of cls(response) - :rtype: ~azure.core.polling.LROPoller[None] + :return: An instance of LROPoller that returns either CommandOutput or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.cosmosdb.models.CommandOutput] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] - cls = kwargs.pop('cls', None) # type: ClsType[None] + cls = kwargs.pop('cls', None) # type: ClsType["_models.CommandOutput"] lro_delay = kwargs.pop( 'polling_interval', self._config.polling_interval ) cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] if cont_token is None: - raw_result = self._request_repair_initial( + raw_result = self._invoke_command_initial( resource_group_name=resource_group_name, cluster_name=cluster_name, body=body, @@ -712,8 +715,11 @@ def begin_request_repair( kwargs.pop('content_type', None) def get_long_running_output(pipeline_response): + deserialized = self._deserialize('CommandOutput', pipeline_response) + if cls: - return cls(pipeline_response, None, {}) + return cls(pipeline_response, deserialized, {}) + return deserialized path_format_arguments = { 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -733,29 +739,119 @@ def get_long_running_output(pipeline_response): ) else: return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_request_repair.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/repair'} # type: ignore + begin_invoke_command.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/invokeCommand'} # type: ignore - def _fetch_node_status_initial( + def list_backups( self, resource_group_name, # type: str cluster_name, # type: str **kwargs # type: Any ): - # type: (...) -> Optional["_models.ClusterNodeStatus"] - cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ClusterNodeStatus"]] + # type: (...) -> Iterable["_models.ListBackups"] + """List the backups of this cluster that are available to restore. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param cluster_name: Managed Cassandra cluster name. + :type cluster_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ListBackups or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.cosmosdb.models.ListBackups] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ListBackups"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_backups.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str', max_length=100, min_length=1, pattern=r'^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize('ListBackups', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged( + get_next, extract_data + ) + list_backups.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/backups'} # type: ignore + + def get_backup( + self, + resource_group_name, # type: str + cluster_name, # type: str + backup_id, # type: str + **kwargs # type: Any + ): + # type: (...) -> "_models.BackupResource" + """Get the properties of an individual backup of this cluster that is available to restore. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param cluster_name: Managed Cassandra cluster name. + :type cluster_name: str + :param backup_id: Id of a restorable backup of a Cassandra cluster. + :type backup_id: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: BackupResource, or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.BackupResource + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupResource"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL - url = self._fetch_node_status_initial.metadata['url'] # type: ignore + url = self.get_backup.metadata['url'] # type: ignore path_format_arguments = { 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str', max_length=100, min_length=1, pattern=r'^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$'), + 'backupId': self._serialize.url("backup_id", backup_id, 'str', max_length=15, min_length=1, pattern=r'^[0-9]+$'), } url = self._client.format_url(url, **path_format_arguments) @@ -767,32 +863,77 @@ def _fetch_node_status_initial( header_parameters = {} # type: Dict[str, Any] header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - request = self._client.post(url, query_parameters, header_parameters) + request = self._client.get(url, query_parameters, header_parameters) pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) response = pipeline_response.http_response - if response.status_code not in [200, 202]: + if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) raise HttpResponseError(response=response, error_format=ARMErrorFormat) - deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('ClusterNodeStatus', pipeline_response) + deserialized = self._deserialize('BackupResource', pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - _fetch_node_status_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/fetchNodeStatus'} # type: ignore + get_backup.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/backups/{backupId}'} # type: ignore - def begin_fetch_node_status( + def _deallocate_initial( self, resource_group_name, # type: str cluster_name, # type: str **kwargs # type: Any ): - # type: (...) -> LROPoller["_models.ClusterNodeStatus"] - """Request the status of all nodes in the cluster (as returned by 'nodetool status'). + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + # Construct URL + url = self._deallocate_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str', max_length=100, min_length=1, pattern=r'^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.post(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _deallocate_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/deallocate'} # type: ignore + + def begin_deallocate( + self, + resource_group_name, # type: str + cluster_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """Deallocate the Managed Cassandra Cluster and Associated Data Centers. Deallocation will + deallocate the host virtual machine of this cluster, and reserved the data disk. This won't do + anything on an already deallocated cluster. Use Start to restart the cluster. :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str @@ -804,19 +945,19 @@ def begin_fetch_node_status( Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. :paramtype polling: bool or ~azure.core.polling.PollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. - :return: An instance of LROPoller that returns either ClusterNodeStatus or the result of cls(response) - :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.cosmosdb.models.ClusterNodeStatus] + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] - cls = kwargs.pop('cls', None) # type: ClsType["_models.ClusterNodeStatus"] + cls = kwargs.pop('cls', None) # type: ClsType[None] lro_delay = kwargs.pop( 'polling_interval', self._config.polling_interval ) cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] if cont_token is None: - raw_result = self._fetch_node_status_initial( + raw_result = self._deallocate_initial( resource_group_name=resource_group_name, cluster_name=cluster_name, cls=lambda x,y,z: x, @@ -827,11 +968,8 @@ def begin_fetch_node_status( kwargs.pop('content_type', None) def get_long_running_output(pipeline_response): - deserialized = self._deserialize('ClusterNodeStatus', pipeline_response) - if cls: - return cls(pipeline_response, deserialized, {}) - return deserialized + return cls(pipeline_response, None, {}) path_format_arguments = { 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), @@ -851,119 +989,152 @@ def get_long_running_output(pipeline_response): ) else: return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - begin_fetch_node_status.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/fetchNodeStatus'} # type: ignore + begin_deallocate.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/deallocate'} # type: ignore - def list_backups( + def _start_initial( self, resource_group_name, # type: str cluster_name, # type: str **kwargs # type: Any ): - # type: (...) -> Iterable["_models.ListBackups"] - """List the backups of this cluster that are available to restore. - - :param resource_group_name: The name of the resource group. The name is case insensitive. - :type resource_group_name: str - :param cluster_name: Managed Cassandra cluster name. - :type cluster_name: str - :keyword callable cls: A custom type or function that will be passed the direct response - :return: An iterator like instance of either ListBackups or the result of cls(response) - :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.cosmosdb.models.ListBackups] - :raises: ~azure.core.exceptions.HttpResponseError - """ - cls = kwargs.pop('cls', None) # type: ClsType["_models.ListBackups"] + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" - def prepare_request(next_link=None): - # Construct headers - header_parameters = {} # type: Dict[str, Any] - header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + # Construct URL + url = self._start_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str', max_length=100, min_length=1, pattern=r'^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$'), + } + url = self._client.format_url(url, **path_format_arguments) - if not next_link: - # Construct URL - url = self.list_backups.metadata['url'] # type: ignore - path_format_arguments = { - 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), - 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str', max_length=100, min_length=1, pattern=r'^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$'), - } - url = self._client.format_url(url, **path_format_arguments) - # Construct parameters - query_parameters = {} # type: Dict[str, Any] - query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') - request = self._client.get(url, query_parameters, header_parameters) - else: - url = next_link - query_parameters = {} # type: Dict[str, Any] - request = self._client.get(url, query_parameters, header_parameters) - return request + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - def extract_data(pipeline_response): - deserialized = self._deserialize('ListBackups', pipeline_response) - list_of_elem = deserialized.value - if cls: - list_of_elem = cls(list_of_elem) - return None, iter(list_of_elem) + request = self._client.post(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response - def get_next(next_link=None): - request = prepare_request(next_link) + if response.status_code not in [202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) - response = pipeline_response.http_response + if cls: + return cls(pipeline_response, None, {}) - if response.status_code not in [200]: - map_error(status_code=response.status_code, response=response, error_map=error_map) - raise HttpResponseError(response=response, error_format=ARMErrorFormat) + _start_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/start'} # type: ignore - return pipeline_response + def begin_start( + self, + resource_group_name, # type: str + cluster_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """Start the Managed Cassandra Cluster and Associated Data Centers. Start will start the host + virtual machine of this cluster with reserved data disk. This won't do anything on an already + running cluster. Use Deallocate to deallocate the cluster. - return ItemPaged( - get_next, extract_data + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param cluster_name: Managed Cassandra cluster name. + :type cluster_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. + Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval ) - list_backups.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/backups'} # type: ignore + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._start_initial( + resource_group_name=resource_group_name, + cluster_name=cluster_name, + cls=lambda x,y,z: x, + **kwargs + ) - def get_backup( + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str', max_length=100, min_length=1, pattern=r'^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_start.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/start'} # type: ignore + + def status( self, resource_group_name, # type: str cluster_name, # type: str - backup_id, # type: str **kwargs # type: Any ): - # type: (...) -> "_models.BackupResource" - """Get the properties of an individual backup of this cluster that is available to restore. + # type: (...) -> "_models.CassandraClusterPublicStatus" + """Gets the CPU, memory, and disk usage statistics for each Cassandra node in a cluster. :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param cluster_name: Managed Cassandra cluster name. :type cluster_name: str - :param backup_id: Id of a restorable backup of a Cassandra cluster. - :type backup_id: str :keyword callable cls: A custom type or function that will be passed the direct response - :return: BackupResource, or the result of cls(response) - :rtype: ~azure.mgmt.cosmosdb.models.BackupResource + :return: CassandraClusterPublicStatus, or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.CassandraClusterPublicStatus :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupResource"] + cls = kwargs.pop('cls', None) # type: ClsType["_models.CassandraClusterPublicStatus"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL - url = self.get_backup.metadata['url'] # type: ignore + url = self.status.metadata['url'] # type: ignore path_format_arguments = { 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), 'clusterName': self._serialize.url("cluster_name", cluster_name, 'str', max_length=100, min_length=1, pattern=r'^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$'), - 'backupId': self._serialize.url("backup_id", backup_id, 'str', max_length=15, min_length=1, pattern=r'^[0-9]+$'), } url = self._client.format_url(url, **path_format_arguments) @@ -983,10 +1154,10 @@ def get_backup( map_error(status_code=response.status_code, response=response, error_map=error_map) raise HttpResponseError(response=response, error_format=ARMErrorFormat) - deserialized = self._deserialize('BackupResource', pipeline_response) + deserialized = self._deserialize('CassandraClusterPublicStatus', pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized - get_backup.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/backups/{backupId}'} # type: ignore + status.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/cassandraClusters/{clusterName}/status'} # type: ignore diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_data_centers_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_data_centers_operations.py index 2de44375e68..26dcbde8764 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_data_centers_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_data_centers_operations.py @@ -70,7 +70,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -148,7 +148,7 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -198,7 +198,7 @@ def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -316,7 +316,7 @@ def _create_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -454,7 +454,7 @@ def _update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_resources_operations.py index 55ec864e163..ab37e5bfb57 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_cassandra_resources_operations.py @@ -70,7 +70,7 @@ def list_cassandra_keyspaces( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -149,7 +149,7 @@ def get_cassandra_keyspace( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -200,7 +200,7 @@ def _create_update_cassandra_keyspace_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -335,7 +335,7 @@ def _delete_cassandra_keyspace_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_cassandra_keyspace_initial.metadata['url'] # type: ignore @@ -464,7 +464,7 @@ def get_cassandra_keyspace_throughput( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -515,7 +515,7 @@ def _update_cassandra_keyspace_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -650,7 +650,7 @@ def _migrate_cassandra_keyspace_to_autoscale_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -775,7 +775,7 @@ def _migrate_cassandra_keyspace_to_manual_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -913,7 +913,7 @@ def list_cassandra_tables( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -995,7 +995,7 @@ def get_cassandra_table( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1048,7 +1048,7 @@ def _create_update_cassandra_table_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1190,7 +1190,7 @@ def _delete_cassandra_table_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_cassandra_table_initial.metadata['url'] # type: ignore @@ -1328,7 +1328,7 @@ def get_cassandra_table_throughput( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1381,7 +1381,7 @@ def _update_cassandra_table_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1523,7 +1523,7 @@ def _migrate_cassandra_table_to_autoscale_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1655,7 +1655,7 @@ def _migrate_cassandra_table_to_manual_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1799,7 +1799,7 @@ def list_cassandra_views( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -1881,7 +1881,7 @@ def get_cassandra_view( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1934,7 +1934,7 @@ def _create_update_cassandra_view_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -2076,7 +2076,7 @@ def _delete_cassandra_view_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_cassandra_view_initial.metadata['url'] # type: ignore @@ -2214,7 +2214,7 @@ def get_cassandra_view_throughput( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -2267,7 +2267,7 @@ def _update_cassandra_view_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -2409,7 +2409,7 @@ def _migrate_cassandra_view_to_autoscale_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -2541,7 +2541,7 @@ def _migrate_cassandra_view_to_manual_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_operations.py index 5ae1c322421..c5bf061383a 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_operations.py @@ -80,7 +80,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -168,7 +168,7 @@ def list_usages( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -253,7 +253,7 @@ def list_metric_definitions( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_partition_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_partition_operations.py index c63a2588d1d..ebf79e4722a 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_partition_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_partition_operations.py @@ -80,7 +80,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -168,7 +168,7 @@ def list_usages( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_partition_region_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_partition_region_operations.py index 33d2f61a1c3..fefb52ad151 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_partition_region_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_partition_region_operations.py @@ -83,7 +83,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_region_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_region_operations.py index a9adf327fec..6d813177714 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_region_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_collection_region_operations.py @@ -83,7 +83,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_data_transfer_jobs_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_data_transfer_jobs_operations.py new file mode 100644 index 00000000000..0a97a25aecc --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_data_transfer_jobs_operations.py @@ -0,0 +1,255 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import TYPE_CHECKING +import warnings + +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.mgmt.core.exceptions import ARMErrorFormat + +from .. import models as _models + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + +class DataTransferJobsOperations(object): + """DataTransferJobsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.cosmosdb.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def create( + self, + resource_group_name, # type: str + account_name, # type: str + job_name, # type: str + job_create_parameters, # type: "_models.CreateJobRequest" + **kwargs # type: Any + ): + # type: (...) -> "_models.DataTransferJobGetResults" + """Creates a Data Transfer Job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :param job_name: Name of the Data Transfer Job. + :type job_name: str + :param job_create_parameters: + :type job_create_parameters: ~azure.mgmt.cosmosdb.models.CreateJobRequest + :keyword callable cls: A custom type or function that will be passed the direct response + :return: DataTransferJobGetResults, or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.DataTransferJobGetResults + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.DataTransferJobGetResults"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self.create.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(job_create_parameters, 'CreateJobRequest') + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('DataTransferJobGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + create.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/dataTransferJobs/{jobName}'} # type: ignore + + def get( + self, + resource_group_name, # type: str + account_name, # type: str + job_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> "_models.DataTransferJobGetResults" + """Get a Data Transfer Job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :param job_name: Name of the Data Transfer Job. + :type job_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: DataTransferJobGetResults, or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.DataTransferJobGetResults + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.DataTransferJobGetResults"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('DataTransferJobGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/dataTransferJobs/{jobName}'} # type: ignore + + def list_by_database_account( + self, + resource_group_name, # type: str + account_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> Iterable["_models.DataTransferJobFeedResults"] + """Get a list of Data Transfer jobs. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either DataTransferJobFeedResults or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.cosmosdb.models.DataTransferJobFeedResults] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.DataTransferJobFeedResults"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_by_database_account.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize('DataTransferJobFeedResults', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged( + get_next, extract_data + ) + list_by_database_account.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/dataTransferJobs'} # type: ignore diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_account_region_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_account_region_operations.py index 5a70940cff0..ecc1eaf2722 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_account_region_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_account_region_operations.py @@ -76,7 +76,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_accounts_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_accounts_operations.py index 1d5e50ab25e..063a9d1452c 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_accounts_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_accounts_operations.py @@ -70,7 +70,7 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -119,7 +119,7 @@ def _update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -245,7 +245,7 @@ def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -371,7 +371,7 @@ def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_initial.metadata['url'] # type: ignore @@ -480,7 +480,7 @@ def _failover_priority_change_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") # Construct URL @@ -605,7 +605,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -675,7 +675,7 @@ def list_by_resource_group( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -749,7 +749,7 @@ def list_keys( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -808,7 +808,7 @@ def list_connection_strings( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -857,7 +857,7 @@ def _offline_region_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -978,7 +978,7 @@ def _online_region_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1109,7 +1109,7 @@ def get_read_only_keys( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1168,7 +1168,7 @@ def list_read_only_keys( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1217,7 +1217,7 @@ def _regenerate_key_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") # Construct URL @@ -1344,7 +1344,7 @@ def check_name_exists( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self.check_name_exists.metadata['url'] # type: ignore @@ -1402,7 +1402,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -1482,7 +1482,7 @@ def list_usages( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -1559,7 +1559,7 @@ def list_metric_definitions( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_operations.py index 6551e716d1c..c06ba86db8d 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_database_operations.py @@ -77,7 +77,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -161,7 +161,7 @@ def list_usages( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -242,7 +242,7 @@ def list_metric_definitions( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_graph_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_graph_resources_operations.py index f682ecb4c21..20f212e8966 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_graph_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_graph_resources_operations.py @@ -70,7 +70,7 @@ def list_graphs( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -149,7 +149,7 @@ def get_graph( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -200,7 +200,7 @@ def _create_update_graph_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -334,7 +334,7 @@ def _delete_graph_resource_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_graph_resource_initial.metadata['url'] # type: ignore diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_gremlin_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_gremlin_resources_operations.py index b125f94738b..590e67f0063 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_gremlin_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_gremlin_resources_operations.py @@ -70,7 +70,7 @@ def list_gremlin_databases( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -149,7 +149,7 @@ def get_gremlin_database( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -200,7 +200,7 @@ def _create_update_gremlin_database_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -335,7 +335,7 @@ def _delete_gremlin_database_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_gremlin_database_initial.metadata['url'] # type: ignore @@ -464,7 +464,7 @@ def get_gremlin_database_throughput( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -515,7 +515,7 @@ def _update_gremlin_database_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -650,7 +650,7 @@ def _migrate_gremlin_database_to_autoscale_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -775,7 +775,7 @@ def _migrate_gremlin_database_to_manual_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -913,7 +913,7 @@ def list_gremlin_graphs( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -995,7 +995,7 @@ def get_gremlin_graph( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1048,7 +1048,7 @@ def _create_update_gremlin_graph_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1190,7 +1190,7 @@ def _delete_gremlin_graph_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_gremlin_graph_initial.metadata['url'] # type: ignore @@ -1328,7 +1328,7 @@ def get_gremlin_graph_throughput( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1381,7 +1381,7 @@ def _update_gremlin_graph_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1523,7 +1523,7 @@ def _migrate_gremlin_graph_to_autoscale_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1655,7 +1655,7 @@ def _migrate_gremlin_graph_to_manual_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_locations_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_locations_operations.py new file mode 100644 index 00000000000..28d0077b35b --- /dev/null +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_locations_operations.py @@ -0,0 +1,168 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import TYPE_CHECKING +import warnings + +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.mgmt.core.exceptions import ARMErrorFormat + +from .. import models as _models + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + +class LocationsOperations(object): + """LocationsOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.cosmosdb.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def list( + self, + **kwargs # type: Any + ): + # type: (...) -> Iterable["_models.LocationListResult"] + """List Cosmos DB locations and their properties. + + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either LocationListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.cosmosdb.models.LocationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.LocationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize('LocationListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/locations'} # type: ignore + + def get( + self, + location, # type: str + **kwargs # type: Any + ): + # type: (...) -> "_models.LocationGetResult" + """Get the properties of an existing Cosmos DB location. + + :param location: Cosmos DB region, with spaces between words and each word capitalized. + :type location: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: LocationGetResult, or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.LocationGetResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.LocationGetResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'location': self._serialize.url("location", location, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('LocationGetResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/locations/{location}'} # type: ignore diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_mongo_db_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_mongo_db_resources_operations.py index a465650c737..565c1fde065 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_mongo_db_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_mongo_db_resources_operations.py @@ -70,7 +70,7 @@ def list_mongo_db_databases( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -149,7 +149,7 @@ def get_mongo_db_database( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -200,7 +200,7 @@ def _create_update_mongo_db_database_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -335,7 +335,7 @@ def _delete_mongo_db_database_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_mongo_db_database_initial.metadata['url'] # type: ignore @@ -464,7 +464,7 @@ def get_mongo_db_database_throughput( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -515,7 +515,7 @@ def _update_mongo_db_database_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -650,7 +650,7 @@ def _migrate_mongo_db_database_to_autoscale_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -775,7 +775,7 @@ def _migrate_mongo_db_database_to_manual_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -913,7 +913,7 @@ def list_mongo_db_collections( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -995,7 +995,7 @@ def get_mongo_db_collection( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1048,7 +1048,7 @@ def _create_update_mongo_db_collection_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1190,7 +1190,7 @@ def _delete_mongo_db_collection_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_mongo_db_collection_initial.metadata['url'] # type: ignore @@ -1328,7 +1328,7 @@ def get_mongo_db_collection_throughput( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1381,7 +1381,7 @@ def _update_mongo_db_collection_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1523,7 +1523,7 @@ def _migrate_mongo_db_collection_to_autoscale_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1655,7 +1655,7 @@ def _migrate_mongo_db_collection_to_manual_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1772,3 +1772,929 @@ def get_long_running_output(pipeline_response): else: return LROPoller(self._client, raw_result, get_long_running_output, polling_method) begin_migrate_mongo_db_collection_to_manual_throughput.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbDatabases/{databaseName}/collections/{collectionName}/throughputSettings/default/migrateToManualThroughput'} # type: ignore + + def _retrieve_continuous_backup_information_initial( + self, + resource_group_name, # type: str + account_name, # type: str + database_name, # type: str + collection_name, # type: str + location, # type: "_models.ContinuousBackupRestoreLocation" + **kwargs # type: Any + ): + # type: (...) -> Optional["_models.BackupInformation"] + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.BackupInformation"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._retrieve_continuous_backup_information_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + 'databaseName': self._serialize.url("database_name", database_name, 'str'), + 'collectionName': self._serialize.url("collection_name", collection_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(location, 'ContinuousBackupRestoreLocation') + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('BackupInformation', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _retrieve_continuous_backup_information_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbDatabases/{databaseName}/collections/{collectionName}/retrieveContinuousBackupInformation'} # type: ignore + + def begin_retrieve_continuous_backup_information( + self, + resource_group_name, # type: str + account_name, # type: str + database_name, # type: str + collection_name, # type: str + location, # type: "_models.ContinuousBackupRestoreLocation" + **kwargs # type: Any + ): + # type: (...) -> LROPoller["_models.BackupInformation"] + """Retrieves continuous backup information for a Mongodb collection. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :param database_name: Cosmos DB database name. + :type database_name: str + :param collection_name: Cosmos DB collection name. + :type collection_name: str + :param location: The name of the continuous backup restore location. + :type location: ~azure.mgmt.cosmosdb.models.ContinuousBackupRestoreLocation + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. + Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either BackupInformation or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.cosmosdb.models.BackupInformation] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.BackupInformation"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._retrieve_continuous_backup_information_initial( + resource_group_name=resource_group_name, + account_name=account_name, + database_name=database_name, + collection_name=collection_name, + location=location, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('BackupInformation', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + 'databaseName': self._serialize.url("database_name", database_name, 'str'), + 'collectionName': self._serialize.url("collection_name", collection_name, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'location'}, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_retrieve_continuous_backup_information.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbDatabases/{databaseName}/collections/{collectionName}/retrieveContinuousBackupInformation'} # type: ignore + + def get_mongo_role_definition( + self, + mongo_role_definition_id, # type: str + resource_group_name, # type: str + account_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> "_models.MongoRoleDefinitionGetResults" + """Retrieves the properties of an existing Azure Cosmos DB Mongo Role Definition with the given + Id. + + :param mongo_role_definition_id: The ID for the Role Definition {dbName.roleName}. + :type mongo_role_definition_id: str + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: MongoRoleDefinitionGetResults, or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.MongoRoleDefinitionGetResults + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.MongoRoleDefinitionGetResults"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + # Construct URL + url = self.get_mongo_role_definition.metadata['url'] # type: ignore + path_format_arguments = { + 'mongoRoleDefinitionId': self._serialize.url("mongo_role_definition_id", mongo_role_definition_id, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('MongoRoleDefinitionGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get_mongo_role_definition.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbRoleDefinitions/{mongoRoleDefinitionId}'} # type: ignore + + def _create_update_mongo_role_definition_initial( + self, + mongo_role_definition_id, # type: str + resource_group_name, # type: str + account_name, # type: str + create_update_mongo_role_definition_parameters, # type: "_models.MongoRoleDefinitionCreateUpdateParameters" + **kwargs # type: Any + ): + # type: (...) -> Optional["_models.MongoRoleDefinitionGetResults"] + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.MongoRoleDefinitionGetResults"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._create_update_mongo_role_definition_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'mongoRoleDefinitionId': self._serialize.url("mongo_role_definition_id", mongo_role_definition_id, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(create_update_mongo_role_definition_parameters, 'MongoRoleDefinitionCreateUpdateParameters') + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('MongoRoleDefinitionGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _create_update_mongo_role_definition_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbRoleDefinitions/{mongoRoleDefinitionId}'} # type: ignore + + def begin_create_update_mongo_role_definition( + self, + mongo_role_definition_id, # type: str + resource_group_name, # type: str + account_name, # type: str + create_update_mongo_role_definition_parameters, # type: "_models.MongoRoleDefinitionCreateUpdateParameters" + **kwargs # type: Any + ): + # type: (...) -> LROPoller["_models.MongoRoleDefinitionGetResults"] + """Creates or updates an Azure Cosmos DB Mongo Role Definition. + + :param mongo_role_definition_id: The ID for the Role Definition {dbName.roleName}. + :type mongo_role_definition_id: str + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :param create_update_mongo_role_definition_parameters: The properties required to create or + update a Role Definition. + :type create_update_mongo_role_definition_parameters: ~azure.mgmt.cosmosdb.models.MongoRoleDefinitionCreateUpdateParameters + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. + Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either MongoRoleDefinitionGetResults or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.cosmosdb.models.MongoRoleDefinitionGetResults] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.MongoRoleDefinitionGetResults"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_update_mongo_role_definition_initial( + mongo_role_definition_id=mongo_role_definition_id, + resource_group_name=resource_group_name, + account_name=account_name, + create_update_mongo_role_definition_parameters=create_update_mongo_role_definition_parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('MongoRoleDefinitionGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'mongoRoleDefinitionId': self._serialize.url("mongo_role_definition_id", mongo_role_definition_id, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_create_update_mongo_role_definition.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbRoleDefinitions/{mongoRoleDefinitionId}'} # type: ignore + + def _delete_mongo_role_definition_initial( + self, + mongo_role_definition_id, # type: str + resource_group_name, # type: str + account_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + # Construct URL + url = self._delete_mongo_role_definition_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'mongoRoleDefinitionId': self._serialize.url("mongo_role_definition_id", mongo_role_definition_id, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.delete(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_mongo_role_definition_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbRoleDefinitions/{mongoRoleDefinitionId}'} # type: ignore + + def begin_delete_mongo_role_definition( + self, + mongo_role_definition_id, # type: str + resource_group_name, # type: str + account_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """Deletes an existing Azure Cosmos DB Mongo Role Definition. + + :param mongo_role_definition_id: The ID for the Role Definition {dbName.roleName}. + :type mongo_role_definition_id: str + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. + Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_mongo_role_definition_initial( + mongo_role_definition_id=mongo_role_definition_id, + resource_group_name=resource_group_name, + account_name=account_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'mongoRoleDefinitionId': self._serialize.url("mongo_role_definition_id", mongo_role_definition_id, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_delete_mongo_role_definition.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbRoleDefinitions/{mongoRoleDefinitionId}'} # type: ignore + + def list_mongo_role_definitions( + self, + resource_group_name, # type: str + account_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> Iterable["_models.MongoRoleDefinitionListResult"] + """Retrieves the list of all Azure Cosmos DB Mongo Role Definitions. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either MongoRoleDefinitionListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.cosmosdb.models.MongoRoleDefinitionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.MongoRoleDefinitionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_mongo_role_definitions.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize('MongoRoleDefinitionListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged( + get_next, extract_data + ) + list_mongo_role_definitions.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbRoleDefinitions'} # type: ignore + + def get_mongo_user_definition( + self, + mongo_user_definition_id, # type: str + resource_group_name, # type: str + account_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> "_models.MongoUserDefinitionGetResults" + """Retrieves the properties of an existing Azure Cosmos DB Mongo User Definition with the given + Id. + + :param mongo_user_definition_id: The ID for the User Definition {dbName.userName}. + :type mongo_user_definition_id: str + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: MongoUserDefinitionGetResults, or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.MongoUserDefinitionGetResults + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.MongoUserDefinitionGetResults"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + # Construct URL + url = self.get_mongo_user_definition.metadata['url'] # type: ignore + path_format_arguments = { + 'mongoUserDefinitionId': self._serialize.url("mongo_user_definition_id", mongo_user_definition_id, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('MongoUserDefinitionGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get_mongo_user_definition.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbUserDefinitions/{mongoUserDefinitionId}'} # type: ignore + + def _create_update_mongo_user_definition_initial( + self, + mongo_user_definition_id, # type: str + resource_group_name, # type: str + account_name, # type: str + create_update_mongo_user_definition_parameters, # type: "_models.MongoUserDefinitionCreateUpdateParameters" + **kwargs # type: Any + ): + # type: (...) -> Optional["_models.MongoUserDefinitionGetResults"] + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.MongoUserDefinitionGetResults"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._create_update_mongo_user_definition_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'mongoUserDefinitionId': self._serialize.url("mongo_user_definition_id", mongo_user_definition_id, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(create_update_mongo_user_definition_parameters, 'MongoUserDefinitionCreateUpdateParameters') + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('MongoUserDefinitionGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _create_update_mongo_user_definition_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbUserDefinitions/{mongoUserDefinitionId}'} # type: ignore + + def begin_create_update_mongo_user_definition( + self, + mongo_user_definition_id, # type: str + resource_group_name, # type: str + account_name, # type: str + create_update_mongo_user_definition_parameters, # type: "_models.MongoUserDefinitionCreateUpdateParameters" + **kwargs # type: Any + ): + # type: (...) -> LROPoller["_models.MongoUserDefinitionGetResults"] + """Creates or updates an Azure Cosmos DB Mongo User Definition. + + :param mongo_user_definition_id: The ID for the User Definition {dbName.userName}. + :type mongo_user_definition_id: str + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :param create_update_mongo_user_definition_parameters: The properties required to create or + update a User Definition. + :type create_update_mongo_user_definition_parameters: ~azure.mgmt.cosmosdb.models.MongoUserDefinitionCreateUpdateParameters + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. + Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either MongoUserDefinitionGetResults or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.cosmosdb.models.MongoUserDefinitionGetResults] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.MongoUserDefinitionGetResults"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_update_mongo_user_definition_initial( + mongo_user_definition_id=mongo_user_definition_id, + resource_group_name=resource_group_name, + account_name=account_name, + create_update_mongo_user_definition_parameters=create_update_mongo_user_definition_parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('MongoUserDefinitionGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'mongoUserDefinitionId': self._serialize.url("mongo_user_definition_id", mongo_user_definition_id, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_create_update_mongo_user_definition.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbUserDefinitions/{mongoUserDefinitionId}'} # type: ignore + + def _delete_mongo_user_definition_initial( + self, + mongo_user_definition_id, # type: str + resource_group_name, # type: str + account_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + # Construct URL + url = self._delete_mongo_user_definition_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'mongoUserDefinitionId': self._serialize.url("mongo_user_definition_id", mongo_user_definition_id, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.delete(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_mongo_user_definition_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbUserDefinitions/{mongoUserDefinitionId}'} # type: ignore + + def begin_delete_mongo_user_definition( + self, + mongo_user_definition_id, # type: str + resource_group_name, # type: str + account_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """Deletes an existing Azure Cosmos DB Mongo User Definition. + + :param mongo_user_definition_id: The ID for the User Definition {dbName.userName}. + :type mongo_user_definition_id: str + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. + Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_mongo_user_definition_initial( + mongo_user_definition_id=mongo_user_definition_id, + resource_group_name=resource_group_name, + account_name=account_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'mongoUserDefinitionId': self._serialize.url("mongo_user_definition_id", mongo_user_definition_id, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_delete_mongo_user_definition.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbUserDefinitions/{mongoUserDefinitionId}'} # type: ignore + + def list_mongo_user_definitions( + self, + resource_group_name, # type: str + account_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> Iterable["_models.MongoUserDefinitionListResult"] + """Retrieves the list of all Azure Cosmos DB Mongo User Definition. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either MongoUserDefinitionListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.cosmosdb.models.MongoUserDefinitionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.MongoUserDefinitionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_mongo_user_definitions.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize('MongoUserDefinitionListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged( + get_next, extract_data + ) + list_mongo_user_definitions.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbUserDefinitions'} # type: ignore diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_notebook_workspaces_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_notebook_workspaces_operations.py index bfb8a73234e..88fe58230de 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_notebook_workspaces_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_notebook_workspaces_operations.py @@ -70,7 +70,7 @@ def list_by_database_account( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -149,7 +149,7 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -201,7 +201,7 @@ def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -335,7 +335,7 @@ def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -466,7 +466,7 @@ def list_connection_info( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -517,7 +517,7 @@ def _regenerate_auth_token_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -635,7 +635,7 @@ def _start_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_operations.py index 78de171309d..6953509d26e 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_operations.py @@ -62,7 +62,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_partition_key_range_id_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_partition_key_range_id_operations.py index 549d6e3e572..cf336061be6 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_partition_key_range_id_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_partition_key_range_id_operations.py @@ -82,7 +82,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_partition_key_range_id_region_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_partition_key_range_id_region_operations.py index 8e68bea8329..69a77ebdee6 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_partition_key_range_id_region_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_partition_key_range_id_region_operations.py @@ -86,7 +86,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_operations.py index 263110f8bf1..9a069518eed 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_operations.py @@ -74,7 +74,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_source_target_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_source_target_operations.py index 8ab15c2a94d..0d2673f9141 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_source_target_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_source_target_operations.py @@ -82,7 +82,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_target_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_target_operations.py index c4518020387..d220f4de154 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_target_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_percentile_target_operations.py @@ -78,7 +78,7 @@ def list_metrics( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_private_endpoint_connections_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_private_endpoint_connections_operations.py index c63412113ba..a91fb89f1f7 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_private_endpoint_connections_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_private_endpoint_connections_operations.py @@ -70,7 +70,7 @@ def list_by_database_account( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -148,7 +148,7 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -199,7 +199,7 @@ def _create_or_update_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -334,7 +334,7 @@ def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_private_link_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_private_link_resources_operations.py index 1fae2104d1d..67d47de14db 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_private_link_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_private_link_resources_operations.py @@ -68,7 +68,7 @@ def list_by_database_account( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -146,7 +146,7 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_database_accounts_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_database_accounts_operations.py index b6183ae2e72..5b9835f5f75 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_database_accounts_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_database_accounts_operations.py @@ -67,7 +67,7 @@ def list_by_location( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -136,7 +136,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -210,7 +210,7 @@ def get_by_location( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_collections_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_collections_operations.py index cd45b4c6d99..319724e11d2 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_collections_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_collections_operations.py @@ -73,7 +73,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_databases_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_databases_operations.py index d3d5ff7c831..f6c79270db8 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_databases_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_databases_operations.py @@ -71,7 +71,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_resources_operations.py index 5ffec558d4b..7bc8341a0d3 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_mongodb_resources_operations.py @@ -77,7 +77,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_containers_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_containers_operations.py index 3ea7156988e..49c128dab23 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_containers_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_containers_operations.py @@ -79,7 +79,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_databases_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_databases_operations.py index 3985c7192cd..f3f8556787b 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_databases_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_databases_operations.py @@ -71,7 +71,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_resources_operations.py index c2ba469ba3e..643b5409fe6 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_restorable_sql_resources_operations.py @@ -77,7 +77,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_service_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_service_operations.py index 075ad4a32ac..45a42d8a8d1 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_service_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_service_operations.py @@ -70,7 +70,7 @@ def list( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -136,7 +136,7 @@ def _create_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -283,7 +283,7 @@ def get( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -333,7 +333,7 @@ def _delete_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_sql_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_sql_resources_operations.py index b8bd592dbeb..bd5d31f47b8 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_sql_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_sql_resources_operations.py @@ -70,7 +70,7 @@ def list_sql_databases( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -149,7 +149,7 @@ def get_sql_database( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -200,7 +200,7 @@ def _create_update_sql_database_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -335,7 +335,7 @@ def _delete_sql_database_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_sql_database_initial.metadata['url'] # type: ignore @@ -464,7 +464,7 @@ def get_sql_database_throughput( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -515,7 +515,7 @@ def _update_sql_database_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -650,7 +650,7 @@ def _migrate_sql_database_to_autoscale_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -775,7 +775,7 @@ def _migrate_sql_database_to_manual_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -887,6 +887,296 @@ def get_long_running_output(pipeline_response): return LROPoller(self._client, raw_result, get_long_running_output, polling_method) begin_migrate_sql_database_to_manual_throughput.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/sqlDatabases/{databaseName}/throughputSettings/default/migrateToManualThroughput'} # type: ignore + def list_client_encryption_keys( + self, + resource_group_name, # type: str + account_name, # type: str + database_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> Iterable["_models.ClientEncryptionKeysListResult"] + """Lists the ClientEncryptionKeys under an existing Azure Cosmos DB SQL database. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :param database_name: Cosmos DB database name. + :type database_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either ClientEncryptionKeysListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.cosmosdb.models.ClientEncryptionKeysListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ClientEncryptionKeysListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_client_encryption_keys.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + 'databaseName': self._serialize.url("database_name", database_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize('ClientEncryptionKeysListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged( + get_next, extract_data + ) + list_client_encryption_keys.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/sqlDatabases/{databaseName}/clientEncryptionKeys'} # type: ignore + + def get_client_encryption_key( + self, + resource_group_name, # type: str + account_name, # type: str + database_name, # type: str + client_encryption_key_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> "_models.ClientEncryptionKeyGetResults" + """Gets the ClientEncryptionKey under an existing Azure Cosmos DB SQL database. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :param database_name: Cosmos DB database name. + :type database_name: str + :param client_encryption_key_name: Cosmos DB ClientEncryptionKey name. + :type client_encryption_key_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: ClientEncryptionKeyGetResults, or the result of cls(response) + :rtype: ~azure.mgmt.cosmosdb.models.ClientEncryptionKeyGetResults + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.ClientEncryptionKeyGetResults"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + accept = "application/json" + + # Construct URL + url = self.get_client_encryption_key.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + 'databaseName': self._serialize.url("database_name", database_name, 'str'), + 'clientEncryptionKeyName': self._serialize.url("client_encryption_key_name", client_encryption_key_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('ClientEncryptionKeyGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get_client_encryption_key.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/sqlDatabases/{databaseName}/clientEncryptionKeys/{clientEncryptionKeyName}'} # type: ignore + + def _create_update_client_encryption_key_initial( + self, + resource_group_name, # type: str + account_name, # type: str + database_name, # type: str + client_encryption_key_name, # type: str + create_update_client_encryption_key_parameters, # type: "_models.ClientEncryptionKeyCreateUpdateParameters" + **kwargs # type: Any + ): + # type: (...) -> Optional["_models.ClientEncryptionKeyGetResults"] + cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.ClientEncryptionKeyGetResults"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2021-10-15-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._create_update_client_encryption_key_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + 'databaseName': self._serialize.url("database_name", database_name, 'str'), + 'clientEncryptionKeyName': self._serialize.url("client_encryption_key_name", client_encryption_key_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(create_update_client_encryption_key_parameters, 'ClientEncryptionKeyCreateUpdateParameters') + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ClientEncryptionKeyGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _create_update_client_encryption_key_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/sqlDatabases/{databaseName}/clientEncryptionKeys/{clientEncryptionKeyName}'} # type: ignore + + def begin_create_update_client_encryption_key( + self, + resource_group_name, # type: str + account_name, # type: str + database_name, # type: str + client_encryption_key_name, # type: str + create_update_client_encryption_key_parameters, # type: "_models.ClientEncryptionKeyCreateUpdateParameters" + **kwargs # type: Any + ): + # type: (...) -> LROPoller["_models.ClientEncryptionKeyGetResults"] + """Create or update a ClientEncryptionKey. This API is meant to be invoked via tools such as the + Azure Powershell (instead of directly). + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param account_name: Cosmos DB database account name. + :type account_name: str + :param database_name: Cosmos DB database name. + :type database_name: str + :param client_encryption_key_name: Cosmos DB ClientEncryptionKey name. + :type client_encryption_key_name: str + :param create_update_client_encryption_key_parameters: The parameters to provide for the client + encryption key. + :type create_update_client_encryption_key_parameters: ~azure.mgmt.cosmosdb.models.ClientEncryptionKeyCreateUpdateParameters + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: By default, your polling method will be ARMPolling. + Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either ClientEncryptionKeyGetResults or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.cosmosdb.models.ClientEncryptionKeyGetResults] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.ClientEncryptionKeyGetResults"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_update_client_encryption_key_initial( + resource_group_name=resource_group_name, + account_name=account_name, + database_name=database_name, + client_encryption_key_name=client_encryption_key_name, + create_update_client_encryption_key_parameters=create_update_client_encryption_key_parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('ClientEncryptionKeyGetResults', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=50, min_length=3, pattern=r'^[a-z0-9]+(-[a-z0-9]+)*'), + 'databaseName': self._serialize.url("database_name", database_name, 'str'), + 'clientEncryptionKeyName': self._serialize.url("client_encryption_key_name", client_encryption_key_name, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_create_update_client_encryption_key.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/sqlDatabases/{databaseName}/clientEncryptionKeys/{clientEncryptionKeyName}'} # type: ignore + def list_sql_containers( self, resource_group_name, # type: str @@ -913,7 +1203,7 @@ def list_sql_containers( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -995,7 +1285,7 @@ def get_sql_container( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1048,7 +1338,7 @@ def _create_update_sql_container_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1190,7 +1480,7 @@ def _delete_sql_container_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_sql_container_initial.metadata['url'] # type: ignore @@ -1328,7 +1618,7 @@ def get_sql_container_throughput( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1381,7 +1671,7 @@ def _update_sql_container_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -1523,7 +1813,7 @@ def _migrate_sql_container_to_autoscale_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1655,7 +1945,7 @@ def _migrate_sql_container_to_manual_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1802,7 +2092,7 @@ def list_sql_stored_procedures( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -1888,7 +2178,7 @@ def get_sql_stored_procedure( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -1943,7 +2233,7 @@ def _create_update_sql_stored_procedure_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -2092,7 +2382,7 @@ def _delete_sql_stored_procedure_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_sql_stored_procedure_initial.metadata['url'] # type: ignore @@ -2235,7 +2525,7 @@ def list_sql_user_defined_functions( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -2321,7 +2611,7 @@ def get_sql_user_defined_function( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -2376,7 +2666,7 @@ def _create_update_sql_user_defined_function_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -2525,7 +2815,7 @@ def _delete_sql_user_defined_function_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_sql_user_defined_function_initial.metadata['url'] # type: ignore @@ -2668,7 +2958,7 @@ def list_sql_triggers( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -2754,7 +3044,7 @@ def get_sql_trigger( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -2809,7 +3099,7 @@ def _create_update_sql_trigger_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -2958,7 +3248,7 @@ def _delete_sql_trigger_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_sql_trigger_initial.metadata['url'] # type: ignore @@ -3098,7 +3388,7 @@ def get_sql_role_definition( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -3149,7 +3439,7 @@ def _create_update_sql_role_definition_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -3284,7 +3574,7 @@ def _delete_sql_role_definition_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -3411,7 +3701,7 @@ def list_sql_role_definitions( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -3489,7 +3779,7 @@ def get_sql_role_assignment( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -3540,7 +3830,7 @@ def _create_update_sql_role_assignment_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -3675,7 +3965,7 @@ def _delete_sql_role_assignment_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -3802,7 +4092,7 @@ def list_sql_role_assignments( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -3869,7 +4159,7 @@ def _retrieve_continuous_backup_information_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_table_resources_operations.py b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_table_resources_operations.py index 062611e12a0..acc877c31fe 100644 --- a/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_table_resources_operations.py +++ b/src/cosmosdb-preview/azext_cosmosdb_preview/vendored_sdks/azure_mgmt_cosmosdb/operations/_table_resources_operations.py @@ -70,7 +70,7 @@ def list_tables( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" def prepare_request(next_link=None): @@ -148,7 +148,7 @@ def get_table( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -199,7 +199,7 @@ def _create_update_table_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -333,7 +333,7 @@ def _delete_table_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" # Construct URL url = self._delete_table_initial.metadata['url'] # type: ignore @@ -462,7 +462,7 @@ def get_table_throughput( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -513,7 +513,7 @@ def _update_table_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -648,7 +648,7 @@ def _migrate_table_to_autoscale_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL @@ -773,7 +773,7 @@ def _migrate_table_to_manual_throughput_initial( 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) - api_version = "2021-07-01-preview" + api_version = "2021-10-15-preview" accept = "application/json" # Construct URL diff --git a/src/cosmosdb-preview/setup.py b/src/cosmosdb-preview/setup.py index 9ffdda9ef03..86aa239c392 100644 --- a/src/cosmosdb-preview/setup.py +++ b/src/cosmosdb-preview/setup.py @@ -16,7 +16,7 @@ # TODO: Confirm this is the right version number you want and it matches your # HISTORY.rst entry. -VERSION = '0.10.0' +VERSION = '0.11.0' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers diff --git a/src/costmanagement/azext_costmanagement/tests/latest/preparers.py b/src/costmanagement/azext_costmanagement/tests/latest/preparers.py index 3d6672de64f..3abbc4945c0 100644 --- a/src/costmanagement/azext_costmanagement/tests/latest/preparers.py +++ b/src/costmanagement/azext_costmanagement/tests/latest/preparers.py @@ -11,7 +11,7 @@ import os from datetime import datetime from azure.cli.testsdk.preparers import NoTrafficRecordingPreparer -from azure_devtools.scenario_tests import SingleValueReplacer +from azure.cli.testsdk.scenario_tests import SingleValueReplacer from azure.cli.testsdk.exceptions import CliTestError from azure.cli.testsdk.reverse_dependency import get_dummy_cli diff --git a/src/costmanagement/azext_costmanagement/tests/latest/test_costmanagement_scenario.py b/src/costmanagement/azext_costmanagement/tests/latest/test_costmanagement_scenario.py index cb6650d6d38..424289772a5 100644 --- a/src/costmanagement/azext_costmanagement/tests/latest/test_costmanagement_scenario.py +++ b/src/costmanagement/azext_costmanagement/tests/latest/test_costmanagement_scenario.py @@ -11,7 +11,7 @@ # import os # import unittest -# from azure_devtools.scenario_tests import AllowLargeResponse +# from azure.cli.testsdk.scenario_tests import AllowLargeResponse # from azure.cli.testsdk import ScenarioTest # from .. import try_manual # from azure.cli.testsdk import ResourceGroupPreparer diff --git a/src/databricks/azext_databricks/tests/latest/test_databricks_scenario.py b/src/databricks/azext_databricks/tests/latest/test_databricks_scenario.py index b82dff07728..39b4de0dcc6 100644 --- a/src/databricks/azext_databricks/tests/latest/test_databricks_scenario.py +++ b/src/databricks/azext_databricks/tests/latest/test_databricks_scenario.py @@ -7,7 +7,7 @@ import time import unittest -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, KeyVaultPreparer) from msrestazure.tools import resource_id diff --git a/src/datadog/azext_datadog/tests/latest/test_datadog_scenario.py b/src/datadog/azext_datadog/tests/latest/test_datadog_scenario.py index a305510bfc2..cd578e0ee8e 100644 --- a/src/datadog/azext_datadog/tests/latest/test_datadog_scenario.py +++ b/src/datadog/azext_datadog/tests/latest/test_datadog_scenario.py @@ -12,7 +12,7 @@ from unittest import mock from azure.cli.testsdk import ScenarioTest from azure.cli.testsdk import ResourceGroupPreparer -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from .. import try_manual, raise_if, calc_coverage diff --git a/src/datashare/azext_datashare/tests/latest/test_datashare_scenario.py b/src/datashare/azext_datashare/tests/latest/test_datashare_scenario.py index 2e9b8747434..5377c653752 100644 --- a/src/datashare/azext_datashare/tests/latest/test_datashare_scenario.py +++ b/src/datashare/azext_datashare/tests/latest/test_datashare_scenario.py @@ -6,7 +6,7 @@ import os import unittest -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, StorageAccountPreparer) TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) diff --git a/src/diskpool/azext_diskpool/tests/latest/preparers.py b/src/diskpool/azext_diskpool/tests/latest/preparers.py index 90926b89c15..e6dac62dea0 100644 --- a/src/diskpool/azext_diskpool/tests/latest/preparers.py +++ b/src/diskpool/azext_diskpool/tests/latest/preparers.py @@ -8,7 +8,7 @@ # regenerated. # -------------------------------------------------------------------------- -from azure_devtools.scenario_tests import SingleValueReplacer +from azure.cli.testsdk.scenario_tests import SingleValueReplacer from azure.cli.testsdk.preparers import NoTrafficRecordingPreparer from azure.cli.testsdk.reverse_dependency import get_dummy_cli diff --git a/src/dnc/azext_dnc/manual/tests/latest/preparers.py b/src/dnc/azext_dnc/manual/tests/latest/preparers.py index 7017422b05e..53aa6614e7e 100644 --- a/src/dnc/azext_dnc/manual/tests/latest/preparers.py +++ b/src/dnc/azext_dnc/manual/tests/latest/preparers.py @@ -10,7 +10,7 @@ import os from datetime import datetime -from azure_devtools.scenario_tests import SingleValueReplacer +from azure.cli.testsdk.scenario_tests import SingleValueReplacer from azure.cli.testsdk.preparers import NoTrafficRecordingPreparer from azure.cli.testsdk.exceptions import CliTestError from azure.cli.testsdk.reverse_dependency import get_dummy_cli diff --git a/src/dnc/azext_dnc/tests/latest/preparers.py b/src/dnc/azext_dnc/tests/latest/preparers.py index 0879e51945a..176f5b16296 100644 --- a/src/dnc/azext_dnc/tests/latest/preparers.py +++ b/src/dnc/azext_dnc/tests/latest/preparers.py @@ -10,7 +10,7 @@ import os from datetime import datetime -from azure_devtools.scenario_tests import SingleValueReplacer +from azure.cli.testsdk.scenario_tests import SingleValueReplacer from azure.cli.testsdk.preparers import NoTrafficRecordingPreparer from azure.cli.testsdk.exceptions import CliTestError from azure.cli.testsdk.reverse_dependency import get_dummy_cli diff --git a/src/hardware-security-modules/azext_hardware_security_modules/tests/latest/test_hardwaresecuritymodules_scenario.py b/src/hardware-security-modules/azext_hardware_security_modules/tests/latest/test_hardwaresecuritymodules_scenario.py index 6d2797baa72..4db3629b667 100644 --- a/src/hardware-security-modules/azext_hardware_security_modules/tests/latest/test_hardwaresecuritymodules_scenario.py +++ b/src/hardware-security-modules/azext_hardware_security_modules/tests/latest/test_hardwaresecuritymodules_scenario.py @@ -11,7 +11,7 @@ import os import unittest -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import ScenarioTest from .. import try_manual from azure.cli.testsdk import ResourceGroupPreparer diff --git a/src/healthcareapis/azext_healthcareapis/tests/latest/preparers.py b/src/healthcareapis/azext_healthcareapis/tests/latest/preparers.py index 64e1d2ce22d..a17625d9cb5 100644 --- a/src/healthcareapis/azext_healthcareapis/tests/latest/preparers.py +++ b/src/healthcareapis/azext_healthcareapis/tests/latest/preparers.py @@ -13,7 +13,7 @@ from azure.cli.testsdk.exceptions import CliTestError from azure.cli.testsdk.preparers import NoTrafficRecordingPreparer from azure.cli.testsdk.reverse_dependency import get_dummy_cli -from azure_devtools.scenario_tests import SingleValueReplacer +from azure.cli.testsdk.scenario_tests import SingleValueReplacer KEY_RESOURCE_GROUP = 'rg' diff --git a/src/hpc-cache/azext_hpc_cache/tests/latest/test_hpc_cache_scenario.py b/src/hpc-cache/azext_hpc_cache/tests/latest/test_hpc_cache_scenario.py index a5735de9b5d..610f9587f4e 100644 --- a/src/hpc-cache/azext_hpc_cache/tests/latest/test_hpc_cache_scenario.py +++ b/src/hpc-cache/azext_hpc_cache/tests/latest/test_hpc_cache_scenario.py @@ -6,7 +6,7 @@ import os from unittest import mock -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer, StorageAccountPreparer diff --git a/src/index.json b/src/index.json index 2ed2ae49d5f..adaac922cfb 100644 --- a/src/index.json +++ b/src/index.json @@ -174,6 +174,49 @@ "version": "1.0.0" }, "sha256Digest": "8fadff19781b34ab246a15a5c222fd6af53ea93f7778fbf933d1ccd082f3e362" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/acrtransfer-1.1.0-py3-none-any.whl", + "filename": "acrtransfer-1.1.0-py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.0.67", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "KraterDev@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/acrtransfer" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "acrtransfer", + "summary": "Microsoft Azure Command-Line Tools Acrtransfer Extension", + "version": "1.1.0" + }, + "sha256Digest": "668b94d0341b663a610212f318b899a53be60ae0eb59c47e162f5dabd3483551" } ], "ad": [ @@ -4077,6 +4120,221 @@ "version": "0.5.42" }, "sha256Digest": "70b557f454023cd8300da0081f34c97f8ab142d2a867507cc356d5d45e2f6585" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.44-py2.py3-none-any.whl", + "filename": "aks_preview-0.5.44-py2.py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.27.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "aks-preview", + "summary": "Provides a preview for upcoming AKS features", + "version": "0.5.44" + }, + "sha256Digest": "bf9b38c16159417372b85e10874554ccc08b3a1d545ac098d864d88c832293e8" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.45-py2.py3-none-any.whl", + "filename": "aks_preview-0.5.45-py2.py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.30.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "aks-preview", + "summary": "Provides a preview for upcoming AKS features", + "version": "0.5.45" + }, + "sha256Digest": "dce3edd35e9467e64db64ea6fe69a3360f51be02fcf273126c77bd2a79bc43c7" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.46-py2.py3-none-any.whl", + "filename": "aks_preview-0.5.46-py2.py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.30.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "aks-preview", + "summary": "Provides a preview for upcoming AKS features", + "version": "0.5.46" + }, + "sha256Digest": "9f811e0176fb309f40c0a6a2cfbd50c27aa4c19a80f518ad100e232c382da336" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.47-py2.py3-none-any.whl", + "filename": "aks_preview-0.5.47-py2.py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.30.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "aks-preview", + "summary": "Provides a preview for upcoming AKS features", + "version": "0.5.47" + }, + "sha256Digest": "a3d03b2ad7ae74468556b8142252e9e51f70e50ce5b1685c8188930b1e43a4ef" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.48-py2.py3-none-any.whl", + "filename": "aks_preview-0.5.48-py2.py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.30.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "aks-preview", + "summary": "Provides a preview for upcoming AKS features", + "version": "0.5.48" + }, + "sha256Digest": "f253e1df741ca7a9b22fef56a362606f9cd7f9e79d52d25fe36a8f76a2c0b52f" } ], "alertsmanagement": [ @@ -4892,31 +5150,31 @@ "version": "0.1.0" }, "sha256Digest": "20f01eb95b1daadf21f589d3d953a756cb61259f279973880b4c0acbd4e05e27" - } - ], - "arcappliance": [ + }, { - "downloadUrl": "https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-0.1.4-py2.py3-none-any.whl", - "filename": "arcappliance-0.1.4-py2.py3-none-any.whl", + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.1-py2.py3-none-any.whl", + "filename": "appservice_kube-0.1.1-py2.py3-none-any.whl", "metadata": { "azext.isPreview": true, - "azext.minCliCoreVersion": "2.0.67", + "azext.minCliCoreVersion": "2.26.0", "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "Programming Language :: Python", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", "License :: OSI Approved :: MIT License" ], "extensions": { "python.details": { "contacts": [ { - "email": "appliance@microsoft.com", + "email": "azpycli@microsoft.com", "name": "Microsoft Corporation", "role": "author" } @@ -4925,31 +5183,121 @@ "description": "DESCRIPTION.rst" }, "project_urls": { - "Home": "https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions" + "Home": "https://github.com/Azure/azure-cli-extensions" } } }, - "extras": [], "generator": "bdist_wheel (0.30.0)", "license": "MIT", "metadata_version": "2.0", - "name": "arcappliance", - "run_requires": [ - { - "requires": [ + "name": "appservice-kube", + "summary": "Microsoft Azure Command-Line Tools App Service on Kubernetes Extension", + "version": "0.1.1" + }, + "sha256Digest": "4b1b59fbac8dc68f390c48e9e8fa32676c041b857d2bf5f425bc8815e69b8708" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.2-py2.py3-none-any.whl", + "filename": "appservice_kube-0.1.2-py2.py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.26.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "appservice-kube", + "summary": "Microsoft Azure Command-Line Tools App Service on Kubernetes Extension", + "version": "0.1.2" + }, + "sha256Digest": "aa67ced7e361002bf8bec125540c4f9eb216ba0ad7342336285b8bdd17f1ece0" + } + ], + "arcappliance": [ + { + "downloadUrl": "https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-0.1.42-py2.py3-none-any.whl", + "filename": "arcappliance-0.1.42-py2.py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.0.67", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "appliance@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions" + } + } + }, + "extras": [], + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "arcappliance", + "run_requires": [ + { + "requires": [ "jsonschema (==3.2.0)", "kubernetes (==11.0.0)" ] } ], "summary": "Microsoft Azure Command-Line Tools Arcappliance Extension", - "version": "0.1.4" + "version": "0.1.42" }, - "sha256Digest": "8c3ace89d98781f2e0c952a7197862d0f64afded0c6e8e83f229fea3e014806b" + "sha256Digest": "91c4fd57ab294918ab4e1e42a9d93f5d9a217a70bcfb7840ddb9175ca50ebcf0" }, { - "downloadUrl": "https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-0.1.42-py2.py3-none-any.whl", - "filename": "arcappliance-0.1.42-py2.py3-none-any.whl", + "downloadUrl": "https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-0.1.46-py2.py3-none-any.whl", + "filename": "arcappliance-0.1.46-py2.py3-none-any.whl", "metadata": { "azext.isPreview": true, "azext.minCliCoreVersion": "2.0.67", @@ -4995,12 +5343,123 @@ } ], "summary": "Microsoft Azure Command-Line Tools Arcappliance Extension", - "version": "0.1.42" + "version": "0.1.46" }, - "sha256Digest": "91c4fd57ab294918ab4e1e42a9d93f5d9a217a70bcfb7840ddb9175ca50ebcf0" + "sha256Digest": "aed1e411d0acbf1d28224140b72129c15a90148939322abf0cb44aad811aebd4" + }, + { + "downloadUrl": "https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-0.2.11-py2.py3-none-any.whl", + "filename": "arcappliance-0.2.11-py2.py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.0.67", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "appliance@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions" + } + } + }, + "extras": [], + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "arcappliance", + "run_requires": [ + { + "requires": [ + "jsonschema (==3.2.0)", + "kubernetes (==11.0.0)" + ] + } + ], + "summary": "Microsoft Azure Command-Line Tools Arcappliance Extension", + "version": "0.2.11" + }, + "sha256Digest": "e8b81f7f0e17d61f6ff359f15e42e7cdd8a9fe1003bc0040323171bf53abea3e" } ], "arcdata": [ + { + "downloadUrl": "https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.1.2-py2.py3-none-any.whl", + "filename": "arcdata-1.1.2-py2.py3-none-any.whl", + "metadata": { + "azext.isExperimental": false, + "azext.minCliCoreVersion": "2.3.1", + "classifiers": [ + "Development Status :: 1 - Beta", + "Intended Audience :: Developers", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "dpgswdist@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://docs.microsoft.com/en-us/azure/azure-arc/data/" + } + } + }, + "extras": [], + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "license_file": "LICENSE", + "metadata_version": "2.0", + "name": "arcdata", + "run_requires": [ + { + "requires": [ + "colorama (==0.4.4)", + "jinja2 (==2.10.3)", + "jsonpatch (==1.24)", + "jsonpath-ng (==1.4.3)", + "jsonschema (==3.2.0)", + "kubernetes (==12.0.1)", + "ndjson (==0.3.1)", + "pem (==21.2.0)", + "pydash (==4.8.0)" + ] + } + ], + "summary": "Tools for managing ArcData.", + "version": "1.1.2" + }, + "sha256Digest": "ffcb38d3653195dc30ce93066b5aff3ff7037be81232db4afcb11ef99f3de844" + }, { "downloadUrl": "https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.1.1-py2.py3-none-any.whl", "filename": "arcdata-1.1.1-py2.py3-none-any.whl", @@ -5786,10 +6245,9 @@ ], "azure-cli-ml": [ { - "downloadUrl": "https://azurecliext.blob.core.windows.net/release/azure_cli_ml-1.33.1-py3-none-any.whl", - "filename": "azure_cli_ml-1.33.1-py3-none-any.whl", + "downloadUrl": "https://azurecliext.blob.core.windows.net/release/azure_cli_ml-1.37.0-py3-none-any.whl", + "filename": "azure_cli_ml-1.37.0-py3-none-any.whl", "metadata": { - "azext.maxCliCoreVersion": "2.29.2", "azext.minCliCoreVersion": "2.3.1", "classifiers": [ "Development Status :: 3 - Alpha", @@ -5830,7 +6288,7 @@ { "requires": [ "adal (>=1.2.1)", - "azureml-cli-common (~=1.33)", + "azureml-cli-common (~=1.37.0)", "cryptography (<=3.3.2)", "docker (>=3.7.2)", "msrest (>=0.6.6)", @@ -5850,14 +6308,15 @@ ] } ], - "version": "1.33.1" + "version": "1.37.0" }, - "sha256Digest": "d5ce90d6208c97e541a6fd44622464c6e0d53b55e48286d40105c82338bc7c8d" + "sha256Digest": "7dc527ad16592a775d79341d7711df31497b66bf616010890bd1f8831c81012d" }, { "downloadUrl": "https://azurecliext.blob.core.windows.net/release/azure_cli_ml-1.5.0-py2.py3-none-any.whl", "filename": "azure_cli_ml-1.5.0-py2.py3-none-any.whl", "metadata": { + "azext.maxCliCoreVersion": "2.29.2", "azext.minCliCoreVersion": "2.0.28", "classifiers": [ "Development Status :: 3 - Alpha", @@ -6896,6 +7355,51 @@ "version": "0.12.0" }, "sha256Digest": "e8273165377adcbc1effcaaa447d4b7b38c49aadd1ff9255cabf400f6846edb4" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.13.0-py2.py3-none-any.whl", + "filename": "azure_firewall-0.13.0-py2.py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.15.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "azure-firewall", + "summary": "Manage Azure Firewall resources.", + "version": "0.13.0" + }, + "sha256Digest": "04e0761aeed15ac457c5831c89bcbaf5f669fa943ded8f71c0f54431621103b0" } ], "azure-iot": [ @@ -7278,6 +7782,49 @@ "version": "0.2.1" }, "sha256Digest": "3d6220cffd5b45383c16b9cdd43393e1d4e07bebf3b2bbca9eabed21049c197c" + }, + { + "downloadUrl": "https://akshcistorage.z5.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.2-py3-none-any.whl", + "filename": "azurestackhci-0.2.2-py3-none-any.whl", + "metadata": { + "azext.isExperimental": true, + "azext.minCliCoreVersion": "2.15.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/azurestackhci" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "azurestackhci", + "summary": "Microsoft Azure Command-Line Tools AzureStackHCI Extension", + "version": "0.2.2" + }, + "sha256Digest": "2de905d3adc714745ee92bf81c237ea3dd61cb4a6e87d2a840f4047aba352a73" } ], "baremetal-infrastructure": [ @@ -9539,6 +10086,59 @@ "version": "1.2.0" }, "sha256Digest": "e6873b0cdcfb82cda00f00dfdc5ce9d0daf4db651e100c6c3e3ff58ca89732ab" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.1-py2.py3-none-any.whl", + "filename": "connectedk8s-1.2.1-py2.py3-none-any.whl", + "metadata": { + "azext.maxCliCoreVersion": "2.29.0", + "azext.minCliCoreVersion": "2.16.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "description_content_type": "text/markdown", + "extensions": { + "python.details": { + "contacts": [ + { + "email": "k8connect@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s" + } + } + }, + "extras": [], + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "connectedk8s", + "run_requires": [ + { + "requires": [ + "kubernetes (==11.0.0)", + "pycryptodome (==3.9.8)" + ] + } + ], + "summary": "Microsoft Azure Command-Line Tools Connectedk8s Extension", + "version": "1.2.1" + }, + "sha256Digest": "8a6a3e88952c36d7d38602953b1a3de3386ab18bc0cc79e7b74b931fe0d57f3d" } ], "connectedmachine": [ @@ -9700,13 +10300,103 @@ "summary": "Microsoft Azure Command-Line Tools ConnectedMachine Extension", "version": "0.4.0" }, - "sha256Digest": "2183f183dac5e88820b8f69d8e56936a94b6b2bd16c7619c41f7ceac52951abf" + "sha256Digest": "2183f183dac5e88820b8f69d8e56936a94b6b2bd16c7619c41f7ceac52951abf" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.4.1-py3-none-any.whl", + "filename": "connectedmachine-0.4.1-py3-none-any.whl", + "metadata": { + "azext.minCliCoreVersion": "2.15.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedmachine" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "connectedmachine", + "summary": "Microsoft Azure Command-Line Tools ConnectedMachine Extension", + "version": "0.4.1" + }, + "sha256Digest": "44d84d979b15f9bdc0b5e873e308a03ad66edecf9bcf8dc1bbd31d81734cee0d" + } + ], + "connectedvmware": [ + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.2-py2.py3-none-any.whl", + "filename": "connectedvmware-0.1.2-py2.py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.maxCliCoreVersion": "4.0.0", + "azext.minCliCoreVersion": "2.0.67", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "connectedvmware", + "summary": "Microsoft Azure Command-Line Tools Connectedvmware Extension", + "version": "0.1.2" + }, + "sha256Digest": "5bbabea61360ad74e987a33b155e267c2f940678d9220210999e9e723541d123" }, { - "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.4.1-py3-none-any.whl", - "filename": "connectedmachine-0.4.1-py3-none-any.whl", + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.3-py2.py3-none-any.whl", + "filename": "connectedvmware-0.1.3-py2.py3-none-any.whl", "metadata": { - "azext.minCliCoreVersion": "2.15.0", + "azext.isPreview": true, + "azext.maxCliCoreVersion": "4.0.0", + "azext.minCliCoreVersion": "2.0.67", "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", @@ -9731,24 +10421,22 @@ "description": "DESCRIPTION.rst" }, "project_urls": { - "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedmachine" + "Home": "https://github.com/Azure/azure-cli-extensions" } } }, "generator": "bdist_wheel (0.30.0)", "license": "MIT", "metadata_version": "2.0", - "name": "connectedmachine", - "summary": "Microsoft Azure Command-Line Tools ConnectedMachine Extension", - "version": "0.4.1" + "name": "connectedvmware", + "summary": "Microsoft Azure Command-Line Tools Connectedvmware Extension", + "version": "0.1.3" }, - "sha256Digest": "44d84d979b15f9bdc0b5e873e308a03ad66edecf9bcf8dc1bbd31d81734cee0d" - } - ], - "connectedvmware": [ + "sha256Digest": "481fd314b1681185d2d64d1ea21d5591d0bf8411786e521e5bc9dae8eb862415" + }, { - "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.2-py2.py3-none-any.whl", - "filename": "connectedvmware-0.1.2-py2.py3-none-any.whl", + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.4-py2.py3-none-any.whl", + "filename": "connectedvmware-0.1.4-py2.py3-none-any.whl", "metadata": { "azext.isPreview": true, "azext.maxCliCoreVersion": "4.0.0", @@ -9786,13 +10474,13 @@ "metadata_version": "2.0", "name": "connectedvmware", "summary": "Microsoft Azure Command-Line Tools Connectedvmware Extension", - "version": "0.1.2" + "version": "0.1.4" }, - "sha256Digest": "5bbabea61360ad74e987a33b155e267c2f940678d9220210999e9e723541d123" + "sha256Digest": "a39af3a33da02598ec45f4b6167c2f5a25030e8fefd8d2aff186d604cb46e3db" }, { - "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.3-py2.py3-none-any.whl", - "filename": "connectedvmware-0.1.3-py2.py3-none-any.whl", + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.5-py2.py3-none-any.whl", + "filename": "connectedvmware-0.1.5-py2.py3-none-any.whl", "metadata": { "azext.isPreview": true, "azext.maxCliCoreVersion": "4.0.0", @@ -9830,9 +10518,9 @@ "metadata_version": "2.0", "name": "connectedvmware", "summary": "Microsoft Azure Command-Line Tools Connectedvmware Extension", - "version": "0.1.3" + "version": "0.1.5" }, - "sha256Digest": "481fd314b1681185d2d64d1ea21d5591d0bf8411786e521e5bc9dae8eb862415" + "sha256Digest": "9b9ecb66734d8c31410b652d417deef9e35e2624873b36c0f3d6f90634d807e8" } ], "connection-monitor-preview": [ @@ -10343,6 +11031,49 @@ "version": "0.10.0" }, "sha256Digest": "de57720e30785823d821ade1f08886871aa3188335fb5105e960833f2aebacdb" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.11.0-py2.py3-none-any.whl", + "filename": "cosmosdb_preview-0.11.0-py2.py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.17.1", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "kakhandr@microsoft.com", + "name": "Kalyan khandrika", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "cosmosdb-preview", + "summary": "Microsoft Azure Command-Line Tools Cosmosdb-preview Extension", + "version": "0.11.0" + }, + "sha256Digest": "e9a21eab81616e7f71b5a4d764e541cbdea22d3dff3a8fc326f1ef06a1067421" } ], "costmanagement": [ @@ -16100,6 +16831,106 @@ "version": "1.1.1" }, "sha256Digest": "3edf6b977d911b4da52ed66ada9363a7a6a739773a26f3599a2fdc728adcce9c" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.2.0-py3-none-any.whl", + "filename": "k8s_configuration-1.2.0-py3-none-any.whl", + "metadata": { + "azext.minCliCoreVersion": "2.15.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration" + } + } + }, + "extras": [], + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "k8s-configuration", + "run_requires": [ + { + "requires": [ + "pycryptodome (~=3.9.8)" + ] + } + ], + "summary": "Microsoft Azure Command-Line Tools K8s-configuration Extension", + "version": "1.2.0" + }, + "sha256Digest": "145c09df2e45ac41b6471fe74a513720014943151b5ca67e9913a1a91d591ac6" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.3.0-py3-none-any.whl", + "filename": "k8s_configuration-1.3.0-py3-none-any.whl", + "metadata": { + "azext.minCliCoreVersion": "2.15.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration" + } + } + }, + "extras": [], + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "k8s-configuration", + "run_requires": [ + { + "requires": [ + "pycryptodome (~=3.9.8)" + ] + } + ], + "summary": "Microsoft Azure Command-Line Tools K8s-configuration Extension", + "version": "1.3.0" + }, + "sha256Digest": "c403947012efe91407ffb3e8edaf3fc6775519b1930c36bb4a04c11c2a3de3ab" } ], "k8s-extension": [ @@ -16537,13 +17368,99 @@ "metadata_version": "2.0", "name": "k8s-extension", "summary": "Microsoft Azure Command-Line Tools K8s-extension Extension", - "version": "0.5.1" + "version": "0.5.1" + }, + "sha256Digest": "b04378d1c1699cf8cf37fc84a0f77fd5b87c653cc4d06049ba546660ce57fe42" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.6.0-py3-none-any.whl", + "filename": "k8s_extension-0.6.0-py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.24.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "k8s-extension", + "summary": "Microsoft Azure Command-Line Tools K8s-extension Extension", + "version": "0.6.0" + }, + "sha256Digest": "a1b642402345b71cb0f06aa31653a3161ab3f5f874e29d59863b987200bc535d" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.6.1-py3-none-any.whl", + "filename": "k8s_extension-0.6.1-py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.24.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "k8s-extension", + "summary": "Microsoft Azure Command-Line Tools K8s-extension Extension", + "version": "0.6.1" }, - "sha256Digest": "b04378d1c1699cf8cf37fc84a0f77fd5b87c653cc4d06049ba546660ce57fe42" + "sha256Digest": "42b366184ab6dd9f46bb44e7c0e10eace4f25f514f97dd1912552c6900f2fd9e" }, { - "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.6.0-py3-none-any.whl", - "filename": "k8s_extension-0.6.0-py3-none-any.whl", + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.7.0-py3-none-any.whl", + "filename": "k8s_extension-0.7.0-py3-none-any.whl", "metadata": { "azext.isPreview": true, "azext.minCliCoreVersion": "2.24.0", @@ -16580,13 +17497,13 @@ "metadata_version": "2.0", "name": "k8s-extension", "summary": "Microsoft Azure Command-Line Tools K8s-extension Extension", - "version": "0.6.0" + "version": "0.7.0" }, - "sha256Digest": "a1b642402345b71cb0f06aa31653a3161ab3f5f874e29d59863b987200bc535d" + "sha256Digest": "8721d18318523e58de9bec2630b713c1c860f910ee1f9d05f80dbc6fd178f9ca" }, { - "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.6.1-py3-none-any.whl", - "filename": "k8s_extension-0.6.1-py3-none-any.whl", + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.7.1-py3-none-any.whl", + "filename": "k8s_extension-0.7.1-py3-none-any.whl", "metadata": { "azext.isPreview": true, "azext.minCliCoreVersion": "2.24.0", @@ -16623,15 +17540,14 @@ "metadata_version": "2.0", "name": "k8s-extension", "summary": "Microsoft Azure Command-Line Tools K8s-extension Extension", - "version": "0.6.1" + "version": "0.7.1" }, - "sha256Digest": "42b366184ab6dd9f46bb44e7c0e10eace4f25f514f97dd1912552c6900f2fd9e" + "sha256Digest": "f1360a4c39efb470184c16d4b69273a46225bd86b9c4a463fcdd3ecbaddafc4e" }, { - "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.7.0-py3-none-any.whl", - "filename": "k8s_extension-0.7.0-py3-none-any.whl", + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.0.0-py3-none-any.whl", + "filename": "k8s_extension-1.0.0-py3-none-any.whl", "metadata": { - "azext.isPreview": true, "azext.minCliCoreVersion": "2.24.0", "classifiers": [ "Development Status :: 4 - Beta", @@ -16666,15 +17582,14 @@ "metadata_version": "2.0", "name": "k8s-extension", "summary": "Microsoft Azure Command-Line Tools K8s-extension Extension", - "version": "0.7.0" + "version": "1.0.0" }, - "sha256Digest": "8721d18318523e58de9bec2630b713c1c860f910ee1f9d05f80dbc6fd178f9ca" + "sha256Digest": "039cd89acff0e63516a7235c2587f4e06a750b9f9d3e94a5399de21c17964cd0" }, { - "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.7.1-py3-none-any.whl", - "filename": "k8s_extension-0.7.1-py3-none-any.whl", + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.0.1-py3-none-any.whl", + "filename": "k8s_extension-1.0.1-py3-none-any.whl", "metadata": { - "azext.isPreview": true, "azext.minCliCoreVersion": "2.24.0", "classifiers": [ "Development Status :: 4 - Beta", @@ -16709,13 +17624,13 @@ "metadata_version": "2.0", "name": "k8s-extension", "summary": "Microsoft Azure Command-Line Tools K8s-extension Extension", - "version": "0.7.1" + "version": "1.0.1" }, - "sha256Digest": "f1360a4c39efb470184c16d4b69273a46225bd86b9c4a463fcdd3ecbaddafc4e" + "sha256Digest": "6f6ecdffa02759bacd523a9804e2c7e9e96603f3de57c62ba609b3bdb6c2a3ad" }, { - "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.0.0-py3-none-any.whl", - "filename": "k8s_extension-1.0.0-py3-none-any.whl", + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.0.2-py3-none-any.whl", + "filename": "k8s_extension-1.0.2-py3-none-any.whl", "metadata": { "azext.minCliCoreVersion": "2.24.0", "classifiers": [ @@ -16751,9 +17666,9 @@ "metadata_version": "2.0", "name": "k8s-extension", "summary": "Microsoft Azure Command-Line Tools K8s-extension Extension", - "version": "1.0.0" + "version": "1.0.2" }, - "sha256Digest": "039cd89acff0e63516a7235c2587f4e06a750b9f9d3e94a5399de21c17964cd0" + "sha256Digest": "4e911e5b1c750700a0ac713fd3ec3cac97778ade4cb4d2cecf1342200f766851" } ], "k8sconfiguration": [ @@ -18785,6 +19700,58 @@ "version": "2.0.2" }, "sha256Digest": "80dc61c8d6778a262b882dc0c5e05b77551e64d338d90fbe8a7eb8c731f6814c" + }, + { + "downloadUrl": "https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.3-py3-none-any.whl", + "filename": "ml-2.0.3-py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.15.0", + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices" + } + } + }, + "extras": [], + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "ml", + "run_requires": [ + { + "requires": [ + "azure-common (<2.0.0,>=1.1)", + "azure-identity", + "azure-storage-blob (<=12.9.0,>12.0.0b4)", + "azure-storage-file-share (<13.0.0)", + "cryptography (<=3.3.2)", + "docker (>=4.0.0,~=5.0.0)", + "isodate", + "marshmallow (<4.0.0,>=3.5)", + "pathspec (==0.8.*)", + "pydash (<=4.9.0)", + "pyjwt (<2.0.0)", + "tqdm", + "typing-extensions (<4.0.0,>=3.10)" + ] + } + ], + "summary": "Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces Extension", + "version": "2.0.3" + }, + "sha256Digest": "3eac9a5c8ee9e78151d9bbcc54eb978a1987f6fd7c1beef0b4a575113f0a4466" } ], "monitor-control-service": [ @@ -20135,6 +21102,92 @@ "version": "0.9.0" }, "sha256Digest": "214d6303c3381a8a328a15ca3bb8f77f68c36cf71d83cdaa41be87b2af6e28fe" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.10.0-py3-none-any.whl", + "filename": "quantum-0.10.0-py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.23.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "que-contacts@microsoft.com", + "name": "Microsoft Corporation, Quantum Team", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "quantum", + "summary": "Microsoft Azure Command-Line Tools Quantum Extension", + "version": "0.10.0" + }, + "sha256Digest": "c280a1eda5a9eee853239cac1ac2c610d159d59be5ac29fa7d5a4a1a3d7cbbde" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.11.0-py3-none-any.whl", + "filename": "quantum-0.11.0-py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.23.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "que-contacts@microsoft.com", + "name": "Microsoft Corporation, Quantum Team", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "quantum", + "summary": "Microsoft Azure Command-Line Tools Quantum Extension", + "version": "0.11.0" + }, + "sha256Digest": "96d85f1c7675e4d8a42384de348cad66e80343b6ae26142ebdb19d753c45fc2e" } ], "rdbms-connect": [ @@ -20402,6 +21455,59 @@ "version": "0.1.4" }, "sha256Digest": "674a880f508d649f75d426c5b9700f7283079c1b9de2e5bccf31edbce907b838" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-1.0.0-py2.py3-none-any.whl", + "filename": "rdbms_connect-1.0.0-py2.py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.19.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect" + } + } + }, + "extras": [], + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "rdbms-connect", + "run_requires": [ + { + "requires": [ + "mycli (==1.22.2)", + "pgcli (==3.0.0)", + "setproctitle (==1.2.2)" + ] + } + ], + "summary": "Support for testing connection to Azure Database for MySQL & PostgreSQL servers.", + "version": "1.0.0" + }, + "sha256Digest": "c1830f07c8829025597bf60db45b04c6b854c76d598235e71e6c7ff9626ba100" } ], "redisenterprise": [ @@ -22933,13 +24039,56 @@ "metadata_version": "2.0", "name": "spring-cloud", "summary": "Microsoft Azure Command-Line Tools spring-cloud Extension", - "version": "2.11.1" + "version": "2.11.1" + }, + "sha256Digest": "0646e9965895f9ff1640d461049c2249f2a67036c4bac60ff90f8ba792c6e95f" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.11.2-py3-none-any.whl", + "filename": "spring_cloud-2.11.2-py3-none-any.whl", + "metadata": { + "azext.isPreview": false, + "azext.minCliCoreVersion": "2.25.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "spring-cloud", + "summary": "Microsoft Azure Command-Line Tools spring-cloud Extension", + "version": "2.11.2" }, - "sha256Digest": "0646e9965895f9ff1640d461049c2249f2a67036c4bac60ff90f8ba792c6e95f" + "sha256Digest": "11d01765c886a387ab622580e4e7b9476a86be5ee84a4d4af7120ef189752f32" }, { - "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.11.2-py3-none-any.whl", - "filename": "spring_cloud-2.11.2-py3-none-any.whl", + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.12.0-py3-none-any.whl", + "filename": "spring_cloud-2.12.0-py3-none-any.whl", "metadata": { "azext.isPreview": false, "azext.minCliCoreVersion": "2.25.0", @@ -22976,13 +24125,13 @@ "metadata_version": "2.0", "name": "spring-cloud", "summary": "Microsoft Azure Command-Line Tools spring-cloud Extension", - "version": "2.11.2" + "version": "2.12.0" }, - "sha256Digest": "11d01765c886a387ab622580e4e7b9476a86be5ee84a4d4af7120ef189752f32" + "sha256Digest": "5865ebb83df7fe713a5ad7d2687b5b1b0c5668b24a774e80e04c303d9b8e6f9e" }, { - "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.12.0-py3-none-any.whl", - "filename": "spring_cloud-2.12.0-py3-none-any.whl", + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.12.1-py3-none-any.whl", + "filename": "spring_cloud-2.12.1-py3-none-any.whl", "metadata": { "azext.isPreview": false, "azext.minCliCoreVersion": "2.25.0", @@ -23019,9 +24168,9 @@ "metadata_version": "2.0", "name": "spring-cloud", "summary": "Microsoft Azure Command-Line Tools spring-cloud Extension", - "version": "2.12.0" + "version": "2.12.1" }, - "sha256Digest": "5865ebb83df7fe713a5ad7d2687b5b1b0c5668b24a774e80e04c303d9b8e6f9e" + "sha256Digest": "a46561af3afdca63d0b74bb97242e83e4b187601832b8531f915d7604964c430" } ], "ssh": [ @@ -23332,6 +24481,57 @@ "version": "0.1.8" }, "sha256Digest": "bd01a2dfb72acb547161338de894395db8b939e892ce19e4ec99fa3ce18f78f9" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.0.0-py3-none-any.whl", + "filename": "ssh-1.0.0-py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.4.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh" + } + } + }, + "extras": [], + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "ssh", + "run_requires": [ + { + "requires": [ + "cryptography" + ] + } + ], + "summary": "SSH into Azure VMs using RBAC and AAD OpenSSH Certificates", + "version": "1.0.0" + }, + "sha256Digest": "12073d047fbedb7daca67c7ccbb3b063d0c82c01d02d00a28b9c560702fda099" } ], "stack-hci": [ @@ -24852,6 +26052,49 @@ "version": "0.1.0" }, "sha256Digest": "e3a9048f289d1b870637e4b13c0ee1e877827834e1f71d31cb8161bacc441388" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/stream_analytics-0.1.1-py3-none-any.whl", + "filename": "stream_analytics-0.1.1-py3-none-any.whl", + "metadata": { + "azext.isExperimental": true, + "azext.minCliCoreVersion": "2.15.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/stream-analytics" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "stream-analytics", + "summary": "Microsoft Azure Command-Line Tools StreamAnalyticsManagementClient Extension", + "version": "0.1.1" + }, + "sha256Digest": "95fcd5a67813e6961026efcd5fce764ce968c15c1ae03ffd7854e6e0f6c8bebc" } ], "subscription": [ @@ -25497,6 +26740,49 @@ "version": "0.2.0" }, "sha256Digest": "4541fec0a7b0d16c394f295da92179b72ac8f4962b2f10676647ac8cdb2179d7" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-0.3.0-py3-none-any.whl", + "filename": "virtual_network_manager-0.3.0-py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.15.0", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/network-manager" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "virtual-network-manager", + "summary": "Microsoft Azure Command-Line Tools NetworkManagementClient Extension", + "version": "0.3.0" + }, + "sha256Digest": "7744f7fabb5b4b74a6d70734f125172bd660efe521a4e8f624fdd4a0be7a2bac" } ], "virtual-network-tap": [ @@ -26131,6 +27417,51 @@ "version": "0.2.10" }, "sha256Digest": "eb0afdcc23910d9e7ec5a55c511f0e67c5d8c0229d84eaaa821b72ccb2468c23" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.11-py2.py3-none-any.whl", + "filename": "virtual_wan-0.2.11-py2.py3-none-any.whl", + "metadata": { + "azext.isPreview": true, + "azext.minCliCoreVersion": "2.0.67", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "virtual-wan", + "summary": "Manage virtual WAN, hubs, VPN gateways and VPN sites.", + "version": "0.2.11" + }, + "sha256Digest": "35899c30c1a7e7dd43b36895deac4eb0accbb88c98d2e8c5c41dd985f732ee1b" } ], "vm-repair": [ @@ -26579,6 +27910,51 @@ "version": "0.3.8" }, "sha256Digest": "51499825455a4db3e4ede2a5abd31a28e8177f9bf66597c41dac0dc4851c41bb" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.9-py2.py3-none-any.whl", + "filename": "vm_repair-0.3.9-py2.py3-none-any.whl", + "metadata": { + "azext.isPreview": false, + "azext.minCliCoreVersion": "2.0.67", + "classifiers": [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "License :: OSI Approved :: MIT License" + ], + "extensions": { + "python.details": { + "contacts": [ + { + "email": "caiddev@microsoft.com", + "name": "Microsoft Corporation", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "vm-repair", + "summary": "Auto repair commands to fix VMs.", + "version": "0.3.9" + }, + "sha256Digest": "d8a13d094c4900114a46778bb7c34f567401850193616d00dd06e02f415ceb81" } ], "vmware": [ @@ -26777,6 +28153,39 @@ "version": "3.2.0" }, "sha256Digest": "4d557e5fbd5cc8cfc80a9f6085d5503007a0955160e264b816f9e6a6a7332580" + }, + { + "downloadUrl": "https://azcliprod.blob.core.windows.net/cli-extensions/vmware-4.0.1-py2.py3-none-any.whl", + "filename": "vmware-4.0.1-py2.py3-none-any.whl", + "metadata": { + "azext.isPreview": false, + "azext.minCliCoreVersion": "2.11.0", + "description_content_type": "text/markdown", + "extensions": { + "python.details": { + "contacts": [ + { + "email": "azpycli@microsoft.com", + "name": "Microsoft", + "role": "author" + } + ], + "document_names": { + "description": "DESCRIPTION.rst" + }, + "project_urls": { + "Home": "https://github.com/Azure/az-vmware-cli" + } + } + }, + "generator": "bdist_wheel (0.30.0)", + "license": "MIT", + "metadata_version": "2.0", + "name": "vmware", + "summary": "Azure VMware Solution commands.", + "version": "4.0.1" + }, + "sha256Digest": "93008844fbc5b157d17470738899e9f8cd0d09be2970cd045da10b8f8dac360a" } ], "webapp": [ diff --git a/src/internet-analyzer/azext_internet_analyzer/tests/latest/test_internet-analyzer_scenario.py b/src/internet-analyzer/azext_internet_analyzer/tests/latest/test_internet-analyzer_scenario.py index cf89dafa115..a72607a38da 100644 --- a/src/internet-analyzer/azext_internet_analyzer/tests/latest/test_internet-analyzer_scenario.py +++ b/src/internet-analyzer/azext_internet_analyzer/tests/latest/test_internet-analyzer_scenario.py @@ -6,7 +6,7 @@ import os import unittest -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) diff --git a/src/ip-group/azext_ip_group/tests/latest/test_ip_group_scenario.py b/src/ip-group/azext_ip_group/tests/latest/test_ip_group_scenario.py index 2166c22fe3a..ea4a9433aa6 100644 --- a/src/ip-group/azext_ip_group/tests/latest/test_ip_group_scenario.py +++ b/src/ip-group/azext_ip_group/tests/latest/test_ip_group_scenario.py @@ -6,7 +6,7 @@ import os import unittest -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) diff --git a/src/k8s-configuration/HISTORY.rst b/src/k8s-configuration/HISTORY.rst index 830db4ca2e2..82acdf8253f 100644 --- a/src/k8s-configuration/HISTORY.rst +++ b/src/k8s-configuration/HISTORY.rst @@ -3,6 +3,11 @@ Release History =============== +1.3.0 +++++++++++++++++++ +* Add `deployed-object` command group for showing deployed Flux objects from configuration +* Show extension error when `microsoft.flux` extension is in a failed state + 1.2.0 ++++++++++++++++++ * Add Flux v2 support with command subgroups diff --git a/src/k8s-configuration/azext_k8s_configuration/_help.py b/src/k8s-configuration/azext_k8s_configuration/_help.py index 91c50291288..062309ce3b1 100644 --- a/src/k8s-configuration/azext_k8s_configuration/_help.py +++ b/src/k8s-configuration/azext_k8s_configuration/_help.py @@ -6,12 +6,16 @@ from knack.help_files import helps # pylint: disable=unused-import -helps['k8s-configuration'] = """ +helps[ + "k8s-configuration" +] = """ type: group short-summary: Commands to manage resources from Microsoft.KubernetesConfiguration. """ -helps['k8s-configuration create'] = """ +helps[ + "k8s-configuration create" +] = """ type: command short-summary: Create a Flux v1 Kubernetes configuration (This command is for Flux v1, to use the newer Flux v2, run "az k8s-configuration flux create"). examples: @@ -26,7 +30,9 @@ --ssh-known-hosts '' --ssh-known-hosts-file '' """ -helps['k8s-configuration list'] = """ +helps[ + "k8s-configuration list" +] = """ type: command short-summary: List Flux v1 Kubernetes configurations (This command is for Flux v1, to use the newer Flux v2, run "az k8s-configuration flux list"). examples: @@ -36,7 +42,9 @@ --cluster-type connectedClusters """ -helps['k8s-configuration delete'] = """ +helps[ + "k8s-configuration delete" +] = """ type: command short-summary: Delete a Flux v1 Kubernetes configuration (This command is for Flux v1, to use the newer Flux v2, run "az k8s-configuration flux delete"). examples: @@ -46,7 +54,9 @@ --cluster-type connectedClusters --name MyConfigurationName """ -helps['k8s-configuration show'] = """ +helps[ + "k8s-configuration show" +] = """ type: command short-summary: Show details of a Flux v1 Kubernetes configuration (This command is for Flux v1, to use the newer Flux v2, run "az k8s-configuration flux show"). examples: @@ -56,16 +66,20 @@ --cluster-type connectedClusters --name MyConfigurationName """ -helps['k8s-configuration flux'] = """ +helps[ + "k8s-configuration flux" +] = """ type: group short-summary: Commands to manage Flux v2 Kubernetes configurations. """ -helps['k8s-configuration flux create'] = """ +helps[ + "k8s-configuration flux create" +] = """ type: command - short-summary: Create a Kubernetes Flux v2 Configuration. + short-summary: Create a Flux v2 Kubernetes configuration. examples: - - name: Create a Kubernetes v2 Flux Configuration + - name: Create a Flux v2 Kubernetes configuration text: |- az k8s-configuration flux create --resource-group my-resource-group \\ --cluster-name mycluster --cluster-type connectedClusters \\ @@ -74,11 +88,13 @@ --branch main --kustomization name=my-kustomization """ -helps['k8s-configuration flux update'] = """ +helps[ + "k8s-configuration flux update" +] = """ type: command - short-summary: Update a Kubernetes Flux v2 Configuration. + short-summary: Update a Flux v2 Kubernetes configuration. examples: - - name: Update a Kubernetes v2 Flux Configuration + - name: Update a Flux v2 Kubernetes configuration text: |- az k8s-configuration flux update --resource-group my-resource-group \\ --cluster-name mycluster --cluster-type connectedClusters --name myconfig \\ @@ -86,91 +102,141 @@ --kustomization name=my-kustomization path=./my/new-path """ -helps['k8s-configuration flux list'] = """ +helps[ + "k8s-configuration flux list" +] = """ type: command - short-summary: List Kubernetes Flux v2 Configurations. + short-summary: List all Flux v2 Kubernetes configurations. examples: - - name: List all Kubernetes Flux v2 Configurations on a cluster + - name: List Flux v2 Kubernetes configurations on a cluster text: |- az k8s-configuration flux list --resource-group my-resource-group \\ --cluster-name mycluster --cluster-type connectedClusters """ -helps['k8s-configuration flux show'] = """ +helps[ + "k8s-configuration flux show" +] = """ type: command - short-summary: Show a Kubernetes Flux v2 Configuration. + short-summary: Show a Flux v2 Kubernetes configuration. examples: - - name: Show details of a Kubernetes Flux v2 Configuration + - name: Show details of a Flux v2 Kubernetes configuration text: |- az k8s-configuration flux show --resource-group my-resource-group \\ --cluster-name mycluster --cluster-type connectedClusters --name myconfig """ -helps['k8s-configuration flux delete'] = """ +helps[ + "k8s-configuration flux delete" +] = """ type: command - short-summary: Delete a Kubernetes Flux v2 Configuration. + short-summary: Delete a Flux v2 Kubernetes configuration. examples: - - name: Delete an existing Kubernetes Flux v2 Configuration + - name: Delete an existing Flux v2 Kubernetes configuration text: |- az k8s-configuration flux delete --resource-group my-resource-group \\ --cluster-name mycluster --cluster-type connectedClusters --name myconfig """ -helps['k8s-configuration flux kustomization'] = """ +helps[ + "k8s-configuration flux kustomization" +] = """ type: group short-summary: Commands to manage Kustomizations associated with Flux v2 Kubernetes configurations. """ -helps['k8s-configuration flux kustomization create'] = """ +helps[ + "k8s-configuration flux kustomization create" +] = """ type: command - short-summary: Create a Kustomization associated with a Kubernetes Flux v2 Configuration. + short-summary: Create a Kustomization associated with a Flux v2 Kubernetes configuration. examples: - - name: Create a Kustomization associated wiht a Kubernetes v2 Flux Configuration + - name: Create a Kustomization associated with a Flux v2 Kubernetes configuration text: |- az k8s-configuration flux kustomization create --resource-group my-resource-group \\ --cluster-name mycluster --cluster-type connectedClusters --name myconfig \\ --kustomization-name my-kustomization-2 --path ./my/path --prune --force """ -helps['k8s-configuration flux kustomization update'] = """ +helps[ + "k8s-configuration flux kustomization update" +] = """ type: command - short-summary: Update a Kustomization associated with a Kubernetes Flux v2 Configuration. + short-summary: Update a Kustomization associated with a Flux v2 Kubernetes configuration. examples: - - name: Update a Kustomization associated with a Kubernetes v2 Flux Configuration + - name: Update a Kustomization associated with a Flux v2 Kubernetes configuration text: |- az k8s-configuration flux kustomization update --resource-group my-resource-group \\ --cluster-name mycluster --cluster-type connectedClusters --name myconfig \\ --kustomization-name my-kustomization --path ./my/new-path --prune --force """ -helps['k8s-configuration flux kustomization list'] = """ +helps[ + "k8s-configuration flux kustomization list" +] = """ type: command - short-summary: List Kustomizations associated with a Kubernetes Flux v2 Configuration. + short-summary: List Kustomizations associated with a Flux v2 Kubernetes configuration. examples: - - name: List all Kustomizations associated with a Kubernetes Flux v2 Configuration on a cluster + - name: List all Kustomizations associated with a Flux v2 Kubernetes configuration text: |- az k8s-configuration flux kustomization list --resource-group my-resource-group \\ --cluster-name mycluster --name myconfig --cluster-type connectedClusters """ -helps['k8s-configuration flux kustomization show'] = """ +helps[ + "k8s-configuration flux kustomization show" +] = """ type: command - short-summary: Show a Kustomization associated with a Flux v2 Configuration. + short-summary: Show a Kustomization associated with a Flux v2 Kubernetes configuration. examples: - - name: Show details of a Kustomization associated with a Kubernetes Flux v2 Configuration + - name: Show details of a Kustomization associated with a Flux v2 Kubernetes configuration text: |- az k8s-configuration flux kustomization show --resource-group my-resource-group \\ --cluster-name mycluster --cluster-type connectedClusters --name myconfig \\ --kustomization-name my-kustomization """ -helps['k8s-configuration flux kustomization delete'] = """ +helps[ + "k8s-configuration flux kustomization delete" +] = """ type: command - short-summary: Delete a Kustomization associated with a Kubernetes Flux v2 Configuration. + short-summary: Delete a Kustomization associated with a Flux v2 Kubernetes configuration. examples: - - name: Delete an existing Kustomization associated with a Kubernetes Flux v2 Configuration + - name: Delete an existing Kustomization associated with a Flux v2 Kubernetes configuration text: |- az k8s-configuration flux kustomization delete --resource-group my-resource-group \\ --cluster-name mycluster --cluster-type connectedClusters --name myconfig \\ --kustomization-name my-kustomization """ + +helps[ + "k8s-configuration flux deployed-object" +] = """ + type: group + short-summary: Commands to see deployed objects associated with Flux v2 Kubernetes configurations. +""" + +helps[ + "k8s-configuration flux deployed-object list" +] = """ + type: command + short-summary: List deployed objects associated with a Flux v2 Kubernetes configuration. + examples: + - name: List all deployed objects associated with a Flux v2 Kubernetes configuration + text: |- + az k8s-configuration flux deployed-object list --resource-group my-resource-group \\ + --cluster-name mycluster --name myconfig --cluster-type connectedClusters +""" + +helps[ + "k8s-configuration flux deployed-object show" +] = """ + type: command + short-summary: Show a deployed object associated with a Flux v2 Kubernetes configuration. + examples: + - name: Show details of a deployed object associated with a Flux v2 Kubernetes configuration + text: |- + az k8s-configuration flux deployed-object show --resource-group my-resource-group \\ + --cluster-name mycluster --cluster-type connectedClusters --name myconfig \\ + --object-name my-object --object-namespace my-namespace --object-kind GitRepository +""" diff --git a/src/k8s-configuration/azext_k8s_configuration/_params.py b/src/k8s-configuration/azext_k8s_configuration/_params.py index ed96f429ec5..6695f58f441 100644 --- a/src/k8s-configuration/azext_k8s_configuration/_params.py +++ b/src/k8s-configuration/azext_k8s_configuration/_params.py @@ -118,6 +118,15 @@ def load_arguments(self, _): options_list=['--yes', '-y'], help='Do not prompt for confirmation') + with self.argument_context('k8s-configuration flux deployed-object show') as c: + c.argument('object_name', + help='Name of the object deployed by the configuration on the cluster.') + c.argument('object_namespace', + help='Namespace of the object deployed by the configuration on the cluster.') + c.argument('object_kind', + arg_type=get_enum_type(['GitRepository', 'Bucket', 'HelmRepository', 'HelmChart', 'HelmRelease', 'Kustomization']), + help='Kind of the object deployed by the configuration on the cluster.') + with self.argument_context('k8s-configuration') as c: c.argument('name', options_list=['--name', '-n'], diff --git a/src/k8s-configuration/azext_k8s_configuration/commands.py b/src/k8s-configuration/azext_k8s_configuration/commands.py index ad471c24069..c14e162c4bd 100644 --- a/src/k8s-configuration/azext_k8s_configuration/commands.py +++ b/src/k8s-configuration/azext_k8s_configuration/commands.py @@ -10,6 +10,8 @@ k8s_configuration_sourcecontrol_client ) from .format import ( + fluxconfig_deployed_object_list_table_format, + fluxconfig_deployed_object_show_table_format, fluxconfig_list_table_format, fluxconfig_show_table_format, fluxconfig_kustomization_list_table_format, @@ -44,6 +46,10 @@ def load_command_table(self, _): g.custom_command('list', 'flux_config_list_kustomization', table_transformer=fluxconfig_kustomization_list_table_format) g.custom_show_command('show', 'flux_config_show_kustomization', table_transformer=fluxconfig_kustomization_show_table_format) + with self.command_group('k8s-configuration flux deployed-object', k8s_configuration_fluxconfig_sdk, client_factory=k8s_configuration_fluxconfig_client, is_preview=True) as g: + g.custom_command('list', 'flux_config_list_deployed_object', table_transformer=fluxconfig_deployed_object_list_table_format) + g.custom_show_command('show', 'flux_config_show_deployed_object', table_transformer=fluxconfig_deployed_object_show_table_format) + with self.command_group('k8s-configuration', k8s_configuration_sourcecontrol_sdk, client_factory=k8s_configuration_sourcecontrol_client) as g: g.custom_command('create', 'sourcecontrol_create', deprecate_info=self.deprecate(redirect='k8s-configuration flux create')) g.custom_command('list', 'sourcecontrol_list', table_transformer=sourcecontrol_list_table_format, deprecate_info=self.deprecate(redirect='k8s-configuration flux list')) diff --git a/src/k8s-configuration/azext_k8s_configuration/consts.py b/src/k8s-configuration/azext_k8s_configuration/consts.py index f008ba2e21c..606e766a5a2 100644 --- a/src/k8s-configuration/azext_k8s_configuration/consts.py +++ b/src/k8s-configuration/azext_k8s_configuration/consts.py @@ -64,6 +64,9 @@ SHOW_KUSTOMIZATION_NO_EXIST_ERROR = "Error! Kustomization with name '{0}' does not exist on configuration '{1}'." SHOW_KUSTOMIZATION_NO_EXIST_HELP = "You can view all kustomizations on a configuration with 'az k8s-configuration flux kustomization list'" +SHOW_DEPLOYED_OBJECT_NO_EXIST_ERROR = "Error! Deployed object with name '{0}', namespace '{1}', and kind '{2}' does not exist on configuration '{3}'." +SHOW_DEPLOYED_OBJECT_NO_EXIST_HELP = "You can view all deployed objects on a configuration with 'az k8s-configuration flux deployed-object list'" + SSH_PRIVATE_KEY_WITH_HTTP_URL_ERROR = "Error! An --ssh-private-key cannot be used with an http(s) url" SSH_PRIVATE_KEY_WITH_HTTP_URL_HELP = "Verify the url provided is a valid ssh url and not an http(s) url" diff --git a/src/k8s-configuration/azext_k8s_configuration/custom.py b/src/k8s-configuration/azext_k8s_configuration/custom.py index 91145605887..d14836fc077 100644 --- a/src/k8s-configuration/azext_k8s_configuration/custom.py +++ b/src/k8s-configuration/azext_k8s_configuration/custom.py @@ -121,6 +121,20 @@ def flux_config_show_kustomization(cmd, client, resource_group_name, cluster_typ return provider.show_kustomization(resource_group_name, cluster_type, cluster_name, name, kustomization_name) +def flux_config_list_deployed_object(cmd, client, resource_group_name, cluster_type, cluster_name, name): + + provider = FluxConfigurationProvider(cmd) + return provider.list_deployed_object(resource_group_name, cluster_type, cluster_name, name) + + +def flux_config_show_deployed_object(cmd, client, resource_group_name, cluster_type, cluster_name, name, + object_name, object_namespace, object_kind): + + provider = FluxConfigurationProvider(cmd) + return provider.show_deployed_object(resource_group_name, cluster_type, cluster_name, name, + object_name, object_namespace, object_kind) + + def flux_config_delete(cmd, client, resource_group_name, cluster_type, cluster_name, name, force=False, no_wait=False, yes=False): provider = FluxConfigurationProvider(cmd) diff --git a/src/k8s-configuration/azext_k8s_configuration/format.py b/src/k8s-configuration/azext_k8s_configuration/format.py index 2fd2b60bdb2..954a661b5fd 100644 --- a/src/k8s-configuration/azext_k8s_configuration/format.py +++ b/src/k8s-configuration/azext_k8s_configuration/format.py @@ -16,14 +16,16 @@ def sourcecontrol_show_table_format(result): def __get_sourcecontrolconfig_table_row(result): - return OrderedDict([ - ('name', result['name']), - ('repositoryUrl', result['repositoryUrl']), - ('operatorName', result['operatorInstanceName']), - ('operatorNamespace', result['operatorNamespace']), - ('scope', result['operatorScope']), - ('provisioningState', result['provisioningState']) - ]) + return OrderedDict( + [ + ("name", result["name"]), + ("repositoryUrl", result["repositoryUrl"]), + ("operatorName", result["operatorInstanceName"]), + ("operatorNamespace", result["operatorNamespace"]), + ("scope", result["operatorScope"]), + ("provisioningState", result["provisioningState"]), + ] + ) def fluxconfig_list_table_format(results): @@ -35,14 +37,16 @@ def fluxconfig_show_table_format(result): def __get_fluxconfig_table_row(result): - return OrderedDict([ - ('name', result['name']), - ('namespace', result['namespace']), - ('scope', result['scope']), - ('provisioningState', result['provisioningState']), - ('complianceState', result['complianceState']), - ('lastSourceSyncedAt', result['lastSourceSyncedAt']), - ]) + return OrderedDict( + [ + ("namespace", result["namespace"]), + ("name", result["name"]), + ("scope", result["scope"]), + ("provisioningState", result["provisioningState"]), + ("complianceState", result["complianceState"]), + ("lastSourceSyncedAt", result["lastSourceSyncedAt"]), + ] + ) def fluxconfig_kustomization_list_table_format(results): @@ -55,16 +59,45 @@ def fluxconfig_kustomization_show_table_format(results): def __get_fluxconfig_kustomization_table_row(key, value): deps = [] - for dep in value.get('dependsOn') or []: - if dep.get('kustomizationName'): - deps.append(dep['kustomizationName']) - - return OrderedDict([ - ('name', key), - ('path', value['path']), - ('dependsOn', ','.join(deps)), - ('syncInterval', format_duration(value['syncIntervalInSeconds'])), - ('timeout', format_duration(value['timeoutInSeconds'])), - ('prune', value['prune']), - ('force', value['force']) - ]) + for dep in value.get("dependsOn") or []: + if dep.get("kustomizationName"): + deps.append(dep["kustomizationName"]) + + return OrderedDict( + [ + ("name", key), + ("path", value["path"]), + ("dependsOn", ",".join(deps)), + ("syncInterval", format_duration(value["syncIntervalInSeconds"])), + ("timeout", format_duration(value["timeoutInSeconds"])), + ("prune", value["prune"]), + ("force", value["force"]), + ] + ) + + +def fluxconfig_deployed_object_list_table_format(results): + return [__get_fluxconfig_deployed_object_table_row(result) for result in results] + + +def fluxconfig_deployed_object_show_table_format(result): + return __get_fluxconfig_deployed_object_table_row(result) + + +def __get_fluxconfig_deployed_object_table_row(result): + message = "None" + for condition in result.get("statusConditions") or []: + if condition.get("type") == "Ready": + message = condition.get("message") + if len(message) > 60: + message = message[:60] + "..." + break + return OrderedDict( + [ + ("kind", result["kind"]), + ("namespace", result["namespace"]), + ("name", result["name"]), + ("complianceState", result["complianceState"]), + ("message", message), + ] + ) diff --git a/src/k8s-configuration/azext_k8s_configuration/providers/FluxConfigurationProvider.py b/src/k8s-configuration/azext_k8s_configuration/providers/FluxConfigurationProvider.py index 5275679545b..9bc3404c7fa 100644 --- a/src/k8s-configuration/azext_k8s_configuration/providers/FluxConfigurationProvider.py +++ b/src/k8s-configuration/azext_k8s_configuration/providers/FluxConfigurationProvider.py @@ -336,6 +336,26 @@ def show_kustomization(self, resource_group_name, cluster_type, cluster_name, na ) return {kustomization_name: current_config.kustomizations[kustomization_name]} + def list_deployed_object(self, resource_group_name, cluster_type, cluster_name, name): + # Determine ClusterRP + cluster_rp = get_cluster_rp(cluster_type) + current_config = self.client.get(resource_group_name, cluster_rp, cluster_type, cluster_name, name) + return current_config.statuses + + def show_deployed_object(self, resource_group_name, cluster_type, cluster_name, name, + object_name, object_namespace, object_kind): + # Determine ClusterRP + cluster_rp = get_cluster_rp(cluster_type) + current_config = self.client.get(resource_group_name, cluster_rp, cluster_type, cluster_name, name) + + for status in current_config.statuses: + if status.name == object_name and status.namespace == object_namespace and status.kind == object_kind: + return status + raise ValidationError( + consts.SHOW_DEPLOYED_OBJECT_NO_EXIST_ERROR.format(object_name, object_namespace, object_kind, name), + consts.SHOW_DEPLOYED_OBJECT_NO_EXIST_HELP + ) + def delete(self, resource_group_name, cluster_type, cluster_name, name, force, no_wait, yes): # Confirmation message for deletes user_confirmation_factory(self.cmd, yes) @@ -413,6 +433,9 @@ def _validate_extension_install(self, resource_group_name, cluster_rp, cluster_t consts.FLUX_EXTENSION_CREATING_HELP ) elif flux_extension.provisioning_state != consts.SUCCEEDED: + # Print the error detail so the user know how to fix it + if flux_extension.error_detail: + logger.error('%s %s', flux_extension.error_detail.code, flux_extension.error_detail.message) raise DeploymentError( consts.FLUX_EXTENSION_NOT_SUCCEEDED_OR_CREATING_ERROR, consts.FLUX_EXTENSION_NOT_SUCCEEDED_OR_CREATING_HELP diff --git a/src/k8s-configuration/setup.py b/src/k8s-configuration/setup.py index 048614fdd87..a3877af5ffe 100644 --- a/src/k8s-configuration/setup.py +++ b/src/k8s-configuration/setup.py @@ -14,7 +14,7 @@ from distutils import log as logger logger.warn("Wheel is not available, disabling bdist_wheel hook") -VERSION = '1.2.0' +VERSION = '1.3.0' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers diff --git a/src/k8s-extension/HISTORY.rst b/src/k8s-extension/HISTORY.rst index f9012d4007f..c2c7f13cbef 100644 --- a/src/k8s-extension/HISTORY.rst +++ b/src/k8s-extension/HISTORY.rst @@ -3,6 +3,17 @@ Release History =============== +1.0.2 +++++++++++++++++++ +* Update api-version for calls to Microsoft.ResourceConnector to 2021-10-31-preview +* Update api-version for calls to Microsoft.ContainerService to 2021-10-01 +* Update api-version for calls to Microsoft.Kubernetes to 2021-10-01 +* microsoft.azureml.kubernetes: Add one more prompt for amlarc extension update + +1.0.1 +++++++++++++++++++ +* microsoft.azureml.kubernetes: Retrieve relay and service bus connection string when update the configuration protected settings of the extension. + 1.0.0 ++++++++++++++++++ * Switch to GA api-version of Extensions (2021-09-01) diff --git a/src/k8s-extension/azext_k8s_extension/consts.py b/src/k8s-extension/azext_k8s_extension/consts.py index 350344bc53a..dff2e32b886 100644 --- a/src/k8s-extension/azext_k8s_extension/consts.py +++ b/src/k8s-extension/azext_k8s_extension/consts.py @@ -4,8 +4,20 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -EXTENSION_NAME = 'k8s-extension' +EXTENSION_NAME = "k8s-extension" EXTENSION_PACKAGE_NAME = "azext_k8s_extension" -PROVIDER_NAMESPACE = 'Microsoft.KubernetesConfiguration' +PROVIDER_NAMESPACE = "Microsoft.KubernetesConfiguration" REGISTERED = "Registered" -DF_RM_HOSTNAME = 'api-dogfood.resources.windows-int.net' +DF_RM_HOSTNAME = "api-dogfood.resources.windows-int.net" + +CONNECTED_CLUSTER_RP = "Microsoft.Kubernetes" +MANAGED_CLUSTER_RP = "Microsoft.ContainerService" +APPLIANCE_RP = "Microsoft.ResourceConnector" + +CONNECTED_CLUSTER_TYPE = "connectedclusters" +MANAGED_CLUSTER_TYPE = "managedclusters" +APPLIANCE_TYPE = "appliances" + +CONNECTED_CLUSTER_API_VERSION = "2021-10-01" +MANAGED_CLUSTER_API_VERSION = "2021-10-01" +APPLIANCE_API_VERSION = "2021-10-31-preview" diff --git a/src/k8s-extension/azext_k8s_extension/custom.py b/src/k8s-extension/azext_k8s_extension/custom.py index f51b1a26c89..8f845333f3b 100644 --- a/src/k8s-extension/azext_k8s_extension/custom.py +++ b/src/k8s-extension/azext_k8s_extension/custom.py @@ -5,12 +5,18 @@ # pylint: disable=unused-argument,too-many-locals -import json -from urllib.parse import urlparse +from azext_k8s_extension.utils import ( + get_cluster_rp_api_version, + is_dogfood_cluster, + read_config_settings_file, +) from knack.log import get_logger -from azure.cli.core.azclierror import ResourceNotFoundError, MutuallyExclusiveArgumentError, \ - InvalidArgumentValueError, RequiredArgumentMissingError +from azure.cli.core.azclierror import ( + ResourceNotFoundError, + MutuallyExclusiveArgumentError, + RequiredArgumentMissingError, +) from azure.cli.core.commands.client_factory import get_subscription_id from azure.cli.core.util import sdk_no_wait from azure.core.exceptions import HttpResponseError @@ -22,7 +28,10 @@ from .partner_extensions.OpenServiceMesh import OpenServiceMesh from .partner_extensions.AzureMLKubernetes import AzureMLKubernetes from .partner_extensions.Dapr import Dapr -from .partner_extensions.DefaultExtension import DefaultExtension, user_confirmation_factory +from .partner_extensions.DefaultExtension import ( + DefaultExtension, + user_confirmation_factory, +) from . import consts from ._client_factory import cf_resources @@ -33,11 +42,11 @@ # A factory method to return the correct extension class based off of the extension name def ExtensionFactory(extension_name): extension_map = { - 'microsoft.azuremonitor.containers': ContainerInsights, - 'microsoft.azuredefender.kubernetes': AzureDefender, - 'microsoft.openservicemesh': OpenServiceMesh, - 'microsoft.azureml.kubernetes': AzureMLKubernetes, - 'microsoft.dapr': Dapr, + "microsoft.azuremonitor.containers": ContainerInsights, + "microsoft.azuredefender.kubernetes": AzureDefender, + "microsoft.openservicemesh": OpenServiceMesh, + "microsoft.azureml.kubernetes": AzureMLKubernetes, + "microsoft.dapr": Dapr, } # Return the extension if we find it in the map, else return the default @@ -45,14 +54,14 @@ def ExtensionFactory(extension_name): def show_k8s_extension(client, resource_group_name, cluster_name, name, cluster_type): - """Get an existing K8s Extension. - """ + """Get an existing K8s Extension.""" # Determine ClusterRP - cluster_rp = __get_cluster_rp(cluster_type) + cluster_rp, _ = get_cluster_rp_api_version(cluster_type) try: - extension = client.get(resource_group_name, - cluster_rp, cluster_type, cluster_name, name) + extension = client.get( + resource_group_name, cluster_rp, cluster_type, cluster_name, name + ) return extension except HttpResponseError as ex: # Customize the error message for resources not found @@ -60,46 +69,69 @@ def show_k8s_extension(client, resource_group_name, cluster_name, name, cluster_ # If Cluster not found if ex.message.__contains__("(ResourceNotFound)"): message = "{0} Verify that the cluster-type is correct and the resource exists.".format( - ex.message) + ex.message + ) # If Configuration not found - elif ex.message.__contains__("Operation returned an invalid status code 'Not Found'"): - message = "(ExtensionNotFound) The Resource {0}/{1}/{2}/Microsoft.KubernetesConfiguration/" \ - "extensions/{3} could not be found!".format( - cluster_rp, cluster_type, cluster_name, name) + elif ex.message.__contains__( + "Operation returned an invalid status code 'Not Found'" + ): + message = ( + "(ExtensionNotFound) The Resource {0}/{1}/{2}/Microsoft.KubernetesConfiguration/" + "extensions/{3} could not be found!".format( + cluster_rp, cluster_type, cluster_name, name + ) + ) else: message = ex.message raise ResourceNotFoundError(message) from ex raise ex -def create_k8s_extension(cmd, client, resource_group_name, cluster_name, name, cluster_type, - extension_type, scope=None, auto_upgrade_minor_version=None, release_train=None, - version=None, target_namespace=None, release_namespace=None, configuration_settings=None, - configuration_protected_settings=None, configuration_settings_file=None, - configuration_protected_settings_file=None, no_wait=False): - """Create a new Extension Instance. - """ +def create_k8s_extension( + cmd, + client, + resource_group_name, + cluster_name, + name, + cluster_type, + extension_type, + scope=None, + auto_upgrade_minor_version=None, + release_train=None, + version=None, + target_namespace=None, + release_namespace=None, + configuration_settings=None, + configuration_protected_settings=None, + configuration_settings_file=None, + configuration_protected_settings_file=None, + no_wait=False, +): + """Create a new Extension Instance.""" extension_type_lower = extension_type.lower() - cluster_rp = __get_cluster_rp(cluster_type) + cluster_rp, _ = get_cluster_rp_api_version(cluster_type) # Configuration Settings & Configuration Protected Settings if configuration_settings is not None and configuration_settings_file is not None: raise MutuallyExclusiveArgumentError( - 'Error! Both configuration-settings and configuration-settings-file cannot be provided.' + "Error! Both configuration-settings and configuration-settings-file cannot be provided." ) - if configuration_protected_settings is not None and configuration_protected_settings_file is not None: + if ( + configuration_protected_settings is not None + and configuration_protected_settings_file is not None + ): raise MutuallyExclusiveArgumentError( - 'Error! Both configuration-protected-settings and configuration-protected-settings-file ' - 'cannot be provided.' + "Error! Both configuration-protected-settings and configuration-protected-settings-file " + "cannot be provided." ) config_settings = {} config_protected_settings = {} # Get Configuration Settings from file if configuration_settings_file is not None: - config_settings = __read_config_settings_file(configuration_settings_file) + config_settings = read_config_settings_file(configuration_settings_file) if configuration_settings is not None: for dicts in configuration_settings: @@ -108,7 +140,9 @@ def create_k8s_extension(cmd, client, resource_group_name, cluster_name, name, c # Get Configuration Protected Settings from file if configuration_protected_settings_file is not None: - config_protected_settings = __read_config_settings_file(configuration_protected_settings_file) + config_protected_settings = read_config_settings_file( + configuration_protected_settings_file + ) if configuration_protected_settings is not None: for dicts in configuration_protected_settings: @@ -127,12 +161,29 @@ def create_k8s_extension(cmd, client, resource_group_name, cluster_name, name, c # Get the extension class based on the extension name extension_class = ExtensionFactory(extension_type_lower) extension_instance, name, create_identity = extension_class.Create( - cmd, client, resource_group_name, cluster_name, name, cluster_type, extension_type_lower, scope, - auto_upgrade_minor_version, release_train, version, target_namespace, release_namespace, config_settings, - config_protected_settings, configuration_settings_file, configuration_protected_settings_file) + cmd, + client, + resource_group_name, + cluster_name, + name, + cluster_type, + extension_type_lower, + scope, + auto_upgrade_minor_version, + release_train, + version, + target_namespace, + release_namespace, + config_settings, + config_protected_settings, + configuration_settings_file, + configuration_protected_settings_file, + ) # Common validations - __validate_version_and_auto_upgrade(extension_instance.version, extension_instance.auto_upgrade_minor_version) + __validate_version_and_auto_upgrade( + extension_instance.version, extension_instance.auto_upgrade_minor_version + ) __validate_scope_after_customization(extension_instance.scope) # Check that registration has been done on Microsoft.KubernetesConfiguration for the subscription @@ -141,50 +192,80 @@ def create_k8s_extension(cmd, client, resource_group_name, cluster_name, name, c # Create identity, if required # We don't create the identity if we are in DF if create_identity and not is_dogfood_cluster(cmd): - identity_object, location = __create_identity(cmd, resource_group_name, cluster_name, cluster_type, cluster_rp) + identity_object, location = __create_identity( + cmd, resource_group_name, cluster_name, cluster_type + ) if identity_object is not None and location is not None: - extension_instance.identity, extension_instance.location = identity_object, location + extension_instance.identity, extension_instance.location = ( + identity_object, + location, + ) # Try to create the resource - return sdk_no_wait(no_wait, client.begin_create, resource_group_name, - cluster_rp, cluster_type, cluster_name, name, extension_instance) + return sdk_no_wait( + no_wait, + client.begin_create, + resource_group_name, + cluster_rp, + cluster_type, + cluster_name, + name, + extension_instance, + ) def list_k8s_extension(client, resource_group_name, cluster_name, cluster_type): - cluster_rp = __get_cluster_rp(cluster_type) + cluster_rp, _ = get_cluster_rp_api_version(cluster_type) return client.list(resource_group_name, cluster_rp, cluster_type, cluster_name) -def update_k8s_extension(cmd, client, resource_group_name, cluster_name, name, cluster_type, - auto_upgrade_minor_version='', release_train='', version='', - configuration_settings=None, configuration_protected_settings=None, - configuration_settings_file=None, configuration_protected_settings_file=None, - no_wait=False, yes=False): - """Patch an existing Extension Instance. - """ - - if configuration_settings or \ - configuration_protected_settings or \ - configuration_settings_file or \ - configuration_protected_settings_file: - msg = ('Updating properties in --config-settings or --config-protected-settings may lead to undesirable state' - ' if the cluster extension type does not support it. Please refer to the documentation of the' - ' cluster extension service to check if updates to these properties is supported.' - ' Do you wish to proceed?') +def update_k8s_extension( + cmd, + client, + resource_group_name, + cluster_name, + name, + cluster_type, + auto_upgrade_minor_version="", + release_train="", + version="", + configuration_settings=None, + configuration_protected_settings=None, + configuration_settings_file=None, + configuration_protected_settings_file=None, + no_wait=False, + yes=False, +): + """Patch an existing Extension Instance.""" + + if ( + configuration_settings + or configuration_protected_settings + or configuration_settings_file + or configuration_protected_settings_file + ): + msg = ( + "Updating properties in --config-settings or --config-protected-settings may lead to undesirable state" + " if the cluster extension type does not support it. Please refer to the documentation of the" + " cluster extension service to check if updates to these properties is supported." + " Do you wish to proceed?" + ) user_confirmation_factory(cmd, yes, msg) # Determine ClusterRP - cluster_rp = __get_cluster_rp(cluster_type) + cluster_rp, _ = get_cluster_rp_api_version(cluster_type) # We need to determine the ExtensionType to call ExtensionFactory and create Extension class - extension = show_k8s_extension(client, resource_group_name, cluster_name, name, cluster_type) + extension = show_k8s_extension( + client, resource_group_name, cluster_name, name, cluster_type + ) extension_type_lower = extension.extension_type.lower() config_settings = {} config_protected_settings = {} # Get Configuration Settings from file if configuration_settings_file is not None: - config_settings = __read_config_settings_file(configuration_settings_file) + config_settings = read_config_settings_file(configuration_settings_file) if configuration_settings is not None: for dicts in configuration_settings: @@ -193,7 +274,9 @@ def update_k8s_extension(cmd, client, resource_group_name, cluster_name, name, c # Get Configuration Protected Settings from file if configuration_protected_settings_file is not None: - config_protected_settings = __read_config_settings_file(configuration_protected_settings_file) + config_protected_settings = read_config_settings_file( + configuration_protected_settings_file + ) if configuration_protected_settings is not None: for dicts in configuration_protected_settings: @@ -203,55 +286,89 @@ def update_k8s_extension(cmd, client, resource_group_name, cluster_name, name, c # Get the extension class based on the extension type extension_class = ExtensionFactory(extension_type_lower) - upd_extension = extension_class.Update(auto_upgrade_minor_version, release_train, version, - config_settings, config_protected_settings) - - return sdk_no_wait(no_wait, client.begin_update, resource_group_name, cluster_rp, cluster_type, - cluster_name, name, upd_extension) - - -def delete_k8s_extension(cmd, client, resource_group_name, cluster_name, name, cluster_type, - no_wait=False, yes=False, force=False): - """Delete an existing Kubernetes Extension. - """ + upd_extension = extension_class.Update( + cmd, + resource_group_name, + cluster_name, + auto_upgrade_minor_version, + release_train, + version, + config_settings, + config_protected_settings, + yes, + ) + + return sdk_no_wait( + no_wait, + client.begin_update, + resource_group_name, + cluster_rp, + cluster_type, + cluster_name, + name, + upd_extension, + ) + + +def delete_k8s_extension( + cmd, + client, + resource_group_name, + cluster_name, + name, + cluster_type, + no_wait=False, + yes=False, + force=False, +): + """Delete an existing Kubernetes Extension.""" # Determine ClusterRP - cluster_rp = __get_cluster_rp(cluster_type) + cluster_rp, _ = get_cluster_rp_api_version(cluster_type) extension = None try: - extension = client.get(resource_group_name, cluster_rp, cluster_type, cluster_name, name) + extension = client.get( + resource_group_name, cluster_rp, cluster_type, cluster_name, name + ) except HttpResponseError: - logger.warning("No extension with name '%s' found on cluster '%s', so nothing to delete", name, cluster_name) + logger.warning( + "No extension with name '%s' found on cluster '%s', so nothing to delete", + name, + cluster_name, + ) return None extension_class = ExtensionFactory(extension.extension_type.lower()) # If there is any custom delete logic, this will call the logic - extension_class.Delete(cmd, client, resource_group_name, cluster_name, - name, cluster_type, yes) - - return sdk_no_wait(no_wait, client.begin_delete, resource_group_name, - cluster_rp, cluster_type, cluster_name, name, force_delete=force) - - -def __create_identity(cmd, resource_group_name, cluster_name, cluster_type, cluster_rp): + extension_class.Delete( + cmd, client, resource_group_name, cluster_name, name, cluster_type, yes + ) + + return sdk_no_wait( + no_wait, + client.begin_delete, + resource_group_name, + cluster_rp, + cluster_type, + cluster_name, + name, + force_delete=force, + ) + + +def __create_identity(cmd, resource_group_name, cluster_name, cluster_type): subscription_id = get_subscription_id(cmd.cli_ctx) resources = cf_resources(cmd.cli_ctx, subscription_id) - cluster_resource_id = '/subscriptions/{0}/resourceGroups/{1}/providers/{2}/{3}/{4}'.format(subscription_id, - resource_group_name, - cluster_rp, - cluster_type, - cluster_name) - - if cluster_rp == 'Microsoft.Kubernetes': - parent_api_version = '2020-01-01-preview' - elif cluster_rp == 'Microsoft.ResourceConnector': - parent_api_version = '2020-09-15-privatepreview' - elif cluster_rp == 'Microsoft.ContainerService': + if cluster_type.lower() == consts.MANAGED_CLUSTER_TYPE: return None, None - else: - raise InvalidArgumentValueError( - "Error! Cluster type '{}' is not supported for extension identity".format(cluster_type) + + cluster_rp, parent_api_version = get_cluster_rp_api_version(cluster_type) + + cluster_resource_id = ( + "/subscriptions/{0}/resourceGroups/{1}/providers/{2}/{3}/{4}".format( + subscription_id, resource_group_name, cluster_rp, cluster_type, cluster_name ) + ) try: resource = resources.get_by_id(cluster_resource_id, parent_api_version) @@ -263,32 +380,25 @@ def __create_identity(cmd, resource_group_name, cluster_name, cluster_type, clus return Identity(type=identity_type), location -def __get_cluster_rp(cluster_type): - rp = "" - if cluster_type.lower() == 'connectedclusters': - rp = 'Microsoft.Kubernetes' - elif cluster_type.lower() == 'appliances': - rp = 'Microsoft.ResourceConnector' - elif cluster_type.lower() == '' or cluster_type.lower() == 'managedclusters': - rp = 'Microsoft.ContainerService' - else: - raise InvalidArgumentValueError("Error! Cluster type '{}' is not supported".format(cluster_type)) - return rp - - def __validate_scope_and_namespace(scope, release_namespace, target_namespace): - if scope == 'cluster': + if scope == "cluster": if target_namespace is not None: message = "When --scope is 'cluster', --target-namespace must not be given." raise MutuallyExclusiveArgumentError(message) else: if release_namespace is not None: - message = "When --scope is 'namespace', --release-namespace must not be given." + message = ( + "When --scope is 'namespace', --release-namespace must not be given." + ) raise MutuallyExclusiveArgumentError(message) def __validate_scope_after_customization(scope_obj: Scope): - if scope_obj is not None and scope_obj.namespace is not None and scope_obj.namespace.target_namespace is None: + if ( + scope_obj is not None + and scope_obj.namespace is not None + and scope_obj.namespace.target_namespace is None + ): message = "When --scope is 'namespace', --target-namespace must be given." raise RequiredArgumentMissingError(message) @@ -300,18 +410,3 @@ def __validate_version_and_auto_upgrade(version, auto_upgrade_minor_version): raise MutuallyExclusiveArgumentError(message) auto_upgrade_minor_version = False - - -def __read_config_settings_file(file_path): - try: - with open(file_path, 'r') as f: - settings = json.load(f) - if len(settings) == 0: - raise Exception("File {} is empty".format(file_path)) - return settings - except ValueError as ex: - raise Exception("File {} is not a valid JSON file".format(file_path)) from ex - - -def is_dogfood_cluster(cmd): - return urlparse(cmd.cli_ctx.cloud.endpoints.resource_manager).hostname == consts.DF_RM_HOSTNAME diff --git a/src/k8s-extension/azext_k8s_extension/partner_extensions/AzureMLKubernetes.py b/src/k8s-extension/azext_k8s_extension/partner_extensions/AzureMLKubernetes.py index d6de36bb246..d9c5f5e31f0 100644 --- a/src/k8s-extension/azext_k8s_extension/partner_extensions/AzureMLKubernetes.py +++ b/src/k8s-extension/azext_k8s_extension/partner_extensions/AzureMLKubernetes.py @@ -10,6 +10,7 @@ import copy from hashlib import md5 from typing import Any, Dict, List, Tuple +from azext_k8s_extension.utils import get_cluster_rp_api_version import azure.mgmt.relay import azure.mgmt.relay.models @@ -20,7 +21,7 @@ import azure.mgmt.storage.models import azure.mgmt.loganalytics import azure.mgmt.loganalytics.models -from azure.cli.core.azclierror import InvalidArgumentValueError, MutuallyExclusiveArgumentError +from azure.cli.core.azclierror import AzureResponseError, InvalidArgumentValueError, MutuallyExclusiveArgumentError, ResourceNotFoundError from azure.cli.core.commands.client_factory import get_mgmt_service_client, get_subscription_id from azure.mgmt.resource.locks.models import ManagementLockObject from knack.log import get_logger @@ -31,7 +32,8 @@ from ..vendored_sdks.models import ( Extension, Scope, - ScopeCluster + ScopeCluster, + PatchExtension ) logger = get_logger(__name__) @@ -45,7 +47,6 @@ def __init__(self): # constants for configuration settings. self.DEFAULT_RELEASE_NAMESPACE = 'azureml' self.RELAY_CONNECTION_STRING_KEY = 'relayserver.relayConnectionString' - self.RELAY_CONNECTION_STRING_DEPRECATED_KEY = 'RelayConnectionString' # for 3rd party deployment, will be deprecated self.HC_RESOURCE_ID_KEY = 'relayserver.hybridConnectionResourceID' self.RELAY_HC_NAME_KEY = 'relayserver.hybridConnectionName' self.SERVICE_BUS_CONNECTION_STRING_KEY = 'servicebus.connectionString' @@ -84,9 +85,12 @@ def __init__(self): # constants for existing AKS to AMLARC migration self.IS_AKS_MIGRATION = 'isAKSMigration' + # constants for others in Spec + self.installNvidiaDevicePlugin = 'installNvidiaDevicePlugin' + # reference mapping self.reference_mapping = { - self.RELAY_SERVER_CONNECTION_STRING: [self.RELAY_CONNECTION_STRING_KEY, self.RELAY_CONNECTION_STRING_DEPRECATED_KEY], + self.RELAY_SERVER_CONNECTION_STRING: [self.RELAY_CONNECTION_STRING_KEY], self.SERVICE_BUS_CONNECTION_STRING: [self.SERVICE_BUS_CONNECTION_STRING_KEY], 'cluster_name': ['clusterId', 'prometheus.prometheusSpec.externalLabels.cluster_name'], } @@ -108,7 +112,7 @@ def Create(self, cmd, client, resource_group_name, cluster_name, name, cluster_t # get the arc's location subscription_id = get_subscription_id(cmd.cli_ctx) - cluster_rp, parent_api_version = _get_cluster_rp_api_version(cluster_type) + cluster_rp, parent_api_version = get_cluster_rp_api_version(cluster_type) cluster_resource_id = '/subscriptions/{0}/resourceGroups/{1}/providers/{2}' \ '/{3}/{4}'.format(subscription_id, resource_group_name, cluster_rp, cluster_type, cluster_name) cluster_location = '' @@ -164,6 +168,156 @@ def Delete(self, cmd, client, resource_group_name, cluster_name, name, cluster_t "Please try to reinstall device plugins to fix this issue.") user_confirmation_factory(cmd, yes) + def Update(self, cmd, resource_group_name, cluster_name, auto_upgrade_minor_version, release_train, version, configuration_settings, + configuration_protected_settings, yes=False): + self.__normalize_config(configuration_settings, configuration_protected_settings) + + # Prompt message to ask customer to confirm again + if len(configuration_settings) > 0: + impactScenario = "" + messageBody = "" + disableTraining = False + disableInference = False + disableNvidiaDevicePlugin = False + hasAllowInsecureConnections = False + hasPrivateEndpointNodeport = False + hasPrivateEndpointILB = False + hasNodeSelector = False + enableLogAnalyticsWS = False + + enableTraining = _get_value_from_config_protected_config(self.ENABLE_TRAINING, configuration_settings, configuration_protected_settings) + if enableTraining is not None: + disableTraining = str(enableTraining).lower() == 'false' + if disableTraining: + messageBody = messageBody + "enableTraining from True to False,\n" + + enableInference = _get_value_from_config_protected_config(self.ENABLE_INFERENCE, configuration_settings, configuration_protected_settings) + if enableInference is not None: + disableInference = str(enableInference).lower() == 'false' + if disableInference: + messageBody = messageBody + "enableInference from True to False,\n" + + installNvidiaDevicePlugin = _get_value_from_config_protected_config(self.installNvidiaDevicePlugin, configuration_settings, configuration_protected_settings) + if installNvidiaDevicePlugin is not None: + disableNvidiaDevicePlugin = str(installNvidiaDevicePlugin).lower() == 'false' + if disableNvidiaDevicePlugin: + messageBody = messageBody + "installNvidiaDevicePlugin from True to False if Nvidia GPU is used,\n" + + allowInsecureConnections = _get_value_from_config_protected_config(self.allowInsecureConnections, configuration_settings, configuration_protected_settings) + if allowInsecureConnections is not None: + hasAllowInsecureConnections = True + messageBody = messageBody + "allowInsecureConnections\n" + + privateEndpointNodeport = _get_value_from_config_protected_config(self.privateEndpointNodeport, configuration_settings, configuration_protected_settings) + if privateEndpointNodeport is not None: + hasPrivateEndpointNodeport = True + messageBody = messageBody + "privateEndpointNodeport\n" + + privateEndpointILB = _get_value_from_config_protected_config(self.privateEndpointILB, configuration_settings, configuration_protected_settings) + if privateEndpointILB is not None: + hasPrivateEndpointILB = True + messageBody = messageBody + "privateEndpointILB\n" + + hasNodeSelector = _check_nodeselector_existed(configuration_settings, configuration_protected_settings) + if hasNodeSelector: + messageBody = messageBody + "nodeSelector. Update operation can't remove an existed node selector, but can update or add new ones.\n" + + logAnalyticsWS = _get_value_from_config_protected_config(self.LOG_ANALYTICS_WS_ENABLED, configuration_settings, configuration_protected_settings) + if logAnalyticsWS is not None: + enableLogAnalyticsWS = str(logAnalyticsWS).lower() == 'true' + if enableLogAnalyticsWS: + messageBody = messageBody + "To update logAnalyticsWS from False to True, please provide all original configurationProtectedSettings. Otherwise, those settings would be considered obsolete and deleted.\n" + + if disableTraining or disableNvidiaDevicePlugin or hasNodeSelector: + impactScenario = "jobs" + + if disableInference or disableNvidiaDevicePlugin or hasAllowInsecureConnections or hasPrivateEndpointNodeport or hasPrivateEndpointILB or hasNodeSelector: + if impactScenario == "": + impactScenario = "online endpoints and deployments" + else: + impactScenario = impactScenario + ", online endpoints and deployments" + + if impactScenario != "": + message = ("\nThe following configuration update will IMPACT your active Machine Learning " + impactScenario + + ". It will be the safe update if the cluster doesn't have active Machine Learning " + impactScenario + ".\n\n" + messageBody + "\nProceed?") + user_confirmation_factory(cmd, yes, message=message) + else: + if enableLogAnalyticsWS: + message = "\n" + messageBody + "\nProceed?" + user_confirmation_factory(cmd, yes, message=message) + + if len(configuration_protected_settings) > 0: + subscription_id = get_subscription_id(cmd.cli_ctx) + + if self.AZURE_LOG_ANALYTICS_CONNECTION_STRING not in configuration_protected_settings: + try: + _, shared_key = _get_log_analytics_ws_connection_string( + cmd, subscription_id, resource_group_name, cluster_name, '', True) + configuration_protected_settings[self.AZURE_LOG_ANALYTICS_CONNECTION_STRING] = shared_key + logger.info("Get log analytics connection string succeeded.") + except azure.core.exceptions.HttpResponseError: + logger.info("Failed to get log analytics connection string.") + + if self.RELAY_SERVER_CONNECTION_STRING not in configuration_protected_settings: + try: + relay_connection_string, _, _ = _get_relay_connection_str( + cmd, subscription_id, resource_group_name, cluster_name, '', self.RELAY_HC_AUTH_NAME, True) + configuration_protected_settings[self.RELAY_SERVER_CONNECTION_STRING] = relay_connection_string + logger.info("Get relay connection string succeeded.") + except azure.mgmt.relay.models.ErrorResponseException as ex: + if ex.response.status_code == 404: + raise ResourceNotFoundError("Relay server not found.") from ex + raise AzureResponseError("Failed to get relay connection string.") from ex + + if self.SERVICE_BUS_CONNECTION_STRING not in configuration_protected_settings: + try: + service_bus_connection_string, _ = _get_service_bus_connection_string( + cmd, subscription_id, resource_group_name, cluster_name, '', {}, True) + configuration_protected_settings[self.SERVICE_BUS_CONNECTION_STRING] = service_bus_connection_string + logger.info("Get service bus connection string succeeded.") + except azure.core.exceptions.HttpResponseError as ex: + if ex.response.status_code == 404: + raise ResourceNotFoundError("Service bus not found.") from ex + raise AzureResponseError("Failed to get service bus connection string.") from ex + + configuration_protected_settings = _dereference(self.reference_mapping, configuration_protected_settings) + + if self.sslKeyPemFile in configuration_protected_settings and \ + self.sslCertPemFile in configuration_protected_settings: + logger.info(f"Both {self.sslKeyPemFile} and {self.sslCertPemFile} are set, update ssl key.") + self.__set_inference_ssl_from_file(configuration_protected_settings) + + return PatchExtension(auto_upgrade_minor_version=auto_upgrade_minor_version, + release_train=release_train, + version=version, + configuration_settings=configuration_settings, + configuration_protected_settings=configuration_protected_settings) + + def __normalize_config(self, configuration_settings, configuration_protected_settings): + # inference + isTestCluster = _get_value_from_config_protected_config( + self.inferenceLoadBalancerHA, configuration_settings, configuration_protected_settings) + if isTestCluster is not None: + isTestCluster = str(isTestCluster).lower() == 'false' + if isTestCluster: + configuration_settings['clusterPurpose'] = 'DevTest' + else: + configuration_settings['clusterPurpose'] = 'FastProd' + + feIsNodePort = _get_value_from_config_protected_config( + self.privateEndpointNodeport, configuration_settings, configuration_protected_settings) + if feIsNodePort is not None: + feIsNodePort = str(feIsNodePort).lower() == 'true' + configuration_settings['scoringFe.serviceType.nodePort'] = feIsNodePort + + feIsInternalLoadBalancer = _get_value_from_config_protected_config( + self.privateEndpointILB, configuration_settings, configuration_protected_settings) + if feIsInternalLoadBalancer is not None: + feIsInternalLoadBalancer = str(feIsInternalLoadBalancer).lower() == 'true' + configuration_settings['scoringFe.serviceType.internalLoadBalancer'] = feIsInternalLoadBalancer + logger.warning( + 'Internal load balancer only supported on AKS and AKS Engine Clusters.') + def __validate_config(self, configuration_settings, configuration_protected_settings): # perform basic validation of the input config config_keys = configuration_settings.keys() @@ -241,24 +395,27 @@ def __validate_scoring_fe_settings(self, configuration_settings, configuration_p logger.warning( 'Internal load balancer only supported on AKS and AKS Engine Clusters.') + def __set_inference_ssl_from_file(self, configuration_protected_settings): + import base64 + feSslCertFile = configuration_protected_settings.get(self.sslCertPemFile) + feSslKeyFile = configuration_protected_settings.get(self.sslKeyPemFile) + with open(feSslCertFile) as f: + cert_data = f.read() + cert_data_bytes = cert_data.encode("ascii") + ssl_cert = base64.b64encode(cert_data_bytes).decode() + configuration_protected_settings['scoringFe.sslCert'] = ssl_cert + with open(feSslKeyFile) as f: + key_data = f.read() + key_data_bytes = key_data.encode("ascii") + ssl_key = base64.b64encode(key_data_bytes).decode() + configuration_protected_settings['scoringFe.sslKey'] = ssl_key + def __set_up_inference_ssl(self, configuration_settings, configuration_protected_settings): allowInsecureConnections = _get_value_from_config_protected_config( self.allowInsecureConnections, configuration_settings, configuration_protected_settings) allowInsecureConnections = str(allowInsecureConnections).lower() == 'true' if not allowInsecureConnections: - import base64 - feSslCertFile = configuration_protected_settings.get(self.sslCertPemFile) - feSslKeyFile = configuration_protected_settings.get(self.sslKeyPemFile) - with open(feSslCertFile) as f: - cert_data = f.read() - cert_data_bytes = cert_data.encode("ascii") - ssl_cert = base64.b64encode(cert_data_bytes).decode() - configuration_protected_settings['scoringFe.sslCert'] = ssl_cert - with open(feSslKeyFile) as f: - key_data = f.read() - key_data_bytes = key_data.encode("ascii") - ssl_key = base64.b64encode(key_data_bytes).decode() - configuration_protected_settings['scoringFe.sslKey'] = ssl_key + self.__set_inference_ssl_from_file(configuration_protected_settings) else: logger.warning( 'SSL is not enabled. Allowing insecure connections to the deployed services.') @@ -335,47 +492,46 @@ def _lock_resource(cmd, lock_scope, lock_level='CanNotDelete'): def _get_relay_connection_str( - cmd, subscription_id, resource_group_name, cluster_name, cluster_location, auth_rule_name) -> Tuple[str, str, str]: + cmd, subscription_id, resource_group_name, cluster_name, cluster_location, auth_rule_name, get_key_only=False) -> Tuple[str, str, str]: relay_client: azure.mgmt.relay.RelayManagementClient = get_mgmt_service_client( cmd.cli_ctx, azure.mgmt.relay.RelayManagementClient) cluster_id = '{}-{}-{}-relay'.format(cluster_name, subscription_id, resource_group_name) - # create namespace relay_namespace_name = _get_valid_name( cluster_id, suffix_len=6, max_len=50) - relay_namespace_params = azure.mgmt.relay.models.RelayNamespace( - location=cluster_location, tags=resource_tag) - - async_poller = relay_client.namespaces.create_or_update( - resource_group_name, relay_namespace_name, relay_namespace_params) - while True: - async_poller.result(15) - if async_poller.done(): - break - - # create hybrid connection hybrid_connection_name = cluster_name - hybrid_connection_object = relay_client.hybrid_connections.create_or_update( - resource_group_name, relay_namespace_name, hybrid_connection_name, requires_client_authorization=True) - - # relay_namespace_ojbect = relay_client.namespaces.get(resource_group_name, relay_namespace_name) - # relay_namespace_resource_id = relay_namespace_ojbect.id - # _lock_resource(cmd, lock_scope=relay_namespace_resource_id) - - # create authorization rule - auth_rule_rights = [azure.mgmt.relay.models.AccessRights.manage, - azure.mgmt.relay.models.AccessRights.send, azure.mgmt.relay.models.AccessRights.listen] - relay_client.hybrid_connections.create_or_update_authorization_rule( - resource_group_name, relay_namespace_name, hybrid_connection_name, auth_rule_name, rights=auth_rule_rights) + hc_resource_id = '' + if not get_key_only: + # create namespace + relay_namespace_params = azure.mgmt.relay.models.RelayNamespace( + location=cluster_location, tags=resource_tag) + + async_poller = relay_client.namespaces.create_or_update( + resource_group_name, relay_namespace_name, relay_namespace_params) + while True: + async_poller.result(15) + if async_poller.done(): + break + + # create hybrid connection + hybrid_connection_object = relay_client.hybrid_connections.create_or_update( + resource_group_name, relay_namespace_name, hybrid_connection_name, requires_client_authorization=True) + hc_resource_id = hybrid_connection_object.id + + # create authorization rule + auth_rule_rights = [azure.mgmt.relay.models.AccessRights.manage, + azure.mgmt.relay.models.AccessRights.send, azure.mgmt.relay.models.AccessRights.listen] + relay_client.hybrid_connections.create_or_update_authorization_rule( + resource_group_name, relay_namespace_name, hybrid_connection_name, auth_rule_name, rights=auth_rule_rights) # get connection string key: azure.mgmt.relay.models.AccessKeys = relay_client.hybrid_connections.list_keys( resource_group_name, relay_namespace_name, hybrid_connection_name, auth_rule_name) - return f'{key.primary_connection_string}', hybrid_connection_object.id, hybrid_connection_name + return f'{key.primary_connection_string}', hc_resource_id, hybrid_connection_name def _get_service_bus_connection_string(cmd, subscription_id, resource_group_name, cluster_name, cluster_location, - topic_sub_mapping: Dict[str, str]) -> Tuple[str, str]: + topic_sub_mapping: Dict[str, str], get_key_only=False) -> Tuple[str, str]: service_bus_client: azure.mgmt.servicebus.ServiceBusManagementClient = get_mgmt_service_client( cmd.cli_ctx, azure.mgmt.servicebus.ServiceBusManagementClient) cluster_id = '{}-{}-{}-service-bus'.format(cluster_name, @@ -383,35 +539,35 @@ def _get_service_bus_connection_string(cmd, subscription_id, resource_group_name service_bus_namespace_name = _get_valid_name( cluster_id, suffix_len=6, max_len=50) - # create namespace - service_bus_sku = azure.mgmt.servicebus.models.SBSku( - name=azure.mgmt.servicebus.models.SkuName.standard.name) - service_bus_namespace = azure.mgmt.servicebus.models.SBNamespace( - location=cluster_location, - sku=service_bus_sku, - tags=resource_tag) - async_poller = service_bus_client.namespaces.begin_create_or_update( - resource_group_name, service_bus_namespace_name, service_bus_namespace) - while True: - async_poller.result(15) - if async_poller.done(): - break - - for topic_name, service_bus_subscription_name in topic_sub_mapping.items(): - # create topic - topic = azure.mgmt.servicebus.models.SBTopic(max_size_in_megabytes=5120, default_message_time_to_live='P60D') - service_bus_client.topics.create_or_update( - resource_group_name, service_bus_namespace_name, topic_name, topic) - - # create subscription - sub = azure.mgmt.servicebus.models.SBSubscription( - max_delivery_count=1, default_message_time_to_live='P14D', lock_duration='PT30S') - service_bus_client.subscriptions.create_or_update( - resource_group_name, service_bus_namespace_name, topic_name, service_bus_subscription_name, sub) + if not get_key_only: + # create namespace + service_bus_sku = azure.mgmt.servicebus.models.SBSku( + name=azure.mgmt.servicebus.models.SkuName.standard.name) + service_bus_namespace = azure.mgmt.servicebus.models.SBNamespace( + location=cluster_location, + sku=service_bus_sku, + tags=resource_tag) + async_poller = service_bus_client.namespaces.begin_create_or_update( + resource_group_name, service_bus_namespace_name, service_bus_namespace) + while True: + async_poller.result(15) + if async_poller.done(): + break + + for topic_name, service_bus_subscription_name in topic_sub_mapping.items(): + # create topic + topic = azure.mgmt.servicebus.models.SBTopic(max_size_in_megabytes=5120, default_message_time_to_live='P60D') + service_bus_client.topics.create_or_update( + resource_group_name, service_bus_namespace_name, topic_name, topic) + + # create subscription + sub = azure.mgmt.servicebus.models.SBSubscription( + max_delivery_count=1, default_message_time_to_live='P14D', lock_duration='PT30S') + service_bus_client.subscriptions.create_or_update( + resource_group_name, service_bus_namespace_name, topic_name, service_bus_subscription_name, sub) service_bus_object = service_bus_client.namespaces.get(resource_group_name, service_bus_namespace_name) service_bus_resource_id = service_bus_object.id - # _lock_resource(cmd, service_bus_resource_id) # get connection string auth_rules = service_bus_client.namespaces.list_authorization_rules( @@ -423,26 +579,23 @@ def _get_service_bus_connection_string(cmd, subscription_id, resource_group_name def _get_log_analytics_ws_connection_string( - cmd, subscription_id, resource_group_name, cluster_name, cluster_location) -> Tuple[str, str]: + cmd, subscription_id, resource_group_name, cluster_name, cluster_location, get_key_only=False) -> Tuple[str, str]: log_analytics_ws_client: azure.mgmt.loganalytics.LogAnalyticsManagementClient = get_mgmt_service_client( cmd.cli_ctx, azure.mgmt.loganalytics.LogAnalyticsManagementClient) # create workspace cluster_id = '{}-{}-{}'.format(cluster_name, subscription_id, resource_group_name) log_analytics_ws_name = _get_valid_name(cluster_id, suffix_len=6, max_len=63) - log_analytics_ws = azure.mgmt.loganalytics.models.Workspace(location=cluster_location, tags=resource_tag) - async_poller = log_analytics_ws_client.workspaces.begin_create_or_update( - resource_group_name, log_analytics_ws_name, log_analytics_ws) customer_id = '' - # log_analytics_ws_resource_id = '' - while True: - log_analytics_ws_object = async_poller.result(15) - if async_poller.done(): - customer_id = log_analytics_ws_object.customer_id - # log_analytics_ws_resource_id = log_analytics_ws_object.id - break - - # _lock_resource(cmd, log_analytics_ws_resource_id) + if not get_key_only: + log_analytics_ws = azure.mgmt.loganalytics.models.Workspace(location=cluster_location, tags=resource_tag) + async_poller = log_analytics_ws_client.workspaces.begin_create_or_update( + resource_group_name, log_analytics_ws_name, log_analytics_ws) + while True: + log_analytics_ws_object = async_poller.result(15) + if async_poller.done(): + customer_id = log_analytics_ws_object.customer_id + break # get workspace shared keys shared_key = log_analytics_ws_client.shared_keys.get_shared_keys( @@ -468,18 +621,12 @@ def _get_value_from_config_protected_config(key, config, protected_config): return protected_config.get(key) -def _get_cluster_rp_api_version(cluster_type) -> Tuple[str, str]: - rp = '' - parent_api_version = '' - if cluster_type.lower() == 'connectedclusters': - rp = 'Microsoft.Kubernetes' - parent_api_version = '2020-01-01-preview' - elif cluster_type.lower() == 'appliances': - rp = 'Microsoft.ResourceConnector' - parent_api_version = '2020-09-15-privatepreview' - elif cluster_type.lower() == '' or cluster_type.lower() == 'managedclusters': - rp = 'Microsoft.ContainerService' - parent_api_version = '2021-05-01' - else: - raise InvalidArgumentValueError("Error! Cluster type '{}' is not supported".format(cluster_type)) - return rp, parent_api_version +def _check_nodeselector_existed(configuration_settings, configuration_protected_settings): + config_keys = configuration_settings.keys() + config_protected_keys = configuration_protected_settings.keys() + all_keys = set(config_keys) | set(config_protected_keys) + if all_keys: + for key in all_keys: + if "nodeSelector" in key: + return True + return False diff --git a/src/k8s-extension/azext_k8s_extension/partner_extensions/DefaultExtension.py b/src/k8s-extension/azext_k8s_extension/partner_extensions/DefaultExtension.py index e38f0d6e37c..a15defc72d2 100644 --- a/src/k8s-extension/azext_k8s_extension/partner_extensions/DefaultExtension.py +++ b/src/k8s-extension/azext_k8s_extension/partner_extensions/DefaultExtension.py @@ -17,19 +17,35 @@ class DefaultExtension(PartnerExtensionModel): - def Create(self, cmd, client, resource_group_name, cluster_name, name, cluster_type, extension_type, - scope, auto_upgrade_minor_version, release_train, version, target_namespace, - release_namespace, configuration_settings, configuration_protected_settings, - configuration_settings_file, configuration_protected_settings_file): + def Create( + self, + cmd, + client, + resource_group_name, + cluster_name, + name, + cluster_type, + extension_type, + scope, + auto_upgrade_minor_version, + release_train, + version, + target_namespace, + release_namespace, + configuration_settings, + configuration_protected_settings, + configuration_settings_file, + configuration_protected_settings_file, + ): """Default validations & defaults for Create - Must create and return a valid 'Extension' object. + Must create and return a valid 'Extension' object. """ ext_scope = None if scope is not None: - if scope.lower() == 'cluster': + if scope.lower() == "cluster": scope_cluster = ScopeCluster(release_namespace=release_namespace) ext_scope = Scope(cluster=scope_cluster, namespace=None) - elif scope.lower() == 'namespace': + elif scope.lower() == "namespace": scope_namespace = ScopeNamespace(target_namespace=target_namespace) ext_scope = Scope(namespace=scope_namespace, cluster=None) @@ -41,27 +57,43 @@ def Create(self, cmd, client, resource_group_name, cluster_name, name, cluster_t version=version, scope=ext_scope, configuration_settings=configuration_settings, - configuration_protected_settings=configuration_protected_settings + configuration_protected_settings=configuration_protected_settings, ) return extension, name, create_identity - def Update(self, auto_upgrade_minor_version, release_train, version, configuration_settings, - configuration_protected_settings): + def Update( + self, + cmd, + resource_group_name, + cluster_name, + auto_upgrade_minor_version, + release_train, + version, + configuration_settings, + configuration_protected_settings, + yes=False, + ): """Default validations & defaults for Update - Must create and return a valid 'PatchExtension' object. + Must create and return a valid 'PatchExtension' object. """ - return PatchExtension(auto_upgrade_minor_version=auto_upgrade_minor_version, - release_train=release_train, - version=version, - configuration_settings=configuration_settings, - configuration_protected_settings=configuration_protected_settings) + return PatchExtension( + auto_upgrade_minor_version=auto_upgrade_minor_version, + release_train=release_train, + version=version, + configuration_settings=configuration_settings, + configuration_protected_settings=configuration_protected_settings, + ) - def Delete(self, cmd, client, resource_group_name, cluster_name, name, cluster_type, yes): + def Delete( + self, cmd, client, resource_group_name, cluster_name, name, cluster_type, yes + ): user_confirmation_factory(cmd, yes) -def user_confirmation_factory(cmd, yes, message="Are you sure you want to perform this operation?"): - if cmd.cli_ctx.config.getboolean('core', 'disable_confirm_prompt', fallback=False): +def user_confirmation_factory( + cmd, yes, message="Are you sure you want to perform this operation?" +): + if cmd.cli_ctx.config.getboolean("core", "disable_confirm_prompt", fallback=False): return user_confirmation(message, yes=yes) diff --git a/src/k8s-extension/azext_k8s_extension/partner_extensions/PartnerExtensionModel.py b/src/k8s-extension/azext_k8s_extension/partner_extensions/PartnerExtensionModel.py index 0e56c203a91..d4f1eeba6c3 100644 --- a/src/k8s-extension/azext_k8s_extension/partner_extensions/PartnerExtensionModel.py +++ b/src/k8s-extension/azext_k8s_extension/partner_extensions/PartnerExtensionModel.py @@ -10,18 +10,52 @@ class PartnerExtensionModel(ABC): @abstractmethod - def Create(self, cmd, client, resource_group_name: str, cluster_name: str, name: str, cluster_type: str, - extension_type: str, scope: str, auto_upgrade_minor_version: bool, release_train: str, version: str, - target_namespace: str, release_namespace: str, configuration_settings: dict, - configuration_protected_settings: dict, configuration_settings_file: str, - configuration_protected_settings_file: str) -> Extension: + def Create( + self, + cmd, + client, + resource_group_name: str, + cluster_name: str, + name: str, + cluster_type: str, + extension_type: str, + scope: str, + auto_upgrade_minor_version: bool, + release_train: str, + version: str, + target_namespace: str, + release_namespace: str, + configuration_settings: dict, + configuration_protected_settings: dict, + configuration_settings_file: str, + configuration_protected_settings_file: str, + ) -> Extension: pass @abstractmethod - def Update(self, auto_upgrade_minor_version: bool, release_train: str, version: str, - configuration_settings: dict, configuration_protected_settings: dict) -> PatchExtension: + def Update( + self, + cmd, + resource_group_name: str, + cluster_name: str, + auto_upgrade_minor_version: bool, + release_train: str, + version: str, + configuration_settings: dict, + configuration_protected_settings: dict, + yes: bool, + ) -> PatchExtension: pass @abstractmethod - def Delete(self, cmd, client, resource_group_name: str, cluster_name: str, name: str, cluster_type: str, yes: bool): + def Delete( + self, + cmd, + client, + resource_group_name: str, + cluster_name: str, + name: str, + cluster_type: str, + yes: bool, + ): pass diff --git a/src/k8s-extension/azext_k8s_extension/utils.py b/src/k8s-extension/azext_k8s_extension/utils.py new file mode 100644 index 00000000000..9c7322cdf70 --- /dev/null +++ b/src/k8s-extension/azext_k8s_extension/utils.py @@ -0,0 +1,43 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import json +from typing import Tuple +from urllib.parse import urlparse +from azext_k8s_extension import consts +from azure.cli.core.azclierror import InvalidArgumentValueError + + +def get_cluster_rp_api_version(cluster_type) -> Tuple[str, str]: + if cluster_type.lower() == consts.CONNECTED_CLUSTER_TYPE: + return consts.CONNECTED_CLUSTER_RP, consts.CONNECTED_CLUSTER_API_VERSION + if cluster_type.lower() == consts.APPLIANCE_TYPE: + return consts.APPLIANCE_RP, consts.APPLIANCE_API_VERSION + if ( + cluster_type.lower() == "" + or cluster_type.lower() == consts.MANAGED_CLUSTER_TYPE + ): + return consts.MANAGED_CLUSTER_RP, consts.MANAGED_CLUSTER_API_VERSION + raise InvalidArgumentValueError( + "Error! Cluster type '{}' is not supported".format(cluster_type) + ) + + +def read_config_settings_file(file_path): + try: + with open(file_path, "r") as f: + settings = json.load(f) + if len(settings) == 0: + raise Exception("File {} is empty".format(file_path)) + return settings + except ValueError as ex: + raise Exception("File {} is not a valid JSON file".format(file_path)) from ex + + +def is_dogfood_cluster(cmd): + return ( + urlparse(cmd.cli_ctx.cloud.endpoints.resource_manager).hostname + == consts.DF_RM_HOSTNAME + ) diff --git a/src/k8s-extension/setup.py b/src/k8s-extension/setup.py index 99ef128f8ab..fce65b7232c 100644 --- a/src/k8s-extension/setup.py +++ b/src/k8s-extension/setup.py @@ -13,45 +13,46 @@ from azure_bdist_wheel import cmdclass except ImportError: from distutils import log as logger + logger.warn("Wheel is not available, disabling bdist_wheel hook") # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers CLASSIFIERS = [ - 'Development Status :: 4 - Beta', - 'Intended Audience :: Developers', - 'Intended Audience :: System Administrators', - 'Programming Language :: Python', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', - 'License :: OSI Approved :: MIT License', + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "License :: OSI Approved :: MIT License", ] # TODO: Add any additional SDK dependencies here DEPENDENCIES = [] -VERSION = "1.0.0" +VERSION = "1.0.2" -with open('README.rst', 'r', encoding='utf-8') as f: +with open("README.rst", "r", encoding="utf-8") as f: README = f.read() -with open('HISTORY.rst', 'r', encoding='utf-8') as f: +with open("HISTORY.rst", "r", encoding="utf-8") as f: HISTORY = f.read() setup( name="k8s-extension", version=VERSION, - description='Microsoft Azure Command-Line Tools K8s-extension Extension', + description="Microsoft Azure Command-Line Tools K8s-extension Extension", # TODO: Update author and email, if applicable - author='Microsoft Corporation', - author_email='azpycli@microsoft.com', + author="Microsoft Corporation", + author_email="azpycli@microsoft.com", # TODO: consider pointing directly to your source code instead of the generic repo - url='https://github.com/Azure/azure-cli-extensions', - long_description=README + '\n\n' + HISTORY, - license='MIT', + url="https://github.com/Azure/azure-cli-extensions", + long_description=README + "\n\n" + HISTORY, + license="MIT", classifiers=CLASSIFIERS, packages=find_packages(), install_requires=DEPENDENCIES, - package_data={'azext_k8s_extension': ['azext_metadata.json']}, + package_data={"azext_k8s_extension": ["azext_metadata.json"]}, ) diff --git a/src/kusto/azext_kusto/manual/tests/latest/test_kusto_scenario.py b/src/kusto/azext_kusto/manual/tests/latest/test_kusto_scenario.py index 0c4ce02ce06..8bd8666c12d 100644 --- a/src/kusto/azext_kusto/manual/tests/latest/test_kusto_scenario.py +++ b/src/kusto/azext_kusto/manual/tests/latest/test_kusto_scenario.py @@ -12,7 +12,7 @@ from azure.cli.testsdk import ScenarioTest from azure.cli.testsdk import ResourceGroupPreparer from azure.cli.testsdk import StorageAccountPreparer -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from .. import ( try_manual, raise_if, diff --git a/src/kusto/azext_kusto/tests/latest/test_kusto_scenario.py b/src/kusto/azext_kusto/tests/latest/test_kusto_scenario.py index ec8b7317dcc..1cd876df5fe 100644 --- a/src/kusto/azext_kusto/tests/latest/test_kusto_scenario.py +++ b/src/kusto/azext_kusto/tests/latest/test_kusto_scenario.py @@ -12,7 +12,7 @@ from azure.cli.testsdk import ScenarioTest from azure.cli.testsdk import ResourceGroupPreparer from azure.cli.testsdk import StorageAccountPreparer -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from .. import ( try_manual, raise_if, diff --git a/src/log-analytics-solution/azext_log_analytics_solution/tests/latest/test_log_analytics_solution_scenario.py b/src/log-analytics-solution/azext_log_analytics_solution/tests/latest/test_log_analytics_solution_scenario.py index 6b69765347f..b9b9565ab68 100644 --- a/src/log-analytics-solution/azext_log_analytics_solution/tests/latest/test_log_analytics_solution_scenario.py +++ b/src/log-analytics-solution/azext_log_analytics_solution/tests/latest/test_log_analytics_solution_scenario.py @@ -6,7 +6,7 @@ import os import unittest -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) from knack.util import CLIError diff --git a/src/logic/azext_logic/tests/latest/test_logic_scenario.py b/src/logic/azext_logic/tests/latest/test_logic_scenario.py index 8703d513a29..248b3b273af 100644 --- a/src/logic/azext_logic/tests/latest/test_logic_scenario.py +++ b/src/logic/azext_logic/tests/latest/test_logic_scenario.py @@ -7,7 +7,7 @@ import unittest from azure.cli.testsdk import JMESPathCheck -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import ScenarioTest from azure.cli.testsdk import ResourceGroupPreparer diff --git a/src/logz/azext_logz/tests/latest/test_logz_commands.py b/src/logz/azext_logz/tests/latest/test_logz_commands.py index 985ecd01c2b..a8944a66c66 100644 --- a/src/logz/azext_logz/tests/latest/test_logz_commands.py +++ b/src/logz/azext_logz/tests/latest/test_logz_commands.py @@ -9,11 +9,11 @@ ResourceGroupPreparer, ScenarioTest ) -from azure_devtools.scenario_tests import ( +from azure.cli.testsdk.scenario_tests import ( RecordingProcessor, live_only ) -from azure_devtools.scenario_tests.utilities import is_text_payload +from azure.cli.testsdk.scenario_tests.utilities import is_text_payload class CredentialReplacer(RecordingProcessor): diff --git a/src/mixed-reality/azext_mixed_reality/tests/latest/recording_processors.py b/src/mixed-reality/azext_mixed_reality/tests/latest/recording_processors.py index 74abb653eca..e0f6e050d4b 100644 --- a/src/mixed-reality/azext_mixed_reality/tests/latest/recording_processors.py +++ b/src/mixed-reality/azext_mixed_reality/tests/latest/recording_processors.py @@ -3,8 +3,8 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -from azure_devtools.scenario_tests import RecordingProcessor -from azure_devtools.scenario_tests.utilities import is_text_payload +from azure.cli.testsdk.scenario_tests import RecordingProcessor +from azure.cli.testsdk.scenario_tests.utilities import is_text_payload MOCK_KEY = 'mock_key' diff --git a/src/network-manager/HISTORY.rst b/src/network-manager/HISTORY.rst index 26111312981..f31690b85c4 100644 --- a/src/network-manager/HISTORY.rst +++ b/src/network-manager/HISTORY.rst @@ -3,6 +3,13 @@ Release History =============== +0.3.0 ++++++ +* `az network manager list-active-connectivity-config`: rename parameter `region` to `regions` +* `az network manager security-user-config create`: remove parameter `security-type` +* `az network manager security-admin-config create`: remove parameter `security-type` +* Fix some mistakes on help messages. + 0.2.0 +++++ * Rename `az network manager admin-rule collection` to `az network manager security-admin-config rule-collection` diff --git a/src/network-manager/azext_network_manager/_help.py b/src/network-manager/azext_network_manager/_help.py index b301d7fdd96..819d7d9e5a8 100644 --- a/src/network-manager/azext_network_manager/_help.py +++ b/src/network-manager/azext_network_manager/_help.py @@ -369,7 +369,7 @@ text: |- az network manager security-user-config create --configuration-name "myTestSecurityConfig" \ --network-manager-name "testNetworkManager" --resource-group "rg1" --description "A sample policy" \ ---delete-existing-ns-gs true --security-type "UserPolicy" +--delete-existing-ns-gs true """ helps['network manager security-user-config update'] = """ @@ -421,7 +421,7 @@ text: |- az network manager security-admin-config create --configuration-name "myTestSecurityConfig" \ --network-manager-name "testNetworkManager" --resource-group "rg1" --description "A sample policy" \ ---delete-existing-ns-gs true --security-type "AdminPolicy" +--delete-existing-ns-gs true """ helps['network manager security-admin-config update'] = """ @@ -452,7 +452,7 @@ text: |- az network manager security-admin-config rule-collection create --configuration-name "myTestSecurityConfig" --network-manager-name "testNetworkManager" -g "rg1" \ --rule-collection-name "myTestCollection" --description "A sample description" --display-name "ASampleCollection" \ ---applies-to-groups network-group-id="sub_id/resourceGroups/rgid/providers/Microsoft.Network/networkManagers/TestNetworkManager/networkGroups/TestNetworkGroup" +--applies-to-groups network-group-id="/subscriptions/sub_id/resourceGroups/rgid/providers/Microsoft.Network/networkManagers/TestNetworkManager/networkGroups/TestNetworkGroup" """ helps['network manager security-admin-config rule-collection list'] = """ @@ -603,7 +603,7 @@ text: |- az network manager security-user-config rule-collection create --configuration-name "myTestSecurityConfig" --network-manager-name "testNetworkManager" -g "rg1" \ --rule-collection-name myTestCollection --description "A sample description" --display-name "ASampleCollection" \ ---applies-to-groups network-group-id=sub_id/resourceGroups/rgid/providers/Microsoft.Network/networkManagers/TestNetworkManager/networkGroups/TestNetworkGroup +--applies-to-groups network-group-id=/subscriptions/sub_id/resourceGroups/rgid/providers/Microsoft.Network/networkManagers/TestNetworkManager/networkGroups/TestNetworkGroup """ helps['network manager security-user-config rule-collection list'] = """ diff --git a/src/network-manager/azext_network_manager/_params.py b/src/network-manager/azext_network_manager/_params.py index e83582b7517..669a93ff748 100644 --- a/src/network-manager/azext_network_manager/_params.py +++ b/src/network-manager/azext_network_manager/_params.py @@ -154,7 +154,7 @@ def load_arguments(self, _): c.argument('skip_token', type=str, help='SkipToken is only used if a previous operation returned a partial ' 'result. If a previous response contains a nextLink element, the value of the nextLink element will ' 'include a skipToken parameter that specifies a starting point to use for subsequent calls.') - c.argument('region', type=str, help='Location name') + c.argument('regions', type=str, nargs='+', help='Location names') with self.argument_context('network manager connect-config list') as c: c.argument('resource_group_name', resource_group_name_type) diff --git a/src/network-manager/azext_network_manager/custom.py b/src/network-manager/azext_network_manager/custom.py index 4b67136118d..8944940fc55 100644 --- a/src/network-manager/azext_network_manager/custom.py +++ b/src/network-manager/azext_network_manager/custom.py @@ -99,7 +99,7 @@ def network_manager_commit_post(cmd, client, resource_group_name, network_manager_name, - target_locations=None, + target_locations, configuration_ids=None, commit_type=None): client = cf_networkmanagercommit(cmd.cli_ctx) @@ -167,11 +167,11 @@ def network_manager_active_config_list(cmd, resource_group_name, network_manager_name, skip_token=None, - region=None): + regions=None): client = cf_activeconnectivityconfiguration(cmd.cli_ctx) parameters = {} parameters['skip_token'] = skip_token - parameters['region'] = region + parameters['regions'] = regions return client.list(resource_group_name=resource_group_name, network_manager_name=network_manager_name, parameters=parameters) @@ -429,12 +429,10 @@ def network_manager_security_user_config_create(client, configuration_name, display_name=None, description=None, - security_type=None, delete_existing_ns_gs=None): security_configuration = {} security_configuration['display_name'] = display_name security_configuration['description'] = description - security_configuration['security_type'] = security_type security_configuration['delete_existing_ns_gs'] = delete_existing_ns_gs return client.create_or_update(resource_group_name=resource_group_name, network_manager_name=network_manager_name, @@ -496,12 +494,10 @@ def network_manager_security_admin_config_create(client, configuration_name, display_name=None, description=None, - security_type=None, delete_existing_ns_gs=None): security_configuration = {} security_configuration['display_name'] = display_name security_configuration['description'] = description - security_configuration['security_type'] = security_type security_configuration['delete_existing_ns_gs'] = delete_existing_ns_gs return client.create_or_update(resource_group_name=resource_group_name, network_manager_name=network_manager_name, @@ -515,14 +511,11 @@ def network_manager_security_admin_config_update(instance, configuration_name, display_name=None, description=None, - security_type=None, delete_existing_ns_gs=None): if display_name is not None: instance.display_name = display_name if description is not None: instance.description = description - if security_type is not None: - instance.security_type = security_type if delete_existing_ns_gs is not None: instance.delete_existing_ns_gs = delete_existing_ns_gs return instance diff --git a/src/network-manager/azext_network_manager/tests/latest/preparers.py b/src/network-manager/azext_network_manager/tests/latest/preparers.py index 0879e51945a..176f5b16296 100644 --- a/src/network-manager/azext_network_manager/tests/latest/preparers.py +++ b/src/network-manager/azext_network_manager/tests/latest/preparers.py @@ -10,7 +10,7 @@ import os from datetime import datetime -from azure_devtools.scenario_tests import SingleValueReplacer +from azure.cli.testsdk.scenario_tests import SingleValueReplacer from azure.cli.testsdk.preparers import NoTrafficRecordingPreparer from azure.cli.testsdk.exceptions import CliTestError from azure.cli.testsdk.reverse_dependency import get_dummy_cli diff --git a/src/network-manager/azext_network_manager/tests/latest/recordings/test_network_manager_list_queries.yaml b/src/network-manager/azext_network_manager/tests/latest/recordings/test_network_manager_list_queries.yaml index 34fd401269a..e3ed39f8d69 100644 --- a/src/network-manager/azext_network_manager/tests/latest/recordings/test_network_manager_list_queries.yaml +++ b/src/network-manager/azext_network_manager/tests/latest/recordings/test_network_manager_list_queries.yaml @@ -27,7 +27,7 @@ interactions: response: body: string: '{"name":"TestNetworkManager","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_network_manager_list_queries000001/providers/Microsoft.Network/networkManagers/TestNetworkManager","location":"eastus2euap","type":"Microsoft.Network/networkManagers","tags":{},"etag":"","properties":{"displayName":"TestNetworkManager","description":"My - Test Network Manager","networkManagerScopes":{"managementGroups":[],"subscriptions":["/subscriptions/00000000-0000-0000-0000-000000000000"]},"provisioningState":"Succeeded","networkManagerScopeAccesses":["SecurityAdmin","Connectivity"],"resourceGuid":"8a78a66b-adc5-418b-b546-24e9de8d9fd2"},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-02T08:59:10.8978081Z","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-02T08:59:10.8978081Z"}}' + Test Network Manager","networkManagerScopes":{"managementGroups":[],"subscriptions":["/subscriptions/00000000-0000-0000-0000-000000000000"]},"provisioningState":"Succeeded","networkManagerScopeAccesses":["SecurityAdmin","Connectivity"],"resourceGuid":"66947698-fce5-4b19-a5c3-020c12ffb383"},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-23T09:31:19.7844891Z","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T09:31:19.7844891Z"}}' headers: cache-control: - no-cache @@ -36,7 +36,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Nov 2021 08:59:15 GMT + - Tue, 23 Nov 2021 09:31:34 GMT expires: - '-1' pragma: @@ -52,7 +52,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -84,7 +84,7 @@ interactions: response: body: string: '{"name":"TestNetworkGroup","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_network_manager_list_queries000001/providers/Microsoft.Network/networkManagers/TestNetworkManager/networkGroups/TestNetworkGroup","type":"Microsoft.Network/networkManagers/networkGroups","etag":"","properties":{"displayName":"ASampleGroup","description":"A - sample policy","groupMembers":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_network_manager_list_queries000001/providers/Microsoft.Network/virtualnetworks/clitest.vn000002"}],"conditionalMembership":"","provisioningState":"Succeeded","resourceGuid":"73729d64-1486-4c08-920f-9ac723cf6027"},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-02T08:59:18.3222537Z","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-02T08:59:18.3222537Z"}}' + sample policy","groupMembers":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_network_manager_list_queries000001/providers/Microsoft.Network/virtualnetworks/clitest.vn000002"}],"conditionalMembership":"","provisioningState":"Succeeded","resourceGuid":"e431d73e-eca0-41db-a801-fec1974e46a5"},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-23T09:31:35.8326688Z","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-23T09:31:35.8326688Z"}}' headers: cache-control: - no-cache @@ -93,7 +93,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Nov 2021 08:59:19 GMT + - Tue, 23 Nov 2021 09:31:38 GMT expires: - '-1' pragma: @@ -109,7 +109,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -145,7 +145,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Nov 2021 08:59:23 GMT + - Tue, 23 Nov 2021 09:31:39 GMT expires: - '-1' pragma: @@ -197,7 +197,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Nov 2021 08:59:29 GMT + - Tue, 23 Nov 2021 09:31:43 GMT expires: - '-1' pragma: @@ -213,7 +213,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -249,7 +249,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Nov 2021 08:59:35 GMT + - Tue, 23 Nov 2021 09:31:46 GMT expires: - '-1' pragma: @@ -270,22 +270,22 @@ interactions: code: 200 message: OK - request: - body: '{}' + body: '{"regions": ["eastus", "westus"]}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - network manager list-active-config + - network manager list-active-connectivity-config Connection: - keep-alive Content-Length: - - '2' + - '33' Content-Type: - application/json ParameterSetName: - - --network-manager-name --resource-group + - --network-manager-name --resource-group --regions User-Agent: - AZURECLI/2.30.0 azsdk-python-mgmt-network/1.0.0b1 Python/3.8.3 (Windows-10-10.0.18362-SP0) method: POST @@ -301,7 +301,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Nov 2021 08:59:41 GMT + - Tue, 23 Nov 2021 09:31:50 GMT expires: - '-1' pragma: @@ -329,7 +329,7 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network manager list-effective-config + - network manager list-effective-connectivity-config Connection: - keep-alive Content-Length: @@ -353,7 +353,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Nov 2021 08:59:44 GMT + - Tue, 23 Nov 2021 09:31:54 GMT expires: - '-1' pragma: @@ -369,7 +369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -405,7 +405,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Nov 2021 08:59:48 GMT + - Tue, 23 Nov 2021 09:31:58 GMT expires: - '-1' pragma: @@ -457,7 +457,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Nov 2021 08:59:52 GMT + - Tue, 23 Nov 2021 09:32:02 GMT expires: - '-1' pragma: diff --git a/src/network-manager/azext_network_manager/tests/latest/test_network_scenario.py b/src/network-manager/azext_network_manager/tests/latest/test_network_scenario.py index 83b6ce6ddf1..512dc2a1292 100644 --- a/src/network-manager/azext_network_manager/tests/latest/test_network_scenario.py +++ b/src/network-manager/azext_network_manager/tests/latest/test_network_scenario.py @@ -100,7 +100,7 @@ def test_network_manager_security_user_config_crud(self, resource_group): '--resource-group {rg}') self.cmd('network manager security-user-config create --configuration-name {name} --network-manager-name {manager_name} -g {rg} ' - '--description {description} --delete-existing-ns-gs true --security-type "UserPolicy" --display-name MyTestConfig') + '--description {description} --delete-existing-ns-gs true --display-name MyTestConfig') self.cmd('network manager security-user-config update --configuration-name {name} --network-manager-name {manager_name} -g {rg} ' '--description "test_description"') @@ -126,7 +126,7 @@ def test_network_manager_security_admin_config_crud(self, resource_group): '--resource-group {rg}') self.cmd('network manager security-admin-config create --configuration-name {name} --network-manager-name {manager_name} -g {rg} ' - '--description {description} --delete-existing-ns-gs true --security-type "AdminPolicy" --display-name MyTestConfig') + '--description {description} --delete-existing-ns-gs true --display-name MyTestConfig') self.cmd('network manager security-admin-config update --configuration-name {name} --network-manager-name {manager_name} -g {rg} ' '--description "test_description"') @@ -171,7 +171,7 @@ def test_network_manager_admin_rule_crud(self, virtual_network, resource_group): '--group-members resource-id="{sub}/resourceGroups/{rg}/providers/Microsoft.Network/virtualnetworks/{virtual_network}" ') self.cmd('network manager security-admin-config create --configuration-name {config_name} --network-manager-name {manager_name} -g {rg} ' - '--description {description} --delete-existing-ns-gs true --security-type "AdminPolicy" --display-name MyTestConfig') + '--description {description} --delete-existing-ns-gs true --display-name MyTestConfig') self.cmd('network manager security-admin-config rule-collection create --configuration-name {config_name} --network-manager-name {manager_name} -g {rg} ' '--rule-collection-name {collection_name} --description {description} --display-name ASampleCollection ' @@ -213,7 +213,7 @@ def test_network_manager_admin_rule_collection_crud(self, virtual_network, resou '--group-members resource-id="{sub}/resourceGroups/{rg}/providers/Microsoft.Network/virtualnetworks/{virtual_network}" ') self.cmd('network manager security-admin-config create --configuration-name {config_name} --network-manager-name {manager_name} -g {rg} ' - '--description {description} --delete-existing-ns-gs true --security-type "AdminPolicy" --display-name MyTestConfig') + '--description {description} --delete-existing-ns-gs true --display-name MyTestConfig') self.cmd('network manager security-admin-config rule-collection create --configuration-name {config_name} --network-manager-name {manager_name} -g {rg} ' '--rule-collection-name {collection_name} --description {description} --display-name ASampleCollection ' @@ -257,7 +257,7 @@ def test_network_manager_user_rule_crud(self, virtual_network, resource_group): '--group-members resource-id="{sub}/resourceGroups/{rg}/providers/Microsoft.Network/virtualnetworks/{virtual_network}" ') self.cmd('network manager security-user-config create --configuration-name {config_name} --network-manager-name {manager_name} -g {rg} ' - '--description {description} --delete-existing-ns-gs true --security-type "UserPolicy" --display-name MyTestConfig') + '--description {description} --delete-existing-ns-gs true --display-name MyTestConfig') self.cmd('network manager security-user-config rule-collection create --configuration-name {config_name} --network-manager-name {manager_name} -g {rg} ' '--rule-collection-name {collection_name} --description {description} --display-name ASampleCollection ' @@ -297,7 +297,7 @@ def test_network_manager_user_rule_collection_crud(self, virtual_network, resour '--group-members resource-id="{sub}/resourceGroups/{rg}/providers/Microsoft.Network/virtualnetworks/{virtual_network}" ') self.cmd('network manager security-user-config create --configuration-name {config_name} --network-manager-name {manager_name} -g {rg} ' - '--description {description} --delete-existing-ns-gs true --security-type "UserPolicy" --display-name MyTestConfig') + '--description {description} --delete-existing-ns-gs true --display-name MyTestConfig') self.cmd('network manager security-user-config rule-collection create --configuration-name {config_name} --network-manager-name {manager_name} -g {rg} ' '--rule-collection-name {collection_name} --description {description} --display-name ASampleCollection ' @@ -370,9 +370,8 @@ def test_network_manager_list_queries(self, virtual_network, resource_group): self.cmd('network manager list-deploy-status --network-manager-name {manager_name} --deployment-types "Connectivity" --regions "eastus2euap" --resource-group {rg}') self.cmd('network manager group list-effect-vnet --network-group-name {group_name} --network-manager-name {manager_name} --resource-group {rg}') - # Internal Server Error self.cmd('network manager list-effect-vnet --network-manager-name {manager_name} --resource-group {rg}') - self.cmd('network manager list-active-connectivity-config --network-manager-name {manager_name} --resource-group {rg}') + self.cmd('network manager list-active-connectivity-config --network-manager-name {manager_name} --resource-group {rg} --regions eastus westus') self.cmd('network manager list-effective-connectivity-config --virtual-network-name {virtual_network} -g {rg}') self.cmd('network manager list-effective-security-admin-rule --virtual-network-name {virtual_network} -g {rg}') self.cmd('network manager list-active-security-admin-rule --network-manager-name {manager_name} -g {rg} --regions eastus2euap') diff --git a/src/network-manager/setup.py b/src/network-manager/setup.py index e9394ccf034..db9149a08c9 100644 --- a/src/network-manager/setup.py +++ b/src/network-manager/setup.py @@ -10,7 +10,7 @@ from setuptools import setup, find_packages # HISTORY.rst entry. -VERSION = '0.2.0' +VERSION = '0.3.0' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers diff --git a/src/notification-hub/azext_notification_hub/tests/latest/test_notificationhubs_scenario.py b/src/notification-hub/azext_notification_hub/tests/latest/test_notificationhubs_scenario.py index a8b24df547d..40c3b8311af 100644 --- a/src/notification-hub/azext_notification_hub/tests/latest/test_notificationhubs_scenario.py +++ b/src/notification-hub/azext_notification_hub/tests/latest/test_notificationhubs_scenario.py @@ -7,7 +7,7 @@ import unittest import time -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, JMESPathCheck, JMESPathCheckExists) diff --git a/src/peering/azext_peering/tests/latest/preparers.py b/src/peering/azext_peering/tests/latest/preparers.py index ec67973c0cb..083eea6bd51 100644 --- a/src/peering/azext_peering/tests/latest/preparers.py +++ b/src/peering/azext_peering/tests/latest/preparers.py @@ -12,7 +12,7 @@ import os from datetime import datetime -from azure_devtools.scenario_tests import SingleValueReplacer +from azure.cli.testsdk.scenario_tests import SingleValueReplacer from azure.cli.testsdk.preparers import NoTrafficRecordingPreparer from azure.cli.testsdk.exceptions import CliTestError from azure.cli.testsdk.reverse_dependency import get_dummy_cli diff --git a/src/peering/azext_peering/tests/latest/test_peering_scenario.py b/src/peering/azext_peering/tests/latest/test_peering_scenario.py index c3196dade77..9cb504c6d16 100644 --- a/src/peering/azext_peering/tests/latest/test_peering_scenario.py +++ b/src/peering/azext_peering/tests/latest/test_peering_scenario.py @@ -11,7 +11,7 @@ # import os # import unittest # -# from azure_devtools.scenario_tests import AllowLargeResponse +# from azure.cli.testsdk.scenario_tests import AllowLargeResponse # from azure.cli.testsdk import ScenarioTest # from .. import try_manual # from azure.cli.testsdk import ResourceGroupPreparer diff --git a/src/portal/azext_portal/tests/latest/preparers.py b/src/portal/azext_portal/tests/latest/preparers.py index 1388cfd22cc..8b1d7b72b2f 100644 --- a/src/portal/azext_portal/tests/latest/preparers.py +++ b/src/portal/azext_portal/tests/latest/preparers.py @@ -6,7 +6,7 @@ import os from datetime import datetime from azure.cli.testsdk.preparers import NoTrafficRecordingPreparer -from azure_devtools.scenario_tests import SingleValueReplacer +from azure.cli.testsdk.scenario_tests import SingleValueReplacer from azure.cli.testsdk.exceptions import CliTestError from azure.cli.testsdk.reverse_dependency import get_dummy_cli diff --git a/src/portal/azext_portal/tests/latest/test_portal_scenario.py b/src/portal/azext_portal/tests/latest/test_portal_scenario.py index 314740bbbe6..cd1f1e27d08 100644 --- a/src/portal/azext_portal/tests/latest/test_portal_scenario.py +++ b/src/portal/azext_portal/tests/latest/test_portal_scenario.py @@ -6,7 +6,7 @@ import os import unittest -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import JMESPathCheck from azure.cli.testsdk import JMESPathCheckExists from azure.cli.testsdk import NoneCheck diff --git a/src/providerhub/azext_providerhub/tests/latest/example_steps.py b/src/providerhub/azext_providerhub/tests/latest/example_steps.py index d8d9b2591d5..ace06ccfff3 100644 --- a/src/providerhub/azext_providerhub/tests/latest/example_steps.py +++ b/src/providerhub/azext_providerhub/tests/latest/example_steps.py @@ -9,7 +9,7 @@ # -------------------------------------------------------------------------- from azure.cli.testsdk import (live_only) -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from .. import try_manual diff --git a/src/quantum/HISTORY.rst b/src/quantum/HISTORY.rst index 71b8222f5a1..64098491d23 100644 --- a/src/quantum/HISTORY.rst +++ b/src/quantum/HISTORY.rst @@ -3,6 +3,16 @@ Release History =============== +0.11.0 +++++++ +* [2021-12-14] Version intended to work with QDK version v0.21.2112.180703 +* Job result histograms will be left-aligned (not centered) in console output. + +0.10.0 +++++++ +* [2021-11-22] Version intended to work with QDK version v0.20.2111.177148 +* Fixed issue where the update prompt shows during test automation and should be suppressed. + 0.9.0 ++++++ * [2021-10-25] Version intended to work with QDK version v0.20.2110.171573 diff --git a/src/quantum/azext_quantum/__init__.py b/src/quantum/azext_quantum/__init__.py index 6f7072fea8c..15b17d5adc1 100644 --- a/src/quantum/azext_quantum/__init__.py +++ b/src/quantum/azext_quantum/__init__.py @@ -11,7 +11,7 @@ # This is the version reported by the CLI to the service when submitting requests. # This should be in sync with the extension version in 'setup.py', unless we need to # submit using a different version. -CLI_REPORTED_VERSION = "0.9.0" +CLI_REPORTED_VERSION = "0.11.0" class QuantumCommandsLoader(AzCommandsLoader): diff --git a/src/quantum/azext_quantum/_version_check_helper.py b/src/quantum/azext_quantum/_version_check_helper.py index e23d3791e3e..7bcc8693d35 100644 --- a/src/quantum/azext_quantum/_version_check_helper.py +++ b/src/quantum/azext_quantum/_version_check_helper.py @@ -44,7 +44,7 @@ def check_version(config, reported_version, today): if latest_version_dict is not None: latest_version = latest_version_dict['version'].split(' ')[0] - if reported_version != latest_version: + if reported_version != latest_version and reported_version is not None and latest_version is not None: return (f"\nVersion {reported_version} of the quantum extension is installed locally," f" but version {latest_version} is now available.\n" "You can use 'az extension update -n quantum' to upgrade.\n") diff --git a/src/quantum/azext_quantum/commands.py b/src/quantum/azext_quantum/commands.py index 411f28337e1..508c09b8abd 100644 --- a/src/quantum/azext_quantum/commands.py +++ b/src/quantum/azext_quantum/commands.py @@ -64,7 +64,7 @@ def one(key, value): return OrderedDict([ ('Result', key), ('Frequency', f"{value:10.8f}"), - ('', f"\u007C{barra:^20}\u007C") + ('', f"\u007C{barra:<20}\u007C") ]) if 'Histogram' in results: diff --git a/src/quantum/azext_quantum/tests/latest/test_quantum_jobs.py b/src/quantum/azext_quantum/tests/latest/test_quantum_jobs.py index 01fbaf329d5..7eae5979b64 100644 --- a/src/quantum/azext_quantum/tests/latest/test_quantum_jobs.py +++ b/src/quantum/azext_quantum/tests/latest/test_quantum_jobs.py @@ -3,14 +3,16 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- +import json import os import unittest -from azure_devtools.scenario_tests import AllowLargeResponse, live_only +from azure.cli.testsdk.scenario_tests import AllowLargeResponse, live_only from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) from .utils import get_test_subscription_id, get_test_resource_group, get_test_workspace, get_test_workspace_location from ..._client_factory import _get_data_credentials +from ...commands import transform_output from ...operations.workspace import WorkspaceInfo from ...operations.target import TargetInfo from ...operations.job import _generate_submit_args, _parse_blob_url @@ -88,3 +90,18 @@ def test_parse_blob_url(self): self.assertEquals(args['container'], "qio") self.assertEquals(args['blob'], "rawOutputData") self.assertEquals(args['sas_token'], sas) + + def test_transform_output(self): + # Call with a good histogram + test_job_results = '{"Histogram":["[0,0,0]",0.125,"[1,0,0]",0.125,"[0,1,0]",0.125,"[1,1,0]",0.125]}' + table = transform_output(json.loads(test_job_results)) + table_row = table[0] + hist_row = table_row[''] + second_char = hist_row[1] + self.assertEquals(second_char, "\u2588") # Expecting a "Full Block" character here + + # Give it a malformed histogram + test_job_results = '{"Histogram":["[0,0,0]",0.125,"[1,0,0]",0.125,"[0,1,0]",0.125,"[1,1,0]"]}' + table = transform_output(json.loads(test_job_results)) + self.assertEquals(table, json.loads(test_job_results)) # No transform should be done if input param is bad + \ No newline at end of file diff --git a/src/quantum/azext_quantum/tests/latest/test_quantum_targets.py b/src/quantum/azext_quantum/tests/latest/test_quantum_targets.py index 88742aa676d..ed2ff2ba9a7 100644 --- a/src/quantum/azext_quantum/tests/latest/test_quantum_targets.py +++ b/src/quantum/azext_quantum/tests/latest/test_quantum_targets.py @@ -6,7 +6,7 @@ import os import unittest -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) from .utils import get_test_resource_group, get_test_workspace, get_test_workspace_location diff --git a/src/quantum/azext_quantum/tests/latest/test_quantum_workspace.py b/src/quantum/azext_quantum/tests/latest/test_quantum_workspace.py index 62a56f476a2..bd46597fcf0 100644 --- a/src/quantum/azext_quantum/tests/latest/test_quantum_workspace.py +++ b/src/quantum/azext_quantum/tests/latest/test_quantum_workspace.py @@ -6,7 +6,7 @@ import os import unittest -from azure_devtools.scenario_tests import AllowLargeResponse, live_only +from azure.cli.testsdk.scenario_tests import AllowLargeResponse, live_only from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) from azure.cli.core.azclierror import RequiredArgumentMissingError, ResourceNotFoundError @@ -104,11 +104,13 @@ def test_version_check(self): test_config = None message = check_version(test_config, test_current_reported_version, test_old_date) - assert test_current_reported_version in message + assert message is None + # Note: list_versions("quantum") fails during these tests, so latest version number cannot be determined. + # No message is generated if either version number is unavailable. message = check_version(test_config, test_old_reported_version, test_old_date) - assert test_old_reported_version in message + assert message is None message = check_version(test_config, test_none_version, test_today) - assert message is None # Note: list_versions("quantum") fails during these tests + assert message is None \ No newline at end of file diff --git a/src/quantum/setup.py b/src/quantum/setup.py index a656c818235..1bf835c5837 100644 --- a/src/quantum/setup.py +++ b/src/quantum/setup.py @@ -17,7 +17,7 @@ # This version should match the latest entry in HISTORY.rst # Also, when updating this, please review the version used by the extension to # submit requests, which can be found at './azext_quantum/__init__.py' -VERSION = '0.9.0' +VERSION = '0.11.0' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers @@ -55,3 +55,4 @@ install_requires=DEPENDENCIES, package_data={'azext_quantum': ['azext_metadata.json']}, ) + diff --git a/src/rdbms-connect/HISTORY.rst b/src/rdbms-connect/HISTORY.rst index 72e2fa1428a..3c068b335ec 100644 --- a/src/rdbms-connect/HISTORY.rst +++ b/src/rdbms-connect/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +1.0.0 +++++++ ++ GA release for 'az postgres flexible-server connect' and 'az postgres flexible-server execute' commands. + 0.1.4 ++++++ + GA release for 'az mysql flexible-server connect' and 'az mysql flexible-server execute' commands. diff --git a/src/rdbms-connect/azext_rdbms_connect/commands.py b/src/rdbms-connect/azext_rdbms_connect/commands.py index 3a0672c035d..5fcb76f2398 100644 --- a/src/rdbms-connect/azext_rdbms_connect/commands.py +++ b/src/rdbms-connect/azext_rdbms_connect/commands.py @@ -11,6 +11,6 @@ def load_command_table(self, _): g.custom_command('connect', 'connect_to_flexible_server_mysql') g.custom_command('execute', 'execute_flexible_server_mysql') - with self.command_group('postgres flexible-server', is_preview=True) as g: + with self.command_group('postgres flexible-server') as g: g.custom_command('connect', 'connect_to_flexible_server_postgres') g.custom_command('execute', 'execute_flexible_server_postgres') diff --git a/src/rdbms-connect/azext_rdbms_connect/tests/latest/test_rdbms-connect_scenario.py b/src/rdbms-connect/azext_rdbms_connect/tests/latest/test_rdbms-connect_scenario.py index a82c734b3d9..65064ee96cc 100644 --- a/src/rdbms-connect/azext_rdbms_connect/tests/latest/test_rdbms-connect_scenario.py +++ b/src/rdbms-connect/azext_rdbms_connect/tests/latest/test_rdbms-connect_scenario.py @@ -6,7 +6,7 @@ import os import unittest -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import ( JMESPathCheck, NoneCheck, diff --git a/src/rdbms-connect/setup.py b/src/rdbms-connect/setup.py index ef6c120d43f..e4da1608937 100644 --- a/src/rdbms-connect/setup.py +++ b/src/rdbms-connect/setup.py @@ -16,7 +16,7 @@ # TODO: Confirm this is the right version number you want and it matches your # HISTORY.rst entry. -VERSION = '0.1.4' +VERSION = '1.0.0' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers diff --git a/src/resource-graph/azext_resourcegraph/tests/latest/test_resourcegraph_commands.py b/src/resource-graph/azext_resourcegraph/tests/latest/test_resourcegraph_commands.py index cf6d6d0554e..026ffdf0cd6 100644 --- a/src/resource-graph/azext_resourcegraph/tests/latest/test_resourcegraph_commands.py +++ b/src/resource-graph/azext_resourcegraph/tests/latest/test_resourcegraph_commands.py @@ -5,7 +5,7 @@ # pylint: disable=line-too-long from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer -from azure_devtools.scenario_tests.const import MOCKED_SUBSCRIPTION_ID +from azure.cli.testsdk.scenario_tests.const import MOCKED_SUBSCRIPTION_ID from knack.util import CLIError from six import string_types import json diff --git a/src/resource-mover/azext_resource_mover/tests/latest/test_resourcemover_scenarios.py b/src/resource-mover/azext_resource_mover/tests/latest/test_resourcemover_scenarios.py index 95a11619053..6ee0d946729 100644 --- a/src/resource-mover/azext_resource_mover/tests/latest/test_resourcemover_scenarios.py +++ b/src/resource-mover/azext_resource_mover/tests/latest/test_resourcemover_scenarios.py @@ -8,7 +8,7 @@ import time from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) -from azure_devtools.scenario_tests import RecordingProcessor +from azure.cli.testsdk.scenario_tests import RecordingProcessor class RoleAssignmentReplacer(RecordingProcessor): diff --git a/src/securityinsight/azext_sentinel/tests/latest/test_sentinel_scenario.py b/src/securityinsight/azext_sentinel/tests/latest/test_sentinel_scenario.py index 24904409004..59aa5bcdffe 100644 --- a/src/securityinsight/azext_sentinel/tests/latest/test_sentinel_scenario.py +++ b/src/securityinsight/azext_sentinel/tests/latest/test_sentinel_scenario.py @@ -12,7 +12,7 @@ from azure.cli.testsdk import ScenarioTest from .. import try_manual, raise_if, calc_coverage from azure.cli.testsdk import ResourceGroupPreparer -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) diff --git a/src/serial-console/azext_serialconsole/tests/latest/test_serialconsole_scenario.py b/src/serial-console/azext_serialconsole/tests/latest/test_serialconsole_scenario.py index 5058ea123e8..d8cbd93dc0f 100644 --- a/src/serial-console/azext_serialconsole/tests/latest/test_serialconsole_scenario.py +++ b/src/serial-console/azext_serialconsole/tests/latest/test_serialconsole_scenario.py @@ -18,7 +18,7 @@ from azure.cli.core.azclierror import AzureConnectionError from azure.cli.core.azclierror import ForbiddenError from azure.core.exceptions import ResourceNotFoundError as ComputeClientResourceNotFoundError -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) diff --git a/src/service_name.json b/src/service_name.json index f4aa1ba7e46..1dc8749662b 100644 --- a/src/service_name.json +++ b/src/service_name.json @@ -4,6 +4,16 @@ "AzureServiceName": "Azure CLI", "URL": "" }, + { + "Command": "az acr", + "AzureServiceName": "Azure Container Registry", + "URL": "https://docs.microsoft.com/azure/container-registry/" + }, + { + "Command": "az ad", + "AzureServiceName": "Azure Active Directory", + "URL": "https://docs.microsoft.com/en-us/azure/active-directory/" + }, { "Command": "az ai-examples", "AzureServiceName": "Microsoft AI", @@ -532,7 +542,6 @@ { "Command": "az azurestackhci", "AzureServiceName": "Azure Stack HCI", - "URL": "https://docs.microsoft.com/en-us/cli/azure/stack-hci?view=azure-cli-latest" + "URL": "https://docs.microsoft.com/en-us/cli/azure/azurestackhci?view=azure-cli-latest" } ] - diff --git a/src/spring-cloud/HISTORY.md b/src/spring-cloud/HISTORY.md index 9784eca81d0..7474e7770b2 100644 --- a/src/spring-cloud/HISTORY.md +++ b/src/spring-cloud/HISTORY.md @@ -1,5 +1,9 @@ Release History =============== +2.12.1 +----- +* Fix list services by subscription issue + 2.12.0 ----- * Add --disable-probe argument into 'az spring-cloud app create', 'az spring-cloud app update', 'az spring-cloud app deploy' and 'az spring-cloud app deployment create' diff --git a/src/spring-cloud/azext_spring_cloud/_app_validator.py b/src/spring-cloud/azext_spring_cloud/_app_validator.py new file mode 100644 index 00000000000..ef136de6e8a --- /dev/null +++ b/src/spring-cloud/azext_spring_cloud/_app_validator.py @@ -0,0 +1,66 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +# pylint: disable=too-few-public-methods, unused-argument, redefined-builtin + +from azure.cli.core.azclierror import InvalidArgumentValueError +from msrestazure.azure_exceptions import CloudError +from azure.core.exceptions import (ResourceNotFoundError) +from ._client_factory import cf_spring_cloud + + +# pylint: disable=line-too-long,raise-missing-from +NO_PRODUCTION_DEPLOYMENT_ERROR = "No production deployment found, use --deployment to specify deployment or create deployment with: az spring-cloud app deployment create" +NO_PRODUCTION_DEPLOYMENT_SET_ERROR = "This app has no production deployment, use \"az spring-cloud app deployment create\" to create a deployment and \"az spring-cloud app set-deployment\" to set production deployment." + + +def fulfill_deployment_param(cmd, namespace): + client = cf_spring_cloud(cmd.cli_ctx) + if not namespace.name or not namespace.service or not namespace.resource_group: + return + if namespace.deployment: + namespace.deployment = _ensure_deployment_exist(client, namespace.resource_group, namespace.service, namespace.name, namespace.deployment) + else: + namespace.deployment = _ensure_active_deployment_exist_and_get(client, namespace.resource_group, namespace.service, namespace.name) + + +def active_deployment_exist(cmd, namespace): + if not namespace.name or not namespace.service or not namespace.resource_group: + return + client = cf_spring_cloud(cmd.cli_ctx) + deployment = _get_active_deployment(client, namespace.resource_group, namespace.service, namespace.name) + if not deployment: + raise InvalidArgumentValueError(NO_PRODUCTION_DEPLOYMENT_SET_ERROR) + + +def active_deployment_exist_under_app(cmd, namespace): + if not namespace.app or not namespace.service or not namespace.resource_group: + return + client = cf_spring_cloud(cmd.cli_ctx) + deployment = _get_active_deployment(client, namespace.resource_group, namespace.service, namespace.app) + if not deployment: + raise InvalidArgumentValueError(NO_PRODUCTION_DEPLOYMENT_SET_ERROR) + + +def _ensure_deployment_exist(client, resource_group, service, app, deployment): + try: + return client.deployments.get(resource_group, service, app, deployment) + except CloudError: + raise InvalidArgumentValueError('Deployment {} not found under app {}'.format(deployment, app)) + + +def _ensure_active_deployment_exist_and_get(client, resource_group, service, name): + deployment_resource = _get_active_deployment(client, resource_group, service, name) + if not deployment_resource: + raise InvalidArgumentValueError(NO_PRODUCTION_DEPLOYMENT_ERROR) + return deployment_resource + + +def _get_active_deployment(client, resource_group, service, name): + try: + deployments = client.deployments.list(resource_group, service, name) + return next(iter(x for x in deployments if x.properties.active), None) + except ResourceNotFoundError: + raise InvalidArgumentValueError('Deployments not found under App {}'.format(name)) diff --git a/src/spring-cloud/azext_spring_cloud/_params.py b/src/spring-cloud/azext_spring_cloud/_params.py index 7cd46758d36..dcd7f6739a0 100644 --- a/src/spring-cloud/azext_spring_cloud/_params.py +++ b/src/spring-cloud/azext_spring_cloud/_params.py @@ -14,6 +14,7 @@ validate_tracing_parameters_asc_create, validate_tracing_parameters_asc_update, validate_app_insights_parameters, validate_instance_count, validate_java_agent_parameters, validate_jar) +from ._app_validator import (fulfill_deployment_param, active_deployment_exist, active_deployment_exist_under_app) from ._utils import ApiType from .vendored_sdks.appplatform.v2020_07_01.models import RuntimeVersion, TestKeyType @@ -149,10 +150,14 @@ def load_arguments(self, _): for scope in ['spring-cloud app update', 'spring-cloud app start', 'spring-cloud app stop', 'spring-cloud app restart', 'spring-cloud app deploy', 'spring-cloud app scale', 'spring-cloud app set-deployment', 'spring-cloud app show-deploy-log']: with self.argument_context(scope) as c: c.argument('deployment', options_list=[ - '--deployment', '-d'], help='Name of an existing deployment of the app. Default to the production deployment if not specified.', validator=validate_deployment_name) + '--deployment', '-d'], help='Name of an existing deployment of the app. Default to the production deployment if not specified.', validator=fulfill_deployment_param) c.argument('main_entry', options_list=[ '--main-entry', '-m'], help="The path to the .NET executable relative to zip root.") + for scope in ['spring-cloud app identity', 'spring-cloud app unset-deployment']: + with self.argument_context(scope) as c: + c.argument('name', name_type, help='Name of app.', validator=active_deployment_exist) + with self.argument_context('spring-cloud app identity assign') as c: c.argument('scope', help="The scope the managed identity has access to") c.argument('role', help="Role name or id the managed identity will be assigned") @@ -165,7 +170,7 @@ def prepare_logs_argument(c): c.argument('since', help='Only return logs newer than a relative duration like 5s, 2m, or 1h. Maximum is 1h', validator=validate_log_since) c.argument('limit', type=int, help='Maximum kilobytes of logs to return. Ceiling number is 2048.', validator=validate_log_limit) c.argument('deployment', options_list=[ - '--deployment', '-d'], help='Name of an existing deployment of the app. Default to the production deployment if not specified.', validator=validate_deployment_name) + '--deployment', '-d'], help='Name of an existing deployment of the app. Default to the production deployment if not specified.', validator=fulfill_deployment_param) c.argument('format_json', nargs='?', const='{timestamp} {level:>5} [{thread:>15.15}] {logger{39}:<40.40}: {message}\n{stackTrace}', help='Format JSON logs if structured log is enabled') @@ -234,24 +239,20 @@ def prepare_logs_argument(c): for scope in ['spring-cloud app deployment generate-heap-dump', 'spring-cloud app deployment generate-thread-dump']: with self.argument_context(scope) as c: c.argument('deployment', options_list=[ - '--deployment', '-d'], help='Name of an existing deployment of the app. Default to the production deployment if not specified.', validator=validate_deployment_name) + '--deployment', '-d'], help='Name of an existing deployment of the app. Default to the production deployment if not specified.', validator=fulfill_deployment_param) c.argument('app_instance', help='Target app instance you want to dump.') c.argument('file_path', help='The mount file path for your dump file.') with self.argument_context('spring-cloud app deployment start-jfr') as c: c.argument('deployment', options_list=[ - '--deployment', '-d'], help='Name of an existing deployment of the app. Default to the production deployment if not specified.', validator=validate_deployment_name) + '--deployment', '-d'], help='Name of an existing deployment of the app. Default to the production deployment if not specified.', validator=fulfill_deployment_param) c.argument('app_instance', help='Target app instance you want to dump.') c.argument('file_path', help='The mount file path for your dump file.') c.argument('duration', type=str, default="60s", help='Duration of JFR.') - with self.argument_context('spring-cloud app deployment') as c: - c.argument('app', app_name_type, help='Name of app.', - validator=validate_app_name) - with self.argument_context('spring-cloud app binding') as c: c.argument('app', app_name_type, help='Name of app.', - validator=validate_app_name) + validator=active_deployment_exist_under_app) c.argument('name', name_type, help='Name of service binding.') for scope in ['spring-cloud app binding cosmos add', 'spring-cloud app binding mysql add', 'spring-cloud app binding redis add']: @@ -353,7 +354,7 @@ def prepare_logs_argument(c): with self.argument_context('spring-cloud app custom-domain') as c: c.argument('service', service_name_type) - c.argument('app', app_name_type, help='Name of app.', validator=validate_app_name) + c.argument('app', app_name_type, help='Name of app.', validator=active_deployment_exist_under_app) c.argument('domain_name', help='Name of custom domain.') with self.argument_context('spring-cloud app custom-domain bind') as c: diff --git a/src/spring-cloud/azext_spring_cloud/_transformers.py b/src/spring-cloud/azext_spring_cloud/_transformers.py index bb0d8f8fb9e..00bab49d449 100644 --- a/src/spring-cloud/azext_spring_cloud/_transformers.py +++ b/src/spring-cloud/azext_spring_cloud/_transformers.py @@ -30,7 +30,7 @@ def transform_app_table_output(result): item['Production Deployment'] = item['properties']['activeDeploymentName'] item['Public Url'] = item['properties']['url'] - if 'activeDeployment' in item['properties']: + if item['properties'].get('activeDeployment', None): isStarted = item['properties']['activeDeployment']['properties']['status'].upper() == "RUNNING" instance_count = item['properties']['activeDeployment']['sku']['capacity'] instances = item['properties']['activeDeployment']['properties']['instances'] diff --git a/src/spring-cloud/azext_spring_cloud/commands.py b/src/spring-cloud/azext_spring_cloud/commands.py index 4220afbcc6a..fa751b33a17 100644 --- a/src/spring-cloud/azext_spring_cloud/commands.py +++ b/src/spring-cloud/azext_spring_cloud/commands.py @@ -9,7 +9,6 @@ from ._client_factory import (cf_app_services, cf_spring_cloud, cf_spring_cloud_20201101preview, - cf_spring_cloud_20210601preview, cf_spring_cloud_20210901preview, cf_config_servers) from ._transformers import (transform_spring_cloud_table_output, diff --git a/src/spring-cloud/azext_spring_cloud/custom.py b/src/spring-cloud/azext_spring_cloud/custom.py index d026be48ea5..33d31c2ac4d 100644 --- a/src/spring-cloud/azext_spring_cloud/custom.py +++ b/src/spring-cloud/azext_spring_cloud/custom.py @@ -229,7 +229,7 @@ def spring_cloud_stop(cmd, client, resource_group, name, no_wait=False): def spring_cloud_list(cmd, client, resource_group=None): if resource_group is None: - return client.list_by_subscription() + return client.services.list_by_subscription() return client.services.list(resource_group) @@ -462,12 +462,6 @@ def _default_deployment_resource_builder(cpu, memory, env, jvm_options, runtime_ return deployment_resource -def _check_active_deployment_exist(client, resource_group, service, app): - active_deployment_name = client.apps.get(resource_group, service, app).properties.active_deployment_name - if not active_deployment_name: - logger.warning(NO_PRODUCTION_DEPLOYMENT_SET_ERROR) - - def app_update(cmd, client, resource_group, service, name, assign_endpoint=None, deployment=None, @@ -481,7 +475,6 @@ def app_update(cmd, client, resource_group, service, name, enable_end_to_end_tls=None, persistent_storage=None, loaded_public_certificate_file=None): - _check_active_deployment_exist(client, resource_group, service, name) resource = client.services.get(resource_group, service) location = resource.location @@ -549,16 +542,7 @@ def app_update(cmd, client, resource_group, service, name, app_updated = client.apps.get(resource_group, service, name) - if deployment is None: - logger.warning( - "No '--deployment' given, will update app's production deployment") - deployment = client.apps.get( - resource_group, service, name).properties.active_deployment_name - if deployment is None: - logger.warning("No production deployment found for update") - return app_updated - - logger.warning("[2/2] Updating deployment '{}'".format(deployment)) + logger.warning("[2/2] Updating deployment '{}'".format(deployment.name)) container_probe_settings = None if disable_probe is not None: container_probe_settings = models_20210901preview.DeploymentSettingsContainerProbeSettings(disable_probe=disable_probe) @@ -575,12 +559,12 @@ def app_update(cmd, client, resource_group, service, name, deployment_settings=deployment_settings) deployment_resource = models.DeploymentResource(properties=properties) poller = client.deployments.begin_update( - resource_group, service, name, deployment, deployment_resource) + resource_group, service, name, deployment.name, deployment_resource) while poller.done() is False: sleep(DEPLOYMENT_CREATE_OR_UPDATE_SLEEP_INTERVAL) deployment = client.deployments.get( - resource_group, service, name, deployment) + resource_group, service, name, deployment.name) app_updated.properties.active_deployment = deployment return app_updated @@ -599,14 +583,9 @@ def app_start(cmd, client, name, deployment=None, no_wait=False): - if deployment is None: - deployment = client.apps.get( - resource_group, service, name).properties.active_deployment_name - if deployment is None: - logger.warning(NO_PRODUCTION_DEPLOYMENT_SET_ERROR) - raise CLIError(NO_PRODUCTION_DEPLOYMENT_ERROR) + logger.warning("Successfully triggered the action 'start' for the app '{}'".format(name)) return sdk_no_wait(no_wait, client.deployments.begin_start, - resource_group, service, name, deployment) + resource_group, service, name, deployment.name) def app_stop(cmd, client, @@ -615,14 +594,9 @@ def app_stop(cmd, client, name, deployment=None, no_wait=False): - if deployment is None: - deployment = client.apps.get( - resource_group, service, name).properties.active_deployment_name - if deployment is None: - logger.warning(NO_PRODUCTION_DEPLOYMENT_SET_ERROR) - raise CLIError(NO_PRODUCTION_DEPLOYMENT_ERROR) + logger.warning("Successfully triggered the action 'stop' for the app '{}'".format(name)) return sdk_no_wait(no_wait, client.deployments.begin_stop, - resource_group, service, name, deployment) + resource_group, service, name, deployment.name) def app_restart(cmd, client, @@ -631,14 +605,9 @@ def app_restart(cmd, client, name, deployment=None, no_wait=False): - if deployment is None: - deployment = client.apps.get( - resource_group, service, name).properties.active_deployment_name - if deployment is None: - logger.warning(NO_PRODUCTION_DEPLOYMENT_SET_ERROR) - raise CLIError(NO_PRODUCTION_DEPLOYMENT_ERROR) + logger.warning("Successfully triggered the action 'restart' for the app '{}'".format(name)) return sdk_no_wait(no_wait, client.deployments.begin_restart, - resource_group, service, name, deployment) + resource_group, service, name, deployment.name) def app_list(cmd, client, @@ -648,11 +617,8 @@ def app_list(cmd, client, deployments = list( client.deployments.list_for_cluster(resource_group, service)) for app in apps: - if app.properties.active_deployment_name: - deployment = next( - (x for x in deployments if x.properties.app_name == app.name)) - app.properties.active_deployment = deployment - + app.properties.active_deployment = next(iter(x for x in deployments + if x.properties.active and x.id.startswith(app.id + '/deployments/')), None) return apps @@ -661,12 +627,9 @@ def app_get(cmd, client, service, name): app = client.apps.get(resource_group, service, name) - deployment_name = app.properties.active_deployment_name - if deployment_name: - deployment = client.deployments.get( - resource_group, service, name, deployment_name) - app.properties.active_deployment = deployment - else: + deployments = client.deployments.list(resource_group, service, name) + app.properties.active_deployment = next((x for x in deployments if x.properties.active), None) + if not app.properties.active_deployment: logger.warning(NO_PRODUCTION_DEPLOYMENT_SET_ERROR) return app @@ -686,22 +649,13 @@ def app_deploy(cmd, client, resource_group, service, name, disable_probe=None, no_wait=False): logger.warning(LOG_RUNNING_PROMPT) - if not deployment: - deployment = client.apps.get( - resource_group, service, name).properties.active_deployment_name - if not deployment: - logger.warning(NO_PRODUCTION_DEPLOYMENT_SET_ERROR) - raise CLIError(NO_PRODUCTION_DEPLOYMENT_ERROR) - - client.deployments.get(resource_group, service, name, deployment) - file_type, file_path = _get_upload_local_file(runtime_version, artifact_path, source_path) return _app_deploy(client, resource_group, service, name, - deployment, + deployment.name, version, file_path, runtime_version, @@ -726,12 +680,6 @@ def app_scale(cmd, client, resource_group, service, name, no_wait=False): cpu = validate_cpu(cpu) memory = validate_memory(memory) - if deployment is None: - deployment = client.apps.get( - resource_group, service, name).properties.active_deployment_name - if deployment is None: - logger.warning(NO_PRODUCTION_DEPLOYMENT_SET_ERROR) - raise CLIError(NO_PRODUCTION_DEPLOYMENT_ERROR) resource = client.services.get(resource_group, service) _validate_instance_count(resource.sku.tier, instance_count) @@ -746,36 +694,22 @@ def app_scale(cmd, client, resource_group, service, name, sku = models_20210601preview.Sku(name="S0", tier="STANDARD", capacity=instance_count) deployment_resource = models.DeploymentResource(properties=properties, sku=sku) return sdk_no_wait(no_wait, client.deployments.begin_update, - resource_group, service, name, deployment, deployment_resource) + resource_group, service, name, deployment.name, deployment_resource) -def app_get_build_log(cmd, client, resource_group, service, name, deployment=None): - if deployment is None: - deployment = client.apps.get( - resource_group, service, name).properties.active_deployment_name - if deployment is None: - raise CLIError(NO_PRODUCTION_DEPLOYMENT_ERROR) - deployment_properties = client.deployments.get( - resource_group, service, name, deployment).properties - if deployment_properties.source.type == "Jar" or deployment_properties.source.type == "NetCoreZip": - raise CLIError("{} deployment has no build logs.".format(deployment_properties.source.type)) - return stream_logs(client.deployments, resource_group, service, name, deployment) +def app_get_build_log(cmd, client, resource_group, service, name, deployment): + if deployment.properties.source.type != "Source": + raise CLIError("{} deployment has no build logs.".format(deployment.properties.source.type)) + return stream_logs(client.deployments, resource_group, service, name, deployment.name) def app_tail_log(cmd, client, resource_group, service, name, deployment=None, instance=None, follow=False, lines=50, since=None, limit=2048, format_json=None): if not instance: - if deployment is None: - deployment = client.apps.get( - resource_group, service, name).properties.active_deployment_name - if not deployment: - raise CLIError(NO_PRODUCTION_DEPLOYMENT_ERROR) - deployment_properties = client.deployments.get( - resource_group, service, name, deployment).properties - if not deployment_properties.instances: + if not deployment.properties.instances: raise CLIError("No instances found for deployment '{0}' in app '{1}'".format( - deployment, name)) - instances = deployment_properties.instances + deployment.name, name)) + instances = deployment.properties.instances if len(instances) > 1: logger.warning("Multiple app instances found:") for temp_instance in instances: @@ -819,7 +753,6 @@ def app_tail_log(cmd, client, resource_group, service, name, def app_identity_assign(cmd, client, resource_group, service, name, role=None, scope=None): - _check_active_deployment_exist(client, resource_group, service, name) app_resource = models_20210601preview.AppResource() identity = models_20210601preview.ManagedIdentityProperties(type="systemassigned") properties = models_20210601preview.AppResourceProperties() @@ -877,7 +810,6 @@ def app_identity_remove(cmd, client, resource_group, service, name): def app_identity_show(cmd, client, resource_group, service, name): - _check_active_deployment_exist(client, resource_group, service, name) app = client.apps.get(resource_group, service, name) return app.identity @@ -906,11 +838,6 @@ def app_set_deployment(cmd, client, resource_group, service, name, deployment): def app_unset_deployment(cmd, client, resource_group, service, name): - active_deployment_name = client.apps.get( - resource_group, service, name).properties.active_deployment_name - if not active_deployment_name: - raise CLIError(NO_PRODUCTION_DEPLOYMENT_SET_ERROR) - # It's designed to use empty string for active_deployment_name to unset active deployment properties = models_20210601preview.AppResourceProperties(active_deployment_name="") @@ -1035,48 +962,24 @@ def deployment_list(cmd, client, resource_group, service, app): def deployment_generate_heap_dump(cmd, client, resource_group, service, app, app_instance, file_path, deployment=None): - if deployment is None: - logger.warning( - "No '--deployment' given, will update app's production deployment") - deployment = client.apps.get( - resource_group, service, app).properties.active_deployment_name - if deployment is None: - logger.warning("No production deployment found for update") - return diagnostic_parameters = models_20210901preview.DiagnosticParameters(app_instance=app_instance, file_path=file_path) logger.info("Heap dump is triggered.") - return client.deployments.begin_generate_heap_dump(resource_group, service, app, deployment, diagnostic_parameters) + return client.deployments.begin_generate_heap_dump(resource_group, service, app, deployment.name, diagnostic_parameters) def deployment_generate_thread_dump(cmd, client, resource_group, service, app, app_instance, file_path, deployment=None): - if deployment is None: - logger.warning( - "No '--deployment' given, will update app's production deployment") - deployment = client.apps.get( - resource_group, service, app).properties.active_deployment_name - if deployment is None: - logger.warning("No production deployment found for update") - return diagnostic_parameters = models_20210901preview.DiagnosticParameters(app_instance=app_instance, file_path=file_path) logger.info("Thread dump is triggered.") - return client.deployments.begin_generate_thread_dump(resource_group, service, app, deployment, diagnostic_parameters) + return client.deployments.begin_generate_thread_dump(resource_group, service, app, deployment.name, diagnostic_parameters) def deployment_start_jfr(cmd, client, resource_group, service, app, app_instance, file_path, duration=None, deployment=None): - if deployment is None: - logger.warning( - "No '--deployment' given, will update app's production deployment") - deployment = client.apps.get( - resource_group, service, app).properties.active_deployment_name - if deployment is None: - logger.warning("No production deployment found for update") - return diagnostic_parameters = models_20210901preview.DiagnosticParameters(app_instance=app_instance, file_path=file_path, duration=duration) logger.info("JFR is triggered.") - return client.deployments.begin_start_jfr(resource_group, service, app, deployment, diagnostic_parameters) + return client.deployments.begin_start_jfr(resource_group, service, app, deployment.name, diagnostic_parameters) def deployment_get(cmd, client, resource_group, service, app, name): @@ -1360,12 +1263,10 @@ def config_repo_list(cmd, client, resource_group, name): def binding_list(cmd, client, resource_group, service, app): - _check_active_deployment_exist(client, resource_group, service, app) return client.bindings.list(resource_group, service, app) def binding_get(cmd, client, resource_group, service, app, name): - _check_active_deployment_exist(client, resource_group, service, app) return client.bindings.get(resource_group, service, app, name) @@ -1379,7 +1280,6 @@ def binding_cosmos_add(cmd, client, resource_group, service, app, name, database_name=None, key_space=None, collection_name=None): - _check_active_deployment_exist(client, resource_group, service, app) resource_id_dict = parse_resource_id(resource_id) resource_type = resource_id_dict['resource_type'] resource_name = resource_id_dict['resource_name'] @@ -1413,7 +1313,6 @@ def binding_cosmos_update(cmd, client, resource_group, service, app, name, database_name=None, key_space=None, collection_name=None): - _check_active_deployment_exist(client, resource_group, service, app) binding = client.bindings.get(resource_group, service, app, name).properties resource_id = binding.resource_id resource_name = binding.resource_name @@ -1441,7 +1340,6 @@ def binding_mysql_add(cmd, client, resource_group, service, app, name, key, username, database_name): - _check_active_deployment_exist(client, resource_group, service, app) resource_id_dict = parse_resource_id(resource_id) resource_type = resource_id_dict['resource_type'] resource_name = resource_id_dict['resource_name'] @@ -1464,7 +1362,6 @@ def binding_mysql_update(cmd, client, resource_group, service, app, name, key=None, username=None, database_name=None): - _check_active_deployment_exist(client, resource_group, service, app) binding_parameters = {} binding_parameters['username'] = username binding_parameters['databaseName'] = database_name @@ -1480,7 +1377,6 @@ def binding_mysql_update(cmd, client, resource_group, service, app, name, def binding_redis_add(cmd, client, resource_group, service, app, name, resource_id, disable_ssl=None): - _check_active_deployment_exist(client, resource_group, service, app) use_ssl = not disable_ssl resource_id_dict = parse_resource_id(resource_id) resource_type = resource_id_dict['resource_type'] @@ -1507,7 +1403,6 @@ def binding_redis_add(cmd, client, resource_group, service, app, name, def binding_redis_update(cmd, client, resource_group, service, app, name, disable_ssl=None): - _check_active_deployment_exist(client, resource_group, service, app) binding = client.bindings.get(resource_group, service, app, name).properties resource_id = binding.resource_id resource_name = binding.resource_name @@ -1947,7 +1842,6 @@ def domain_bind(cmd, client, resource_group, service, app, domain_name, certificate=None, enable_end_to_end_tls=None): - _check_active_deployment_exist(client, resource_group, service, app) properties = models.CustomDomainProperties() if certificate is not None: certificate_response = client.certificates.get(resource_group, service, certificate) @@ -1980,12 +1874,10 @@ def _update_app_e2e_tls(cmd, resource_group, service, app, enable_end_to_end_tls def domain_show(cmd, client, resource_group, service, app, domain_name): - _check_active_deployment_exist(client, resource_group, service, app) return client.custom_domains.get(resource_group, service, app, domain_name) def domain_list(cmd, client, resource_group, service, app): - _check_active_deployment_exist(client, resource_group, service, app) return client.custom_domains.list(resource_group, service, app) @@ -1993,7 +1885,6 @@ def domain_update(cmd, client, resource_group, service, app, domain_name, certificate=None, enable_end_to_end_tls=None): - _check_active_deployment_exist(client, resource_group, service, app) properties = models.CustomDomainProperties() if certificate is not None: certificate_response = client.certificates.get(resource_group, service, certificate) diff --git a/src/spring-cloud/azext_spring_cloud/tests/latest/recordings/test_bind_cert_to_domain.yaml b/src/spring-cloud/azext_spring_cloud/tests/latest/recordings/test_bind_cert_to_domain.yaml index 719614cb397..4c5325d591b 100644 --- a/src/spring-cloud/azext_spring_cloud/tests/latest/recordings/test_bind_cert_to_domain.yaml +++ b/src/spring-cloud/azext_spring_cloud/tests/latest/recordings/test_bind_cert_to_domain.yaml @@ -1,972 +1,1024 @@ -interactions: -- request: - body: '{"properties": {"type": "KeyVaultCertificate", "vaultUri": "https://integration-test-prod.vault.azure.net/", - "keyVaultCertName": "cli-unittest", "excludePrivateKey": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - spring-cloud certificate add - Connection: - - keep-alive - Content-Length: - - '173' - Content-Type: - - application/json - ParameterSetName: - - --name --vault-uri --vault-certificate-name -g -s - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-appplatform/1.0.0b1 Python/3.8.10 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert?api-version=2021-09-01-preview - response: - body: - string: '{"properties":{"vaultUri":"https://integration-test-prod.vault.azure.net/","keyVaultCertName":"cli-unittest","certVersion":"7fb4a84d12c042dcaf590a8d4a8d5c99","excludePrivateKey":false,"type":"KeyVaultCertificate","thumbprint":"e1c623ea873cdc6a80f8682e0949c654fe2151db","issuer":"*.asc-test.net","expirationDate":"2022-02-24T04:52:26.000+00:00","activateDate":"2021-02-24T04:42:26.000+00:00","subjectName":"*.asc-test.net","dnsNames":["cli.asc-test.net"]},"type":"Microsoft.AppPlatform/Spring/certificates","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert","name":"test-cert"}' - headers: - cache-control: - - no-cache - content-length: - - '678' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 21 Oct 2021 03:30:31 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-rp-server-mvid: - - 2a353e89-73a9-4f4f-af75-66a74612521b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - spring-cloud certificate show - Connection: - - keep-alive - ParameterSetName: - - --name -g -s - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-appplatform/1.0.0b1 Python/3.8.10 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert?api-version=2021-09-01-preview - response: - body: - string: '{"properties":{"vaultUri":"https://integration-test-prod.vault.azure.net/","keyVaultCertName":"cli-unittest","certVersion":"7fb4a84d12c042dcaf590a8d4a8d5c99","excludePrivateKey":false,"type":"KeyVaultCertificate","thumbprint":"e1c623ea873cdc6a80f8682e0949c654fe2151db","issuer":"*.asc-test.net","expirationDate":"2022-02-24T04:52:26.000+00:00","activateDate":"2021-02-24T04:42:26.000+00:00","subjectName":"*.asc-test.net","dnsNames":["cli.asc-test.net"]},"type":"Microsoft.AppPlatform/Spring/certificates","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert","name":"test-cert"}' - headers: - cache-control: - - no-cache - content-length: - - '678' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 21 Oct 2021 03:30:34 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-rp-server-mvid: - - 2a353e89-73a9-4f4f-af75-66a74612521b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - spring-cloud certificate list - Connection: - - keep-alive - ParameterSetName: - - -g -s - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-appplatform/1.0.0b1 Python/3.8.10 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates?api-version=2021-09-01-preview - response: - body: - string: '{"value":[{"properties":{"vaultUri":"https://integration-test-prod.vault.azure.net/","keyVaultCertName":"cli-unittest","certVersion":"7fb4a84d12c042dcaf590a8d4a8d5c99","excludePrivateKey":false,"type":"KeyVaultCertificate","thumbprint":"e1c623ea873cdc6a80f8682e0949c654fe2151db","issuer":"*.asc-test.net","expirationDate":"2022-02-24T04:52:26.000+00:00","activateDate":"2021-02-24T04:42:26.000+00:00","subjectName":"*.asc-test.net","dnsNames":["cli.asc-test.net"]},"type":"Microsoft.AppPlatform/Spring/certificates","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert","name":"test-cert"}]}' - headers: - cache-control: - - no-cache - content-length: - - '690' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 21 Oct 2021 03:30:37 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-rp-server-mvid: - - 2a353e89-73a9-4f4f-af75-66a74612521b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - spring-cloud app custom-domain bind - Connection: - - keep-alive - ParameterSetName: - - --domain-name --app -g -s - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.8.10 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app?api-version=2020-07-01 - response: - body: - string: '{"properties":{"public":false,"provisioningState":"Succeeded","activeDeploymentName":"default","fqdn":"cli-unittest.azuremicroservices.io","httpsOnly":false,"createdTime":"2021-10-21T03:05:36.403Z","temporaryDisk":{"sizeInGB":5,"mountPath":"/tmp"},"persistentDisk":{"sizeInGB":0,"mountPath":"/persistent"}},"type":"Microsoft.AppPlatform/Spring/apps","identity":null,"location":"centralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app","name":"test-app"}' - headers: - cache-control: - - no-cache - content-length: - - '551' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 21 Oct 2021 03:30:40 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-rp-server-mvid: - - 2a353e89-73a9-4f4f-af75-66a74612521b - status: - code: 200 - message: OK -- request: - body: '{"properties": {}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - spring-cloud app custom-domain bind - Connection: - - keep-alive - Content-Length: - - '18' - Content-Type: - - application/json - ParameterSetName: - - --domain-name --app -g -s - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.8.10 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net?api-version=2020-07-01 - response: - body: - string: '{"properties":{"appName":"test-app"},"type":"Microsoft.AppPlatform/Spring/apps/domains","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net","name":"cli.asc-test.net"}' - headers: - cache-control: - - no-cache - content-length: - - '283' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 21 Oct 2021 03:30:41 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-rp-server-mvid: - - 2a353e89-73a9-4f4f-af75-66a74612521b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - spring-cloud app custom-domain show - Connection: - - keep-alive - ParameterSetName: - - --domain-name --app -g -s - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.8.10 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app?api-version=2020-07-01 - response: - body: - string: '{"properties":{"public":false,"provisioningState":"Succeeded","activeDeploymentName":"default","fqdn":"cli-unittest.azuremicroservices.io","httpsOnly":false,"createdTime":"2021-10-21T03:05:36.403Z","temporaryDisk":{"sizeInGB":5,"mountPath":"/tmp"},"persistentDisk":{"sizeInGB":0,"mountPath":"/persistent"}},"type":"Microsoft.AppPlatform/Spring/apps","identity":null,"location":"centralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app","name":"test-app"}' - headers: - cache-control: - - no-cache - content-length: - - '551' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 21 Oct 2021 03:30:43 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-rp-server-mvid: - - 2a353e89-73a9-4f4f-af75-66a74612521b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - spring-cloud app custom-domain show - Connection: - - keep-alive - ParameterSetName: - - --domain-name --app -g -s - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.8.10 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net?api-version=2020-07-01 - response: - body: - string: '{"properties":{"appName":"test-app"},"type":"Microsoft.AppPlatform/Spring/apps/domains","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net","name":"cli.asc-test.net"}' - headers: - cache-control: - - no-cache - content-length: - - '283' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 21 Oct 2021 03:30:44 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-rp-server-mvid: - - 2a353e89-73a9-4f4f-af75-66a74612521b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - spring-cloud app custom-domain list - Connection: - - keep-alive - ParameterSetName: - - --app -g -s - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.8.10 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app?api-version=2020-07-01 - response: - body: - string: '{"properties":{"public":false,"provisioningState":"Succeeded","activeDeploymentName":"default","fqdn":"cli-unittest.azuremicroservices.io","httpsOnly":false,"createdTime":"2021-10-21T03:05:36.403Z","temporaryDisk":{"sizeInGB":5,"mountPath":"/tmp"},"persistentDisk":{"sizeInGB":0,"mountPath":"/persistent"}},"type":"Microsoft.AppPlatform/Spring/apps","identity":null,"location":"centralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app","name":"test-app"}' - headers: - cache-control: - - no-cache - content-length: - - '551' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 21 Oct 2021 03:30:47 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' - x-rp-server-mvid: - - 2a353e89-73a9-4f4f-af75-66a74612521b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - spring-cloud app custom-domain list - Connection: - - keep-alive - ParameterSetName: - - --app -g -s - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.8.10 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains?api-version=2020-07-01 - response: - body: - string: '{"value":[{"properties":{"appName":"test-app"},"type":"Microsoft.AppPlatform/Spring/apps/domains","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net","name":"cli.asc-test.net"}]}' - headers: - cache-control: - - no-cache - content-length: - - '295' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 21 Oct 2021 03:30:47 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-rp-server-mvid: - - 2a353e89-73a9-4f4f-af75-66a74612521b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - spring-cloud app custom-domain update - Connection: - - keep-alive - ParameterSetName: - - --domain-name --certificate --app -g -s - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.8.10 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app?api-version=2020-07-01 - response: - body: - string: '{"properties":{"public":false,"provisioningState":"Succeeded","activeDeploymentName":"default","fqdn":"cli-unittest.azuremicroservices.io","httpsOnly":false,"createdTime":"2021-10-21T03:05:36.403Z","temporaryDisk":{"sizeInGB":5,"mountPath":"/tmp"},"persistentDisk":{"sizeInGB":0,"mountPath":"/persistent"}},"type":"Microsoft.AppPlatform/Spring/apps","identity":null,"location":"centralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app","name":"test-app"}' - headers: - cache-control: - - no-cache - content-length: - - '551' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 21 Oct 2021 03:30:50 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' - x-rp-server-mvid: - - 2a353e89-73a9-4f4f-af75-66a74612521b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - spring-cloud app custom-domain update - Connection: - - keep-alive - ParameterSetName: - - --domain-name --certificate --app -g -s - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.8.10 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert?api-version=2020-07-01 - response: - body: - string: '{"properties":{"vaultUri":"https://integration-test-prod.vault.azure.net/","keyVaultCertName":"cli-unittest","certVersion":"7fb4a84d12c042dcaf590a8d4a8d5c99","thumbprint":"e1c623ea873cdc6a80f8682e0949c654fe2151db","issuer":"*.asc-test.net","expirationDate":"2022-02-24T04:52:26.000+00:00","activateDate":"2021-02-24T04:42:26.000+00:00","subjectName":"*.asc-test.net","dnsNames":["cli.asc-test.net"]},"type":"Microsoft.AppPlatform/Spring/certificates","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert","name":"test-cert"}' - headers: - cache-control: - - no-cache - content-length: - - '623' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 21 Oct 2021 03:30:50 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-rp-server-mvid: - - 2a353e89-73a9-4f4f-af75-66a74612521b - status: - code: 200 - message: OK -- request: - body: '{"properties": {"thumbprint": "e1c623ea873cdc6a80f8682e0949c654fe2151db", - "certName": "test-cert"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - spring-cloud app custom-domain update - Connection: - - keep-alive - Content-Length: - - '99' - Content-Type: - - application/json - ParameterSetName: - - --domain-name --certificate --app -g -s - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.8.10 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net?api-version=2020-07-01 - response: - body: - string: '{"properties":{"thumbprint":"e1c623ea873cdc6a80f8682e0949c654fe2151db","appName":"test-app","certName":"test-cert"},"type":"Microsoft.AppPlatform/Spring/apps/domains","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net","name":"cli.asc-test.net"}' - headers: - cache-control: - - no-cache - content-length: - - '362' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 21 Oct 2021 03:30:51 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - x-rp-server-mvid: - - 2a353e89-73a9-4f4f-af75-66a74612521b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - spring-cloud app custom-domain unbind - Connection: - - keep-alive - ParameterSetName: - - --domain-name --app -g -s - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.8.10 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net?api-version=2020-07-01 - response: - body: - string: '{"properties":{"thumbprint":"e1c623ea873cdc6a80f8682e0949c654fe2151db","appName":"test-app","certName":"test-cert"},"type":"Microsoft.AppPlatform/Spring/apps/domains","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net","name":"cli.asc-test.net"}' - headers: - cache-control: - - no-cache - content-length: - - '362' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 21 Oct 2021 03:30:52 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-rp-server-mvid: - - 2a353e89-73a9-4f4f-af75-66a74612521b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - spring-cloud app custom-domain unbind - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --domain-name --app -g -s - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.8.10 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net?api-version=2020-07-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 21 Oct 2021 03:30:54 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-rp-server-mvid: - - 2a353e89-73a9-4f4f-af75-66a74612521b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - spring-cloud app custom-domain show - Connection: - - keep-alive - ParameterSetName: - - --domain-name --app -g -s - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.8.10 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app?api-version=2020-07-01 - response: - body: - string: '{"properties":{"public":false,"provisioningState":"Succeeded","activeDeploymentName":"default","fqdn":"cli-unittest.azuremicroservices.io","httpsOnly":false,"createdTime":"2021-10-21T03:05:36.403Z","temporaryDisk":{"sizeInGB":5,"mountPath":"/tmp"},"persistentDisk":{"sizeInGB":0,"mountPath":"/persistent"}},"type":"Microsoft.AppPlatform/Spring/apps","identity":null,"location":"centralus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app","name":"test-app"}' - headers: - cache-control: - - no-cache - content-length: - - '551' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 21 Oct 2021 03:30:57 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' - x-rp-server-mvid: - - 2a353e89-73a9-4f4f-af75-66a74612521b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - spring-cloud app custom-domain show - Connection: - - keep-alive - ParameterSetName: - - --domain-name --app -g -s - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.8.10 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net?api-version=2020-07-01 - response: - body: - string: '{"error":{"code":"EntityNotFound","message":"CustomDomain ''cli.asc-test.net'' - not found.","target":null,"details":null}}' - headers: - cache-control: - - no-cache - content-length: - - '119' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 21 Oct 2021 03:30:57 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - 2a353e89-73a9-4f4f-af75-66a74612521b - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - spring-cloud certificate remove - Connection: - - keep-alive - ParameterSetName: - - --name -g -s - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-appplatform/1.0.0b1 Python/3.8.10 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert?api-version=2021-09-01-preview - response: - body: - string: '{"properties":{"vaultUri":"https://integration-test-prod.vault.azure.net/","keyVaultCertName":"cli-unittest","certVersion":"7fb4a84d12c042dcaf590a8d4a8d5c99","excludePrivateKey":false,"type":"KeyVaultCertificate","thumbprint":"e1c623ea873cdc6a80f8682e0949c654fe2151db","issuer":"*.asc-test.net","expirationDate":"2022-02-24T04:52:26.000+00:00","activateDate":"2021-02-24T04:42:26.000+00:00","subjectName":"*.asc-test.net","dnsNames":["cli.asc-test.net"]},"type":"Microsoft.AppPlatform/Spring/certificates","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert","name":"test-cert"}' - headers: - cache-control: - - no-cache - content-length: - - '678' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 21 Oct 2021 03:31:00 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-rp-server-mvid: - - 2a353e89-73a9-4f4f-af75-66a74612521b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - spring-cloud certificate remove - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name -g -s - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-appplatform/1.0.0b1 Python/3.8.10 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert?api-version=2021-09-01-preview - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 21 Oct 2021 03:31:00 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-rp-server-mvid: - - 2a353e89-73a9-4f4f-af75-66a74612521b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - spring-cloud certificate show - Connection: - - keep-alive - ParameterSetName: - - --name -g -s - User-Agent: - - AZURECLI/2.27.0 azsdk-python-mgmt-appplatform/1.0.0b1 Python/3.8.10 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert?api-version=2021-09-01-preview - response: - body: - string: '{"error":{"code":"EntityNotFound","message":"Certificate ''test-cert'' - not found.","target":null,"details":null}}' - headers: - cache-control: - - no-cache - content-length: - - '111' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 21 Oct 2021 03:31:03 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - 2a353e89-73a9-4f4f-af75-66a74612521b - status: - code: 404 - message: Not Found -version: 1 +interactions: +- request: + body: '{"properties": {"type": "KeyVaultCertificate", "vaultUri": "https://integration-test-prod.vault.azure.net/", + "keyVaultCertName": "cli-unittest", "excludePrivateKey": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - spring-cloud certificate add + Connection: + - keep-alive + Content-Length: + - '173' + Content-Type: + - application/json + ParameterSetName: + - --name --vault-uri --vault-certificate-name -g -s + User-Agent: + - AZURECLI/2.23.0 azsdk-python-mgmt-appplatform/1.0.0b1 Python/3.9.9 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert?api-version=2021-09-01-preview + response: + body: + string: '{"properties":{"vaultUri":"https://integration-test-prod.vault.azure.net/","keyVaultCertName":"cli-unittest","certVersion":"7fb4a84d12c042dcaf590a8d4a8d5c99","excludePrivateKey":false,"type":"KeyVaultCertificate","thumbprint":"e1c623ea873cdc6a80f8682e0949c654fe2151db","issuer":"*.asc-test.net","expirationDate":"2022-02-24T04:52:26.000+00:00","activateDate":"2021-02-24T04:42:26.000+00:00","subjectName":"*.asc-test.net","dnsNames":["cli.asc-test.net"]},"type":"Microsoft.AppPlatform/Spring/certificates","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert","name":"test-cert"}' + headers: + cache-control: + - no-cache + content-length: + - '704' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Dec 2021 08:37:18 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:ccd65fc4-7cd4-497e-8dc8-9a76e9a43ae2 + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-rp-server-mvid: + - 1e5a35c6-520c-4c38-be68-6243977b7d2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - spring-cloud certificate show + Connection: + - keep-alive + ParameterSetName: + - --name -g -s + User-Agent: + - AZURECLI/2.23.0 azsdk-python-mgmt-appplatform/1.0.0b1 Python/3.9.9 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert?api-version=2021-09-01-preview + response: + body: + string: '{"properties":{"vaultUri":"https://integration-test-prod.vault.azure.net/","keyVaultCertName":"cli-unittest","certVersion":"7fb4a84d12c042dcaf590a8d4a8d5c99","excludePrivateKey":false,"type":"KeyVaultCertificate","thumbprint":"e1c623ea873cdc6a80f8682e0949c654fe2151db","issuer":"*.asc-test.net","expirationDate":"2022-02-24T04:52:26.000+00:00","activateDate":"2021-02-24T04:42:26.000+00:00","subjectName":"*.asc-test.net","dnsNames":["cli.asc-test.net"]},"type":"Microsoft.AppPlatform/Spring/certificates","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert","name":"test-cert"}' + headers: + cache-control: + - no-cache + content-length: + - '704' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Dec 2021 08:37:18 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:ccd65fc4-7cd4-497e-8dc8-9a76e9a43ae2 + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - 1e5a35c6-520c-4c38-be68-6243977b7d2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - spring-cloud certificate list + Connection: + - keep-alive + ParameterSetName: + - -g -s + User-Agent: + - AZURECLI/2.23.0 azsdk-python-mgmt-appplatform/1.0.0b1 Python/3.9.9 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates?api-version=2021-09-01-preview + response: + body: + string: '{"value":[{"properties":{"vaultUri":"https://integration-test-prod.vault.azure.net/","keyVaultCertName":"cli-unittest","certVersion":"7fb4a84d12c042dcaf590a8d4a8d5c99","excludePrivateKey":false,"type":"KeyVaultCertificate","thumbprint":"e1c623ea873cdc6a80f8682e0949c654fe2151db","issuer":"*.asc-test.net","expirationDate":"2022-02-24T04:52:26.000+00:00","activateDate":"2021-02-24T04:42:26.000+00:00","subjectName":"*.asc-test.net","dnsNames":["cli.asc-test.net"]},"type":"Microsoft.AppPlatform/Spring/certificates","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert","name":"test-cert"}]}' + headers: + cache-control: + - no-cache + content-length: + - '716' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Dec 2021 08:37:20 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:ccd65fc4-7cd4-497e-8dc8-9a76e9a43ae2 + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - 1e5a35c6-520c-4c38-be68-6243977b7d2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - spring-cloud app custom-domain bind + Connection: + - keep-alive + ParameterSetName: + - --domain-name --app -g -s + User-Agent: + - AZURECLI/2.23.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.9.9 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/deployments?api-version=2020-07-01 + response: + body: + string: '{"value":[{"properties":{"source":{"type":"Jar","relativePath":""},"appName":"test-app","deploymentSettings":{"cpu":1,"memoryInGB":1,"environmentVariables":null,"runtimeVersion":"Java_8"},"provisioningState":"Succeeded","status":"Running","active":true,"instances":[{"name":"test-app-default-8-6d88448b7-mmjl5","status":"Running","discoveryStatus":"OUT_OF_SERVICE","startTime":"2021-12-06T08:05:27Z"}]},"type":"Microsoft.AppPlatform/Spring/apps/deployments","sku":{"name":"S0","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/deployments/default","name":"default"}]}' + headers: + cache-control: + - no-cache + content-length: + - '727' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Dec 2021 08:37:21 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:ccd65fc4-7cd4-497e-8dc8-9a76e9a43ae2 + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-rp-server-mvid: + - 1e5a35c6-520c-4c38-be68-6243977b7d2c + status: + code: 200 + message: OK +- request: + body: '{"properties": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - spring-cloud app custom-domain bind + Connection: + - keep-alive + Content-Length: + - '18' + Content-Type: + - application/json + ParameterSetName: + - --domain-name --app -g -s + User-Agent: + - AZURECLI/2.23.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.9.9 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net?api-version=2020-07-01 + response: + body: + string: '{"properties":{"appName":"test-app"},"type":"Microsoft.AppPlatform/Spring/apps/domains","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net","name":"cli.asc-test.net"}' + headers: + cache-control: + - no-cache + content-length: + - '309' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Dec 2021 08:37:25 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:ccd65fc4-7cd4-497e-8dc8-9a76e9a43ae2 + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-rp-server-mvid: + - 1e5a35c6-520c-4c38-be68-6243977b7d2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - spring-cloud app custom-domain show + Connection: + - keep-alive + ParameterSetName: + - --domain-name --app -g -s + User-Agent: + - AZURECLI/2.23.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.9.9 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/deployments?api-version=2020-07-01 + response: + body: + string: '{"value":[{"properties":{"source":{"type":"Jar","relativePath":""},"appName":"test-app","deploymentSettings":{"cpu":1,"memoryInGB":1,"environmentVariables":null,"runtimeVersion":"Java_8"},"provisioningState":"Succeeded","status":"Running","active":true,"instances":[{"name":"test-app-default-8-6d88448b7-mmjl5","status":"Running","discoveryStatus":"OUT_OF_SERVICE","startTime":"2021-12-06T08:05:27Z"}]},"type":"Microsoft.AppPlatform/Spring/apps/deployments","sku":{"name":"S0","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/deployments/default","name":"default"}]}' + headers: + cache-control: + - no-cache + content-length: + - '727' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Dec 2021 08:37:26 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:ccd65fc4-7cd4-497e-8dc8-9a76e9a43ae2 + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-rp-server-mvid: + - 1e5a35c6-520c-4c38-be68-6243977b7d2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - spring-cloud app custom-domain show + Connection: + - keep-alive + ParameterSetName: + - --domain-name --app -g -s + User-Agent: + - AZURECLI/2.23.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.9.9 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net?api-version=2020-07-01 + response: + body: + string: '{"properties":{"appName":"test-app"},"type":"Microsoft.AppPlatform/Spring/apps/domains","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net","name":"cli.asc-test.net"}' + headers: + cache-control: + - no-cache + content-length: + - '309' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Dec 2021 08:37:28 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:ccd65fc4-7cd4-497e-8dc8-9a76e9a43ae2 + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - 1e5a35c6-520c-4c38-be68-6243977b7d2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - spring-cloud app custom-domain list + Connection: + - keep-alive + ParameterSetName: + - --app -g -s + User-Agent: + - AZURECLI/2.23.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.9.9 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/deployments?api-version=2020-07-01 + response: + body: + string: '{"value":[{"properties":{"source":{"type":"Jar","relativePath":""},"appName":"test-app","deploymentSettings":{"cpu":1,"memoryInGB":1,"environmentVariables":null,"runtimeVersion":"Java_8"},"provisioningState":"Succeeded","status":"Running","active":true,"instances":[{"name":"test-app-default-8-6d88448b7-mmjl5","status":"Running","discoveryStatus":"OUT_OF_SERVICE","startTime":"2021-12-06T08:05:27Z"}]},"type":"Microsoft.AppPlatform/Spring/apps/deployments","sku":{"name":"S0","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/deployments/default","name":"default"}]}' + headers: + cache-control: + - no-cache + content-length: + - '727' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Dec 2021 08:37:30 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:ccd65fc4-7cd4-497e-8dc8-9a76e9a43ae2 + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-rp-server-mvid: + - 1e5a35c6-520c-4c38-be68-6243977b7d2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - spring-cloud app custom-domain list + Connection: + - keep-alive + ParameterSetName: + - --app -g -s + User-Agent: + - AZURECLI/2.23.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.9.9 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains?api-version=2020-07-01 + response: + body: + string: '{"value":[{"properties":{"appName":"test-app"},"type":"Microsoft.AppPlatform/Spring/apps/domains","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net","name":"cli.asc-test.net"}]}' + headers: + cache-control: + - no-cache + content-length: + - '321' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Dec 2021 08:37:31 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:ccd65fc4-7cd4-497e-8dc8-9a76e9a43ae2 + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - 1e5a35c6-520c-4c38-be68-6243977b7d2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - spring-cloud app custom-domain update + Connection: + - keep-alive + ParameterSetName: + - --domain-name --certificate --app -g -s + User-Agent: + - AZURECLI/2.23.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.9.9 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/deployments?api-version=2020-07-01 + response: + body: + string: '{"value":[{"properties":{"source":{"type":"Jar","relativePath":""},"appName":"test-app","deploymentSettings":{"cpu":1,"memoryInGB":1,"environmentVariables":null,"runtimeVersion":"Java_8"},"provisioningState":"Succeeded","status":"Running","active":true,"instances":[{"name":"test-app-default-8-6d88448b7-mmjl5","status":"Running","discoveryStatus":"OUT_OF_SERVICE","startTime":"2021-12-06T08:05:27Z"}]},"type":"Microsoft.AppPlatform/Spring/apps/deployments","sku":{"name":"S0","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/deployments/default","name":"default"}]}' + headers: + cache-control: + - no-cache + content-length: + - '727' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Dec 2021 08:37:34 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:ccd65fc4-7cd4-497e-8dc8-9a76e9a43ae2 + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-rp-server-mvid: + - 1e5a35c6-520c-4c38-be68-6243977b7d2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - spring-cloud app custom-domain update + Connection: + - keep-alive + ParameterSetName: + - --domain-name --certificate --app -g -s + User-Agent: + - AZURECLI/2.23.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.9.9 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert?api-version=2020-07-01 + response: + body: + string: '{"properties":{"vaultUri":"https://integration-test-prod.vault.azure.net/","keyVaultCertName":"cli-unittest","certVersion":"7fb4a84d12c042dcaf590a8d4a8d5c99","thumbprint":"e1c623ea873cdc6a80f8682e0949c654fe2151db","issuer":"*.asc-test.net","expirationDate":"2022-02-24T04:52:26.000+00:00","activateDate":"2021-02-24T04:42:26.000+00:00","subjectName":"*.asc-test.net","dnsNames":["cli.asc-test.net"]},"type":"Microsoft.AppPlatform/Spring/certificates","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert","name":"test-cert"}' + headers: + cache-control: + - no-cache + content-length: + - '649' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Dec 2021 08:37:36 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:ccd65fc4-7cd4-497e-8dc8-9a76e9a43ae2 + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - 1e5a35c6-520c-4c38-be68-6243977b7d2c + status: + code: 200 + message: OK +- request: + body: '{"properties": {"thumbprint": "e1c623ea873cdc6a80f8682e0949c654fe2151db", + "certName": "test-cert"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - spring-cloud app custom-domain update + Connection: + - keep-alive + Content-Length: + - '99' + Content-Type: + - application/json + ParameterSetName: + - --domain-name --certificate --app -g -s + User-Agent: + - AZURECLI/2.23.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.9.9 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net?api-version=2020-07-01 + response: + body: + string: '{"properties":{"thumbprint":"e1c623ea873cdc6a80f8682e0949c654fe2151db","appName":"test-app","certName":"test-cert"},"type":"Microsoft.AppPlatform/Spring/apps/domains","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net","name":"cli.asc-test.net"}' + headers: + cache-control: + - no-cache + content-length: + - '388' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Dec 2021 08:37:36 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:ccd65fc4-7cd4-497e-8dc8-9a76e9a43ae2 + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-rp-server-mvid: + - 1e5a35c6-520c-4c38-be68-6243977b7d2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - spring-cloud app custom-domain unbind + Connection: + - keep-alive + ParameterSetName: + - --domain-name --app -g -s + User-Agent: + - AZURECLI/2.23.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.9.9 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/deployments?api-version=2020-07-01 + response: + body: + string: '{"value":[{"properties":{"source":{"type":"Jar","relativePath":""},"appName":"test-app","deploymentSettings":{"cpu":1,"memoryInGB":1,"environmentVariables":null,"runtimeVersion":"Java_8"},"provisioningState":"Succeeded","status":"Running","active":true,"instances":[{"name":"test-app-default-8-6d88448b7-mmjl5","status":"Running","discoveryStatus":"OUT_OF_SERVICE","startTime":"2021-12-06T08:05:27Z"}]},"type":"Microsoft.AppPlatform/Spring/apps/deployments","sku":{"name":"S0","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/deployments/default","name":"default"}]}' + headers: + cache-control: + - no-cache + content-length: + - '727' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Dec 2021 08:37:38 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:ccd65fc4-7cd4-497e-8dc8-9a76e9a43ae2 + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-rp-server-mvid: + - 1e5a35c6-520c-4c38-be68-6243977b7d2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - spring-cloud app custom-domain unbind + Connection: + - keep-alive + ParameterSetName: + - --domain-name --app -g -s + User-Agent: + - AZURECLI/2.23.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.9.9 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net?api-version=2020-07-01 + response: + body: + string: '{"properties":{"thumbprint":"e1c623ea873cdc6a80f8682e0949c654fe2151db","appName":"test-app","certName":"test-cert"},"type":"Microsoft.AppPlatform/Spring/apps/domains","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net","name":"cli.asc-test.net"}' + headers: + cache-control: + - no-cache + content-length: + - '388' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Dec 2021 08:37:39 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:ccd65fc4-7cd4-497e-8dc8-9a76e9a43ae2 + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - 1e5a35c6-520c-4c38-be68-6243977b7d2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - spring-cloud app custom-domain unbind + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --domain-name --app -g -s + User-Agent: + - AZURECLI/2.23.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.9.9 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net?api-version=2020-07-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 06 Dec 2021 08:37:40 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:ccd65fc4-7cd4-497e-8dc8-9a76e9a43ae2 + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-rp-server-mvid: + - 1e5a35c6-520c-4c38-be68-6243977b7d2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - spring-cloud app custom-domain show + Connection: + - keep-alive + ParameterSetName: + - --domain-name --app -g -s + User-Agent: + - AZURECLI/2.23.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.9.9 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/deployments?api-version=2020-07-01 + response: + body: + string: '{"value":[{"properties":{"source":{"type":"Jar","relativePath":""},"appName":"test-app","deploymentSettings":{"cpu":1,"memoryInGB":1,"environmentVariables":null,"runtimeVersion":"Java_8"},"provisioningState":"Succeeded","status":"Running","active":true,"instances":[{"name":"test-app-default-8-6d88448b7-mmjl5","status":"Running","discoveryStatus":"OUT_OF_SERVICE","startTime":"2021-12-06T08:05:27Z"}]},"type":"Microsoft.AppPlatform/Spring/apps/deployments","sku":{"name":"S0","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/deployments/default","name":"default"}]}' + headers: + cache-control: + - no-cache + content-length: + - '727' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Dec 2021 08:37:41 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:ccd65fc4-7cd4-497e-8dc8-9a76e9a43ae2 + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-rp-server-mvid: + - 1e5a35c6-520c-4c38-be68-6243977b7d2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - spring-cloud app custom-domain show + Connection: + - keep-alive + ParameterSetName: + - --domain-name --app -g -s + User-Agent: + - AZURECLI/2.23.0 azsdk-python-mgmt-appplatform/6.1.0 Python/3.9.9 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/apps/test-app/domains/cli.asc-test.net?api-version=2020-07-01 + response: + body: + string: '{"error":{"code":"EntityNotFound","message":"CustomDomain ''cli.asc-test.net'' + not found.","target":null,"details":null}}' + headers: + cache-control: + - no-cache + content-length: + - '119' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Dec 2021 08:37:42 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:ccd65fc4-7cd4-497e-8dc8-9a76e9a43ae2 + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-rp-server-mvid: + - 1e5a35c6-520c-4c38-be68-6243977b7d2c + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - spring-cloud certificate remove + Connection: + - keep-alive + ParameterSetName: + - --name -g -s + User-Agent: + - AZURECLI/2.23.0 azsdk-python-mgmt-appplatform/1.0.0b1 Python/3.9.9 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert?api-version=2021-09-01-preview + response: + body: + string: '{"properties":{"vaultUri":"https://integration-test-prod.vault.azure.net/","keyVaultCertName":"cli-unittest","certVersion":"7fb4a84d12c042dcaf590a8d4a8d5c99","excludePrivateKey":false,"type":"KeyVaultCertificate","thumbprint":"e1c623ea873cdc6a80f8682e0949c654fe2151db","issuer":"*.asc-test.net","expirationDate":"2022-02-24T04:52:26.000+00:00","activateDate":"2021-02-24T04:42:26.000+00:00","subjectName":"*.asc-test.net","dnsNames":["cli.asc-test.net"]},"type":"Microsoft.AppPlatform/Spring/certificates","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert","name":"test-cert"}' + headers: + cache-control: + - no-cache + content-length: + - '704' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Dec 2021 08:37:44 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:ccd65fc4-7cd4-497e-8dc8-9a76e9a43ae2 + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - 1e5a35c6-520c-4c38-be68-6243977b7d2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - spring-cloud certificate remove + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name -g -s + User-Agent: + - AZURECLI/2.23.0 azsdk-python-mgmt-appplatform/1.0.0b1 Python/3.9.9 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert?api-version=2021-09-01-preview + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 06 Dec 2021 08:37:46 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:ccd65fc4-7cd4-497e-8dc8-9a76e9a43ae2 + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + x-rp-server-mvid: + - 1e5a35c6-520c-4c38-be68-6243977b7d2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - spring-cloud certificate show + Connection: + - keep-alive + ParameterSetName: + - --name -g -s + User-Agent: + - AZURECLI/2.23.0 azsdk-python-mgmt-appplatform/1.0.0b1 Python/3.9.9 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli/providers/Microsoft.AppPlatform/Spring/cli-unittest/certificates/test-cert?api-version=2021-09-01-preview + response: + body: + string: '{"error":{"code":"EntityNotFound","message":"Certificate ''test-cert'' + not found.","target":null,"details":null}}' + headers: + cache-control: + - no-cache + content-length: + - '111' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Dec 2021 08:37:47 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:ccd65fc4-7cd4-497e-8dc8-9a76e9a43ae2 + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-rp-server-mvid: + - 1e5a35c6-520c-4c38-be68-6243977b7d2c + status: + code: 404 + message: Not Found +version: 1 diff --git a/src/spring-cloud/azext_spring_cloud/tests/latest/test_asc_app_validator.py b/src/spring-cloud/azext_spring_cloud/tests/latest/test_asc_app_validator.py new file mode 100644 index 00000000000..20c10732a97 --- /dev/null +++ b/src/spring-cloud/azext_spring_cloud/tests/latest/test_asc_app_validator.py @@ -0,0 +1,159 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- +import unittest +import copy +from argparse import Namespace +from azure.cli.core.azclierror import InvalidArgumentValueError +from msrestazure.azure_exceptions import CloudError +from azure.core.exceptions import ResourceNotFoundError +from ..._app_validator import (fulfill_deployment_param, active_deployment_exist, active_deployment_exist_under_app) + + +try: + import unittest.mock as mock +except ImportError: + from unittest import mock + +from azure.cli.core.mock import DummyCli +from azure.cli.core import AzCommandsLoader +from azure.cli.core.commands import AzCliCommand + + +def _get_test_cmd(): + cli_ctx = DummyCli() + cli_ctx.data['subscription_id'] = '00000000-0000-0000-0000-000000000000' + loader = AzCommandsLoader(cli_ctx, resource_type='Microsoft.AppPlatform') + cmd = AzCliCommand(loader, 'test', None) + cmd.command_kwargs = {'resource_type': 'Microsoft.AppPlatform'} + cmd.cli_ctx = cli_ctx + return cmd + + +def _get_deployment(resource_group, service, app, deployment, active): + resource = mock.MagicMock() + resource.id = '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/{}/providers/Microsoft.AppPlatform/Spring/{}/apps/{}/deployments/{}'.format(resource_group, service, app, deployment) + resource.properties = mock.MagicMock() + resource.properties.active = active + return resource + + +class TestActiveDeploymentExist(unittest.TestCase): + @mock.patch('azext_spring_cloud._app_validator.cf_spring_cloud', autospec=True) + def test_deployment_found(self, client_factory_mock): + client = mock.MagicMock() + client.deployments.list.return_value = [ + _get_deployment('rg1', 'asc1', 'app1', 'green1', False), + _get_deployment('rg1', 'asc1', 'app1', 'default', True), + ] + client_factory_mock.return_value = client + + ns = Namespace(name='app1', service='asc1', resource_group='rg1', deployment=None) + active_deployment_exist(_get_test_cmd(), ns) + + @mock.patch('azext_spring_cloud._app_validator.cf_spring_cloud', autospec=True) + def test_deployment_without_active_exist(self, client_factory_mock): + client = mock.MagicMock() + client.deployments.list.return_value = [ + _get_deployment('rg1', 'asc1', 'app1', 'green1', False) + ] + client_factory_mock.return_value = client + + ns = Namespace(name='app1', service='asc1', resource_group='rg1', deployment=None) + with self.assertRaises(InvalidArgumentValueError) as context: + active_deployment_exist(_get_test_cmd(), ns) + self.assertEqual('This app has no production deployment, use \"az spring-cloud app deployment create\" to create a deployment and \"az spring-cloud app set-deployment\" to set production deployment.', str(context.exception)) + + @mock.patch('azext_spring_cloud._app_validator.cf_spring_cloud', autospec=True) + def test_no_deployments(self, client_factory_mock): + client = mock.MagicMock() + client.deployments.list.return_value = [] + client_factory_mock.return_value = client + + ns = Namespace(name='app1', service='asc1', resource_group='rg1', deployment=None) + with self.assertRaises(InvalidArgumentValueError) as context: + active_deployment_exist(_get_test_cmd(), ns) + self.assertEqual('This app has no production deployment, use \"az spring-cloud app deployment create\" to create a deployment and \"az spring-cloud app set-deployment\" to set production deployment.', str(context.exception)) + + @mock.patch('azext_spring_cloud._app_validator.cf_spring_cloud', autospec=True) + def test_app_not_found(self, client_factory_mock): + client = mock.MagicMock() + resp = mock.MagicMock() + resp.status_code = 404 + resp.text = '{"Message": "Not Found"}' + client.deployments.list.side_effect = ResourceNotFoundError(resp, error='App not found.') + client_factory_mock.return_value = client + + ns = Namespace(name='app1', service='asc1', resource_group='rg1', deployment=None) + with self.assertRaises(InvalidArgumentValueError) as context: + active_deployment_exist(_get_test_cmd(), ns) + self.assertEqual('Deployments not found under App app1', str(context.exception)) + + +class TestFulfillDeploymentParameter(unittest.TestCase): + @mock.patch('azext_spring_cloud._app_validator.cf_spring_cloud', autospec=True) + def test_deployment_provide(self, client_factory_mock): + client = mock.MagicMock() + client.deployments.get.return_value = _get_deployment('rg1', 'asc1', 'app1', 'green1', False) + client_factory_mock.return_value = client + + ns = Namespace(name='app1', service='asc1', resource_group='rg1', deployment='green1') + fulfill_deployment_param(_get_test_cmd(), ns) + self.assertEqual('/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.AppPlatform/Spring/asc1/apps/app1/deployments/green1', + ns.deployment.id) + self.assertFalse(ns.deployment.properties.active) + + + @mock.patch('azext_spring_cloud._app_validator.cf_spring_cloud', autospec=True) + def test_deployment_provide_but_not_found(self, client_factory_mock): + client = mock.MagicMock() + resp = mock.MagicMock() + resp.status_code = 404 + resp.text = '{"Message": "Not Found"}' + client.deployments.get.side_effect = CloudError(resp, error='deployment not found.') + client_factory_mock.return_value = client + + ns = Namespace(name='app1', service='asc1', resource_group='rg1', deployment='green1') + with self.assertRaises(InvalidArgumentValueError) as context: + fulfill_deployment_param(_get_test_cmd(), ns) + self.assertEqual('Deployment green1 not found under app app1', str(context.exception)) + + @mock.patch('azext_spring_cloud._app_validator.cf_spring_cloud', autospec=True) + def test_deployment_with_active_deployment(self, client_factory_mock): + client = mock.MagicMock() + client.deployments.list.return_value = [ + _get_deployment('rg1', 'asc1', 'app1', 'green1', False), + _get_deployment('rg1', 'asc1', 'app1', 'default', True), + ] + client_factory_mock.return_value = client + + ns = Namespace(name='app1', service='asc1', resource_group='rg1', deployment=None) + fulfill_deployment_param(_get_test_cmd(), ns) + self.assertEqual('/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.AppPlatform/Spring/asc1/apps/app1/deployments/default', + ns.deployment.id) + self.assertTrue(ns.deployment.properties.active) + + @mock.patch('azext_spring_cloud._app_validator.cf_spring_cloud', autospec=True) + def test_deployment_without_active_deployment(self, client_factory_mock): + client = mock.MagicMock() + client.deployments.list.return_value = [ + _get_deployment('rg1', 'asc1', 'app1', 'green1', False) + ] + client_factory_mock.return_value = client + + ns = Namespace(name='app1', service='asc1', resource_group='rg1', deployment=None) + with self.assertRaises(InvalidArgumentValueError) as context: + fulfill_deployment_param(_get_test_cmd(), ns) + self.assertEqual('No production deployment found, use --deployment to specify deployment or create deployment with: az spring-cloud app deployment create', str(context.exception)) + + @mock.patch('azext_spring_cloud._app_validator.cf_spring_cloud', autospec=True) + def test_deployment_without_deployment(self, client_factory_mock): + client = mock.MagicMock() + client.deployments.list.return_value = [] + client_factory_mock.return_value = client + + ns = Namespace(name='app1', service='asc1', resource_group='rg1', deployment=None) + with self.assertRaises(InvalidArgumentValueError) as context: + fulfill_deployment_param(_get_test_cmd(), ns) + self.assertEqual('No production deployment found, use --deployment to specify deployment or create deployment with: az spring-cloud app deployment create', str(context.exception)) \ No newline at end of file diff --git a/src/spring-cloud/azext_spring_cloud/tests/latest/test_asc_scenario.py b/src/spring-cloud/azext_spring_cloud/tests/latest/test_asc_scenario.py index 5ab2de86f35..fe16a2fca4c 100644 --- a/src/spring-cloud/azext_spring_cloud/tests/latest/test_asc_scenario.py +++ b/src/spring-cloud/azext_spring_cloud/tests/latest/test_asc_scenario.py @@ -7,7 +7,7 @@ import unittest from knack.util import CLIError -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, StorageAccountPreparer, record_only) # pylint: disable=line-too-long diff --git a/src/spring-cloud/setup.py b/src/spring-cloud/setup.py index 2097003217f..a76b87aa7e8 100644 --- a/src/spring-cloud/setup.py +++ b/src/spring-cloud/setup.py @@ -16,7 +16,7 @@ # TODO: Confirm this is the right version number you want and it matches your # HISTORY.rst entry. -VERSION = '2.12.0' +VERSION = '2.12.1' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers diff --git a/src/ssh/HISTORY.md b/src/ssh/HISTORY.md index 01034ca9e55..84449613487 100644 --- a/src/ssh/HISTORY.md +++ b/src/ssh/HISTORY.md @@ -1,5 +1,14 @@ Release History =============== +1.0.0 +----- +* Delete all keys and certificates created during execution of ssh vm. +* Add --keys-destination-folder to ssh config +* Keys generated during ssh config are saved in az_ssh_config folder in the same directory as --file. +* Users no longer allowed to run ssh cert with no parameters. +* When --public-key-file/-f is not provided to ssh cert, generated public and private keys are saved in the same folder as --file. +* Add support to connect to local users on local machines using key based, cert based, or password based authentication. + 0.1.8 ----- * Rollback from version 0.1.7 to 0.1.6 to remove preview features. diff --git a/src/ssh/azext_ssh/_help.py b/src/ssh/azext_ssh/_help.py index b049a3a3c7f..7eb37c94e86 100644 --- a/src/ssh/azext_ssh/_help.py +++ b/src/ssh/azext_ssh/_help.py @@ -13,20 +13,36 @@ helps['ssh vm'] = """ type: command short-summary: SSH into Azure VMs using an ssh certificate + long-summary: Users can login using AAD issued certificates or using local user credentials. We recommend login using AAD issued certificates. To SSH as a local user in the target machine, you must provide the local user name using the --local-user argument. examples: - name: Give a resource group and VM to SSH to text: | az ssh vm --resource-group myResourceGroup --vm-name myVm + - name: Give the public IP (or hostname) of a VM to SSH to text: | az ssh vm --ip 1.2.3.4 az ssh vm --hostname example.com + - name: Using a custom private key file text: | az ssh vm --ip 1.2.3.4 --private-key-file key --public-key-file key.pub + - name: Using additional ssh arguments text: | az ssh vm --ip 1.2.3.4 -- -A -o ForwardX11=yes + + - name: Give a local user name to SSH using local user credentials on the target machine using certificate based authentication. + text: | + az ssh vm --local-user username --ip 1.2.3.4 --certificate-file cert.pub --private-key key + + - name: Give a local user name to SSH using local user credentials on the target machine using key based authentication. + text: | + az ssh vm --local-user username --resource-group myResourceGroup --vm-name myVM --private-key-file key + + - name: Give a local user name to SSH using local user credentials on the target machine using password based authentication. + text: | + az ssh vm --local-user username --ip 1.2.3.4 """ helps['ssh config'] = """ @@ -37,16 +53,19 @@ - name: Give a resource group and VM for which to create a config, and save in a local file text: | az ssh config --resource-group myResourceGroup --vm-name myVm --file ./sshconfig + - name: Give the public IP (or hostname) of a VM for which to create a config and then ssh text: | az ssh config --ip 1.2.3.4 --file ./sshconfig ssh -F ./sshconfig 1.2.3.4 + - name: Create a generic config for use with any host text: | #Bash az ssh config --ip \\* --file ./sshconfig #PowerShell az ssh config --ip * --file ./sshconfig + - name: Examples with other software text: | #Bash diff --git a/src/ssh/azext_ssh/_params.py b/src/ssh/azext_ssh/_params.py index 9a4d4c06a94..2a1a5b33ce9 100644 --- a/src/ssh/azext_ssh/_params.py +++ b/src/ssh/azext_ssh/_params.py @@ -14,6 +14,10 @@ def load_arguments(self, _): c.argument('private_key_file', options_list=['--private-key-file', '-i'], help='The RSA private key file path') c.argument('use_private_ip', options_list=['--prefer-private-ip'], help='Will prefer private IP. Requires connectivity to the private IP.') + c.argument('local_user', options_list=['--local-user'], + help='The username for a local user') + c.argument('cert_file', options_list=['--certificate-file', '-c'], + help='Path to a certificate file used for authentication when using local user credentials.') c.argument('port', options_list=['--port'], help='SSH port') c.positional('ssh_args', nargs='*', help='Additional arguments passed to OpenSSH') @@ -25,10 +29,18 @@ def load_arguments(self, _): c.argument('private_key_file', options_list=['--private-key-file', '-i'], help='The RSA private key file path') c.argument('use_private_ip', options_list=['--prefer-private-ip'], help='Will use a private IP if available. By default only public IPs are used.') + c.argument('local_user', options_list=['--local-user'], + help='The username for a local user') c.argument('overwrite', action='store_true', options_list=['--overwrite'], help='Overwrites the config file if this flag is set') + c.argument('credentials_folder', options_list=['--keys-destination-folder', '--keys-dest-folder'], + help='Folder where new generated keys will be stored.') + c.argument('cert_file', options_list=['--certificate-file', '-c'], help='Path to certificate file') + c.argument('port', options_list=['--port'], help='SSH port') with self.argument_context('ssh cert') as c: c.argument('cert_path', options_list=['--file', '-f'], help='The file path to write the SSH cert to, defaults to public key path with -aadcert.pub appened') - c.argument('public_key_file', options_list=['--public-key-file', '-p'], help='The RSA public key file path') + c.argument('public_key_file', options_list=['--public-key-file', '-p'], + help='The RSA public key file path. If not provided, ' + 'generated key pair is stored in the same directory as --file.') diff --git a/src/ssh/azext_ssh/custom.py b/src/ssh/azext_ssh/custom.py index 036fc2aa751..1fd295d2c3a 100644 --- a/src/ssh/azext_ssh/custom.py +++ b/src/ssh/azext_ssh/custom.py @@ -9,35 +9,70 @@ import json import tempfile +from knack import log from azure.cli.core import azclierror from . import ip_utils from . import rsa_parser from . import ssh_utils +logger = log.get_logger(__name__) + def ssh_vm(cmd, resource_group_name=None, vm_name=None, ssh_ip=None, public_key_file=None, - private_key_file=None, use_private_ip=False, port=None, ssh_args=None): + private_key_file=None, use_private_ip=False, local_user=None, cert_file=None, port=None, + ssh_args=None): + _assert_args(resource_group_name, vm_name, ssh_ip, cert_file, local_user) + credentials_folder = None op_call = functools.partial(ssh_utils.start_ssh_connection, port, ssh_args) - _do_ssh_op(cmd, resource_group_name, vm_name, ssh_ip, - public_key_file, private_key_file, use_private_ip, op_call) + _do_ssh_op(cmd, resource_group_name, vm_name, ssh_ip, public_key_file, private_key_file, use_private_ip, + local_user, cert_file, credentials_folder, op_call) def ssh_config(cmd, config_path, resource_group_name=None, vm_name=None, ssh_ip=None, - public_key_file=None, private_key_file=None, overwrite=False, use_private_ip=False): - op_call = functools.partial(ssh_utils.write_ssh_config, config_path, resource_group_name, vm_name, overwrite) - _do_ssh_op(cmd, resource_group_name, vm_name, ssh_ip, public_key_file, private_key_file, use_private_ip, op_call) + public_key_file=None, private_key_file=None, overwrite=False, use_private_ip=False, + local_user=None, cert_file=None, port=None, credentials_folder=None): + _assert_args(resource_group_name, vm_name, ssh_ip, cert_file, local_user) + # If user provides their own key pair, certificate will be written in the same folder as public key. + if (public_key_file or private_key_file) and credentials_folder: + raise azclierror.ArgumentUsageError("--keys-destination-folder can't be used in conjunction with " + "--public-key-file/-p or --private-key-file/-i.") + + op_call = functools.partial(ssh_utils.write_ssh_config, config_path, resource_group_name, vm_name, overwrite, port) + # Default credential location + if not credentials_folder: + config_folder = os.path.dirname(config_path) + if not os.path.isdir(config_folder): + raise azclierror.InvalidArgumentValueError(f"Config file destination folder {config_folder} " + "does not exist.") + folder_name = ssh_ip + if resource_group_name and vm_name: + folder_name = resource_group_name + "-" + vm_name + credentials_folder = os.path.join(config_folder, os.path.join("az_ssh_config", folder_name)) + + _do_ssh_op(cmd, resource_group_name, vm_name, ssh_ip, public_key_file, private_key_file, use_private_ip, + local_user, cert_file, credentials_folder, op_call) def ssh_cert(cmd, cert_path=None, public_key_file=None): - public_key_file, _ = _check_or_create_public_private_files(public_key_file, None) + if not cert_path and not public_key_file: + raise azclierror.RequiredArgumentMissingError("--file or --public-key-file must be provided.") + if cert_path and not os.path.isdir(os.path.dirname(cert_path)): + raise azclierror.InvalidArgumentValueError(f"{os.path.dirname(cert_path)} folder doesn't exist") + # If user doesn't provide a public key, save generated key pair to the same folder as --file + keys_folder = None + if not public_key_file: + keys_folder = os.path.dirname(cert_path) + logger.warning("The generated SSH keys are stored at %s. Please delete SSH keys when the certificate " + "is no longer being used.", keys_folder) + public_key_file, _, _ = _check_or_create_public_private_files(public_key_file, None, keys_folder) cert_file, _ = _get_and_write_certificate(cmd, public_key_file, cert_path) print(cert_file + "\n") -def _do_ssh_op(cmd, resource_group, vm_name, ssh_ip, public_key_file, private_key_file, use_private_ip, op_call): - _assert_args(resource_group, vm_name, ssh_ip) - public_key_file, private_key_file = _check_or_create_public_private_files(public_key_file, private_key_file) +def _do_ssh_op(cmd, resource_group, vm_name, ssh_ip, public_key_file, private_key_file, use_private_ip, + username, cert_file, credentials_folder, op_call): + # Get ssh_ip before getting public key to avoid getting "ResourceNotFound" exception after creating the keys ssh_ip = ssh_ip or ip_utils.get_ssh_ip(cmd, resource_group, vm_name, use_private_ip) if not ssh_ip: @@ -46,8 +81,18 @@ def _do_ssh_op(cmd, resource_group, vm_name, ssh_ip, public_key_file, private_ke raise azclierror.ResourceNotFoundError(f"VM '{vm_name}' does not have a public or private IP address to SSH to") - cert_file, username = _get_and_write_certificate(cmd, public_key_file, None) - op_call(ssh_ip, username, cert_file, private_key_file) + # If user provides local user, no credentials should be deleted. + delete_keys = False + delete_cert = False + # If user provides a local user, use the provided credentials for authentication + if not username: + delete_cert = True + public_key_file, private_key_file, delete_keys = _check_or_create_public_private_files(public_key_file, + private_key_file, + credentials_folder) + cert_file, username = _get_and_write_certificate(cmd, public_key_file, None) + + op_call(ssh_ip, username, cert_file, private_key_file, delete_keys, delete_cert) def _get_and_write_certificate(cmd, public_key_file, cert_file): @@ -106,7 +151,7 @@ def _prepare_jwk_data(public_key_file): return data -def _assert_args(resource_group, vm_name, ssh_ip): +def _assert_args(resource_group, vm_name, ssh_ip, cert_file, username): if not (resource_group or vm_name or ssh_ip): raise azclierror.RequiredArgumentMissingError( "The VM must be specified by --ip or --resource-group and --vm-name/--name") @@ -119,13 +164,31 @@ def _assert_args(resource_group, vm_name, ssh_ip): raise azclierror.MutuallyExclusiveArgumentError( "--ip cannot be used with --resource-group or --vm-name/--name") + if cert_file and not username: + raise azclierror.MutuallyExclusiveArgumentError( + "To authenticate with a certificate you need to provide a --local-user") -def _check_or_create_public_private_files(public_key_file, private_key_file): - # If nothing is passed in create a temporary directory with a ephemeral keypair + if cert_file and not os.path.isfile(cert_file): + raise azclierror.FileOperationError(f"Certificate file {cert_file} not found") + + +def _check_or_create_public_private_files(public_key_file, private_key_file, credentials_folder): + delete_keys = False + # If nothing is passed, then create a directory with a ephemeral keypair if not public_key_file and not private_key_file: - temp_dir = tempfile.mkdtemp(prefix="aadsshcert") - public_key_file = os.path.join(temp_dir, "id_rsa.pub") - private_key_file = os.path.join(temp_dir, "id_rsa") + # We only want to delete the keys if the user hasn't provided their own keys + # Only ssh vm deletes generated keys. + delete_keys = True + if not credentials_folder: + # az ssh vm: Create keys on temp folder and delete folder once connection succeeds/fails. + credentials_folder = tempfile.mkdtemp(prefix="aadsshcert") + else: + # az ssh config: Keys saved to the same folder as --file or to --keys-destination-folder. + # az ssh cert: Keys saved to the same folder as --file. + if not os.path.isdir(credentials_folder): + os.makedirs(credentials_folder) + public_key_file = os.path.join(credentials_folder, "id_rsa.pub") + private_key_file = os.path.join(credentials_folder, "id_rsa") ssh_utils.create_ssh_keyfile(private_key_file) if not public_key_file: @@ -143,7 +206,7 @@ def _check_or_create_public_private_files(public_key_file, private_key_file): if not os.path.isfile(private_key_file): raise azclierror.FileOperationError(f"Private key file {private_key_file} not found") - return public_key_file, private_key_file + return public_key_file, private_key_file, delete_keys def _write_cert_file(certificate_contents, cert_file): diff --git a/src/ssh/azext_ssh/file_utils.py b/src/ssh/azext_ssh/file_utils.py index 3c3bd795c15..b31927b9268 100644 --- a/src/ssh/azext_ssh/file_utils.py +++ b/src/ssh/azext_ssh/file_utils.py @@ -5,6 +5,11 @@ import errno import os +from knack import log + +from azure.cli.core import azclierror + +logger = log.get_logger(__name__) def make_dirs_for_file(file_path): @@ -20,3 +25,25 @@ def mkdir_p(path): pass else: raise + + +def delete_file(file_path, message, warning=False): + if os.path.isfile(file_path): + try: + os.remove(file_path) + except Exception as e: + if warning: + logger.warning(message) + else: + raise azclierror.FileOperationError(message + "Error: " + str(e)) from e + + +def delete_folder(dir_path, message, warning=False): + if os.path.isdir(dir_path): + try: + os.rmdir(dir_path) + except Exception as e: + if warning: + logger.warning(message) + else: + raise azclierror.FileOperationError(message + "Error: " + str(e)) from e diff --git a/src/ssh/azext_ssh/ssh_utils.py b/src/ssh/azext_ssh/ssh_utils.py index e48d1ab51a8..bf27741aa7a 100644 --- a/src/ssh/azext_ssh/ssh_utils.py +++ b/src/ssh/azext_ssh/ssh_utils.py @@ -5,22 +5,63 @@ import os import platform import subprocess +import time +import multiprocessing as mp +from azext_ssh import file_utils from knack import log from azure.cli.core import azclierror logger = log.get_logger(__name__) +CLEANUP_TOTAL_TIME_LIMIT_IN_SECONDS = 120 +CLEANUP_TIME_INTERVAL_IN_SECONDS = 10 +CLEANUP_AWAIT_TERMINATION_IN_SECONDS = 30 + + +def start_ssh_connection(port, ssh_args, ip, username, cert_file, private_key_file, delete_keys, delete_cert): -def start_ssh_connection(port, ssh_args, ip, username, cert_file, private_key_file): ssh_arg_list = [] if ssh_args: ssh_arg_list = ssh_args + + log_file = None + if delete_keys or delete_cert: + if '-E' not in ssh_arg_list and set(['-v', '-vv', '-vvv']).isdisjoint(ssh_arg_list): + # If the user either provides his own client log file (-E) or + # wants the client log messages to be printed to the console (-vvv/-vv/-v), + # we should not use the log files to check for connection success. + log_file_dir = os.path.dirname(cert_file) + log_file_name = 'ssh_client_log_' + str(os.getpid()) + log_file = os.path.join(log_file_dir, log_file_name) + ssh_arg_list = ['-E', log_file, '-v'] + ssh_arg_list + # Create a new process that will wait until the connection is established and then delete keys. + cleanup_process = mp.Process(target=_do_cleanup, args=(delete_keys, delete_cert, cert_file, private_key_file, + log_file, True)) + cleanup_process.start() + command = [_get_ssh_path(), _get_host(username, ip)] command = command + _build_args(cert_file, private_key_file, port) + ssh_arg_list + logger.debug("Running ssh command %s", ' '.join(command)) subprocess.call(command, shell=platform.system() == 'Windows') + if delete_keys or delete_cert: + if cleanup_process.is_alive(): + cleanup_process.terminate() + # wait for process to terminate + t0 = time.time() + while cleanup_process.is_alive() and (time.time() - t0) < CLEANUP_AWAIT_TERMINATION_IN_SECONDS: + time.sleep(1) + + # Make sure all files have been properly removed. + _do_cleanup(delete_keys, delete_cert, cert_file, private_key_file) + if log_file: + file_utils.delete_file(log_file, f"Couldn't delete temporary log file {log_file}. ", True) + if delete_keys: + temp_dir = os.path.dirname(cert_file) + file_utils.delete_folder(temp_dir, f"Couldn't delete temporary folder {temp_dir}", True) + def create_ssh_keyfile(private_key_file): command = [_get_ssh_path("ssh-keygen"), "-f", private_key_file, "-t", "rsa", "-q", "-N", ""] @@ -50,8 +91,32 @@ def get_ssh_cert_principals(cert_file): return principals -def write_ssh_config(config_path, resource_group, vm_name, overwrite, - ip, username, cert_file, private_key_file): +def get_ssh_cert_validity(cert_file): + info = get_ssh_cert_info(cert_file) + for line in info: + if "Valid:" in line: + return line.strip() + return None + + +def write_ssh_config(config_path, resource_group, vm_name, overwrite, port, + ip, username, cert_file, private_key_file, delete_keys, delete_cert): + + if delete_keys or delete_cert: + # Warn users to delete credentials once config file is no longer being used. + # If user provided keys, only ask them to delete the certificate. + path_to_delete = os.path.dirname(cert_file) + items_to_delete = " (id_rsa, id_rsa.pub, id_rsa.pub-aadcert.pub)" + if not delete_keys: + path_to_delete = cert_file + items_to_delete = "" + validity = get_ssh_cert_validity(cert_file) + validity_warning = "" + if validity: + validity_warning = f" {validity.lower()}" + logger.warning("%s contains sensitive information%s%s\n" + "Please delete it once you no longer need this config file. ", + path_to_delete, items_to_delete, validity_warning) lines = [""] @@ -59,9 +124,12 @@ def write_ssh_config(config_path, resource_group, vm_name, overwrite, lines.append("Host " + resource_group + "-" + vm_name) lines.append("\tUser " + username) lines.append("\tHostName " + ip) - lines.append("\tCertificateFile " + cert_file) + if cert_file: + lines.append("\tCertificateFile " + cert_file) if private_key_file: lines.append("\tIdentityFile " + private_key_file) + if port: + lines.append("\tPort " + port) # default to all hosts for config if not ip: @@ -69,9 +137,12 @@ def write_ssh_config(config_path, resource_group, vm_name, overwrite, lines.append("Host " + ip) lines.append("\tUser " + username) - lines.append("\tCertificateFile " + cert_file) + if cert_file: + lines.append("\tCertificateFile " + cert_file) if private_key_file: lines.append("\tIdentityFile " + private_key_file) + if port: + lines.append("\tPort " + port) if overwrite: mode = 'w' @@ -111,9 +182,39 @@ def _get_host(username, ip): def _build_args(cert_file, private_key_file, port): private_key = [] port_arg = [] + certificate = [] if private_key_file: private_key = ["-i", private_key_file] if port: port_arg = ["-p", port] - certificate = ["-o", "CertificateFile=" + cert_file] + if cert_file: + certificate = ["-o", "CertificateFile=" + cert_file] return private_key + certificate + port_arg + + +def _do_cleanup(delete_keys, delete_cert, cert_file, private_key, log_file=None, wait=False): + # if there is a log file, use it to check for the connection success + if log_file: + t0 = time.time() + match = False + while (time.time() - t0) < CLEANUP_TOTAL_TIME_LIMIT_IN_SECONDS and not match: + time.sleep(CLEANUP_TIME_INTERVAL_IN_SECONDS) + try: + with open(log_file, 'r') as ssh_client_log: + match = "debug1: Authentication succeeded" in ssh_client_log.read() + ssh_client_log.close() + except: + # If there is an exception, wait for a little bit and try again + time.sleep(CLEANUP_TIME_INTERVAL_IN_SECONDS) + + elif wait: + # if we are not checking the logs, but still want to wait for connection before deleting files + time.sleep(CLEANUP_TOTAL_TIME_LIMIT_IN_SECONDS) + + # TO DO: Once arc changes are merged, delete relay information as well + if delete_keys and private_key: + public_key = private_key + '.pub' + file_utils.delete_file(private_key, f"Couldn't delete private key {private_key}. ", True) + file_utils.delete_file(public_key, f"Couldn't delete public key {public_key}. ", True) + if delete_cert and cert_file: + file_utils.delete_file(cert_file, f"Couldn't delete certificate {cert_file}. ", True) diff --git a/src/ssh/azext_ssh/tests/latest/test_custom.py b/src/ssh/azext_ssh/tests/latest/test_custom.py index 63482a70e28..7952b63f3c1 100644 --- a/src/ssh/azext_ssh/tests/latest/test_custom.py +++ b/src/ssh/azext_ssh/tests/latest/test_custom.py @@ -8,51 +8,59 @@ from unittest import mock import unittest + from azext_ssh import custom class SshCustomCommandTest(unittest.TestCase): @mock.patch('azext_ssh.custom._do_ssh_op') - @mock.patch('azext_ssh.custom.ssh_utils') - def test_ssh_vm(self, mock_ssh_utils, mock_do_op): + @mock.patch('azext_ssh.custom._assert_args') + def test_ssh_vm(self, mock_assert, mock_do_op): cmd = mock.Mock() - custom.ssh_vm(cmd, "rg", "vm", "ip", "public", "private", False) + custom.ssh_vm(cmd, "rg", "vm", "ip", "public", "private", False, "username", "cert", "port", None) + mock_assert.assert_called_once_with("rg", "vm", "ip", "cert", "username") mock_do_op.assert_called_once_with( - cmd, "rg", "vm", "ip", "public", "private", False, mock.ANY) - + cmd, "rg", "vm", "ip", "public", "private", False, "username", "cert", None, mock.ANY) + @mock.patch('azext_ssh.custom._do_ssh_op') @mock.patch('azext_ssh.ssh_utils.write_ssh_config') - def test_ssh_config(self, mock_ssh_utils, mock_do_op): + @mock.patch('azext_ssh.custom._assert_args') + @mock.patch('os.path.isdir') + @mock.patch('os.path.dirname') + @mock.patch('os.path.join') + def test_ssh_config(self, mock_join, mock_dirname, mock_isdir, mock_assert, mock_ssh_utils, mock_do_op): cmd = mock.Mock() + mock_dirname.return_value = "configdir" + mock_isdir.return_value = True + mock_join.side_effect = ['az_ssh_config/rg-vm', 'path/to/az_ssh_config/rg-vm'] - def do_op_side_effect(cmd, resource_group, vm_name, ssh_ip, public_key_file, private_key_file, use_private_ip, op_call): - op_call(ssh_ip, "username", "cert_file", private_key_file) + def do_op_side_effect(cmd, resource_group, vm_name, ssh_ip, public_key_file, private_key_file, use_private_ip, local_user, cert_file, credentials_folder, op_call): + op_call(ssh_ip, "username", "cert", private_key_file, False, False) mock_do_op.side_effect = do_op_side_effect - custom.ssh_config(cmd, "path/to/file", "rg", "vm", "ip", "public", "private", False, False) - - mock_ssh_utils.assert_called_once_with("path/to/file", "rg", "vm", False, "ip", "username", "cert_file", "private") + custom.ssh_config(cmd, "path/to/file", "rg", "vm", "ip", "public", "private", False, False, "username", "cert", "port", None) + mock_ssh_utils.assert_called_once_with("path/to/file", "rg", "vm", False, "port", "ip", "username", "cert", "private", False, False) + mock_assert.assert_called_once_with("rg", "vm", "ip", "cert", "username") mock_do_op.assert_called_once_with( - cmd, "rg", "vm", "ip", "public", "private", False, mock.ANY) - + cmd, "rg", "vm", "ip", "public", "private", False, "username", "cert", 'path/to/az_ssh_config/rg-vm', mock.ANY) + @mock.patch('azext_ssh.ssh_utils.get_ssh_cert_principals') @mock.patch('os.path.join') - @mock.patch('azext_ssh.custom._assert_args') @mock.patch('azext_ssh.custom._check_or_create_public_private_files') @mock.patch('azext_ssh.ip_utils.get_ssh_ip') @mock.patch('azext_ssh.custom._get_modulus_exponent') @mock.patch('azure.cli.core._profile.Profile') @mock.patch('azext_ssh.custom._write_cert_file') - def test_do_ssh_op(self, mock_write_cert, mock_ssh_creds, mock_get_mod_exp, mock_ip, - mock_check_files, mock_assert, mock_join, mock_principal): + def test_do_ssh_op_aad_user(self, mock_write_cert, mock_ssh_creds, mock_get_mod_exp, mock_ip, + mock_check_files, mock_join, mock_principal): cmd = mock.Mock() cmd.cli_ctx = mock.Mock() cmd.cli_ctx.cloud = mock.Mock() cmd.cli_ctx.cloud.name = "azurecloud" mock_op = mock.Mock() - mock_check_files.return_value = "public", "private" + mock_check_files.return_value = "public", "private", False mock_principal.return_value = ["username"] mock_get_mod_exp.return_value = "modulus", "exponent" profile = mock_ssh_creds.return_value @@ -60,46 +68,64 @@ def test_do_ssh_op(self, mock_write_cert, mock_ssh_creds, mock_get_mod_exp, mock profile.get_msal_token.return_value = "username", "certificate" mock_join.return_value = "public-aadcert.pub" - custom._do_ssh_op(cmd, None, None, "1.2.3.4", "publicfile", "privatefile", False, mock_op) + custom._do_ssh_op(cmd, None, None, "1.2.3.4", "publicfile", "privatefile", False, None, None, "cred/folder", mock_op) - mock_assert.assert_called_once_with(None, None, "1.2.3.4") - mock_check_files.assert_called_once_with("publicfile", "privatefile") + mock_check_files.assert_called_once_with("publicfile", "privatefile", "cred/folder") mock_ip.assert_not_called() mock_get_mod_exp.assert_called_once_with("public") mock_write_cert.assert_called_once_with("certificate", "public-aadcert.pub") mock_op.assert_called_once_with( - "1.2.3.4", "username", "public-aadcert.pub", "private") + "1.2.3.4", "username", "public-aadcert.pub", "private", False, True) - @mock.patch('azext_ssh.custom._assert_args') + @mock.patch('azext_ssh.custom._check_or_create_public_private_files') + @mock.patch('azext_ssh.ip_utils.get_ssh_ip') + def test_do_ssh_op_local_user(self, mock_ip, mock_check_files): + cmd = mock.Mock() + mock_op = mock.Mock() + mock_ip.return_value = "1.2.3.4" + + custom._do_ssh_op(cmd, "vm", "rg", None, "publicfile", "privatefile", False, "username", "cert", "cred/folder", mock_op) + + mock_check_files.assert_not_called() + mock_ip.assert_called_once_with(cmd, "vm", "rg", False) + mock_op.assert_called_once_with( + "1.2.3.4", "username", "cert", "privatefile", False, False) + @mock.patch('azext_ssh.custom._check_or_create_public_private_files') @mock.patch('azext_ssh.ip_utils.get_ssh_ip') @mock.patch('azext_ssh.custom._get_modulus_exponent') - def test_do_ssh_op_no_public_ip(self, mock_get_mod_exp, mock_ip, mock_check_files, mock_assert): + def test_do_ssh_op_no_public_ip(self, mock_get_mod_exp, mock_ip, mock_check_files): cmd = mock.Mock() mock_op = mock.Mock() - mock_check_files.return_value = "public", "private" mock_get_mod_exp.return_value = "modulus", "exponent" mock_ip.return_value = None self.assertRaises( azclierror.ResourceNotFoundError, custom._do_ssh_op, cmd, "rg", "vm", None, - "publicfile", "privatefile", False, mock_op) + "publicfile", "privatefile", False, None, None, "cred/folder", mock_op) - mock_assert.assert_called_once_with("rg", "vm", None) - mock_check_files.assert_called_once_with("publicfile", "privatefile") + mock_check_files.assert_not_called() mock_ip.assert_called_once_with(cmd, "rg", "vm", False) def test_assert_args_no_ip_or_vm(self): - self.assertRaises(azclierror.RequiredArgumentMissingError, custom._assert_args, None, None, None) + self.assertRaises(azclierror.RequiredArgumentMissingError, custom._assert_args, None, None, None, None, None) def test_assert_args_vm_rg_mismatch(self): - self.assertRaises(azclierror.MutuallyExclusiveArgumentError, custom._assert_args, "rg", None, None) - self.assertRaises(azclierror.MutuallyExclusiveArgumentError, custom._assert_args, None, "vm", None) + self.assertRaises(azclierror.MutuallyExclusiveArgumentError, custom._assert_args, "rg", None, None, None, None) + self.assertRaises(azclierror.MutuallyExclusiveArgumentError, custom._assert_args, None, "vm", None, None, None) def test_assert_args_ip_with_vm_or_rg(self): - self.assertRaises(azclierror.MutuallyExclusiveArgumentError, custom._assert_args, None, "vm", "ip") - self.assertRaises(azclierror.MutuallyExclusiveArgumentError, custom._assert_args, "rg", "vm", "ip") + self.assertRaises(azclierror.MutuallyExclusiveArgumentError, custom._assert_args, None, "vm", "ip", None, None) + self.assertRaises(azclierror.MutuallyExclusiveArgumentError, custom._assert_args, "rg", "vm", "ip", None, None) + + def test_assert_args_cert_with_no_user(self): + self.assertRaises(azclierror.MutuallyExclusiveArgumentError, custom._assert_args, None, None, "ip", "certificate", None) + @mock.patch('os.path.isfile') + def test_assert_args_invalid_cert_filepath(self, mock_is_file): + mock_is_file.return_value = False + self.assertRaises(azclierror.FileOperationError, custom._assert_args, 'rg', 'vm', None, 'cert_path', 'username') + @mock.patch('azext_ssh.ssh_utils.create_ssh_keyfile') @mock.patch('tempfile.mkdtemp') @mock.patch('os.path.isfile') @@ -109,10 +135,11 @@ def test_check_or_create_public_private_files_defaults(self, mock_join, mock_isf mock_temp.return_value = "/tmp/aadtemp" mock_join.side_effect = ['/tmp/aadtemp/id_rsa.pub', '/tmp/aadtemp/id_rsa'] - public, private = custom._check_or_create_public_private_files(None, None) + public, private, delete_key = custom._check_or_create_public_private_files(None, None, None) self.assertEqual('/tmp/aadtemp/id_rsa.pub', public) self.assertEqual('/tmp/aadtemp/id_rsa', private) + self.assertEqual(True, delete_key) mock_join.assert_has_calls([ mock.call("/tmp/aadtemp", "id_rsa.pub"), mock.call("/tmp/aadtemp", "id_rsa") @@ -125,12 +152,37 @@ def test_check_or_create_public_private_files_defaults(self, mock_join, mock_isf mock.call('/tmp/aadtemp/id_rsa') ]) + @mock.patch('azext_ssh.ssh_utils.create_ssh_keyfile') + @mock.patch('os.path.isdir') + @mock.patch('os.path.isfile') + @mock.patch('os.path.join') + def test_check_or_create_public_private_files_defaults_with_cred_folder(self,mock_join, mock_isfile, mock_isdir, mock_create): + mock_isfile.return_value = True + mock_isdir.return_value = True + mock_join.side_effect = ['/cred/folder/id_rsa.pub', '/cred/folder/id_rsa'] + public, private, delete_key = custom._check_or_create_public_private_files(None, None, '/cred/folder') + self.assertEqual('/cred/folder/id_rsa.pub', public) + self.assertEqual('/cred/folder/id_rsa', private) + self.assertEqual(True, delete_key) + mock_join.assert_has_calls([ + mock.call("/cred/folder", "id_rsa.pub"), + mock.call("/cred/folder", "id_rsa") + ]) + mock_isfile.assert_has_calls([ + mock.call('/cred/folder/id_rsa.pub'), + mock.call('/cred/folder/id_rsa') + ]) + mock_create.assert_has_calls([ + mock.call('/cred/folder/id_rsa') + ]) + + @mock.patch('os.path.isfile') @mock.patch('os.path.join') def test_check_or_create_public_private_files_no_public(self, mock_join, mock_isfile): mock_isfile.side_effect = [False] self.assertRaises( - azclierror.FileOperationError, custom._check_or_create_public_private_files, "public", None) + azclierror.FileOperationError, custom._check_or_create_public_private_files, "public", None, None) mock_isfile.assert_called_once_with("public") @@ -140,7 +192,7 @@ def test_check_or_create_public_private_files_no_private(self, mock_join, mock_i mock_isfile.side_effect = [True, False] self.assertRaises( - azclierror.FileOperationError, custom._check_or_create_public_private_files, "public", "private") + azclierror.FileOperationError, custom._check_or_create_public_private_files, "public", "private", None) mock_join.assert_not_called() mock_isfile.assert_has_calls([ diff --git a/src/ssh/azext_ssh/tests/latest/test_ssh_utils.py b/src/ssh/azext_ssh/tests/latest/test_ssh_utils.py index 5171dd662fc..9e20e610317 100644 --- a/src/ssh/azext_ssh/tests/latest/test_ssh_utils.py +++ b/src/ssh/azext_ssh/tests/latest/test_ssh_utils.py @@ -10,23 +10,26 @@ from azext_ssh import ssh_utils - class SSHUtilsTests(unittest.TestCase): + + @mock.patch('os.path.join') @mock.patch.object(ssh_utils, '_get_ssh_path') @mock.patch.object(ssh_utils, '_get_host') @mock.patch.object(ssh_utils, '_build_args') @mock.patch('subprocess.call') - def test_start_ssh_connection(self, mock_call, mock_build, mock_host, mock_path): + def test_start_ssh_connection(self, mock_call, mock_build, mock_host, mock_path, mock_join): mock_path.return_value = "ssh" mock_host.return_value = "user@ip" mock_build.return_value = ['-i', 'file', '-o', 'option'] - expected_command = ["ssh", "user@ip", "-i", "file", "-o", "option"] + mock_join.return_value = "/log/file/path" - ssh_utils.start_ssh_connection(None, None, "ip", "user", "cert", "private") + expected_command = ["ssh", "user@ip", "-i", "file", "-o", "option", "-E", "/log/file/path", "-v"] + + ssh_utils.start_ssh_connection("port", None, "ip", "user", "cert", "private", True, True) mock_path.assert_called_once_with() mock_host.assert_called_once_with("user", "ip") - mock_build.assert_called_once_with("cert", "private", None) + mock_build.assert_called_once_with("cert", "private", "port") mock_call.assert_called_once_with(expected_command, shell=platform.system() == 'Windows') @mock.patch.object(ssh_utils, '_get_ssh_path') @@ -36,15 +39,18 @@ def test_start_ssh_connection_with_args(self, mock_call, mock_host, mock_path): mock_path.return_value = "ssh" mock_host.return_value = "user@ip" - expected_command = ["ssh", "user@ip", "-i", "private", "-o", "CertificateFile=cert", "-p", "2222", "--thing"] + expected_command = ["ssh", "user@ip", "-i", "private", "-o", "CertificateFile=cert", "-p", "2222", "--thing", "-vv"] - ssh_utils.start_ssh_connection("2222", ["--thing"], "ip", "user", "cert", "private") + ssh_utils.start_ssh_connection("2222", ["--thing", "-vv"], "ip", "user", "cert", "private", True, True) mock_path.assert_called_once_with() mock_host.assert_called_once_with("user", "ip") mock_call.assert_called_once_with(expected_command, shell=platform.system() == 'Windows') - def test_write_ssh_config_ip_and_vm(self): + + @mock.patch.object(ssh_utils, 'get_ssh_cert_validity') + def test_write_ssh_config_ip_and_vm(self, mock_validity): + mock_validity.return_value = None expected_lines = [ "", "Host rg-vm", @@ -52,23 +58,26 @@ def test_write_ssh_config_ip_and_vm(self): "\tHostName 1.2.3.4", "\tCertificateFile cert", "\tIdentityFile privatekey", + "\tPort port", "Host 1.2.3.4", "\tUser username", "\tCertificateFile cert", - "\tIdentityFile privatekey" + "\tIdentityFile privatekey", + "\tPort port" ] with mock.patch('builtins.open') as mock_open: mock_file = mock.Mock() mock_open.return_value.__enter__.return_value = mock_file ssh_utils.write_ssh_config( - "path/to/file", "rg", "vm", True, "1.2.3.4", "username", "cert", "privatekey" + "path/to/file", "rg", "vm", True, "port", "1.2.3.4", "username", "cert", "privatekey", True, False ) - + mock_validity.assert_called_once_with("cert") mock_open.assert_called_once_with("path/to/file", "w") mock_file.write.assert_called_once_with('\n'.join(expected_lines)) - def test_write_ssh_config_append(self): + @mock.patch.object(ssh_utils, 'get_ssh_cert_validity') + def test_write_ssh_config_append(self, mock_validity): expected_lines = [ "", "Host rg-vm", @@ -82,17 +91,22 @@ def test_write_ssh_config_append(self): "\tIdentityFile privatekey" ] + mock_validity.return_value = None + with mock.patch('builtins.open') as mock_open: mock_file = mock.Mock() mock_open.return_value.__enter__.return_value = mock_file ssh_utils.write_ssh_config( - "path/to/file", "rg", "vm", False, "1.2.3.4", "username", "cert", "privatekey" + "path/to/file", "rg", "vm", False, None, "1.2.3.4", "username", "cert", "privatekey", True, True ) + mock_validity.assert_called_once_with("cert") + mock_open.assert_called_once_with("path/to/file", "a") mock_file.write.assert_called_once_with('\n'.join(expected_lines)) - - def test_write_ssh_config_ip_only(self): + + @mock.patch.object(ssh_utils, 'get_ssh_cert_validity') + def test_write_ssh_config_ip_only(self, mock_validity): expected_lines = [ "", "Host 1.2.3.4", @@ -100,14 +114,17 @@ def test_write_ssh_config_ip_only(self): "\tCertificateFile cert", "\tIdentityFile privatekey" ] + mock_validity.return_value = None with mock.patch('builtins.open') as mock_open: mock_file = mock.Mock() mock_open.return_value.__enter__.return_value = mock_file ssh_utils.write_ssh_config( - "path/to/file", None, None, True, "1.2.3.4", "username", "cert", "privatekey" + "path/to/file", None, None, True, None, "1.2.3.4", "username", "cert", "privatekey", False, False ) + mock_validity.assert_not_called() + mock_open.assert_called_once_with("path/to/file", "w") mock_file.write.assert_called_once_with('\n'.join(expected_lines)) diff --git a/src/ssh/setup.py b/src/ssh/setup.py index 22037fe5f3f..cac0b4129a5 100644 --- a/src/ssh/setup.py +++ b/src/ssh/setup.py @@ -7,7 +7,7 @@ from setuptools import setup, find_packages -VERSION = "0.1.8" +VERSION = "1.0.0" CLASSIFIERS = [ 'Development Status :: 4 - Beta', diff --git a/src/stack-hci/azext_stack_hci/tests/latest/preparers.py b/src/stack-hci/azext_stack_hci/tests/latest/preparers.py index 0879e51945a..176f5b16296 100644 --- a/src/stack-hci/azext_stack_hci/tests/latest/preparers.py +++ b/src/stack-hci/azext_stack_hci/tests/latest/preparers.py @@ -10,7 +10,7 @@ import os from datetime import datetime -from azure_devtools.scenario_tests import SingleValueReplacer +from azure.cli.testsdk.scenario_tests import SingleValueReplacer from azure.cli.testsdk.preparers import NoTrafficRecordingPreparer from azure.cli.testsdk.exceptions import CliTestError from azure.cli.testsdk.reverse_dependency import get_dummy_cli diff --git a/src/storage-blob-preview/azext_storage_blob_preview/tests/latest/test_storage_blob_scenarios.py b/src/storage-blob-preview/azext_storage_blob_preview/tests/latest/test_storage_blob_scenarios.py index 66c4de49377..a2016dc4120 100644 --- a/src/storage-blob-preview/azext_storage_blob_preview/tests/latest/test_storage_blob_scenarios.py +++ b/src/storage-blob-preview/azext_storage_blob_preview/tests/latest/test_storage_blob_scenarios.py @@ -11,7 +11,7 @@ JMESPathCheck, JMESPathCheckExists, NoneCheck, api_version_constraint) from knack.util import CLIError from azure.cli.core.profiles import ResourceType -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from ..storage_test_util import StorageScenarioMixin diff --git a/src/storage-preview/azext_storage_preview/tests/latest/test_storage_account_scenarios.py b/src/storage-preview/azext_storage_preview/tests/latest/test_storage_account_scenarios.py index fbf28dec969..6cc4acb5a2b 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/test_storage_account_scenarios.py +++ b/src/storage-preview/azext_storage_preview/tests/latest/test_storage_account_scenarios.py @@ -4,7 +4,7 @@ # -------------------------------------------------------------------------------------------- from azure.cli.testsdk import (ScenarioTest, JMESPathCheck, ResourceGroupPreparer, StorageAccountPreparer, api_version_constraint) -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from .storage_test_util import StorageScenarioMixin from ...profiles import CUSTOM_MGMT_PREVIEW_STORAGE from knack.util import CLIError diff --git a/src/stream-analytics/HISTORY.rst b/src/stream-analytics/HISTORY.rst index 1c139576ba0..20cb667fce3 100644 --- a/src/stream-analytics/HISTORY.rst +++ b/src/stream-analytics/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +0.1.1 ++++++++++++++++ +* Support API version to 2020. + 0.1.0 -++++++ ++++++++++++++++ * Initial release. diff --git a/src/stream-analytics/azext_stream_analytics/__init__.py b/src/stream-analytics/azext_stream_analytics/__init__.py index b4abc69055e..75aec77f9d6 100644 --- a/src/stream-analytics/azext_stream_analytics/__init__.py +++ b/src/stream-analytics/azext_stream_analytics/__init__.py @@ -1,32 +1,53 @@ -# -------------------------------------------------------------------------------------------- +# -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- +# pylint: disable=unused-import + +import azext_stream_analytics._help from azure.cli.core import AzCommandsLoader -from azext_stream_analytics._help import helps # pylint: disable=unused-import - -class StreamAnalyticsCommandsLoader(AzCommandsLoader): +class StreamAnalyticsManagementClientCommandsLoader(AzCommandsLoader): def __init__(self, cli_ctx=None): from azure.cli.core.commands import CliCommandType - from azext_stream_analytics._client_factory import cf_stream_analytics + from azext_stream_analytics.generated._client_factory import cf_stream_analytics_cl stream_analytics_custom = CliCommandType( operations_tmpl='azext_stream_analytics.custom#{}', - client_factory=cf_stream_analytics) - super(StreamAnalyticsCommandsLoader, self).__init__(cli_ctx=cli_ctx, - custom_command_type=stream_analytics_custom) + client_factory=cf_stream_analytics_cl) + parent = super() + parent.__init__(cli_ctx=cli_ctx, custom_command_type=stream_analytics_custom) def load_command_table(self, args): - from azext_stream_analytics.commands import load_command_table + from azext_stream_analytics.generated.commands import load_command_table load_command_table(self, args) + try: + from azext_stream_analytics.manual.commands import load_command_table as load_command_table_manual + load_command_table_manual(self, args) + except ImportError as e: + if e.name.endswith('manual.commands'): + pass + else: + raise e return self.command_table def load_arguments(self, command): - from azext_stream_analytics._params import load_arguments + from azext_stream_analytics.generated._params import load_arguments load_arguments(self, command) + try: + from azext_stream_analytics.manual._params import load_arguments as load_arguments_manual + load_arguments_manual(self, command) + except ImportError as e: + if e.name.endswith('manual._params'): + pass + else: + raise e -COMMAND_LOADER_CLS = StreamAnalyticsCommandsLoader +COMMAND_LOADER_CLS = StreamAnalyticsManagementClientCommandsLoader diff --git a/src/stream-analytics/azext_stream_analytics/_client_factory.py b/src/stream-analytics/azext_stream_analytics/_client_factory.py deleted file mode 100644 index d1363cf6ced..00000000000 --- a/src/stream-analytics/azext_stream_analytics/_client_factory.py +++ /dev/null @@ -1,34 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - - -def cf_stream_analytics(cli_ctx, *_): - from azure.cli.core.commands.client_factory import get_mgmt_service_client - from .vendored_sdks.streamanalytics import StreamAnalyticsManagementClient - return get_mgmt_service_client(cli_ctx, StreamAnalyticsManagementClient) - - -def cf_jobs(cli_ctx, *_): - return cf_stream_analytics(cli_ctx).streaming_jobs - - -def cf_inputs(cli_ctx, *_): - return cf_stream_analytics(cli_ctx).inputs - - -def cf_outputs(cli_ctx, *_): - return cf_stream_analytics(cli_ctx).outputs - - -def cf_transformations(cli_ctx, *_): - return cf_stream_analytics(cli_ctx).transformations - - -def cf_functions(cli_ctx, *_): - return cf_stream_analytics(cli_ctx).functions - - -def cf_subscriptions(cli_ctx, *_): - return cf_stream_analytics(cli_ctx).subscriptions diff --git a/src/stream-analytics/azext_stream_analytics/_help.py b/src/stream-analytics/azext_stream_analytics/_help.py index 73592b54866..9b93f87a6e9 100644 --- a/src/stream-analytics/azext_stream_analytics/_help.py +++ b/src/stream-analytics/azext_stream_analytics/_help.py @@ -1,560 +1,20 @@ -# coding=utf-8 -# -------------------------------------------------------------------------------------------- +# -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -# pylint: disable=too-many-lines -# pylint: disable=line-too-long -from knack.help_files import helps # pylint: disable=unused-import - -helps['stream-analytics'] = """ - type: group - short-summary: Manage Stream Analytics. -""" - -helps['stream-analytics job'] = """ - type: group - short-summary: Commands to manage stream-analytics streaming job. -""" - -helps['stream-analytics job create'] = """ - type: command - short-summary: Create a streaming job or replaces an already existing streaming job. - examples: - - name: Create a streaming job - text: |- - az stream-analytics job create --resource-group MyResourceGroup --name MyJobName \\ - --location "West US" --output-error-policy "Drop" --events-outoforder-policy "Drop" \\ - --events-outoforder-max-delay 5 --events-late-arrival-max-delay 16 --data-locale "en-US" -""" - -helps['stream-analytics job update'] = """ - type: command - short-summary: Update existing streaming job. - examples: - - name: Update a streaming job - text: |- - az stream-analytics job update --resource-group MyResourceGroup --name MyJobName \\ - --events-outoforder-max-delay 21 --events-late-arrival-max-delay 13 -""" - -helps['stream-analytics job delete'] = """ - type: command - short-summary: Delete a streaming job. - examples: - - name: Delete a streaming job - text: |- - az stream-analytics job delete --resource-group MyResourceGroup --name MyJobName -""" - -helps['stream-analytics job show'] = """ - type: command - short-summary: Get details about the specified streaming job. - examples: - - name: Get a streaming job - text: |- - az stream-analytics job show --resource-group MyResourceGroup --name MyJobName - - name: Get a streaming job and expand its inputs, outputs, transformation, and functions - text: |- - az stream-analytics job show --resource-group MyResourceGroup --name MyJobName --expand -""" - -helps['stream-analytics job list'] = """ - type: command - short-summary: List all of the streaming jobs in the specified resource group. - examples: - - name: List all streaming jobs in current subscription - text: |- - az stream-analytics job list - - name: List all streaming jobs in a resource group - text: |- - az stream-analytics job list --resource-group MyResourceGroup - - name: List all streaming jobs and expand their inputs, outputs, transformation, and functions - text: |- - az stream-analytics job list --resource-group MyResourceGroup --expand -""" - -helps['stream-analytics job start'] = """ - type: command - short-summary: Start a streaming job. - examples: - - name: Start a streaming job with LastOutputEventTime output start mode - text: |- - az stream-analytics job start --resource-group MyResourceGroup --name MyJobName --output-start-mode LastOutputEventTime - - name: Start a streaming job with JobStartTime output start mode - text: |- - az stream-analytics job start --resource-group MyResourceGroup --name MyJobName --output-start-mode JobStartTime - - name: Start a streaming job with CustomTime output start mode - text: |- - az stream-analytics job start --resource-group MyResourceGroup --name MyJobName --output-start-mode CustomTime --output-start-time 2020-01-01T00:00:00Z -""" - -helps['stream-analytics job stop'] = """ - type: command - short-summary: Stop a running streaming job. - examples: - - name: Stop a streaming job - text: |- - az stream-analytics job stop --resource-group MyResourceGroup --name MyJobName -""" - -helps['stream-analytics job wait'] = """ -type: command -short-summary: Place the CLI in a waiting state until a condition of the streaming job is met. -examples: - - name: Pause executing next line of CLI script until the streaming job is successfully provisioned. - text: | - az stream-analytics job wait --resource-group MyResourceGroup --name MyJobName --created -""" - -helps['stream-analytics input'] = """ - type: group - short-summary: Commands to manage stream-analytics input. -""" - -helps['stream-analytics input create'] = """ - type: command - short-summary: Create an input or replaces an already existing input under an existing streaming job. - examples: - - name: Create an input - text: |- - az stream-analytics input create --resource-group MyResourceGroup --job-name MyJobName \\ - --name MyInputName --type Stream --datasource @datasource.json --serialization \\ - @serialization.json - (below is an example of Blob Storage for "datasource.json") - { - "type": "Microsoft.Storage/Blob", - "properties": { - "storageAccounts": [ - { - "accountName": "someAccountName", - "accountKey": "someAccountKey==" - } - ], - "container": "state", - "pathPattern": "{date}/{time}", - "dateFormat": "yyyy/MM/dd", - "timeFormat": "HH", - "sourcePartitionCount": 16 - } - } - (below is an example of Event Hub for "datasource.json") - { - "type": "Microsoft.ServiceBus/EventHub", - "properties": { - "serviceBusNamespace": "sdktest", - "sharedAccessPolicyName": "RootManageSharedAccessKey", - "sharedAccessPolicyKey": "someSharedAccessPolicyKey==", - "eventHubName": "sdkeventhub", - "consumerGroupName": "sdkconsumergroup" - } - } - (below is an example of Iot Hub for "datasource.json") - { - "type": "Microsoft.Devices/IotHubs", - "properties": { - "iotHubNamespace": "iothub", - "sharedAccessPolicyName": "owner", - "sharedAccessPolicyKey": "sharedAccessPolicyKey=", - "consumerGroupName": "sdkconsumergroup", - "endpoint": "messages/events" - } - } - (below is an example of Csv for "serialization.json") - { - "type": "Csv", - "properties": { - "fieldDelimiter": ",", - "encoding": "UTF8" - } - } - (below is an example of Json for "serialization.json") - { - "type": "Json", - "properties": { - "encoding": "UTF8" - } - } - (below is an example of Avro for "serialization.json") - { - "type": "Avro" - } -""" - -helps['stream-analytics input delete'] = """ - type: command - short-summary: Delete an input from the streaming job. - examples: - - name: Delete an input - text: |- - az stream-analytics input delete --resource-group MyResourceGroup --job-name MyJobName --name MyInputName -""" - -helps['stream-analytics input show'] = """ - type: command - short-summary: Get details about the specified input. - examples: - - name: Get details about specified input - text: |- - az stream-analytics input show --resource-group MyResourceGroup --job-name MyJobName --name MyInputName -""" - -helps['stream-analytics input list'] = """ - type: command - short-summary: List all of the inputs under the specified streaming job. - examples: - - name: List all inputs in a streaming job - text: |- - az stream-analytics input list --resource-group MyResourceGroup --job-name MyJobName -""" - -helps['stream-analytics input test'] = """ - type: command - short-summary: Test an input. - examples: - - name: Test the connection for an input - text: |- - az stream-analytics input test --resource-group MyResourceGroup --job-name MyJobName --name MyInputName -""" - -helps['stream-analytics output'] = """ - type: group - short-summary: Commands to manage stream-analytics output. -""" - -helps['stream-analytics output create'] = """ - type: command - short-summary: Create an output or replaces an already existing output under an existing streaming job. - examples: - - name: Create an output - text: |- - az stream-analytics output create --resource-group MyResourceGroup --job-name MyJobName \\ - --name MyOutputName --datasource @datasource.json --serialization @serialization.json - (below is an example of DataLake for "datasource.json") - { - "type": "Microsoft.DataLake/Accounts", - "properties": { - "accountName": "someaccount", - "tenantId": "cea4e98b-c798-49e7-8c40-4a2b3beb47dd", - "refreshToken": "someRefreshToken==", - "tokenUserPrincipalName": "bobsmith@contoso.com", - "tokenUserDisplayName": "Bob Smith", - "filePathPrefix": "{date}/{time}", - "dateFormat": "yyyy/MM/dd", - "timeFormat": "HH" - } - } - (below is an example of SQL Database for "datasource.json") - { - "type": "Microsoft.Sql/Server/Database", - "properties": { - "server": "someServer", - "database": "someDatabase", - "user": "someUser", - "password": "somePassword", - "table": "someTable" - } - } - (below is an example of Table Storage for "datasource.json") - { - "type": "Microsoft.Storage/Table", - "properties": { - "accountName": "someAccountName", - "accountKey": "accountKey==", - "table": "samples", - "partitionKey": "partitionKey", - "rowKey": "rowKey", - "columnsToRemove": [ - "column1", - "column2" - ], - "batchSize": 25 - } - } - (below is an example of Blob Storage for "datasource.json") - { - "type": "Microsoft.Storage/Blob", - "properties": { - "storageAccounts": [ - { - "accountName": "someAccountName", - "accountKey": "accountKey==" - } - ], - "container": "state", - "pathPattern": "{date}/{time}", - "dateFormat": "yyyy/MM/dd", - "timeFormat": "HH" - } - } - (below is an example of DocumentDB for "datasource.json") - { - "type": "Microsoft.Storage/DocumentDB", - "properties": { - "accountId": "someAccountId", - "accountKey": "accountKey==", - "database": "db01", - "collectionNamePattern": "collection", - "partitionKey": "key", - "documentId": "documentId" - } - } - (below is an example of Event Hub for "datasource.json") - { - "type": "Microsoft.ServiceBus/EventHub", - "properties": { - "serviceBusNamespace": "sdktest", - "sharedAccessPolicyName": "RootManageSharedAccessKey", - "sharedAccessPolicyKey": "sharedAccessPolicyKey=", - "eventHubName": "sdkeventhub", - "partitionKey": "partitionKey" - } - } - (below is an example of PowerBI for "datasource.json") - { - "type": "PowerBI", - "properties": { - "dataset": "someDataset", - "table": "someTable", - "refreshToken": "someRefreshToken==", - "tokenUserPrincipalName": "bobsmith@contoso.com", - "tokenUserDisplayName": "Bob Smith", - "groupId": "ac40305e-3e8d-43ac-8161-c33799f43e95", - "groupName": "MyPowerBIGroup" - } - } - (below is an example of Service Bus Queue for "datasource.json") - { - "type": "Microsoft.ServiceBus/Queue", - "properties": { - "serviceBusNamespace": "sdktest", - "sharedAccessPolicyName": "RootManageSharedAccessKey", - "sharedAccessPolicyKey": "sharedAccessPolicyKey=", - "queueName": "sdkqueue", - "propertyColumns": [ - "column1", - "column2" - ] - } - } - (below is an example of Service Bus Topic for "datasource.json") - { - "type": "Microsoft.ServiceBus/Topic", - "properties": { - "serviceBusNamespace": "sdktest", - "sharedAccessPolicyName": "RootManageSharedAccessKey", - "sharedAccessPolicyKey": "sharedAccessPolicyKey=", - "topicName": "sdktopic", - "propertyColumns": [ - "column1", - "column2" - ] - } - } - (below is an example of Csv for "serialization.json") - { - "type": "Csv", - "properties": { - "fieldDelimiter": ",", - "encoding": "UTF8" - } - } - (below is an example of Json for "serialization.json") - { - "type": "Json", - "properties": { - "encoding": "UTF8", - "format": "Array" - } - } - (below is an example of Avro for "serialization.json") - { - "type": "Avro" - } -""" - -helps['stream-analytics output delete'] = """ - type: command - short-summary: Delete an output from the streaming job. - examples: - - name: Delete an output - text: |- - az stream-analytics output delete --resource-group MyResourceGroup --job-name MyJobName --name \\ - MyOutputName -""" - -helps['stream-analytics output show'] = """ - type: command - short-summary: Get details about the specified output. - examples: - - name: Get details about an output - text: |- - az stream-analytics output show --resource-group MyResourceGroup --job-name MyJobName --name \\ - MyOutputName -""" - -helps['stream-analytics output list'] = """ - type: command - short-summary: List all of the outputs under the specified streaming job. - examples: - - name: List all outputs in a streaming job - text: |- - az stream-analytics output list --resource-group MyResourceGroup --job-name MyJobName -""" - -helps['stream-analytics output test'] = """ - type: command - short-summary: Test an output - examples: - - name: Test the connection for an output - text: |- - az stream-analytics output test --resource-group MyResourceGroup --job-name MyJobName --name \\ - MyOutputName -""" - -helps['stream-analytics transformation'] = """ - type: group - short-summary: Commands to manage stream-analytics transformation. -""" - -helps['stream-analytics transformation create'] = """ - type: command - short-summary: Create a transformation or replaces an already existing transformation under an existing streaming job. - examples: - - name: Create a transformation - text: |- - az stream-analytics transformation create --resource-group MyResourceGroup --job-name MyJobName \\ - --name Transformation --streaming-units "6" --transformation-query "Select Id, Name from inputtest" -""" - -helps['stream-analytics transformation update'] = """ - type: command - short-summary: Update transformation under an existing streaming job. - examples: - - name: Update a transformation - text: |- - az stream-analytics transformation update --resource-group MyResourceGroup --job-name MyJobName \\ - --name Transformation --transformation-query "New query" -""" - -helps['stream-analytics transformation show'] = """ - type: command - short-summary: Get details about the specified transformation. - examples: - - name: Get a transformation - text: |- - az stream-analytics transformation show --resource-group MyResourceGroup --job-name MyJobName \\ - --name Transformation -""" - -helps['stream-analytics function'] = """ - type: group - short-summary: Commands to manage stream-analytics function. -""" - -helps['stream-analytics function create'] = """ - type: command - short-summary: Create a function or replaces an already existing function under an existing streaming job. - examples: - - name: Create a function - text: |- - az stream-analytics function create --resource-group MyResourceGroup --job-name MyJobName \\ - --name MyFunctionName --inputs @inputs.json --function-output @output.json --binding \\ - @binding.json - (below is an example for "inputs.json") - [ - { - "dataType": "Any" - } - ] - (below is an example for "output.json") - { - "dataType": "Any" - } - (below is an example of JavascripUDF for "binding.json") - { - "type": "Microsoft.StreamAnalytics/JavascriptUdf", - "properties": { - "script": "function (x, y) { return x + y; }" - } - } - (below is an example of Azure Machine Learning for "binding.json") - { - "type": "Microsoft.MachineLearning/WebService", - "properties": { - "endpoint": "someAzureMLEndpointURL", - "apiKey": "someApiKey==", - "inputs": { - "name": "input1", - "columnNames": [ - { - "name": "tweet", - "dataType": "string", - "mapTo": 0 - } - ] - }, - "outputs": [ - { - "name": "Sentiment", - "dataType": "string" - } - ], - "batchSize": 1000 - } - } -""" - -helps['stream-analytics function delete'] = """ - type: command - short-summary: Delete a function from the streaming job. - examples: - - name: Delete a function - text: |- - az stream-analytics function delete --resource-group MyResourceGroup --job-name MyJobName \\ - --name MyFunctionName -""" - -helps['stream-analytics function show'] = """ - type: command - short-summary: Get details about the specified function. - examples: - - name: Get details about a function - text: |- - az stream-analytics function show --resource-group MyResourceGroup --job-name MyJobName --name \\ - MyFunctionName -""" - -helps['stream-analytics function list'] = """ - type: command - short-summary: List all of the functions under the specified streaming job. - examples: - - name: List all functions in a streaming job - text: |- - az stream-analytics function list --resource-group MyResourceGroup --job-name MyJobName -""" - -helps['stream-analytics function test'] = """ - type: command - short-summary: Test if the information provided for a function is valid. - examples: - - name: Test the connection for a function - text: |- - az stream-analytics function test --resource-group MyResourceGroup --job-name MyJobName --name \\ - MyFunctionName -""" - -helps['stream-analytics quota'] = """ - type: group - short-summary: Commands to show quota information. -""" - -helps['stream-analytics quota show'] = """ - type: command - short-summary: Retrieve quota information in a particular region. - examples: - - name: List quota information in West US - text: |- - az stream-analytics quota show --location "West US" -""" +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- +# pylint: disable=wildcard-import +# pylint: disable=unused-wildcard-import +# pylint: disable=unused-import +from .generated._help import helps # pylint: disable=reimported +try: + from .manual._help import helps # pylint: disable=reimported +except ImportError as e: + if e.name.endswith('manual._help'): + pass + else: + raise e diff --git a/src/stream-analytics/azext_stream_analytics/_params.py b/src/stream-analytics/azext_stream_analytics/_params.py deleted file mode 100644 index 1e4a7fa42e3..00000000000 --- a/src/stream-analytics/azext_stream_analytics/_params.py +++ /dev/null @@ -1,164 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- -# pylint: disable=line-too-long -# pylint: disable=too-many-lines -# pylint: disable=too-many-statements - -from azure.cli.core.commands.parameters import ( - tags_type, - get_enum_type, - get_location_type -) -from azure.cli.core.commands.validators import validate_file_or_dict, get_default_location_from_resource_group -from .vendored_sdks.streamanalytics.models import ( - SkuName, OutputStartMode, EventsOutOfOrderPolicy, OutputErrorPolicy, UdfType, CompatibilityLevel -) - - -def load_arguments(self, _): - - with self.argument_context('stream-analytics job create') as c: - c.argument('name', options_list=['--name', '-n'], help='The name of the streaming job.') - c.argument('location', arg_type=get_location_type(self.cli_ctx), - validator=get_default_location_from_resource_group) - c.argument('tags', tags_type) - c.argument('sku', arg_type=get_enum_type(SkuName), help='The name of the SKU.') - c.argument('output_error_policy', arg_type=get_enum_type(OutputErrorPolicy), - help='Indicates the policy to apply to events that arrive at the output.') - c.argument('events_outoforder_policy', arg_type=get_enum_type(EventsOutOfOrderPolicy), - help='Indicates the policy to apply to events that arrive out of order in the input event stream.') - c.argument('events_outoforder_max_delay', type=int, - help='The maximum tolerable delay in seconds where out-of-order events can be adjusted to be back in order.') - c.argument('events_late_arrival_max_delay', type=int, - help='The maximum tolerable delay in seconds where events arriving late could be included. Supported range is -1 to 1814399 (20.23:59:59 days) and -1 is used to specify wait indefinitely.') - c.argument('data_locale', - help='The data locale of the stream analytics job. Value should be the name of a supported .NET Culture from the set https://msdn.microsoft.com/en-us/library/system.globalization.culturetypes(v=vs.110).aspx. Defaults to "en-US" if none specified.') - c.argument('compatibility_level', arg_type=get_enum_type(CompatibilityLevel), - help='Controls certain runtime behaviors of the streaming job.') - - with self.argument_context('stream-analytics job update') as c: - c.argument('name', options_list=['--name', '-n'], help='The name of the streaming job.') - c.argument('tags', tags_type) - c.argument('output_error_policy', arg_type=get_enum_type(OutputErrorPolicy), - help='Indicates the policy to apply to events that arrive at the output.') - c.argument('events_outoforder_policy', arg_type=get_enum_type(EventsOutOfOrderPolicy), - help='Indicates the policy to apply to events that arrive out of order in the input event stream.') - c.argument('events_outoforder_max_delay', type=int, - help='The maximum tolerable delay in seconds where out-of-order events can be adjusted to be back in order.') - c.argument('events_late_arrival_max_delay', type=int, - help='The maximum tolerable delay in seconds where events arriving late could be included. Supported range is -1 to 1814399 (20.23:59:59 days) and -1 is used to specify wait indefinitely.') - c.argument('data_locale', - help='The data locale of the stream analytics job. Value should be the name of a supported .NET Culture from the set https://msdn.microsoft.com/en-us/library/system.globalization.culturetypes(v=vs.110).aspx.') - - with self.argument_context('stream-analytics job delete') as c: - c.argument('name', options_list=['--name', '-n'], help='The name of the streaming job.') - - with self.argument_context('stream-analytics job show') as c: - c.argument('name', options_list=['--name', '-n'], help='The name of the streaming job.') - c.argument('expand', action='store_true', - help='Expand inputs, transformation, outputs and functions of the streaming job') - - with self.argument_context('stream-analytics job list') as c: - c.argument('expand', action='store_true', - help='Expand inputs, transformation, outputs and functions of the streaming job') - - with self.argument_context('stream-analytics job start') as c: - c.argument('name', options_list=['--name', '-n'], help='The name of the streaming job.') - c.argument('output_start_mode', arg_type=get_enum_type(OutputStartMode), - help='Output start mode') - c.argument('output_start_time', - help='Output start time, must have a value if --output-start-mode is set to CustomTime.') - - with self.argument_context('stream-analytics job stop') as c: - c.argument('name', options_list=['--name', '-n'], help='The name of the streaming job.') - - with self.argument_context('stream-analytics job wait') as c: - c.argument('job_name', options_list=['--name', '-n'], help='The name of the streaming job.') - - with self.argument_context('stream-analytics input create') as c: - c.argument('job_name', id_part='name', help='The name of the streaming job.') - c.argument('name', id_part='child_name_1', options_list=['--name', '-n'], help='The name of the input.') - c.argument('type', get_enum_type(['Stream', 'Reference']), help='The type of the input.') - c.argument('datasource', type=validate_file_or_dict, help='The datasource of the input.') - c.argument('serialization', type=validate_file_or_dict, help='The serialization of the input.') - - with self.argument_context('stream-analytics input delete') as c: - c.argument('job_name', id_part='name', help='The name of the streaming job.') - c.argument('name', id_part='child_name_1', options_list=['--name', '-n'], help='The name of the input.') - - with self.argument_context('stream-analytics input show') as c: - c.argument('job_name', id_part='name', help='The name of the streaming job.') - c.argument('name', id_part='child_name_1', options_list=['--name', '-n'], help='The name of the input.') - - with self.argument_context('stream-analytics input list') as c: - c.argument('job_name', help='The name of the streaming job.') - - with self.argument_context('stream-analytics input test') as c: - c.argument('job_name', id_part='name', help='The name of the streaming job.') - c.argument('name', id_part='child_name_1', options_list=['--name', '-n'], help='The name of the input.') - - with self.argument_context('stream-analytics output create') as c: - c.argument('job_name', id_part='name', help='The name of the streaming job.') - c.argument('name', id_part='child_name_1', options_list=['--name', '-n'], help='The name of the output.') - c.argument('datasource', type=validate_file_or_dict, help='The datasource of the output.') - c.argument('serialization', type=validate_file_or_dict, help='The serialization of the output.') - - with self.argument_context('stream-analytics output delete') as c: - c.argument('job_name', id_part='name', help='The name of the streaming job.') - c.argument('name', id_part='child_name_1', options_list=['--name', '-n'], help='The name of the output.') - - with self.argument_context('stream-analytics output show') as c: - c.argument('job_name', id_part='name', help='The name of the streaming job.') - c.argument('name', id_part='child_name_1', options_list=['--name', '-n'], help='The name of the output.') - - with self.argument_context('stream-analytics output list') as c: - c.argument('job_name', help='The name of the streaming job.') - - with self.argument_context('stream-analytics output test') as c: - c.argument('job_name', id_part='name', help='The name of the streaming job.') - c.argument('name', id_part='child_name_1', options_list=['--name', '-n'], help='The name of the output.') - - with self.argument_context('stream-analytics transformation create') as c: - c.argument('job_name', id_part='name', help='The name of the streaming job.') - c.argument('name', id_part='child_name_1', options_list=['--name', '-n'], help='The name of the transformation.') - c.argument('streaming_units', help='The number of streaming units that the streaming job uses.') - c.argument('transformation_query', help='The query that will be run in the streaming job. You can learn more about the Stream Analytics Query Language (SAQL) here: https://msdn.microsoft.com/library/azure/dn834998 .') - - with self.argument_context('stream-analytics transformation update') as c: - c.argument('job_name', id_part='name', help='The name of the streaming job.') - c.argument('name', id_part='child_name_1', options_list=['--name', '-n'], help='The name of the transformation.') - c.argument('streaming_units', help='The number of streaming units that the streaming job uses.') - c.argument('transformation_query', - help='The query that will be run in the streaming job. You can learn more about the Stream Analytics Query Language (SAQL) here: https://msdn.microsoft.com/library/azure/dn834998 .') - - with self.argument_context('stream-analytics transformation show') as c: - c.argument('job_name', id_part='name', help='The name of the streaming job.') - c.argument('name', id_part='child_name_1', options_list=['--name', '-n'], help='The name of the transformation.') - - with self.argument_context('stream-analytics function create') as c: - c.argument('job_name', id_part='name', help='The name of the streaming job.') - c.argument('name', id_part='child_name_1', options_list=['--name', '-n'], help='The name of the function.') - c.argument('inputs', type=validate_file_or_dict, help='The inputs of the function.') - c.argument('function_output', type=validate_file_or_dict, help='The output of the function.') - c.argument('binding', type=validate_file_or_dict, help='The binding of the function.') - c.argument('type', arg_type=get_enum_type(UdfType), help='The udf type of the function.') - - with self.argument_context('stream-analytics function delete') as c: - c.argument('job_name', id_part='name', help='The name of the streaming job.') - c.argument('name', id_part='child_name_1', options_list=['--name', '-n'], help='The name of the function.') - - with self.argument_context('stream-analytics function show') as c: - c.argument('job_name', id_part='name', help='The name of the streaming job.') - c.argument('name', id_part='child_name_1', options_list=['--name', '-n'], help='The name of the function.') - - with self.argument_context('stream-analytics function list') as c: - c.argument('job_name', help='The name of the streaming job.') - - with self.argument_context('stream-analytics function test') as c: - c.argument('job_name', id_part='name', help='The name of the streaming job.') - c.argument('name', id_part='child_name_1', options_list=['--name', '-n'], help='The name of the function.') - - with self.argument_context('stream-analytics quota show') as c: - c.argument('location', arg_type=get_location_type(self.cli_ctx)) diff --git a/src/stream-analytics/azext_stream_analytics/_validators.py b/src/stream-analytics/azext_stream_analytics/_validators.py deleted file mode 100644 index 7562459ea4f..00000000000 --- a/src/stream-analytics/azext_stream_analytics/_validators.py +++ /dev/null @@ -1,10 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - - -def validate_streaming_job_start(namespace): - from knack.util import CLIError - if namespace.output_start_mode == 'CustomTime' and namespace.output_start_time is None: - raise CLIError('usage error: --output-start-time is required when --output-start-mode is CustomTime') diff --git a/src/stream-analytics/azext_stream_analytics/action.py b/src/stream-analytics/azext_stream_analytics/action.py new file mode 100644 index 00000000000..9b3d0a8a78c --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/action.py @@ -0,0 +1,20 @@ +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- +# pylint: disable=wildcard-import +# pylint: disable=unused-wildcard-import + +from .generated.action import * # noqa: F403 +try: + from .manual.action import * # noqa: F403 +except ImportError as e: + if e.name.endswith('manual.action'): + pass + else: + raise e diff --git a/src/stream-analytics/azext_stream_analytics/azext_metadata.json b/src/stream-analytics/azext_stream_analytics/azext_metadata.json index 13025150393..cfc30c747c7 100644 --- a/src/stream-analytics/azext_stream_analytics/azext_metadata.json +++ b/src/stream-analytics/azext_stream_analytics/azext_metadata.json @@ -1,4 +1,4 @@ { "azext.isExperimental": true, - "azext.minCliCoreVersion": "2.3.1" + "azext.minCliCoreVersion": "2.15.0" } \ No newline at end of file diff --git a/src/stream-analytics/azext_stream_analytics/commands.py b/src/stream-analytics/azext_stream_analytics/commands.py deleted file mode 100644 index a2a3e93f1a6..00000000000 --- a/src/stream-analytics/azext_stream_analytics/commands.py +++ /dev/null @@ -1,81 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -# pylint: disable=line-too-long -# pylint: disable=too-many-lines -# pylint: disable=too-many-statements -# pylint: disable=too-many-locals -from azure.cli.core.commands import CliCommandType -from ._validators import validate_streaming_job_start - - -def load_command_table(self, _): - - with self.command_group('stream-analytics', is_experimental=True): - pass - - from ._client_factory import cf_jobs - stream_analytics_jobs = CliCommandType( - operations_tmpl='azext_stream_analytics.vendored_sdks.streamanalytics.operations._streaming_jobs_operations#StreamingJobsOperations.{}', - client_factory=cf_jobs) - with self.command_group('stream-analytics job', stream_analytics_jobs, client_factory=cf_jobs) as g: - g.custom_command('create', 'create_stream_analytics_job', supports_no_wait=True) - g.custom_command('update', 'update_stream_analytics_job') - g.custom_command('delete', 'delete_stream_analytics_job', supports_no_wait=True) - g.custom_show_command('show', 'get_stream_analytics_job') - g.custom_command('list', 'list_stream_analytics_job') - g.custom_command('start', 'start_stream_analytics_job', validator=validate_streaming_job_start, supports_no_wait=True) - g.custom_command('stop', 'stop_stream_analytics_job', supports_no_wait=True) - g.wait_command('wait') - - from ._client_factory import cf_inputs - stream_analytics_inputs = CliCommandType( - operations_tmpl='azext_stream_analytics.vendored_sdks.streamanalytics.operations._inputs_operations#InputsOperations.{}', - client_factory=cf_inputs) - with self.command_group('stream-analytics input', stream_analytics_inputs, client_factory=cf_inputs) as g: - g.custom_command('create', 'create_stream_analytics_input') - g.custom_command('delete', 'delete_stream_analytics_input') - g.custom_show_command('show', 'get_stream_analytics_input') - g.custom_command('list', 'list_stream_analytics_input') - g.custom_command('test', 'test_stream_analytics_input', supports_no_wait=True) - - from ._client_factory import cf_outputs - stream_analytics_outputs = CliCommandType( - operations_tmpl='azext_stream_analytics.vendored_sdks.streamanalytics.operations._outputs_operations#OutputsOperations.{}', - client_factory=cf_outputs) - with self.command_group('stream-analytics output', stream_analytics_outputs, client_factory=cf_outputs) as g: - g.custom_command('create', 'create_stream_analytics_output') - g.custom_command('delete', 'delete_stream_analytics_output') - g.custom_show_command('show', 'get_stream_analytics_output') - g.custom_command('list', 'list_stream_analytics_output') - g.custom_command('test', 'test_stream_analytics_output', supports_no_wait=True) - - from ._client_factory import cf_transformations - stream_analytics_transformations = CliCommandType( - operations_tmpl='azext_stream_analytics.vendored_sdks.streamanalytics.operations._transformations_operations#TransformationsOperations.{}', - client_factory=cf_transformations) - with self.command_group('stream-analytics transformation', stream_analytics_transformations, client_factory=cf_transformations) as g: - g.custom_command('create', 'create_stream_analytics_transformation') - g.custom_command('update', 'update_stream_analytics_transformation') - g.custom_show_command('show', 'get_stream_analytics_transformation') - - from ._client_factory import cf_functions - stream_analytics_functions = CliCommandType( - operations_tmpl='azext_stream_analytics.vendored_sdks.streamanalytics.operations._functions_operations#FunctionsOperations.{}', - client_factory=cf_functions) - with self.command_group('stream-analytics function', stream_analytics_functions, client_factory=cf_functions) as g: - g.custom_command('create', 'create_stream_analytics_function') - g.custom_command('delete', 'delete_stream_analytics_function') - g.custom_show_command('show', 'get_stream_analytics_function') - g.custom_command('list', 'list_stream_analytics_function') - g.custom_command('test', 'test_stream_analytics_function', supports_no_wait=True) - - from ._client_factory import cf_subscriptions - stream_analytics_subscriptions = CliCommandType( - operations_tmpl='azext_stream_analytics.vendored_sdks.streamanalytics.operations._subscriptions_operations#SubscriptionsOperations.{}', - client_factory=cf_subscriptions) - with self.command_group('stream-analytics quota', stream_analytics_subscriptions, - client_factory=cf_subscriptions) as g: - g.custom_show_command('show', 'show_stream_analytics_quotas') diff --git a/src/stream-analytics/azext_stream_analytics/custom.py b/src/stream-analytics/azext_stream_analytics/custom.py index 042a4392a94..885447229d6 100644 --- a/src/stream-analytics/azext_stream_analytics/custom.py +++ b/src/stream-analytics/azext_stream_analytics/custom.py @@ -1,198 +1,20 @@ -# -------------------------------------------------------------------------------------------- +# -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- -# pylint: disable=line-too-long -# pylint: disable=too-many-statements -# pylint: disable=too-many-lines -# pylint: disable=too-many-locals -# pylint: disable=unused-argument - - -from azure.cli.core.util import sdk_no_wait -EXPANDED_FIELDS = ['inputs', 'transformation', 'outputs', 'functions'] -EXPANDED_ALL_STRING = ','.join(EXPANDED_FIELDS) - - -def create_stream_analytics_job(cmd, client, resource_group_name, name, location=None, tags=None, sku='Standard', - output_error_policy=None, events_outoforder_policy=None, - events_outoforder_max_delay=None, events_late_arrival_max_delay=None, data_locale=None, - compatibility_level='1.0', no_wait=False): - - body = { - 'location': location, - 'tags': tags, - 'properties': { - 'sku': {'name': sku}, - 'output_error_policy': output_error_policy, - 'events_out_of_order_policy': events_outoforder_policy, - 'events_out_of_order_max_delay_in_seconds': events_outoforder_max_delay, - 'events_late_arrival_max_delay_in_seconds': events_late_arrival_max_delay, - 'data_locale': data_locale, - 'compatibility_level': compatibility_level - } - } - - return sdk_no_wait(no_wait, client.create_or_replace, streaming_job=body, resource_group_name=resource_group_name, - job_name=name) - - -def update_stream_analytics_job(cmd, client, resource_group_name, name, tags=None, output_error_policy=None, - events_outoforder_policy=None, events_outoforder_max_delay=None, - events_late_arrival_max_delay=None, data_locale=None): - job = client.get(resource_group_name=resource_group_name, job_name=name) - if tags is not None: - job.tags = tags - if output_error_policy is not None: - job.output_error_policy = output_error_policy - if events_outoforder_policy is not None: - job.events_out_of_order_policy = events_outoforder_policy - if events_outoforder_max_delay is not None: - job.events_out_of_order_max_delay_in_seconds = events_outoforder_max_delay - if events_late_arrival_max_delay is not None: - job.events_late_arrival_max_delay_in_seconds = events_late_arrival_max_delay - if data_locale is not None: - job.data_locale = data_locale - - return client.create_or_replace(streaming_job=job, resource_group_name=resource_group_name, job_name=name) - - -def delete_stream_analytics_job(cmd, client, resource_group_name, name, no_wait=False): - return sdk_no_wait(no_wait, client.delete, resource_group_name=resource_group_name, job_name=name) - - -def get_stream_analytics_job(cmd, client, resource_group_name, name, expand=False): - expand = EXPANDED_ALL_STRING if expand else None - return client.get(resource_group_name=resource_group_name, job_name=name, expand=expand) - - -def list_stream_analytics_job(cmd, client, resource_group_name=None, expand=False): - expand = EXPANDED_ALL_STRING if expand else None - if not resource_group_name: - return client.list(expand=expand) - return client.list_by_resource_group(resource_group_name=resource_group_name, expand=expand) - - -def start_stream_analytics_job(cmd, client, resource_group_name, name, output_start_mode='JobStartTime', - output_start_time=None, no_wait=False): - return sdk_no_wait(no_wait, client.start, resource_group_name=resource_group_name, job_name=name, - output_start_mode=output_start_mode, output_start_time=output_start_time) - - -def stop_stream_analytics_job(cmd, client, resource_group_name, name, no_wait=False): - return sdk_no_wait(no_wait, client.stop, resource_group_name=resource_group_name, job_name=name) - - -def create_stream_analytics_input(cmd, client, resource_group_name, job_name, name, type, datasource, serialization): - # pylint: disable=redefined-builtin - properties = { - 'type': type, - 'datasource': datasource, - 'serialization': serialization - } - return client.create_or_replace(resource_group_name=resource_group_name, job_name=job_name, input_name=name, - properties=properties) - - -def delete_stream_analytics_input(cmd, client, resource_group_name, job_name, name): - return client.delete(resource_group_name=resource_group_name, job_name=job_name, input_name=name) - - -def get_stream_analytics_input(cmd, client, resource_group_name, job_name, name): - return client.get(resource_group_name=resource_group_name, job_name=job_name, input_name=name) - - -def list_stream_analytics_input(cmd, client, resource_group_name, job_name): - return client.list_by_streaming_job(resource_group_name=resource_group_name, job_name=job_name) - - -def test_stream_analytics_input(cmd, client, resource_group_name, job_name, name, no_wait=False): - return sdk_no_wait(no_wait, client.test, resource_group_name=resource_group_name, job_name=job_name, input_name=name) - - -def create_stream_analytics_output(cmd, client, resource_group_name, job_name, name, datasource, serialization=None): - properties = { - 'datasource': datasource - } - if serialization is not None: - properties['serialization'] = serialization - body = { - 'properties': properties - } - - return client.create_or_replace(output=body, resource_group_name=resource_group_name, job_name=job_name, - output_name=name) - - -def delete_stream_analytics_output(cmd, client, resource_group_name, job_name, name): - return client.delete(resource_group_name=resource_group_name, job_name=job_name, output_name=name) - - -def get_stream_analytics_output(cmd, client, resource_group_name, job_name, name): - return client.get(resource_group_name=resource_group_name, job_name=job_name, output_name=name) - - -def list_stream_analytics_output(cmd, client, resource_group_name, job_name): - return client.list_by_streaming_job(resource_group_name=resource_group_name, job_name=job_name) - - -def test_stream_analytics_output(cmd, client, resource_group_name, job_name, name, no_wait=False): - return sdk_no_wait(no_wait, client.test, resource_group_name=resource_group_name, job_name=job_name, output_name=name) - - -def create_stream_analytics_transformation(cmd, client, resource_group_name, job_name, name, streaming_units=None, - transformation_query=None): - body = { - 'streaming_units': streaming_units, - 'query': transformation_query - } - return client.create_or_replace(transformation=body, resource_group_name=resource_group_name, job_name=job_name, - transformation_name=name) - - -def update_stream_analytics_transformation(cmd, client, resource_group_name, job_name, name, streaming_units=None, - transformation_query=None): - body = client.get(resource_group_name=resource_group_name, job_name=job_name, transformation_name=name).as_dict() - if streaming_units is not None: - body['streaming_units'] = streaming_units - if transformation_query is not None: - body['query'] = transformation_query - return client.create_or_replace(transformation=body, resource_group_name=resource_group_name, job_name=job_name, - transformation_name=name) - - -def get_stream_analytics_transformation(cmd, client, resource_group_name, job_name, name): - return client.get(resource_group_name=resource_group_name, job_name=job_name, transformation_name=name) - - -def create_stream_analytics_function(cmd, client, resource_group_name, job_name, name, inputs, function_output, binding, - type='Scalar'): - # pylint: disable=redefined-builtin - properties = { - 'type': type, - 'inputs': inputs, - 'output': function_output, - 'binding': binding - } - return client.create_or_replace(resource_group_name=resource_group_name, job_name=job_name, function_name=name, - properties=properties) - - -def delete_stream_analytics_function(cmd, client, resource_group_name, job_name, name): - return client.delete(resource_group_name=resource_group_name, job_name=job_name, function_name=name) - - -def get_stream_analytics_function(cmd, client, resource_group_name, job_name, name): - return client.get(resource_group_name=resource_group_name, job_name=job_name, function_name=name) - - -def list_stream_analytics_function(cmd, client, resource_group_name, job_name): - return client.list_by_streaming_job(resource_group_name=resource_group_name, job_name=job_name) - - -def test_stream_analytics_function(cmd, client, resource_group_name, job_name, name, no_wait=False): - return sdk_no_wait(no_wait, client.test, resource_group_name=resource_group_name, job_name=job_name, function_name=name) - - -def show_stream_analytics_quotas(cmd, client, location): - return client.list_quotas(location=location) +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- +# pylint: disable=wildcard-import +# pylint: disable=unused-wildcard-import + +from .generated.custom import * # noqa: F403 +try: + from .manual.custom import * # noqa: F403 +except ImportError as e: + if e.name.endswith('manual.custom'): + pass + else: + raise e diff --git a/src/stream-analytics/azext_stream_analytics/generated/__init__.py b/src/stream-analytics/azext_stream_analytics/generated/__init__.py new file mode 100644 index 00000000000..c9cfdc73e77 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/generated/__init__.py @@ -0,0 +1,12 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +__path__ = __import__('pkgutil').extend_path(__path__, __name__) diff --git a/src/stream-analytics/azext_stream_analytics/generated/_client_factory.py b/src/stream-analytics/azext_stream_analytics/generated/_client_factory.py new file mode 100644 index 00000000000..7f5627ffae5 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/generated/_client_factory.py @@ -0,0 +1,40 @@ +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + + +def cf_stream_analytics_cl(cli_ctx, *_): + from azure.cli.core.commands.client_factory import get_mgmt_service_client + from azext_stream_analytics.vendored_sdks.streamanalytics import StreamAnalyticsManagementClient + return get_mgmt_service_client(cli_ctx, + StreamAnalyticsManagementClient) + + +def cf_streaming_job(cli_ctx, *_): + return cf_stream_analytics_cl(cli_ctx).streaming_jobs + + +def cf_input(cli_ctx, *_): + return cf_stream_analytics_cl(cli_ctx).inputs + + +def cf_output(cli_ctx, *_): + return cf_stream_analytics_cl(cli_ctx).outputs + + +def cf_transformation(cli_ctx, *_): + return cf_stream_analytics_cl(cli_ctx).transformations + + +def cf_function(cli_ctx, *_): + return cf_stream_analytics_cl(cli_ctx).functions + + +def cf_subscription(cli_ctx, *_): + return cf_stream_analytics_cl(cli_ctx).subscriptions diff --git a/src/stream-analytics/azext_stream_analytics/generated/_help.py b/src/stream-analytics/azext_stream_analytics/generated/_help.py new file mode 100644 index 00000000000..e39a4c7eb14 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/generated/_help.py @@ -0,0 +1,706 @@ +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- +# pylint: disable=line-too-long +# pylint: disable=too-many-lines + +from knack.help_files import helps + + +helps['stream-analytics'] = ''' + type: group + short-summary: Manage Stream Analytics +''' + +helps['stream-analytics job'] = """ + type: group + short-summary: Manage streaming job with stream analytics +""" + +helps['stream-analytics job list'] = """ + type: command + short-summary: "Lists all of the streaming jobs in the specified resource group. And Lists all of the streaming \ +jobs in the given subscription." + examples: + - name: List all streaming jobs in a resource group and do not use the $expand OData query parameter + text: |- + az stream-analytics job list --resource-group "sjrg6936" + - name: List all streaming jobs in a resource group and use the $expand OData query parameter to expand inputs, outputs, transformation, and functions + text: |- + az stream-analytics job list --expand "inputs,outputs,transformation,functions" --resource-group \ +"sjrg3276" + - name: List all streaming jobs in a subscription and do not use the $expand OData query parameter + text: |- + az stream-analytics job list + - name: List all streaming jobs in a subscription and use the $expand OData query parameter to expand inputs, outputs, transformation, and functions + text: |- + az stream-analytics job list --expand "inputs,outputs,transformation,functions" +""" + +helps['stream-analytics job show'] = """ + type: command + short-summary: "Gets details about the specified streaming job." + examples: + - name: Get a streaming job and do not use the $expand OData query parameter + text: |- + az stream-analytics job show --job-name "sj59" --resource-group "sjrg6936" + - name: Get a streaming job and use the $expand OData query parameter to expand inputs, outputs, transformation, and functions + text: |- + az stream-analytics job show --expand "inputs,outputs,transformation,functions" --job-name "sj7804" \ +--resource-group "sjrg3276" +""" + +helps['stream-analytics job create'] = """ + type: command + short-summary: "Creates a streaming job or replaces an already existing streaming job." + parameters: + - name: --identity + short-summary: "Describes the system-assigned managed identity assigned to this job that can be used to \ +authenticate with inputs and outputs." + long-summary: | + Usage: --identity tenant-id=XX principal-id=XX type=XX + + tenant-id: The identity tenantId + principal-id: The identity principal ID + type: The identity type + - name: --transformation + short-summary: "Indicates the query and the number of streaming units to use for the streaming job. The name \ +property of the transformation is required when specifying this property in a PUT request. This property cannot be \ +modify via a PATCH operation. You must use the PATCH API available for the individual transformation." + long-summary: | + Usage: --transformation streaming-units=XX valid-streaming-units=XX query=XX name=XX + + streaming-units: Specifies the number of streaming units that the streaming job uses. + valid-streaming-units: Specifies the valid streaming units a streaming job can scale to. + query: Specifies the query that will be run in the streaming job. You can learn more about the Stream \ +Analytics Query Language (SAQL) here: https://msdn.microsoft.com/library/azure/dn834998 . Required on PUT \ +(CreateOrReplace) requests. + name: Resource name + - name: --job-storage-account + short-summary: "The properties that are associated with an Azure Storage account with MSI" + long-summary: | + Usage: --job-storage-account authentication-mode=XX account-name=XX account-key=XX + + authentication-mode: Authentication Mode. + account-name: The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests. + account-key: The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests. + examples: + - name: Create a complete streaming job (a streaming job with a transformation, at least 1 input and at least 1 output) + text: |- + az stream-analytics job create --job-name "sj7804" --resource-group "sjrg3276" --location "West US" \ +--compatibility-level "1.0" --data-locale "en-US" --arrival-max-delay 5 --order-max-delay 0 --out-of-order-policy \ +"Drop" --functions "[]" --inputs "[{\\"name\\":\\"inputtest\\",\\"properties\\":{\\"type\\":\\"Stream\\",\\"datasource\ +\\":{\\"type\\":\\"Microsoft.Storage/Blob\\",\\"properties\\":{\\"container\\":\\"containerName\\",\\"pathPattern\\":\\\ +"\\",\\"storageAccounts\\":[{\\"accountKey\\":\\"yourAccountKey==\\",\\"accountName\\":\\"yourAccountName\\"}]}},\\"ser\ +ialization\\":{\\"type\\":\\"Json\\",\\"properties\\":{\\"encoding\\":\\"UTF8\\"}}}}]" --output-error-policy "Drop" \ +--outputs "[{\\"name\\":\\"outputtest\\",\\"datasource\\":{\\"type\\":\\"Microsoft.Sql/Server/Database\\",\\"properties\ +\\":{\\"database\\":\\"databaseName\\",\\"password\\":\\"userPassword\\",\\"server\\":\\"serverName\\",\\"table\\":\\"t\ +ableName\\",\\"user\\":\\"\\"}}}]" --transformation name="transformationtest" streaming-units=1 query="Select \ +Id, Name from inputtest" --tags key1="value1" key3="value3" randomKey="randomValue" + - name: Create a streaming job shell (a streaming job with no inputs, outputs, transformation, or functions) + text: |- + az stream-analytics job create --job-name "sj59" --resource-group "sjrg6936" --location "West US" \ +--compatibility-level "1.0" --data-locale "en-US" --arrival-max-delay 16 --order-max-delay 5 --out-of-order-policy \ +"Drop" --functions "[]" --inputs "[]" --output-error-policy "Drop" --outputs "[]" --tags key1="value1" key3="value3" \ +randomKey="randomValue" +""" + +helps['stream-analytics job update'] = """ + type: command + short-summary: "Updates an existing streaming job. This can be used to partially update (ie. update one or two \ +properties) a streaming job without affecting the rest the job definition." + parameters: + - name: --identity + short-summary: "Describes the system-assigned managed identity assigned to this job that can be used to \ +authenticate with inputs and outputs." + long-summary: | + Usage: --identity tenant-id=XX principal-id=XX type=XX + + tenant-id: The identity tenantId + principal-id: The identity principal ID + type: The identity type + - name: --transformation + short-summary: "Indicates the query and the number of streaming units to use for the streaming job. The name \ +property of the transformation is required when specifying this property in a PUT request. This property cannot be \ +modify via a PATCH operation. You must use the PATCH API available for the individual transformation." + long-summary: | + Usage: --transformation streaming-units=XX valid-streaming-units=XX query=XX name=XX + + streaming-units: Specifies the number of streaming units that the streaming job uses. + valid-streaming-units: Specifies the valid streaming units a streaming job can scale to. + query: Specifies the query that will be run in the streaming job. You can learn more about the Stream \ +Analytics Query Language (SAQL) here: https://msdn.microsoft.com/library/azure/dn834998 . Required on PUT \ +(CreateOrReplace) requests. + name: Resource name + - name: --job-storage-account + short-summary: "The properties that are associated with an Azure Storage account with MSI" + long-summary: | + Usage: --job-storage-account authentication-mode=XX account-name=XX account-key=XX + + authentication-mode: Authentication Mode. + account-name: The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests. + account-key: The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests. + examples: + - name: Update a streaming job + text: |- + az stream-analytics job update --job-name "sj59" --resource-group "sjrg6936" --arrival-max-delay 13 \ +--order-max-delay 21 +""" + +helps['stream-analytics job delete'] = """ + type: command + short-summary: "Deletes a streaming job." + examples: + - name: Delete a streaming job + text: |- + az stream-analytics job delete --job-name "sj59" --resource-group "sjrg6936" +""" + +helps['stream-analytics job scale'] = """ + type: command + short-summary: "Scales a streaming job when the job is running." + examples: + - name: Scale a streaming job + text: |- + az stream-analytics job scale --job-name "sj59" --resource-group "sjrg6936" --streaming-units 36 +""" + +helps['stream-analytics job start'] = """ + type: command + short-summary: "Starts a streaming job. Once a job is started it will start processing input events and produce \ +output." + examples: + - name: Start a streaming job with CustomTime output start mode + text: |- + az stream-analytics job start --job-name "sj59" --resource-group "sjrg6936" --output-start-mode \ +"CustomTime" --output-start-time "2012-12-12T12:12:12Z" + - name: Start a streaming job with JobStartTime output start mode + text: |- + az stream-analytics job start --job-name "sj59" --resource-group "sjrg6936" --output-start-mode \ +"JobStartTime" + - name: Start a streaming job with LastOutputEventTime output start mode + text: |- + az stream-analytics job start --job-name "sj59" --resource-group "sjrg6936" --output-start-mode \ +"LastOutputEventTime" +""" + +helps['stream-analytics job stop'] = """ + type: command + short-summary: "Stops a running streaming job. This will cause a running streaming job to stop processing input \ +events and producing output." + examples: + - name: Stop a streaming job + text: |- + az stream-analytics job stop --job-name "sj59" --resource-group "sjrg6936" +""" + +helps['stream-analytics job wait'] = """ + type: command + short-summary: Place the CLI in a waiting state until a condition of the stream-analytics job is met. + examples: + - name: Pause executing next line of CLI script until the stream-analytics job is successfully created. + text: |- + az stream-analytics job wait --expand "inputs,outputs,transformation,functions" --job-name "sj7804" \ +--resource-group "sjrg3276" --created + - name: Pause executing next line of CLI script until the stream-analytics job is successfully deleted. + text: |- + az stream-analytics job wait --expand "inputs,outputs,transformation,functions" --job-name "sj7804" \ +--resource-group "sjrg3276" --deleted +""" + +helps['stream-analytics input'] = """ + type: group + short-summary: Manage input with stream analytics +""" + +helps['stream-analytics input list'] = """ + type: command + short-summary: "Lists all of the inputs under the specified streaming job." + examples: + - name: List all inputs in a streaming job + text: |- + az stream-analytics input list --job-name "sj9597" --resource-group "sjrg8440" + - name: List all inputs in a streaming job and include diagnostic information using the $select OData query parameter + text: |- + az stream-analytics input list --select "*" --job-name "sj7804" --resource-group "sjrg3276" +""" + +helps['stream-analytics input show'] = """ + type: command + short-summary: "Gets details about the specified input." + examples: + - name: Get a reference blob input with CSV serialization + text: |- + az stream-analytics input show --input-name "input7225" --job-name "sj9597" --resource-group "sjrg8440" + - name: Get a stream Event Hub input with JSON serialization + text: |- + az stream-analytics input show --input-name "input7425" --job-name "sj197" --resource-group "sjrg3139" + - name: Get a stream IoT Hub input with Avro serialization + text: |- + az stream-analytics input show --input-name "input7970" --job-name "sj9742" --resource-group "sjrg3467" + - name: Get a stream blob input with CSV serialization + text: |- + az stream-analytics input show --input-name "input8899" --job-name "sj6695" --resource-group "sjrg8161" +""" + +helps['stream-analytics input create'] = """ + type: command + short-summary: "Creates an input or replaces an already existing input under an existing streaming job." + examples: + - name: Create a reference blob input with CSV serialization + text: |- + az stream-analytics input create --properties "{\\"type\\":\\"Reference\\",\\"datasource\\":{\\"type\\":\ +\\"Microsoft.Storage/Blob\\",\\"properties\\":{\\"container\\":\\"state\\",\\"dateFormat\\":\\"yyyy/MM/dd\\",\\"pathPat\ +tern\\":\\"{date}/{time}\\",\\"storageAccounts\\":[{\\"accountKey\\":\\"someAccountKey==\\",\\"accountName\\":\\"someAc\ +countName\\"}],\\"timeFormat\\":\\"HH\\"}},\\"serialization\\":{\\"type\\":\\"Csv\\",\\"properties\\":{\\"encoding\\":\ +\\"UTF8\\",\\"fieldDelimiter\\":\\",\\"}}}" --input-name "input7225" --job-name "sj9597" --resource-group "sjrg8440" + - name: Create a stream Event Hub input with JSON serialization + text: |- + az stream-analytics input create --properties "{\\"type\\":\\"Stream\\",\\"datasource\\":{\\"type\\":\\"\ +Microsoft.ServiceBus/EventHub\\",\\"properties\\":{\\"consumerGroupName\\":\\"sdkconsumergroup\\",\\"eventHubName\\":\\\ +"sdkeventhub\\",\\"serviceBusNamespace\\":\\"sdktest\\",\\"sharedAccessPolicyKey\\":\\"someSharedAccessPolicyKey==\\",\ +\\"sharedAccessPolicyName\\":\\"RootManageSharedAccessKey\\"}},\\"serialization\\":{\\"type\\":\\"Json\\",\\"properties\ +\\":{\\"encoding\\":\\"UTF8\\"}}}" --input-name "input7425" --job-name "sj197" --resource-group "sjrg3139" + - name: Create a stream IoT Hub input with Avro serialization + text: |- + az stream-analytics input create --properties "{\\"type\\":\\"Stream\\",\\"datasource\\":{\\"type\\":\\"\ +Microsoft.Devices/IotHubs\\",\\"properties\\":{\\"consumerGroupName\\":\\"sdkconsumergroup\\",\\"endpoint\\":\\"message\ +s/events\\",\\"iotHubNamespace\\":\\"iothub\\",\\"sharedAccessPolicyKey\\":\\"sharedAccessPolicyKey=\\",\\"sharedAccess\ +PolicyName\\":\\"owner\\"}},\\"serialization\\":{\\"type\\":\\"Avro\\"}}" --input-name "input7970" --job-name "sj9742" \ +--resource-group "sjrg3467" + - name: Create a stream blob input with CSV serialization + text: |- + az stream-analytics input create --properties "{\\"type\\":\\"Stream\\",\\"datasource\\":{\\"type\\":\\"\ +Microsoft.Storage/Blob\\",\\"properties\\":{\\"container\\":\\"state\\",\\"dateFormat\\":\\"yyyy/MM/dd\\",\\"pathPatter\ +n\\":\\"{date}/{time}\\",\\"sourcePartitionCount\\":16,\\"storageAccounts\\":[{\\"accountKey\\":\\"someAccountKey==\\",\ +\\"accountName\\":\\"someAccountName\\"}],\\"timeFormat\\":\\"HH\\"}},\\"serialization\\":{\\"type\\":\\"Csv\\",\\"prop\ +erties\\":{\\"encoding\\":\\"UTF8\\",\\"fieldDelimiter\\":\\",\\"}}}" --input-name "input8899" --job-name "sj6695" \ +--resource-group "sjrg8161" +""" + +helps['stream-analytics input update'] = """ + type: command + short-summary: "Updates an existing input under an existing streaming job. This can be used to partially update \ +(ie. update one or two properties) an input without affecting the rest the job or input definition." + examples: + - name: Update a reference blob input + text: |- + az stream-analytics input update --properties "{\\"type\\":\\"Reference\\",\\"datasource\\":{\\"type\\":\ +\\"Microsoft.Storage/Blob\\",\\"properties\\":{\\"container\\":\\"differentContainer\\"}},\\"serialization\\":{\\"type\ +\\":\\"Csv\\",\\"properties\\":{\\"encoding\\":\\"UTF8\\",\\"fieldDelimiter\\":\\"|\\"}}}" --input-name "input7225" \ +--job-name "sj9597" --resource-group "sjrg8440" + - name: Update a stream Event Hub input + text: |- + az stream-analytics input update --properties "{\\"type\\":\\"Stream\\",\\"datasource\\":{\\"type\\":\\"\ +Microsoft.ServiceBus/EventHub\\",\\"properties\\":{\\"consumerGroupName\\":\\"differentConsumerGroupName\\"}},\\"serial\ +ization\\":{\\"type\\":\\"Avro\\"}}" --input-name "input7425" --job-name "sj197" --resource-group "sjrg3139" + - name: Update a stream IoT Hub input + text: |- + az stream-analytics input update --properties "{\\"type\\":\\"Stream\\",\\"datasource\\":{\\"type\\":\\"\ +Microsoft.Devices/IotHubs\\",\\"properties\\":{\\"endpoint\\":\\"messages/operationsMonitoringEvents\\"}},\\"serializat\ +ion\\":{\\"type\\":\\"Csv\\",\\"properties\\":{\\"encoding\\":\\"UTF8\\",\\"fieldDelimiter\\":\\"|\\"}}}" --input-name \ +"input7970" --job-name "sj9742" --resource-group "sjrg3467" + - name: Update a stream blob input + text: |- + az stream-analytics input update --properties "{\\"type\\":\\"Stream\\",\\"datasource\\":{\\"type\\":\\"\ +Microsoft.Storage/Blob\\",\\"properties\\":{\\"sourcePartitionCount\\":32}},\\"serialization\\":{\\"type\\":\\"Csv\\",\ +\\"properties\\":{\\"encoding\\":\\"UTF8\\",\\"fieldDelimiter\\":\\"|\\"}}}" --input-name "input8899" --job-name \ +"sj6695" --resource-group "sjrg8161" +""" + +helps['stream-analytics input delete'] = """ + type: command + short-summary: "Deletes an input from the streaming job." + examples: + - name: Delete an input + text: |- + az stream-analytics input delete --input-name "input7225" --job-name "sj9597" --resource-group \ +"sjrg8440" +""" + +helps['stream-analytics input test'] = """ + type: command + short-summary: "Tests whether an input’s datasource is reachable and usable by the Azure Stream Analytics \ +service." + examples: + - name: Test the connection for an input + text: |- + az stream-analytics input test --input-name "input7225" --job-name "sj9597" --resource-group "sjrg8440" +""" + +helps['stream-analytics input wait'] = """ + type: command + short-summary: Place the CLI in a waiting state until a condition of the stream-analytics input is met. + examples: + - name: Pause executing next line of CLI script until the stream-analytics input is successfully created. + text: |- + az stream-analytics input wait --input-name "input8899" --job-name "sj6695" --resource-group "sjrg8161" \ +--created +""" + +helps['stream-analytics output'] = """ + type: group + short-summary: Manage output with stream analytics +""" + +helps['stream-analytics output list'] = """ + type: command + short-summary: "Lists all of the outputs under the specified streaming job." + examples: + - name: List all outputs in a streaming job + text: |- + az stream-analytics output list --job-name "sj6458" --resource-group "sjrg2157" +""" + +helps['stream-analytics output show'] = """ + type: command + short-summary: "Gets details about the specified output." + examples: + - name: Get a DocumentDB output + text: |- + az stream-analytics output show --job-name "sj2331" --output-name "output3022" --resource-group \ +"sjrg7983" + - name: Get a Power BI output + text: |- + az stream-analytics output show --job-name "sj2331" --output-name "output3022" --resource-group \ +"sjrg7983" + - name: Get a Service Bus Queue output with Avro serialization + text: |- + az stream-analytics output show --job-name "sj5095" --output-name "output3456" --resource-group \ +"sjrg3410" + - name: Get a Service Bus Topic output with CSV serialization + text: |- + az stream-analytics output show --job-name "sj7094" --output-name "output7886" --resource-group \ +"sjrg6450" + - name: Get a blob output with CSV serialization + text: |- + az stream-analytics output show --job-name "sj900" --output-name "output1623" --resource-group \ +"sjrg5023" + - name: Get an Azure Data Lake Store output with JSON serialization + text: |- + az stream-analytics output show --job-name "sj3310" --output-name "output5195" --resource-group \ +"sjrg6912" + - name: Get an Azure Data Warehouse output + text: |- + az stream-analytics output show --job-name "sjName" --output-name "output958" --resource-group "sjrg" + - name: Get an Azure SQL database output + text: |- + az stream-analytics output show --job-name "sj6458" --output-name "output1755" --resource-group \ +"sjrg2157" + - name: Get an Azure Table output + text: |- + az stream-analytics output show --job-name "sj2790" --output-name "output958" --resource-group \ +"sjrg5176" + - name: Get an Event Hub output with JSON serialization + text: |- + az stream-analytics output show --job-name "sj3310" --output-name "output5195" --resource-group \ +"sjrg6912" +""" + +helps['stream-analytics output create'] = """ + type: command + short-summary: "Creates an output or replaces an already existing output under an existing streaming job." + examples: + - name: Create a DocumentDB output + text: |- + az stream-analytics output create --job-name "sj2331" --datasource "{\\"type\\":\\"Microsoft.Storage/Doc\ +umentDB\\",\\"properties\\":{\\"accountId\\":\\"someAccountId\\",\\"accountKey\\":\\"accountKey==\\",\\"collectionNameP\ +attern\\":\\"collection\\",\\"database\\":\\"db01\\",\\"documentId\\":\\"documentId\\",\\"partitionKey\\":\\"key\\"}}" \ +--output-name "output3022" --resource-group "sjrg7983" + - name: Create a Power BI output + text: |- + az stream-analytics output create --job-name "sj2331" --datasource "{\\"type\\":\\"PowerBI\\",\\"propert\ +ies\\":{\\"dataset\\":\\"someDataset\\",\\"groupId\\":\\"ac40305e-3e8d-43ac-8161-c33799f43e95\\",\\"groupName\\":\\"MyP\ +owerBIGroup\\",\\"refreshToken\\":\\"someRefreshToken==\\",\\"table\\":\\"someTable\\",\\"tokenUserDisplayName\\":\\"Bo\ +b Smith\\",\\"tokenUserPrincipalName\\":\\"bobsmith@contoso.com\\"}}" --output-name "output3022" --resource-group \ +"sjrg7983" + - name: Create a Service Bus Queue output with Avro serialization + text: |- + az stream-analytics output create --job-name "sj5095" --datasource "{\\"type\\":\\"Microsoft.ServiceBus/\ +Queue\\",\\"properties\\":{\\"propertyColumns\\":[\\"column1\\",\\"column2\\"],\\"queueName\\":\\"sdkqueue\\",\\"servic\ +eBusNamespace\\":\\"sdktest\\",\\"sharedAccessPolicyKey\\":\\"sharedAccessPolicyKey=\\",\\"sharedAccessPolicyName\\":\\\ +"RootManageSharedAccessKey\\",\\"systemPropertyColumns\\":{\\"MessageId\\":\\"col3\\",\\"PartitionKey\\":\\"col4\\"}}}"\ + --serialization "{\\"type\\":\\"Avro\\"}" --output-name "output3456" --resource-group "sjrg3410" + - name: Create a Service Bus Topic output with CSV serialization + text: |- + az stream-analytics output create --job-name "sj7094" --datasource "{\\"type\\":\\"Microsoft.ServiceBus/\ +Topic\\",\\"properties\\":{\\"propertyColumns\\":[\\"column1\\",\\"column2\\"],\\"serviceBusNamespace\\":\\"sdktest\\",\ +\\"sharedAccessPolicyKey\\":\\"sharedAccessPolicyKey=\\",\\"sharedAccessPolicyName\\":\\"RootManageSharedAccessKey\\",\ +\\"topicName\\":\\"sdktopic\\"}}" --serialization "{\\"type\\":\\"Csv\\",\\"properties\\":{\\"encoding\\":\\"UTF8\\",\\\ +"fieldDelimiter\\":\\",\\"}}" --output-name "output7886" --resource-group "sjrg6450" + - name: Create a blob output with CSV serialization + text: |- + az stream-analytics output create --job-name "sj900" --datasource "{\\"type\\":\\"Microsoft.Storage/Blob\ +\\",\\"properties\\":{\\"container\\":\\"state\\",\\"dateFormat\\":\\"yyyy/MM/dd\\",\\"pathPattern\\":\\"{date}/{time}\ +\\",\\"storageAccounts\\":[{\\"accountKey\\":\\"accountKey==\\",\\"accountName\\":\\"someAccountName\\"}],\\"timeFormat\ +\\":\\"HH\\"}}" --serialization "{\\"type\\":\\"Csv\\",\\"properties\\":{\\"encoding\\":\\"UTF8\\",\\"fieldDelimiter\\"\ +:\\",\\"}}" --output-name "output1623" --resource-group "sjrg5023" + - name: Create an Azure Data Lake Store output with JSON serialization + text: |- + az stream-analytics output create --job-name "sj3310" --datasource "{\\"type\\":\\"Microsoft.DataLake/Ac\ +counts\\",\\"properties\\":{\\"accountName\\":\\"someaccount\\",\\"dateFormat\\":\\"yyyy/MM/dd\\",\\"filePathPrefix\\":\ +\\"{date}/{time}\\",\\"refreshToken\\":\\"someRefreshToken==\\",\\"tenantId\\":\\"cea4e98b-c798-49e7-8c40-4a2b3beb47dd\ +\\",\\"timeFormat\\":\\"HH\\",\\"tokenUserDisplayName\\":\\"Bob Smith\\",\\"tokenUserPrincipalName\\":\\"bobsmith@conto\ +so.com\\"}}" --serialization "{\\"type\\":\\"Json\\",\\"properties\\":{\\"format\\":\\"Array\\",\\"encoding\\":\\"UTF8\ +\\"}}" --output-name "output5195" --resource-group "sjrg6912" + - name: Create an Azure SQL database output + text: |- + az stream-analytics output create --job-name "sj6458" --datasource "{\\"type\\":\\"Microsoft.Sql/Server/\ +Database\\",\\"properties\\":{\\"database\\":\\"someDatabase\\",\\"password\\":\\"somePassword\\",\\"server\\":\\"someS\ +erver\\",\\"table\\":\\"someTable\\",\\"user\\":\\"\\"}}" --output-name "output1755" --resource-group "sjrg2157" + - name: Create an Azure Table output + text: |- + az stream-analytics output create --job-name "sj2790" --datasource "{\\"type\\":\\"Microsoft.Storage/Tab\ +le\\",\\"properties\\":{\\"accountKey\\":\\"accountKey==\\",\\"accountName\\":\\"someAccountName\\",\\"batchSize\\":25,\ +\\"columnsToRemove\\":[\\"column1\\",\\"column2\\"],\\"partitionKey\\":\\"partitionKey\\",\\"rowKey\\":\\"rowKey\\",\\"\ +table\\":\\"samples\\"}}" --output-name "output958" --resource-group "sjrg5176" + - name: Create an Event Hub output with JSON serialization + text: |- + az stream-analytics output create --job-name "sj3310" --datasource "{\\"type\\":\\"Microsoft.ServiceBus/\ +EventHub\\",\\"properties\\":{\\"eventHubName\\":\\"sdkeventhub\\",\\"partitionKey\\":\\"partitionKey\\",\\"serviceBusN\ +amespace\\":\\"sdktest\\",\\"sharedAccessPolicyKey\\":\\"sharedAccessPolicyKey=\\",\\"sharedAccessPolicyName\\":\\"Root\ +ManageSharedAccessKey\\"}}" --serialization "{\\"type\\":\\"Json\\",\\"properties\\":{\\"format\\":\\"Array\\",\\"encod\ +ing\\":\\"UTF8\\"}}" --output-name "output5195" --resource-group "sjrg6912" +""" + +helps['stream-analytics output update'] = """ + type: command + short-summary: "Updates an existing output under an existing streaming job. This can be used to partially update \ +(ie. update one or two properties) an output without affecting the rest the job or output definition." + examples: + - name: Update a DocumentDB output + text: |- + az stream-analytics output update --job-name "sj2331" --datasource "{\\"type\\":\\"Microsoft.Storage/Doc\ +umentDB\\",\\"properties\\":{\\"partitionKey\\":\\"differentPartitionKey\\"}}" --output-name "output3022" \ +--resource-group "sjrg7983" + - name: Update a Power BI output + text: |- + az stream-analytics output update --job-name "sj2331" --datasource "{\\"type\\":\\"PowerBI\\",\\"propert\ +ies\\":{\\"dataset\\":\\"differentDataset\\"}}" --output-name "output3022" --resource-group "sjrg7983" + - name: Update a Service Bus Queue output with Avro serialization + text: |- + az stream-analytics output update --job-name "sj5095" --datasource "{\\"type\\":\\"Microsoft.ServiceBus/\ +Queue\\",\\"properties\\":{\\"queueName\\":\\"differentQueueName\\"}}" --serialization "{\\"type\\":\\"Json\\",\\"prope\ +rties\\":{\\"format\\":\\"LineSeparated\\",\\"encoding\\":\\"UTF8\\"}}" --output-name "output3456" --resource-group \ +"sjrg3410" + - name: Update a Service Bus Topic output with CSV serialization + text: |- + az stream-analytics output update --job-name "sj7094" --datasource "{\\"type\\":\\"Microsoft.ServiceBus/\ +Topic\\",\\"properties\\":{\\"topicName\\":\\"differentTopicName\\"}}" --serialization "{\\"type\\":\\"Csv\\",\\"proper\ +ties\\":{\\"encoding\\":\\"UTF8\\",\\"fieldDelimiter\\":\\"|\\"}}" --output-name "output7886" --resource-group \ +"sjrg6450" + - name: Update a blob output with CSV serialization + text: |- + az stream-analytics output update --job-name "sj900" --datasource "{\\"type\\":\\"Microsoft.Storage/Blob\ +\\",\\"properties\\":{\\"container\\":\\"differentContainer\\"}}" --serialization "{\\"type\\":\\"Csv\\",\\"properties\ +\\":{\\"encoding\\":\\"UTF8\\",\\"fieldDelimiter\\":\\"|\\"}}" --output-name "output1623" --resource-group "sjrg5023" + - name: Update an Azure Data Lake Store output with JSON serialization + text: |- + az stream-analytics output update --job-name "sj3310" --datasource "{\\"type\\":\\"Microsoft.DataLake/Ac\ +counts\\",\\"properties\\":{\\"accountName\\":\\"differentaccount\\"}}" --serialization "{\\"type\\":\\"Json\\",\\"prop\ +erties\\":{\\"format\\":\\"LineSeparated\\",\\"encoding\\":\\"UTF8\\"}}" --output-name "output5195" --resource-group \ +"sjrg6912" + - name: Update an Azure SQL database output + text: |- + az stream-analytics output update --job-name "sj6458" --datasource "{\\"type\\":\\"Microsoft.Sql/Server/\ +Database\\",\\"properties\\":{\\"table\\":\\"differentTable\\"}}" --output-name "output1755" --resource-group \ +"sjrg2157" + - name: Update an Azure Table output + text: |- + az stream-analytics output update --job-name "sj2790" --datasource "{\\"type\\":\\"Microsoft.Storage/Tab\ +le\\",\\"properties\\":{\\"partitionKey\\":\\"differentPartitionKey\\"}}" --output-name "output958" --resource-group \ +"sjrg5176" + - name: Update an Event Hub output with JSON serialization + text: |- + az stream-analytics output update --job-name "sj3310" --datasource "{\\"type\\":\\"Microsoft.ServiceBus/\ +EventHub\\",\\"properties\\":{\\"partitionKey\\":\\"differentPartitionKey\\"}}" --serialization \ +"{\\"type\\":\\"Json\\",\\"properties\\":{\\"format\\":\\"LineSeparated\\",\\"encoding\\":\\"UTF8\\"}}" --output-name \ +"output5195" --resource-group "sjrg6912" +""" + +helps['stream-analytics output delete'] = """ + type: command + short-summary: "Deletes an output from the streaming job." + examples: + - name: Delete an output + text: |- + az stream-analytics output delete --job-name "sj6458" --name "output1755" --resource-group "sjrg2157" +""" + +helps['stream-analytics output test'] = """ + type: command + short-summary: "Tests whether an output’s datasource is reachable and usable by the Azure Stream Analytics \ +service." + examples: + - name: Test the connection for an output + text: |- + az stream-analytics output test --job-name "sj6458" --output-name "output1755" --resource-group \ +"sjrg2157" +""" + +helps['stream-analytics output wait'] = """ + type: command + short-summary: Place the CLI in a waiting state until a condition of the stream-analytics output is met. + examples: + - name: Pause executing next line of CLI script until the stream-analytics output is successfully created. + text: |- + az stream-analytics output wait --job-name "sj3310" --output-name "output5195" --resource-group \ +"sjrg6912" --created +""" + +helps['stream-analytics transformation'] = """ + type: group + short-summary: Manage transformation with stream analytics +""" + +helps['stream-analytics transformation show'] = """ + type: command + short-summary: "Gets details about the specified transformation." + examples: + - name: Get a transformation + text: |- + az stream-analytics transformation show --job-name "sj8374" --resource-group "sjrg4423" --name \ +"transformation952" +""" + +helps['stream-analytics transformation create'] = """ + type: command + short-summary: "Creates a transformation or replaces an already existing transformation under an existing \ +streaming job." + examples: + - name: Create a transformation + text: |- + az stream-analytics transformation create --job-name "sj8374" --resource-group "sjrg4423" --saql \ +"Select Id, Name from inputtest" --streaming-units 6 --transformation-name "transformation952" +""" + +helps['stream-analytics transformation update'] = """ + type: command + short-summary: "Updates an existing transformation under an existing streaming job. This can be used to partially \ +update (ie. update one or two properties) a transformation without affecting the rest the job or transformation \ +definition." + examples: + - name: Update a transformation + text: |- + az stream-analytics transformation update --job-name "sj8374" --resource-group "sjrg4423" --saql "New \ +query" --transformation-name "transformation952" +""" + +helps['stream-analytics function'] = """ + type: group + short-summary: Manage function with stream analytics +""" + +helps['stream-analytics function list'] = """ + type: command + short-summary: "Lists all of the functions under the specified streaming job." + examples: + - name: List all functions in a streaming job + text: |- + az stream-analytics function list --job-name "sj8653" --resource-group "sjrg1637" +""" + +helps['stream-analytics function show'] = """ + type: command + short-summary: "Gets details about the specified function." + examples: + - name: Get a JavaScript function + text: |- + az stream-analytics function show --name "function8197" --job-name "sj8653" --resource-group "sjrg1637" + - name: Get an Azure ML function + text: |- + az stream-analytics function show --name "function588" --job-name "sj9093" --resource-group "sjrg7" +""" + +helps['stream-analytics function create'] = """ + type: command + short-summary: "Creates a function or replaces an already existing function under an existing streaming job." + examples: + - name: Create a JavaScript function + text: |- + az stream-analytics function create --properties "{\\"type\\":\\"Scalar\\",\\"properties\\":{\\"binding\ +\\":{\\"type\\":\\"Microsoft.StreamAnalytics/JavascriptUdf\\",\\"properties\\":{\\"script\\":\\"function (x, y) { \ +return x + y; }\\"}},\\"inputs\\":[{\\"dataType\\":\\"Any\\"}],\\"output\\":{\\"dataType\\":\\"Any\\"}}}" \ +--function-name "function8197" --job-name "sj8653" --resource-group "sjrg1637" + - name: Create an Azure ML function + text: |- + az stream-analytics function create --properties "{\\"type\\":\\"Scalar\\",\\"properties\\":{\\"binding\ +\\":{\\"type\\":\\"Microsoft.MachineLearning/WebService\\",\\"properties\\":{\\"apiKey\\":\\"someApiKey==\\",\\"batchSi\ +ze\\":1000,\\"endpoint\\":\\"someAzureMLEndpointURL\\",\\"inputs\\":{\\"name\\":\\"input1\\",\\"columnNames\\":[{\\"nam\ +e\\":\\"tweet\\",\\"dataType\\":\\"string\\",\\"mapTo\\":0}]},\\"outputs\\":[{\\"name\\":\\"Sentiment\\",\\"dataType\\"\ +:\\"string\\"}]}},\\"inputs\\":[{\\"dataType\\":\\"nvarchar(max)\\"}],\\"output\\":{\\"dataType\\":\\"nvarchar(max)\\"}\ +}}" --function-name "function588" --job-name "sj9093" --resource-group "sjrg7" +""" + +helps['stream-analytics function update'] = """ + type: command + short-summary: "Updates an existing function under an existing streaming job. This can be used to partially update \ +(ie. update one or two properties) a function without affecting the rest the job or function definition." + examples: + - name: Update a JavaScript function + text: |- + az stream-analytics function update --properties "{\\"type\\":\\"Scalar\\",\\"properties\\":{\\"binding\ +\\":{\\"type\\":\\"Microsoft.StreamAnalytics/JavascriptUdf\\",\\"properties\\":{\\"script\\":\\"function (a, b) { \ +return a * b; }\\"}}}}" --function-name "function8197" --job-name "sj8653" --resource-group "sjrg1637" + - name: Update an Azure ML function + text: |- + az stream-analytics function update --properties "{\\"type\\":\\"Scalar\\",\\"properties\\":{\\"binding\ +\\":{\\"type\\":\\"Microsoft.MachineLearning/WebService\\",\\"properties\\":{\\"batchSize\\":5000}}}}" --function-name \ +"function588" --job-name "sj9093" --resource-group "sjrg7" +""" + +helps['stream-analytics function delete'] = """ + type: command + short-summary: "Deletes a function from the streaming job." + examples: + - name: Delete a function + text: |- + az stream-analytics function delete --name "function8197" --job-name "sj8653" --resource-group \ +"sjrg1637" +""" + +helps['stream-analytics function test'] = """ + type: command + short-summary: "Tests if the information provided for a function is valid. This can range from testing the \ +connection to the underlying web service behind the function or making sure the function code provided is \ +syntactically correct." + examples: + - name: Test the connection for a JavaScript function + text: |- + az stream-analytics function test --function-name "function8197" --job-name "sj8653" --resource-group \ +"sjrg1637" + - name: Test the connection for an Azure ML function + text: |- + az stream-analytics function test --function-name "function588" --job-name "sj9093" --resource-group \ +"sjrg7" +""" + +helps['stream-analytics function wait'] = """ + type: command + short-summary: Place the CLI in a waiting state until a condition of the stream-analytics function is met. + examples: + - name: Pause executing next line of CLI script until the stream-analytics function is successfully created. + text: |- + az stream-analytics function wait --name "function588" --job-name "sj9093" --resource-group "sjrg7" \ +--created +""" + +helps['stream-analytics subscription'] = """ + type: group + short-summary: Manage subscription with stream analytics +""" + +helps['stream-analytics subscription inspect'] = """ + type: command + short-summary: "Retrieves the subscription's current quota information in a particular region." + examples: + - name: List subscription quota information in West US + text: |- + az stream-analytics subscription inspect --location "West US" +""" diff --git a/src/stream-analytics/azext_stream_analytics/generated/_params.py b/src/stream-analytics/azext_stream_analytics/generated/_params.py new file mode 100644 index 00000000000..4e5ba1aa61d --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/generated/_params.py @@ -0,0 +1,423 @@ +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- +# pylint: disable=too-many-lines +# pylint: disable=too-many-statements + +from azure.cli.core.commands.parameters import ( + tags_type, + get_enum_type, + resource_group_name_type, + get_location_type +) +from azure.cli.core.commands.validators import ( + get_default_location_from_resource_group, + validate_file_or_dict +) +from azext_stream_analytics.action import ( + AddIdentity, + AddTransformation, + AddJobStorageAccount +) + + +def load_arguments(self, _): + + with self.argument_context('stream-analytics job list') as c: + c.argument('expand', type=str, help='The $expand OData query parameter. This is a comma-separated list of ' + 'additional streaming job properties to include in the response, beyond the default set returned ' + 'when this parameter is absent. The default set is all streaming job properties other than ' + '\'inputs\', \'transformation\', \'outputs\', and \'functions\'.') + c.argument('resource_group_name', resource_group_name_type) + + with self.argument_context('stream-analytics job show') as c: + c.argument('expand', type=str, help='The $expand OData query parameter. This is a comma-separated list of ' + 'additional streaming job properties to include in the response, beyond the default set returned ' + 'when this parameter is absent. The default set is all streaming job properties other than ' + '\'inputs\', \'transformation\', \'outputs\', and \'functions\'.') + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', options_list=['--name', '-n', '--job-name'], type=str, help='The name of the streaming job.') + + with self.argument_context('stream-analytics job create') as c: + c.argument('if_match', type=str, help='The ETag of the streaming job. Omit this value to always overwrite the ' + 'current record set. Specify the last-seen ETag value to prevent accidentally overwriting ' + 'concurrent changes.') + c.argument('if_none_match', type=str, help='Set to \'*\' to allow a new streaming job to be created, but to ' + 'prevent updating an existing record set. Other values will result in a 412 Pre-condition Failed ' + 'response.') + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', options_list=['--name', '-n', '--job-name'], type=str, help='The name of the streaming job.') + c.argument('tags', tags_type) + c.argument('location', arg_type=get_location_type(self.cli_ctx), required=False, + validator=get_default_location_from_resource_group) + c.argument('identity', action=AddIdentity, nargs='+', help='Describes the system-assigned managed identity ' + 'assigned to this job that can be used to authenticate with inputs and outputs.') + c.argument('job_type', arg_type=get_enum_type(['Cloud', 'Edge']), help='Describes the type of the job. Valid ' + 'modes are `Cloud` and \'Edge\'.') + c.argument('output_start_mode', arg_type=get_enum_type(['JobStartTime', 'CustomTime', 'LastOutputEventTime']), + help='This property should only be utilized when it is desired that the job be started immediately ' + 'upon creation. Value may be JobStartTime, CustomTime, or LastOutputEventTime to indicate whether ' + 'the starting point of the output event stream should start whenever the job is started, start at a ' + 'custom user time stamp specified via the outputStartTime property, or start from the last event ' + 'output time.') + c.argument('output_start_time', help='Value is either an ISO-8601 formatted time stamp that indicates the ' + 'starting point of the output event stream, or null to indicate that the output event stream will ' + 'start whenever the streaming job is started. This property must have a value if outputStartMode is ' + 'set to CustomTime.') + c.argument('out_of_order_policy', arg_type=get_enum_type(['Adjust', 'Drop']), help='Indicates the policy to ' + 'apply to events that arrive out of order in the input event stream.') + c.argument('output_error_policy', arg_type=get_enum_type(['Stop', 'Drop']), help='Indicates the policy to ' + 'apply to events that arrive at the output and cannot be written to the external storage due to ' + 'being malformed (missing column values, column values of wrong type or size).') + c.argument('order_max_delay', type=int, help='The maximum tolerable delay in seconds where out-of-order events ' + 'can be adjusted to be back in order.') + c.argument('arrival_max_delay', type=int, help='The maximum tolerable delay in seconds where events arriving ' + 'late could be included. Supported range is -1 to 1814399 (20.23:59:59 days) and -1 is used to ' + 'specify wait indefinitely. If the property is absent, it is interpreted to have a value of -1.') + c.argument('data_locale', type=str, help='The data locale of the stream analytics job. Value should be the ' + 'name of a supported .NET Culture from the set https://msdn.microsoft.com/en-us/library/system.globa' + 'lization.culturetypes(v=vs.110).aspx. Defaults to \'en-US\' if none specified.') + c.argument('compatibility_level', arg_type=get_enum_type(['1.0', '1.2']), help='Controls certain runtime ' + 'behaviors of the streaming job.') + c.argument('inputs', type=validate_file_or_dict, help='A list of one or more inputs to the streaming job. The ' + 'name property for each input is required when specifying this property in a PUT request. This ' + 'property cannot be modify via a PATCH operation. You must use the PATCH API available for the ' + 'individual input. Expected value: json-string/json-file/@json-file.') + c.argument('transformation', action=AddTransformation, nargs='+', help='Indicates the query and the number of ' + 'streaming units to use for the streaming job. The name property of the transformation is required ' + 'when specifying this property in a PUT request. This property cannot be modify via a PATCH ' + 'operation. You must use the PATCH API available for the individual transformation.') + c.argument('outputs', type=validate_file_or_dict, help='A list of one or more outputs for the streaming job. ' + 'The name property for each output is required when specifying this property in a PUT request. This ' + 'property cannot be modify via a PATCH operation. You must use the PATCH API available for the ' + 'individual output. Expected value: json-string/json-file/@json-file.') + c.argument('functions', type=validate_file_or_dict, help='A list of one or more functions for the streaming ' + 'job. The name property for each function is required when specifying this property in a PUT ' + 'request. This property cannot be modify via a PATCH operation. You must use the PATCH API ' + 'available for the individual transformation. Expected value: json-string/json-file/@json-file.') + c.argument('job_storage_account', action=AddJobStorageAccount, nargs='+', help='The properties that are ' + 'associated with an Azure Storage account with MSI') + c.argument('content_storage_policy', arg_type=get_enum_type(['SystemAccount', 'JobStorageAccount']), + help='Valid values are JobStorageAccount and SystemAccount. If set to JobStorageAccount, this ' + 'requires the user to also specify jobStorageAccount property. .') + c.argument('id_', options_list=['--id'], type=str, help='The resource id of cluster.', arg_group='Cluster') + + with self.argument_context('stream-analytics job update') as c: + c.argument('if_match', type=str, help='The ETag of the streaming job. Omit this value to always overwrite the ' + 'current record set. Specify the last-seen ETag value to prevent accidentally overwriting ' + 'concurrent changes.') + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', options_list=['--name', '-n', '--job-name'], type=str, help='The name of the streaming job.') + c.argument('tags', tags_type) + c.argument('location', arg_type=get_location_type(self.cli_ctx), required=False, + validator=get_default_location_from_resource_group) + c.argument('identity', action=AddIdentity, nargs='+', help='Describes the system-assigned managed identity ' + 'assigned to this job that can be used to authenticate with inputs and outputs.') + c.argument('job_type', arg_type=get_enum_type(['Cloud', 'Edge']), help='Describes the type of the job. Valid ' + 'modes are `Cloud` and \'Edge\'.') + c.argument('output_start_mode', arg_type=get_enum_type(['JobStartTime', 'CustomTime', 'LastOutputEventTime']), + help='This property should only be utilized when it is desired that the job be started immediately ' + 'upon creation. Value may be JobStartTime, CustomTime, or LastOutputEventTime to indicate whether ' + 'the starting point of the output event stream should start whenever the job is started, start at a ' + 'custom user time stamp specified via the outputStartTime property, or start from the last event ' + 'output time.') + c.argument('output_start_time', help='Value is either an ISO-8601 formatted time stamp that indicates the ' + 'starting point of the output event stream, or null to indicate that the output event stream will ' + 'start whenever the streaming job is started. This property must have a value if outputStartMode is ' + 'set to CustomTime.') + c.argument('out_of_order_policy', arg_type=get_enum_type(['Adjust', 'Drop']), help='Indicates the policy to ' + 'apply to events that arrive out of order in the input event stream.') + c.argument('output_error_policy', arg_type=get_enum_type(['Stop', 'Drop']), help='Indicates the policy to ' + 'apply to events that arrive at the output and cannot be written to the external storage due to ' + 'being malformed (missing column values, column values of wrong type or size).') + c.argument('order_max_delay', type=int, help='The maximum tolerable delay in seconds where out-of-order events ' + 'can be adjusted to be back in order.') + c.argument('arrival_max_delay', type=int, help='The maximum tolerable delay in seconds where events arriving ' + 'late could be included. Supported range is -1 to 1814399 (20.23:59:59 days) and -1 is used to ' + 'specify wait indefinitely. If the property is absent, it is interpreted to have a value of -1.') + c.argument('data_locale', type=str, help='The data locale of the stream analytics job. Value should be the ' + 'name of a supported .NET Culture from the set https://msdn.microsoft.com/en-us/library/system.globa' + 'lization.culturetypes(v=vs.110).aspx. Defaults to \'en-US\' if none specified.') + c.argument('compatibility_level', arg_type=get_enum_type(['1.0', '1.2']), help='Controls certain runtime ' + 'behaviors of the streaming job.') + c.argument('inputs', type=validate_file_or_dict, help='A list of one or more inputs to the streaming job. The ' + 'name property for each input is required when specifying this property in a PUT request. This ' + 'property cannot be modify via a PATCH operation. You must use the PATCH API available for the ' + 'individual input. Expected value: json-string/json-file/@json-file.') + c.argument('transformation', action=AddTransformation, nargs='+', help='Indicates the query and the number of ' + 'streaming units to use for the streaming job. The name property of the transformation is required ' + 'when specifying this property in a PUT request. This property cannot be modify via a PATCH ' + 'operation. You must use the PATCH API available for the individual transformation.') + c.argument('outputs', type=validate_file_or_dict, help='A list of one or more outputs for the streaming job. ' + 'The name property for each output is required when specifying this property in a PUT request. This ' + 'property cannot be modify via a PATCH operation. You must use the PATCH API available for the ' + 'individual output. Expected value: json-string/json-file/@json-file.') + c.argument('functions', type=validate_file_or_dict, help='A list of one or more functions for the streaming ' + 'job. The name property for each function is required when specifying this property in a PUT ' + 'request. This property cannot be modify via a PATCH operation. You must use the PATCH API ' + 'available for the individual transformation. Expected value: json-string/json-file/@json-file.') + c.argument('job_storage_account', action=AddJobStorageAccount, nargs='+', help='The properties that are ' + 'associated with an Azure Storage account with MSI') + c.argument('content_storage_policy', arg_type=get_enum_type(['SystemAccount', 'JobStorageAccount']), + help='Valid values are JobStorageAccount and SystemAccount. If set to JobStorageAccount, this ' + 'requires the user to also specify jobStorageAccount property. .') + c.argument('id_', options_list=['--id'], type=str, help='The resource id of cluster.', arg_group='Cluster') + + with self.argument_context('stream-analytics job delete') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', options_list=['--name', '-n', '--job-name'], type=str, help='The name of the streaming job.') + + with self.argument_context('stream-analytics job scale') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', options_list=['--name', '-n', '--job-name'], type=str, help='The name of the streaming job.') + c.argument('streaming_units', type=int, help='Specifies the number of streaming units that the streaming job ' + 'will scale to.') + + with self.argument_context('stream-analytics job start') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', options_list=['--name', '-n', '--job-name'], type=str, help='The name of the streaming job.') + c.argument('output_start_mode', arg_type=get_enum_type(['JobStartTime', 'CustomTime', 'LastOutputEventTime']), + help='Value may be JobStartTime, CustomTime, or LastOutputEventTime to indicate whether the ' + 'starting point of the output event stream should start whenever the job is started, start at a ' + 'custom user time stamp specified via the outputStartTime property, or start from the last event ' + 'output time.') + c.argument('output_start_time', help='Value is either an ISO-8601 formatted time stamp that indicates the ' + 'starting point of the output event stream, or null to indicate that the output event stream will ' + 'start whenever the streaming job is started. This property must have a value if outputStartMode is ' + 'set to CustomTime.') + + with self.argument_context('stream-analytics job stop') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', options_list=['--name', '-n', '--job-name'], type=str, help='The name of the streaming job.') + + with self.argument_context('stream-analytics job wait') as c: + c.argument('expand', type=str, help='The $expand OData query parameter. This is a comma-separated list of ' + 'additional streaming job properties to include in the response, beyond the default set returned ' + 'when this parameter is absent. The default set is all streaming job properties other than ' + '\'inputs\', \'transformation\', \'outputs\', and \'functions\'.') + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', options_list=['--name', '-n', '--job-name'], type=str, help='The name of the streaming job.') + + with self.argument_context('stream-analytics input list') as c: + c.argument('select', type=str, help='The $select OData query parameter. This is a comma-separated list of ' + 'structural properties to include in the response, or "*" to include all properties. By default, ' + 'all properties are returned except diagnostics. Currently only accepts \'*\' as a valid value.') + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + + with self.argument_context('stream-analytics input show') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + c.argument('input_name', options_list=['--name', '-n', '--input-name'], type=str, help='The name of the input.') + + with self.argument_context('stream-analytics input create') as c: + c.argument('if_match', type=str, help='The ETag of the input. Omit this value to always overwrite the current ' + 'input. Specify the last-seen ETag value to prevent accidentally overwriting concurrent changes.') + c.argument('if_none_match', type=str, help='Set to \'*\' to allow a new input to be created, but to prevent ' + 'updating an existing input. Other values will result in a 412 Pre-condition Failed response.') + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + c.argument('input_name', options_list=['--name', '-n', '--input-name'], type=str, help='The name of the input.') + c.argument('properties', type=validate_file_or_dict, help='The properties that are associated with an input. ' + 'Required on PUT (CreateOrReplace) requests. Expected value: json-string/json-file/@json-file.') + + with self.argument_context('stream-analytics input update') as c: + c.argument('if_match', type=str, help='The ETag of the input. Omit this value to always overwrite the current ' + 'input. Specify the last-seen ETag value to prevent accidentally overwriting concurrent changes.') + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + c.argument('input_name', options_list=['--name', '-n', '--input-name'], type=str, help='The name of the input.') + c.argument('properties', type=validate_file_or_dict, help='The properties that are associated with an input. ' + 'Required on PUT (CreateOrReplace) requests. Expected value: json-string/json-file/@json-file.') + + with self.argument_context('stream-analytics input delete') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + c.argument('input_name', options_list=['--name', '-n', '--input-name'], type=str, help='The name of the input.') + + with self.argument_context('stream-analytics input test') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + c.argument('input_name', options_list=['--name', '-n', '--input-name'], type=str, help='The name of the input.') + c.argument('properties', type=validate_file_or_dict, help='The properties that are associated with an input. ' + 'Required on PUT (CreateOrReplace) requests. Expected value: json-string/json-file/@json-file.') + + with self.argument_context('stream-analytics input wait') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + c.argument('input_name', options_list=['--name', '-n', '--input-name'], type=str, help='The name of the input.') + + with self.argument_context('stream-analytics output list') as c: + c.argument('select', type=str, help='The $select OData query parameter. This is a comma-separated list of ' + 'structural properties to include in the response, or "*" to include all properties. By default, ' + 'all properties are returned except diagnostics. Currently only accepts \'*\' as a valid value.') + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + + with self.argument_context('stream-analytics output show') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + c.argument('output_name', options_list=['--name', '-n', '--output-name'], type=str, help='The name of the output.') + + with self.argument_context('stream-analytics output create') as c: + c.argument('if_match', type=str, help='The ETag of the output. Omit this value to always overwrite the current ' + 'output. Specify the last-seen ETag value to prevent accidentally overwriting concurrent changes.') + c.argument('if_none_match', type=str, help='Set to \'*\' to allow a new output to be created, but to prevent ' + 'updating an existing output. Other values will result in a 412 Pre-condition Failed response.') + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + c.argument('output_name', options_list=['--name', '-n', '--output-name'], type=str, help='The name of the output.') + c.argument('datasource', type=validate_file_or_dict, help='Describes the data source that output will be ' + 'written to. Required on PUT (CreateOrReplace) requests. Expected value: ' + 'json-string/json-file/@json-file.') + c.argument('time_window', type=str, help='The time frame for filtering Stream Analytics job outputs.') + c.argument('size_window', type=float, help='The size window to constrain a Stream Analytics output to.') + c.argument('serialization', type=validate_file_or_dict, help='Describes how data from an input is serialized ' + 'or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests. ' + 'Expected value: json-string/json-file/@json-file.') + + with self.argument_context('stream-analytics output update') as c: + c.argument('if_match', type=str, help='The ETag of the output. Omit this value to always overwrite the current ' + 'output. Specify the last-seen ETag value to prevent accidentally overwriting concurrent changes.') + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + c.argument('output_name', options_list=['--name', '-n', '--output-name'], type=str, help='The name of the output.') + c.argument('datasource', type=validate_file_or_dict, help='Describes the data source that output will be ' + 'written to. Required on PUT (CreateOrReplace) requests. Expected value: ' + 'json-string/json-file/@json-file.') + c.argument('time_window', type=str, help='The time frame for filtering Stream Analytics job outputs.') + c.argument('size_window', type=float, help='The size window to constrain a Stream Analytics output to.') + c.argument('serialization', type=validate_file_or_dict, help='Describes how data from an input is serialized ' + 'or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests. ' + 'Expected value: json-string/json-file/@json-file.') + + with self.argument_context('stream-analytics output delete') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + c.argument('output_name', options_list=['--name', '-n', '--output-name'], type=str, help='The name of the ' + 'output.') + + with self.argument_context('stream-analytics output test') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + c.argument('output_name', options_list=['--name', '-n', '--output-name'], type=str, help='The name of the output.') + c.argument('datasource', type=validate_file_or_dict, help='Describes the data source that output will be ' + 'written to. Required on PUT (CreateOrReplace) requests. Expected value: ' + 'json-string/json-file/@json-file.') + c.argument('time_window', type=str, help='The time frame for filtering Stream Analytics job outputs.') + c.argument('size_window', type=float, help='The size window to constrain a Stream Analytics output to.') + c.argument('serialization', type=validate_file_or_dict, help='Describes how data from an input is serialized ' + 'or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests. ' + 'Expected value: json-string/json-file/@json-file.') + + with self.argument_context('stream-analytics output wait') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + c.argument('output_name', options_list=['--name', '-n', '--output-name'], type=str, help='The name of the output.') + + with self.argument_context('stream-analytics transformation show') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + c.argument('transformation_name', options_list=['--name', '-n', '--transformation-name'], type=str, help='The ' + 'name of the transformation.') + + with self.argument_context('stream-analytics transformation create') as c: + c.argument('if_match', type=str, help='The ETag of the transformation. Omit this value to always overwrite the ' + 'current transformation. Specify the last-seen ETag value to prevent accidentally overwriting ' + 'concurrent changes.') + c.argument('if_none_match', type=str, help='Set to \'*\' to allow a new transformation to be created, but to ' + 'prevent updating an existing transformation. Other values will result in a 412 Pre-condition ' + 'Failed response.') + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + c.argument('transformation_name', options_list=['--name', '-n', '--transformation-name'], type=str, help='The name of ' + 'the transformation.') + c.argument('streaming_units', type=int, help='Specifies the number of streaming units that the streaming job ' + 'uses.') + c.argument('valid_streaming_units', nargs='+', help='Specifies the valid streaming units a streaming job can ' + 'scale to.') + c.argument('saql', type=str, help='Specifies the query that will be run in the streaming job. You can learn ' + 'more about the Stream Analytics Query Language (SAQL) here: https://msdn.microsoft.com/library/azur' + 'e/dn834998 . Required on PUT (CreateOrReplace) requests.') + + with self.argument_context('stream-analytics transformation update') as c: + c.argument('if_match', type=str, help='The ETag of the transformation. Omit this value to always overwrite the ' + 'current transformation. Specify the last-seen ETag value to prevent accidentally overwriting ' + 'concurrent changes.') + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + c.argument('transformation_name', options_list=['--name', '-n', '--transformation-name'], type=str, help='The name of ' + 'the transformation.') + c.argument('streaming_units', type=int, help='Specifies the number of streaming units that the streaming job ' + 'uses.') + c.argument('valid_streaming_units', nargs='+', help='Specifies the valid streaming units a streaming job can ' + 'scale to.') + c.argument('saql', type=str, help='Specifies the query that will be run in the streaming job. You can learn ' + 'more about the Stream Analytics Query Language (SAQL) here: https://msdn.microsoft.com/library/azur' + 'e/dn834998 . Required on PUT (CreateOrReplace) requests.') + + with self.argument_context('stream-analytics function list') as c: + c.argument('select', type=str, help='The $select OData query parameter. This is a comma-separated list of ' + 'structural properties to include in the response, or "*" to include all properties. By default, ' + 'all properties are returned except diagnostics. Currently only accepts \'*\' as a valid value.') + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + + with self.argument_context('stream-analytics function show') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + c.argument('function_name', options_list=['--name', '-n', '--function-name'], type=str, help='The name of the ' + 'function.') + + with self.argument_context('stream-analytics function create') as c: + c.argument('if_match', type=str, help='The ETag of the function. Omit this value to always overwrite the ' + 'current function. Specify the last-seen ETag value to prevent accidentally overwriting concurrent ' + 'changes.') + c.argument('if_none_match', type=str, help='Set to \'*\' to allow a new function to be created, but to prevent ' + 'updating an existing function. Other values will result in a 412 Pre-condition Failed response.') + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + c.argument('function_name', options_list=['--name', '-n', '--function-name'], type=str, + help='The name of the function.') + c.argument('properties', type=validate_file_or_dict, help='The properties that are associated with a function. ' + 'Expected value: json-string/json-file/@json-file.') + + with self.argument_context('stream-analytics function update') as c: + c.argument('if_match', type=str, help='The ETag of the function. Omit this value to always overwrite the ' + 'current function. Specify the last-seen ETag value to prevent accidentally overwriting concurrent ' + 'changes.') + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + c.argument('function_name', options_list=['--name', '-n', '--function-name'], type=str, + help='The name of the function.') + c.argument('properties', type=validate_file_or_dict, help='The properties that are associated with a function. ' + 'Expected value: json-string/json-file/@json-file.') + + with self.argument_context('stream-analytics function delete') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + c.argument('function_name', options_list=['--name', '-n', '--function-name'], type=str, help='The name of the ' + 'function.') + + with self.argument_context('stream-analytics function test') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + c.argument('function_name', options_list=['--name', '-n', '--function-name'], type=str, + help='The name of the function.') + c.argument('properties', type=validate_file_or_dict, help='The properties that are associated with a function. ' + 'Expected value: json-string/json-file/@json-file.') + + with self.argument_context('stream-analytics function wait') as c: + c.argument('resource_group_name', resource_group_name_type) + c.argument('job_name', type=str, help='The name of the streaming job.') + c.argument('function_name', options_list=['--name', '-n', '--function-name'], type=str, help='The name of the ' + 'function.') + + with self.argument_context('stream-analytics subscription inspect') as c: + c.argument('location', arg_type=get_location_type(self.cli_ctx), id_part='name') diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/version.py b/src/stream-analytics/azext_stream_analytics/generated/_validators.py similarity index 92% rename from src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/version.py rename to src/stream-analytics/azext_stream_analytics/generated/_validators.py index a39916c162c..b33a44c1ebf 100644 --- a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/version.py +++ b/src/stream-analytics/azext_stream_analytics/generated/_validators.py @@ -1,4 +1,3 @@ -# coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for @@ -8,6 +7,3 @@ # Changes may cause incorrect behavior and will be lost if the code is # regenerated. # -------------------------------------------------------------------------- - -VERSION = "1.0.0" - diff --git a/src/stream-analytics/azext_stream_analytics/generated/action.py b/src/stream-analytics/azext_stream_analytics/generated/action.py new file mode 100644 index 00000000000..c47349070c1 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/generated/action.py @@ -0,0 +1,130 @@ +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + + +# pylint: disable=protected-access + +# pylint: disable=no-self-use + + +import argparse +from collections import defaultdict +from knack.util import CLIError + + +class AddIdentity(argparse.Action): + def __call__(self, parser, namespace, values, option_string=None): + action = self.get_action(values, option_string) + namespace.identity = action + + def get_action(self, values, option_string): + try: + properties = defaultdict(list) + for (k, v) in (x.split('=', 1) for x in values): + properties[k].append(v) + properties = dict(properties) + except ValueError: + raise CLIError('usage error: {} [KEY=VALUE ...]'.format(option_string)) + d = {} + for k in properties: + kl = k.lower() + v = properties[k] + + if kl == 'tenant-id': + d['tenant_id'] = v[0] + + elif kl == 'principal-id': + d['principal_id'] = v[0] + + elif kl == 'type': + d['type'] = v[0] + + else: + raise CLIError( + 'Unsupported Key {} is provided for parameter identity. All possible keys are: tenant-id,' + ' principal-id, type'.format(k) + ) + + return d + + +class AddTransformation(argparse.Action): + def __call__(self, parser, namespace, values, option_string=None): + action = self.get_action(values, option_string) + namespace.transformation = action + + def get_action(self, values, option_string): + try: + properties = defaultdict(list) + for (k, v) in (x.split('=', 1) for x in values): + properties[k].append(v) + properties = dict(properties) + except ValueError: + raise CLIError('usage error: {} [KEY=VALUE ...]'.format(option_string)) + d = {} + for k in properties: + kl = k.lower() + v = properties[k] + + if kl == 'streaming-units': + d['streaming_units'] = v[0] + + elif kl == 'valid-streaming-units': + d['valid_streaming_units'] = v + + elif kl == 'query': + d['query'] = v[0] + + elif kl == 'name': + d['name'] = v[0] + + else: + raise CLIError( + 'Unsupported Key {} is provided for parameter transformation. All possible keys are:' + ' streaming-units, valid-streaming-units, query, name'.format(k) + ) + + return d + + +class AddJobStorageAccount(argparse.Action): + def __call__(self, parser, namespace, values, option_string=None): + action = self.get_action(values, option_string) + namespace.job_storage_account = action + + def get_action(self, values, option_string): + try: + properties = defaultdict(list) + for (k, v) in (x.split('=', 1) for x in values): + properties[k].append(v) + properties = dict(properties) + except ValueError: + raise CLIError('usage error: {} [KEY=VALUE ...]'.format(option_string)) + d = {} + for k in properties: + kl = k.lower() + v = properties[k] + + if kl == 'authentication-mode': + d['authentication_mode'] = v[0] + + elif kl == 'account-name': + d['account_name'] = v[0] + + elif kl == 'account-key': + d['account_key'] = v[0] + + else: + raise CLIError( + 'Unsupported Key {} is provided for parameter job-storage-account. All possible keys are:' + ' authentication-mode, account-name, account-key'.format(k) + ) + + return d diff --git a/src/stream-analytics/azext_stream_analytics/generated/commands.py b/src/stream-analytics/azext_stream_analytics/generated/commands.py new file mode 100644 index 00000000000..b49e3ac917d --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/generated/commands.py @@ -0,0 +1,123 @@ +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- +# pylint: disable=too-many-statements +# pylint: disable=too-many-locals +# pylint: disable=bad-continuation +# pylint: disable=line-too-long + +from azure.cli.core.commands import CliCommandType +from azext_stream_analytics.generated._client_factory import ( + cf_streaming_job, + cf_input, + cf_output, + cf_transformation, + cf_function, + cf_subscription, +) + + +stream_analytics_function = CliCommandType( + operations_tmpl=( + 'azext_stream_analytics.vendored_sdks.streamanalytics.operations._functions_operations#FunctionsOperations.{}' + ), + client_factory=cf_function, +) + + +stream_analytics_input = CliCommandType( + operations_tmpl=( + 'azext_stream_analytics.vendored_sdks.streamanalytics.operations._inputs_operations#InputsOperations.{}' + ), + client_factory=cf_input, +) + + +stream_analytics_streaming_job = CliCommandType( + operations_tmpl='azext_stream_analytics.vendored_sdks.streamanalytics.operations._streaming_jobs_operations#StreamingJobsOperations.{}', + client_factory=cf_streaming_job, +) + + +stream_analytics_output = CliCommandType( + operations_tmpl=( + 'azext_stream_analytics.vendored_sdks.streamanalytics.operations._outputs_operations#OutputsOperations.{}' + ), + client_factory=cf_output, +) + + +stream_analytics_subscription = CliCommandType( + operations_tmpl='azext_stream_analytics.vendored_sdks.streamanalytics.operations._subscriptions_operations#SubscriptionsOperations.{}', + client_factory=cf_subscription, +) + + +stream_analytics_transformation = CliCommandType( + operations_tmpl='azext_stream_analytics.vendored_sdks.streamanalytics.operations._transformations_operations#TransformationsOperations.{}', + client_factory=cf_transformation, +) + + +def load_command_table(self, _): + + with self.command_group('stream-analytics function', stream_analytics_function, client_factory=cf_function) as g: + g.custom_command('list', 'stream_analytics_function_list') + g.custom_show_command('show', 'stream_analytics_function_show') + g.custom_command('create', 'stream_analytics_function_create') + g.custom_command('update', 'stream_analytics_function_update') + g.custom_command('delete', 'stream_analytics_function_delete', confirmation=True) + g.custom_command('test', 'stream_analytics_function_test', supports_no_wait=True) + g.custom_wait_command('wait', 'stream_analytics_function_show') + + with self.command_group('stream-analytics input', stream_analytics_input, client_factory=cf_input) as g: + g.custom_command('list', 'stream_analytics_input_list') + g.custom_show_command('show', 'stream_analytics_input_show') + g.custom_command('create', 'stream_analytics_input_create') + g.custom_command('update', 'stream_analytics_input_update') + g.custom_command('delete', 'stream_analytics_input_delete', confirmation=True) + g.custom_command('test', 'stream_analytics_input_test', supports_no_wait=True) + g.custom_wait_command('wait', 'stream_analytics_input_show') + + with self.command_group( + 'stream-analytics job', stream_analytics_streaming_job, client_factory=cf_streaming_job + ) as g: + g.custom_command('list', 'stream_analytics_job_list') + g.custom_show_command('show', 'stream_analytics_job_show') + g.custom_command('create', 'stream_analytics_job_create', supports_no_wait=True) + g.custom_command('update', 'stream_analytics_job_update') + g.custom_command('delete', 'stream_analytics_job_delete', supports_no_wait=True, confirmation=True) + g.custom_command('scale', 'stream_analytics_job_scale', supports_no_wait=True) + g.custom_command('start', 'stream_analytics_job_start', supports_no_wait=True) + g.custom_command('stop', 'stream_analytics_job_stop', supports_no_wait=True) + g.custom_wait_command('wait', 'stream_analytics_job_show') + + with self.command_group('stream-analytics output', stream_analytics_output, client_factory=cf_output) as g: + g.custom_command('list', 'stream_analytics_output_list') + g.custom_show_command('show', 'stream_analytics_output_show') + g.custom_command('create', 'stream_analytics_output_create') + g.custom_command('update', 'stream_analytics_output_update') + g.custom_command('delete', 'stream_analytics_output_delete', confirmation=True) + g.custom_command('test', 'stream_analytics_output_test', supports_no_wait=True) + g.custom_wait_command('wait', 'stream_analytics_output_show') + + with self.command_group( + 'stream-analytics subscription', stream_analytics_subscription, client_factory=cf_subscription + ) as g: + g.custom_command('inspect', 'stream_analytics_subscription_inspect') + + with self.command_group( + 'stream-analytics transformation', stream_analytics_transformation, client_factory=cf_transformation + ) as g: + g.custom_show_command('show', 'stream_analytics_transformation_show') + g.custom_command('create', 'stream_analytics_transformation_create') + g.custom_command('update', 'stream_analytics_transformation_update') + + with self.command_group('stream-analytics', is_experimental=True): + pass diff --git a/src/stream-analytics/azext_stream_analytics/generated/custom.py b/src/stream-analytics/azext_stream_analytics/generated/custom.py new file mode 100644 index 00000000000..ef9b2ee0a5e --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/generated/custom.py @@ -0,0 +1,559 @@ +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- +# pylint: disable=too-many-lines + +from azure.cli.core.util import sdk_no_wait + + +def stream_analytics_job_list(client, + expand=None, + resource_group_name=None): + if resource_group_name: + return client.list_by_resource_group(expand=expand, + resource_group_name=resource_group_name) + return client.list(expand=expand) + + +def stream_analytics_job_show(client, + resource_group_name, + job_name, + expand=None): + return client.get(expand=expand, + resource_group_name=resource_group_name, + job_name=job_name) + + +def stream_analytics_job_create(client, + resource_group_name, + job_name, + if_match=None, + if_none_match=None, + tags=None, + location=None, + identity=None, + job_type=None, + output_start_mode=None, + output_start_time=None, + out_of_order_policy=None, + output_error_policy=None, + order_max_delay=None, + arrival_max_delay=None, + data_locale=None, + compatibility_level=None, + inputs=None, + transformation=None, + outputs=None, + functions=None, + job_storage_account=None, + content_storage_policy=None, + id_=None, + no_wait=False): + streaming_job = {} + if tags is not None: + streaming_job['tags'] = tags + if location is not None: + streaming_job['location'] = location + if identity is not None: + streaming_job['identity'] = identity + if job_type is not None: + streaming_job['job_type'] = job_type + if output_start_mode is not None: + streaming_job['output_start_mode'] = output_start_mode + if output_start_time is not None: + streaming_job['output_start_time'] = output_start_time + if out_of_order_policy is not None: + streaming_job['events_out_of_order_policy'] = out_of_order_policy + if output_error_policy is not None: + streaming_job['output_error_policy'] = output_error_policy + if order_max_delay is not None: + streaming_job['events_out_of_order_max_delay_in_seconds'] = order_max_delay + if arrival_max_delay is not None: + streaming_job['events_late_arrival_max_delay_in_seconds'] = arrival_max_delay + if data_locale is not None: + streaming_job['data_locale'] = data_locale + if compatibility_level is not None: + streaming_job['compatibility_level'] = compatibility_level + if inputs is not None: + streaming_job['inputs'] = inputs + if transformation is not None: + streaming_job['transformation'] = transformation + if outputs is not None: + streaming_job['outputs'] = outputs + if functions is not None: + streaming_job['functions'] = functions + if job_storage_account is not None: + streaming_job['job_storage_account'] = job_storage_account + if content_storage_policy is not None: + streaming_job['content_storage_policy'] = content_storage_policy + streaming_job['cluster'] = {} + if id_ is not None: + streaming_job['cluster']['id'] = id_ + if len(streaming_job['cluster']) == 0: + del streaming_job['cluster'] + streaming_job['sku'] = {} + streaming_job['sku']['name'] = "Standard" + if len(streaming_job['sku']) == 0: + del streaming_job['sku'] + return sdk_no_wait(no_wait, + client.begin_create_or_replace, + if_match=if_match, + if_none_match=if_none_match, + resource_group_name=resource_group_name, + job_name=job_name, + streaming_job=streaming_job) + + +def stream_analytics_job_update(client, + resource_group_name, + job_name, + if_match=None, + tags=None, + location=None, + identity=None, + job_type=None, + output_start_mode=None, + output_start_time=None, + out_of_order_policy=None, + output_error_policy=None, + order_max_delay=None, + arrival_max_delay=None, + data_locale=None, + compatibility_level=None, + inputs=None, + transformation=None, + outputs=None, + functions=None, + job_storage_account=None, + content_storage_policy=None, + id_=None): + streaming_job = {} + if tags is not None: + streaming_job['tags'] = tags + if location is not None: + streaming_job['location'] = location + if identity is not None: + streaming_job['identity'] = identity + if job_type is not None: + streaming_job['job_type'] = job_type + if output_start_mode is not None: + streaming_job['output_start_mode'] = output_start_mode + if output_start_time is not None: + streaming_job['output_start_time'] = output_start_time + if out_of_order_policy is not None: + streaming_job['events_out_of_order_policy'] = out_of_order_policy + if output_error_policy is not None: + streaming_job['output_error_policy'] = output_error_policy + if order_max_delay is not None: + streaming_job['events_out_of_order_max_delay_in_seconds'] = order_max_delay + if arrival_max_delay is not None: + streaming_job['events_late_arrival_max_delay_in_seconds'] = arrival_max_delay + if data_locale is not None: + streaming_job['data_locale'] = data_locale + if compatibility_level is not None: + streaming_job['compatibility_level'] = compatibility_level + if inputs is not None: + streaming_job['inputs'] = inputs + if transformation is not None: + streaming_job['transformation'] = transformation + if outputs is not None: + streaming_job['outputs'] = outputs + if functions is not None: + streaming_job['functions'] = functions + if job_storage_account is not None: + streaming_job['job_storage_account'] = job_storage_account + if content_storage_policy is not None: + streaming_job['content_storage_policy'] = content_storage_policy + streaming_job['cluster'] = {} + if id_ is not None: + streaming_job['cluster']['id'] = id_ + if len(streaming_job['cluster']) == 0: + del streaming_job['cluster'] + streaming_job['sku'] = {} + streaming_job['sku']['name'] = "Standard" + if len(streaming_job['sku']) == 0: + del streaming_job['sku'] + return client.update(if_match=if_match, + resource_group_name=resource_group_name, + job_name=job_name, + streaming_job=streaming_job) + + +def stream_analytics_job_delete(client, + resource_group_name, + job_name, + no_wait=False): + return sdk_no_wait(no_wait, + client.begin_delete, + resource_group_name=resource_group_name, + job_name=job_name) + + +def stream_analytics_job_scale(client, + resource_group_name, + job_name, + streaming_units=None, + no_wait=False): + scale_job_parameters = {} + if streaming_units is not None: + scale_job_parameters['streaming_units'] = streaming_units + return sdk_no_wait(no_wait, + client.begin_scale, + resource_group_name=resource_group_name, + job_name=job_name, + scale_job_parameters=scale_job_parameters) + + +def stream_analytics_job_start(client, + resource_group_name, + job_name, + output_start_mode=None, + output_start_time=None, + no_wait=False): + start_job_parameters = {} + if output_start_mode is not None: + start_job_parameters['output_start_mode'] = output_start_mode + if output_start_time is not None: + start_job_parameters['output_start_time'] = output_start_time + return sdk_no_wait(no_wait, + client.begin_start, + resource_group_name=resource_group_name, + job_name=job_name, + start_job_parameters=start_job_parameters) + + +def stream_analytics_job_stop(client, + resource_group_name, + job_name, + no_wait=False): + return sdk_no_wait(no_wait, + client.begin_stop, + resource_group_name=resource_group_name, + job_name=job_name) + + +def stream_analytics_input_list(client, + resource_group_name, + job_name, + select=None): + return client.list_by_streaming_job(select=select, + resource_group_name=resource_group_name, + job_name=job_name) + + +def stream_analytics_input_show(client, + resource_group_name, + job_name, + input_name): + return client.get(resource_group_name=resource_group_name, + job_name=job_name, + input_name=input_name) + + +def stream_analytics_input_create(client, + resource_group_name, + job_name, + input_name, + if_match=None, + if_none_match=None, + properties=None): + input = {} + if properties is not None: + input['properties'] = properties + return client.create_or_replace(if_match=if_match, + if_none_match=if_none_match, + resource_group_name=resource_group_name, + job_name=job_name, + input_name=input_name, + input=input) + + +def stream_analytics_input_update(client, + resource_group_name, + job_name, + input_name, + if_match=None, + properties=None): + input = {} + if properties is not None: + input['properties'] = properties + return client.update(if_match=if_match, + resource_group_name=resource_group_name, + job_name=job_name, + input_name=input_name, + input=input) + + +def stream_analytics_input_delete(client, + resource_group_name, + job_name, + input_name): + return client.delete(resource_group_name=resource_group_name, + job_name=job_name, + input_name=input_name) + + +def stream_analytics_input_test(client, + resource_group_name, + job_name, + input_name, + properties=None, + no_wait=False): + input = {} + if properties is not None: + input['properties'] = properties + return sdk_no_wait(no_wait, + client.begin_test, + resource_group_name=resource_group_name, + job_name=job_name, + input_name=input_name, + input=input) + + +def stream_analytics_output_list(client, + resource_group_name, + job_name, + select=None): + return client.list_by_streaming_job(select=select, + resource_group_name=resource_group_name, + job_name=job_name) + + +def stream_analytics_output_show(client, + resource_group_name, + job_name, + output_name): + return client.get(resource_group_name=resource_group_name, + job_name=job_name, + output_name=output_name) + + +def stream_analytics_output_create(client, + resource_group_name, + job_name, + output_name, + if_match=None, + if_none_match=None, + datasource=None, + time_window=None, + size_window=None, + serialization=None): + output = {} + if datasource is not None: + output['datasource'] = datasource + if time_window is not None: + output['time_window'] = time_window + if size_window is not None: + output['size_window'] = size_window + if serialization is not None: + output['serialization'] = serialization + return client.create_or_replace(if_match=if_match, + if_none_match=if_none_match, + resource_group_name=resource_group_name, + job_name=job_name, + output_name=output_name, + output=output) + + +def stream_analytics_output_update(client, + resource_group_name, + job_name, + output_name, + if_match=None, + datasource=None, + time_window=None, + size_window=None, + serialization=None): + output = {} + if datasource is not None: + output['datasource'] = datasource + if time_window is not None: + output['time_window'] = time_window + if size_window is not None: + output['size_window'] = size_window + if serialization is not None: + output['serialization'] = serialization + return client.update(if_match=if_match, + resource_group_name=resource_group_name, + job_name=job_name, + output_name=output_name, + output=output) + + +def stream_analytics_output_delete(client, + resource_group_name, + job_name, + output_name): + return client.delete(resource_group_name=resource_group_name, + job_name=job_name, + output_name=output_name) + + +def stream_analytics_output_test(client, + resource_group_name, + job_name, + output_name, + datasource=None, + time_window=None, + size_window=None, + serialization=None, + no_wait=False): + output = {} + if datasource is not None: + output['datasource'] = datasource + if time_window is not None: + output['time_window'] = time_window + if size_window is not None: + output['size_window'] = size_window + if serialization is not None: + output['serialization'] = serialization + return sdk_no_wait(no_wait, + client.begin_test, + resource_group_name=resource_group_name, + job_name=job_name, + output_name=output_name, + output=output) + + +def stream_analytics_transformation_show(client, + resource_group_name, + job_name, + transformation_name): + return client.get(resource_group_name=resource_group_name, + job_name=job_name, + transformation_name=transformation_name) + + +def stream_analytics_transformation_create(client, + resource_group_name, + job_name, + transformation_name, + if_match=None, + if_none_match=None, + streaming_units=None, + valid_streaming_units=None, + saql=None): + transformation = {} + if streaming_units is not None: + transformation['streaming_units'] = streaming_units + if valid_streaming_units is not None: + transformation['valid_streaming_units'] = valid_streaming_units + if saql is not None: + transformation['query'] = saql + return client.create_or_replace(if_match=if_match, + if_none_match=if_none_match, + resource_group_name=resource_group_name, + job_name=job_name, + transformation_name=transformation_name, + transformation=transformation) + + +def stream_analytics_transformation_update(client, + resource_group_name, + job_name, + transformation_name, + if_match=None, + streaming_units=None, + valid_streaming_units=None, + saql=None): + transformation = {} + if streaming_units is not None: + transformation['streaming_units'] = streaming_units + if valid_streaming_units is not None: + transformation['valid_streaming_units'] = valid_streaming_units + if saql is not None: + transformation['query'] = saql + return client.update(if_match=if_match, + resource_group_name=resource_group_name, + job_name=job_name, + transformation_name=transformation_name, + transformation=transformation) + + +def stream_analytics_function_list(client, + resource_group_name, + job_name, + select=None): + return client.list_by_streaming_job(select=select, + resource_group_name=resource_group_name, + job_name=job_name) + + +def stream_analytics_function_show(client, + resource_group_name, + job_name, + function_name): + return client.get(resource_group_name=resource_group_name, + job_name=job_name, + function_name=function_name) + + +def stream_analytics_function_create(client, + resource_group_name, + job_name, + function_name, + if_match=None, + if_none_match=None, + properties=None): + function = {} + if properties is not None: + function['properties'] = properties + return client.create_or_replace(if_match=if_match, + if_none_match=if_none_match, + resource_group_name=resource_group_name, + job_name=job_name, + function_name=function_name, + function=function) + + +def stream_analytics_function_update(client, + resource_group_name, + job_name, + function_name, + if_match=None, + properties=None): + function = {} + if properties is not None: + function['properties'] = properties + return client.update(if_match=if_match, + resource_group_name=resource_group_name, + job_name=job_name, + function_name=function_name, + function=function) + + +def stream_analytics_function_delete(client, + resource_group_name, + job_name, + function_name): + return client.delete(resource_group_name=resource_group_name, + job_name=job_name, + function_name=function_name) + + +def stream_analytics_function_test(client, + resource_group_name, + job_name, + function_name, + properties=None, + no_wait=False): + function = {} + if properties is not None: + function['properties'] = properties + return sdk_no_wait(no_wait, + client.begin_test, + resource_group_name=resource_group_name, + job_name=job_name, + function_name=function_name, + function=function) + + +def stream_analytics_subscription_inspect(client, + location): + return client.list_quotas(location=location) diff --git a/src/stream-analytics/azext_stream_analytics/manual/__init__.py b/src/stream-analytics/azext_stream_analytics/manual/__init__.py new file mode 100644 index 00000000000..c9cfdc73e77 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/manual/__init__.py @@ -0,0 +1,12 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +__path__ = __import__('pkgutil').extend_path(__path__, __name__) diff --git a/src/stream-analytics/azext_stream_analytics/manual/_help.py b/src/stream-analytics/azext_stream_analytics/manual/_help.py new file mode 100644 index 00000000000..03a6aa7bea8 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/manual/_help.py @@ -0,0 +1,716 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +# pylint: disable=line-too-long +# pylint: disable=too-many-lines + +from knack.help_files import helps + + +helps['stream-analytics'] = ''' + type: group + short-summary: Manage Stream Analytics +''' + +helps['stream-analytics job'] = """ + type: group + short-summary: Manage streaming job with stream analytics +""" + +helps['stream-analytics job list'] = """ + type: command + short-summary: "List all of the streaming jobs in the specified resource group. And Lists all of the streaming \ +jobs in the given subscription." + examples: + - name: List all streaming jobs in a resource group and do not use the $expand OData query parameter + text: |- + az stream-analytics job list --resource-group "sjrg6936" + - name: List all streaming jobs in a resource group and use the $expand OData query parameter to expand inputs, outputs, transformation, and functions + text: |- + az stream-analytics job list --expand "inputs,outputs,transformation,functions" --resource-group \ +"sjrg3276" + - name: List all streaming jobs in a subscription and do not use the $expand OData query parameter + text: |- + az stream-analytics job list + - name: List all streaming jobs in a subscription and use the $expand OData query parameter to expand inputs, outputs, transformation, and functions + text: |- + az stream-analytics job list --expand "inputs,outputs,transformation,functions" +""" + +helps['stream-analytics job show'] = """ + type: command + short-summary: "Get details about the specified streaming job." + examples: + - name: Get a streaming job and do not use the $expand OData query parameter + text: |- + az stream-analytics job show --job-name "sj59" --resource-group "sjrg6936" + - name: Get a streaming job and use the $expand OData query parameter to expand inputs, outputs, transformation, and functions + text: |- + az stream-analytics job show --expand "inputs,outputs,transformation,functions" --job-name "sj7804" \ +--resource-group "sjrg3276" +""" + +helps['stream-analytics job create'] = """ + type: command + short-summary: "Create a streaming job or replaces an already existing streaming job." + parameters: + - name: --identity + short-summary: "Describe the system-assigned managed identity assigned to this job that can be used to \ +authenticate with inputs and outputs." + long-summary: | + Usage: --identity tenant-id=XX principal-id=XX type=XX + + tenant-id: The identity tenantId + principal-id: The identity principal ID + type: The identity type + - name: --transformation + short-summary: "Indicate the query and the number of streaming units to use for the streaming job. The name \ +property of the transformation is required when specifying this property in a PUT request. This property cannot be \ +modify via a PATCH operation. You must use the PATCH API available for the individual transformation." + long-summary: | + Usage: --transformation streaming-units=XX valid-streaming-units=XX query=XX name=XX + + streaming-units: Specifies the number of streaming units that the streaming job uses. + valid-streaming-units: Specifies the valid streaming units a streaming job can scale to. + query: Specifies the query that will be run in the streaming job. You can learn more about the Stream \ +Analytics Query Language (SAQL) here: https://msdn.microsoft.com/library/azure/dn834998 . Required on PUT \ +(CreateOrReplace) requests. + name: Resource name + - name: --job-storage-account + short-summary: "The properties that are associated with an Azure Storage account with MSI" + long-summary: | + Usage: --job-storage-account authentication-mode=XX account-name=XX account-key=XX + + authentication-mode: Authentication Mode. + account-name: The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests. + account-key: The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests. + examples: + - name: Create a complete streaming job (a streaming job with a transformation, at least 1 input and at least 1 output) + text: |- + az stream-analytics job create --job-name "sj7804" --resource-group "sjrg3276" --location "West US" \ +--compatibility-level "1.0" --data-locale "en-US" --arrival-max-delay 5 --order-max-delay 0 --out-of-order-policy \ +"Drop" --functions "[]" --inputs "[{\\"name\\":\\"inputtest\\",\\"properties\\":{\\"type\\":\\"Stream\\",\\"datasource\ +\\":{\\"type\\":\\"Microsoft.Storage/Blob\\",\\"properties\\":{\\"container\\":\\"containerName\\",\\"pathPattern\\":\\\ +"\\",\\"storageAccounts\\":[{\\"accountKey\\":\\"yourAccountKey==\\",\\"accountName\\":\\"yourAccountName\\"}]}},\\"ser\ +ialization\\":{\\"type\\":\\"Json\\",\\"properties\\":{\\"encoding\\":\\"UTF8\\"}}}}]" --output-error-policy "Drop" \ +--outputs "[{\\"name\\":\\"outputtest\\",\\"datasource\\":{\\"type\\":\\"Microsoft.Sql/Server/Database\\",\\"properties\ +\\":{\\"database\\":\\"databaseName\\",\\"password\\":\\"userPassword\\",\\"server\\":\\"serverName\\",\\"table\\":\\"t\ +ableName\\",\\"user\\":\\"\\"}}}]" --transformation name="transformationtest" streaming-units=1 query="Select \ +Id, Name from inputtest" --tags key1="value1" key3="value3" randomKey="randomValue" + - name: Create a streaming job shell (a streaming job with no inputs, outputs, transformation, or functions) + text: |- + az stream-analytics job create --job-name "sj59" --resource-group "sjrg6936" --location "West US" \ +--compatibility-level "1.0" --data-locale "en-US" --arrival-max-delay 16 --order-max-delay 5 --out-of-order-policy \ +"Drop" --functions "[]" --inputs "[]" --output-error-policy "Drop" --outputs "[]" --tags key1="value1" key3="value3" \ +randomKey="randomValue" +""" + +helps['stream-analytics job update'] = """ + type: command + short-summary: "Update an existing streaming job. This can be used to partially update (ie. update one or two \ +properties) a streaming job without affecting the rest the job definition." + parameters: + - name: --identity + short-summary: "Describe the system-assigned managed identity assigned to this job that can be used to \ +authenticate with inputs and outputs." + long-summary: | + Usage: --identity tenant-id=XX principal-id=XX type=XX + + tenant-id: The identity tenantId + principal-id: The identity principal ID + type: The identity type + - name: --transformation + short-summary: "Indicate the query and the number of streaming units to use for the streaming job. The name \ +property of the transformation is required when specifying this property in a PUT request. This property cannot be \ +modify via a PATCH operation. You must use the PATCH API available for the individual transformation." + long-summary: | + Usage: --transformation streaming-units=XX valid-streaming-units=XX query=XX name=XX + + streaming-units: Specifies the number of streaming units that the streaming job uses. + valid-streaming-units: Specifies the valid streaming units a streaming job can scale to. + query: Specifies the query that will be run in the streaming job. You can learn more about the Stream \ +Analytics Query Language (SAQL) here: https://msdn.microsoft.com/library/azure/dn834998 . Required on PUT \ +(CreateOrReplace) requests. + name: Resource name + - name: --job-storage-account + short-summary: "The properties that are associated with an Azure Storage account with MSI" + long-summary: | + Usage: --job-storage-account authentication-mode=XX account-name=XX account-key=XX + + authentication-mode: Authentication Mode. + account-name: The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests. + account-key: The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests. + examples: + - name: Update a streaming job + text: |- + az stream-analytics job update --job-name "sj59" --resource-group "sjrg6936" --arrival-max-delay 13 \ +--order-max-delay 21 +""" + +helps['stream-analytics job delete'] = """ + type: command + short-summary: "Delete a streaming job." + examples: + - name: Delete a streaming job + text: |- + az stream-analytics job delete --job-name "sj59" --resource-group "sjrg6936" +""" + +helps['stream-analytics job scale'] = """ + type: command + short-summary: "Scale a streaming job when the job is running." + examples: + - name: Scale a streaming job + text: |- + az stream-analytics job scale --job-name "sj59" --resource-group "sjrg6936" --streaming-units 36 +""" + +helps['stream-analytics job start'] = """ + type: command + short-summary: "Start a streaming job. Once a job is started it will start processing input events and produce \ +output." + examples: + - name: Start a streaming job with CustomTime output start mode + text: |- + az stream-analytics job start --job-name "sj59" --resource-group "sjrg6936" --output-start-mode \ +"CustomTime" --output-start-time "2012-12-12T12:12:12Z" + - name: Start a streaming job with JobStartTime output start mode + text: |- + az stream-analytics job start --job-name "sj59" --resource-group "sjrg6936" --output-start-mode \ +"JobStartTime" + - name: Start a streaming job with LastOutputEventTime output start mode + text: |- + az stream-analytics job start --job-name "sj59" --resource-group "sjrg6936" --output-start-mode \ +"LastOutputEventTime" +""" + +helps['stream-analytics job stop'] = """ + type: command + short-summary: "Stop a running streaming job. This will cause a running streaming job to stop processing input \ +events and producing output." + examples: + - name: Stop a streaming job + text: |- + az stream-analytics job stop --job-name "sj59" --resource-group "sjrg6936" +""" + +helps['stream-analytics job wait'] = """ + type: command + short-summary: Place the CLI in a waiting state until a condition of the stream-analytics job is met. + examples: + - name: Pause executing next line of CLI script until the stream-analytics job is successfully created. + text: |- + az stream-analytics job wait --expand "inputs,outputs,transformation,functions" --job-name "sj7804" \ +--resource-group "sjrg3276" --created + - name: Pause executing next line of CLI script until the stream-analytics job is successfully deleted. + text: |- + az stream-analytics job wait --expand "inputs,outputs,transformation,functions" --job-name "sj7804" \ +--resource-group "sjrg3276" --deleted +""" + +helps['stream-analytics input'] = """ + type: group + short-summary: Manage input with stream analytics +""" + +helps['stream-analytics input list'] = """ + type: command + short-summary: "List all of the inputs under the specified streaming job." + examples: + - name: List all inputs in a streaming job + text: |- + az stream-analytics input list --job-name "sj9597" --resource-group "sjrg8440" + - name: List all inputs in a streaming job and include diagnostic information using the $select OData query parameter + text: |- + az stream-analytics input list --select "*" --job-name "sj7804" --resource-group "sjrg3276" +""" + +helps['stream-analytics input show'] = """ + type: command + short-summary: "Get details about the specified input." + examples: + - name: Get a reference blob input with CSV serialization + text: |- + az stream-analytics input show --input-name "input7225" --job-name "sj9597" --resource-group "sjrg8440" + - name: Get a stream Event Hub input with JSON serialization + text: |- + az stream-analytics input show --input-name "input7425" --job-name "sj197" --resource-group "sjrg3139" + - name: Get a stream IoT Hub input with Avro serialization + text: |- + az stream-analytics input show --input-name "input7970" --job-name "sj9742" --resource-group "sjrg3467" + - name: Get a stream blob input with CSV serialization + text: |- + az stream-analytics input show --input-name "input8899" --job-name "sj6695" --resource-group "sjrg8161" +""" + +helps['stream-analytics input create'] = """ + type: command + short-summary: "Create an input or replaces an already existing input under an existing streaming job." + examples: + - name: Create a reference blob input with CSV serialization + text: |- + az stream-analytics input create --properties "{\\"type\\":\\"Reference\\",\\"datasource\\":{\\"type\\":\ +\\"Microsoft.Storage/Blob\\",\\"properties\\":{\\"container\\":\\"state\\",\\"dateFormat\\":\\"yyyy/MM/dd\\",\\"pathPat\ +tern\\":\\"{date}/{time}\\",\\"storageAccounts\\":[{\\"accountKey\\":\\"someAccountKey==\\",\\"accountName\\":\\"someAc\ +countName\\"}],\\"timeFormat\\":\\"HH\\"}},\\"serialization\\":{\\"type\\":\\"Csv\\",\\"properties\\":{\\"encoding\\":\ +\\"UTF8\\",\\"fieldDelimiter\\":\\",\\"}}}" --input-name "input7225" --job-name "sj9597" --resource-group "sjrg8440" + - name: Create a stream Event Hub input with JSON serialization + text: |- + az stream-analytics input create --properties "{\\"type\\":\\"Stream\\",\\"datasource\\":{\\"type\\":\\"\ +Microsoft.ServiceBus/EventHub\\",\\"properties\\":{\\"consumerGroupName\\":\\"sdkconsumergroup\\",\\"eventHubName\\":\\\ +"sdkeventhub\\",\\"serviceBusNamespace\\":\\"sdktest\\",\\"sharedAccessPolicyKey\\":\\"someSharedAccessPolicyKey==\\",\ +\\"sharedAccessPolicyName\\":\\"RootManageSharedAccessKey\\"}},\\"serialization\\":{\\"type\\":\\"Json\\",\\"properties\ +\\":{\\"encoding\\":\\"UTF8\\"}}}" --input-name "input7425" --job-name "sj197" --resource-group "sjrg3139" + - name: Create a stream IoT Hub input with Avro serialization + text: |- + az stream-analytics input create --properties "{\\"type\\":\\"Stream\\",\\"datasource\\":{\\"type\\":\\"\ +Microsoft.Devices/IotHubs\\",\\"properties\\":{\\"consumerGroupName\\":\\"sdkconsumergroup\\",\\"endpoint\\":\\"message\ +s/events\\",\\"iotHubNamespace\\":\\"iothub\\",\\"sharedAccessPolicyKey\\":\\"sharedAccessPolicyKey=\\",\\"sharedAccess\ +PolicyName\\":\\"owner\\"}},\\"serialization\\":{\\"type\\":\\"Avro\\"}}" --input-name "input7970" --job-name "sj9742" \ +--resource-group "sjrg3467" + - name: Create a stream blob input with CSV serialization + text: |- + az stream-analytics input create --properties "{\\"type\\":\\"Stream\\",\\"datasource\\":{\\"type\\":\\"\ +Microsoft.Storage/Blob\\",\\"properties\\":{\\"container\\":\\"state\\",\\"dateFormat\\":\\"yyyy/MM/dd\\",\\"pathPatter\ +n\\":\\"{date}/{time}\\",\\"sourcePartitionCount\\":16,\\"storageAccounts\\":[{\\"accountKey\\":\\"someAccountKey==\\",\ +\\"accountName\\":\\"someAccountName\\"}],\\"timeFormat\\":\\"HH\\"}},\\"serialization\\":{\\"type\\":\\"Csv\\",\\"prop\ +erties\\":{\\"encoding\\":\\"UTF8\\",\\"fieldDelimiter\\":\\",\\"}}}" --input-name "input8899" --job-name "sj6695" \ +--resource-group "sjrg8161" +""" + +helps['stream-analytics input update'] = """ + type: command + short-summary: "Update an existing input under an existing streaming job. This can be used to partially update \ +(ie. update one or two properties) an input without affecting the rest the job or input definition." + examples: + - name: Update a reference blob input + text: |- + az stream-analytics input update --properties "{\\"type\\":\\"Reference\\",\\"datasource\\":{\\"type\\":\ +\\"Microsoft.Storage/Blob\\",\\"properties\\":{\\"container\\":\\"differentContainer\\"}},\\"serialization\\":{\\"type\ +\\":\\"Csv\\",\\"properties\\":{\\"encoding\\":\\"UTF8\\",\\"fieldDelimiter\\":\\"|\\"}}}" --input-name "input7225" \ +--job-name "sj9597" --resource-group "sjrg8440" + - name: Update a stream Event Hub input + text: |- + az stream-analytics input update --properties "{\\"type\\":\\"Stream\\",\\"datasource\\":{\\"type\\":\\"\ +Microsoft.ServiceBus/EventHub\\",\\"properties\\":{\\"consumerGroupName\\":\\"differentConsumerGroupName\\"}},\\"serial\ +ization\\":{\\"type\\":\\"Avro\\"}}" --input-name "input7425" --job-name "sj197" --resource-group "sjrg3139" + - name: Update a stream IoT Hub input + text: |- + az stream-analytics input update --properties "{\\"type\\":\\"Stream\\",\\"datasource\\":{\\"type\\":\\"\ +Microsoft.Devices/IotHubs\\",\\"properties\\":{\\"endpoint\\":\\"messages/operationsMonitoringEvents\\"}},\\"serializat\ +ion\\":{\\"type\\":\\"Csv\\",\\"properties\\":{\\"encoding\\":\\"UTF8\\",\\"fieldDelimiter\\":\\"|\\"}}}" --input-name \ +"input7970" --job-name "sj9742" --resource-group "sjrg3467" + - name: Update a stream blob input + text: |- + az stream-analytics input update --properties "{\\"type\\":\\"Stream\\",\\"datasource\\":{\\"type\\":\\"\ +Microsoft.Storage/Blob\\",\\"properties\\":{\\"sourcePartitionCount\\":32}},\\"serialization\\":{\\"type\\":\\"Csv\\",\ +\\"properties\\":{\\"encoding\\":\\"UTF8\\",\\"fieldDelimiter\\":\\"|\\"}}}" --input-name "input8899" --job-name \ +"sj6695" --resource-group "sjrg8161" +""" + +helps['stream-analytics input delete'] = """ + type: command + short-summary: "Delete an input from the streaming job." + examples: + - name: Delete an input + text: |- + az stream-analytics input delete --input-name "input7225" --job-name "sj9597" --resource-group \ +"sjrg8440" +""" + +helps['stream-analytics input test'] = """ + type: command + short-summary: "Test whether an input’s datasource is reachable and usable by the Azure Stream Analytics \ +service." + examples: + - name: Test the connection for an input + text: |- + az stream-analytics input test --input-name "input7225" --job-name "sj9597" --resource-group "sjrg8440" +""" + +helps['stream-analytics input wait'] = """ + type: command + short-summary: Place the CLI in a waiting state until a condition of the stream-analytics input is met. + examples: + - name: Pause executing next line of CLI script until the stream-analytics input is successfully created. + text: |- + az stream-analytics input wait --input-name "input8899" --job-name "sj6695" --resource-group "sjrg8161" \ +--created +""" + +helps['stream-analytics output'] = """ + type: group + short-summary: Manage output with stream analytics +""" + +helps['stream-analytics output list'] = """ + type: command + short-summary: "List all of the outputs under the specified streaming job." + examples: + - name: List all outputs in a streaming job + text: |- + az stream-analytics output list --job-name "sj6458" --resource-group "sjrg2157" +""" + +helps['stream-analytics output show'] = """ + type: command + short-summary: "Get details about the specified output." + examples: + - name: Get a DocumentDB output + text: |- + az stream-analytics output show --job-name "sj2331" --output-name "output3022" --resource-group \ +"sjrg7983" + - name: Get a Power BI output + text: |- + az stream-analytics output show --job-name "sj2331" --output-name "output3022" --resource-group \ +"sjrg7983" + - name: Get a Service Bus Queue output with Avro serialization + text: |- + az stream-analytics output show --job-name "sj5095" --output-name "output3456" --resource-group \ +"sjrg3410" + - name: Get a Service Bus Topic output with CSV serialization + text: |- + az stream-analytics output show --job-name "sj7094" --output-name "output7886" --resource-group \ +"sjrg6450" + - name: Get a blob output with CSV serialization + text: |- + az stream-analytics output show --job-name "sj900" --output-name "output1623" --resource-group \ +"sjrg5023" + - name: Get an Azure Data Lake Store output with JSON serialization + text: |- + az stream-analytics output show --job-name "sj3310" --output-name "output5195" --resource-group \ +"sjrg6912" + - name: Get an Azure Data Warehouse output + text: |- + az stream-analytics output show --job-name "sjName" --output-name "output958" --resource-group "sjrg" + - name: Get an Azure SQL database output + text: |- + az stream-analytics output show --job-name "sj6458" --output-name "output1755" --resource-group \ +"sjrg2157" + - name: Get an Azure Table output + text: |- + az stream-analytics output show --job-name "sj2790" --output-name "output958" --resource-group \ +"sjrg5176" + - name: Get an Event Hub output with JSON serialization + text: |- + az stream-analytics output show --job-name "sj3310" --output-name "output5195" --resource-group \ +"sjrg6912" +""" + +helps['stream-analytics output create'] = """ + type: command + short-summary: "Create an output or replaces an already existing output under an existing streaming job." + examples: + - name: Create a DocumentDB output + text: |- + az stream-analytics output create --job-name "sj2331" --datasource "{\\"type\\":\\"Microsoft.Storage/Doc\ +umentDB\\",\\"properties\\":{\\"accountId\\":\\"someAccountId\\",\\"accountKey\\":\\"accountKey==\\",\\"collectionNameP\ +attern\\":\\"collection\\",\\"database\\":\\"db01\\",\\"documentId\\":\\"documentId\\",\\"partitionKey\\":\\"key\\"}}" \ +--output-name "output3022" --resource-group "sjrg7983" + - name: Create a Power BI output + text: |- + az stream-analytics output create --job-name "sj2331" --datasource "{\\"type\\":\\"PowerBI\\",\\"propert\ +ies\\":{\\"dataset\\":\\"someDataset\\",\\"groupId\\":\\"ac40305e-3e8d-43ac-8161-c33799f43e95\\",\\"groupName\\":\\"MyP\ +owerBIGroup\\",\\"refreshToken\\":\\"someRefreshToken==\\",\\"table\\":\\"someTable\\",\\"tokenUserDisplayName\\":\\"Bo\ +b Smith\\",\\"tokenUserPrincipalName\\":\\"bobsmith@contoso.com\\"}}" --output-name "output3022" --resource-group \ +"sjrg7983" + - name: Create a Service Bus Queue output with Avro serialization + text: |- + az stream-analytics output create --job-name "sj5095" --datasource "{\\"type\\":\\"Microsoft.ServiceBus/\ +Queue\\",\\"properties\\":{\\"propertyColumns\\":[\\"column1\\",\\"column2\\"],\\"queueName\\":\\"sdkqueue\\",\\"servic\ +eBusNamespace\\":\\"sdktest\\",\\"sharedAccessPolicyKey\\":\\"sharedAccessPolicyKey=\\",\\"sharedAccessPolicyName\\":\\\ +"RootManageSharedAccessKey\\",\\"systemPropertyColumns\\":{\\"MessageId\\":\\"col3\\",\\"PartitionKey\\":\\"col4\\"}}}"\ + --serialization "{\\"type\\":\\"Avro\\"}" --output-name "output3456" --resource-group "sjrg3410" + - name: Create a Service Bus Topic output with CSV serialization + text: |- + az stream-analytics output create --job-name "sj7094" --datasource "{\\"type\\":\\"Microsoft.ServiceBus/\ +Topic\\",\\"properties\\":{\\"propertyColumns\\":[\\"column1\\",\\"column2\\"],\\"serviceBusNamespace\\":\\"sdktest\\",\ +\\"sharedAccessPolicyKey\\":\\"sharedAccessPolicyKey=\\",\\"sharedAccessPolicyName\\":\\"RootManageSharedAccessKey\\",\ +\\"topicName\\":\\"sdktopic\\"}}" --serialization "{\\"type\\":\\"Csv\\",\\"properties\\":{\\"encoding\\":\\"UTF8\\",\\\ +"fieldDelimiter\\":\\",\\"}}" --output-name "output7886" --resource-group "sjrg6450" + - name: Create a blob output with CSV serialization + text: |- + az stream-analytics output create --job-name "sj900" --datasource "{\\"type\\":\\"Microsoft.Storage/Blob\ +\\",\\"properties\\":{\\"container\\":\\"state\\",\\"dateFormat\\":\\"yyyy/MM/dd\\",\\"pathPattern\\":\\"{date}/{time}\ +\\",\\"storageAccounts\\":[{\\"accountKey\\":\\"accountKey==\\",\\"accountName\\":\\"someAccountName\\"}],\\"timeFormat\ +\\":\\"HH\\"}}" --serialization "{\\"type\\":\\"Csv\\",\\"properties\\":{\\"encoding\\":\\"UTF8\\",\\"fieldDelimiter\\"\ +:\\",\\"}}" --output-name "output1623" --resource-group "sjrg5023" + - name: Create an Azure Data Lake Store output with JSON serialization + text: |- + az stream-analytics output create --job-name "sj3310" --datasource "{\\"type\\":\\"Microsoft.DataLake/Ac\ +counts\\",\\"properties\\":{\\"accountName\\":\\"someaccount\\",\\"dateFormat\\":\\"yyyy/MM/dd\\",\\"filePathPrefix\\":\ +\\"{date}/{time}\\",\\"refreshToken\\":\\"someRefreshToken==\\",\\"tenantId\\":\\"cea4e98b-c798-49e7-8c40-4a2b3beb47dd\ +\\",\\"timeFormat\\":\\"HH\\",\\"tokenUserDisplayName\\":\\"Bob Smith\\",\\"tokenUserPrincipalName\\":\\"bobsmith@conto\ +so.com\\"}}" --serialization "{\\"type\\":\\"Json\\",\\"properties\\":{\\"format\\":\\"Array\\",\\"encoding\\":\\"UTF8\ +\\"}}" --output-name "output5195" --resource-group "sjrg6912" + - name: Create an Azure SQL database output + text: |- + az stream-analytics output create --job-name "sj6458" --datasource "{\\"type\\":\\"Microsoft.Sql/Server/\ +Database\\",\\"properties\\":{\\"database\\":\\"someDatabase\\",\\"password\\":\\"somePassword\\",\\"server\\":\\"someS\ +erver\\",\\"table\\":\\"someTable\\",\\"user\\":\\"\\"}}" --output-name "output1755" --resource-group "sjrg2157" + - name: Create an Azure Table output + text: |- + az stream-analytics output create --job-name "sj2790" --datasource "{\\"type\\":\\"Microsoft.Storage/Tab\ +le\\",\\"properties\\":{\\"accountKey\\":\\"accountKey==\\",\\"accountName\\":\\"someAccountName\\",\\"batchSize\\":25,\ +\\"columnsToRemove\\":[\\"column1\\",\\"column2\\"],\\"partitionKey\\":\\"partitionKey\\",\\"rowKey\\":\\"rowKey\\",\\"\ +table\\":\\"samples\\"}}" --output-name "output958" --resource-group "sjrg5176" + - name: Create an Event Hub output with JSON serialization + text: |- + az stream-analytics output create --job-name "sj3310" --datasource "{\\"type\\":\\"Microsoft.ServiceBus/\ +EventHub\\",\\"properties\\":{\\"eventHubName\\":\\"sdkeventhub\\",\\"partitionKey\\":\\"partitionKey\\",\\"serviceBusN\ +amespace\\":\\"sdktest\\",\\"sharedAccessPolicyKey\\":\\"sharedAccessPolicyKey=\\",\\"sharedAccessPolicyName\\":\\"Root\ +ManageSharedAccessKey\\"}}" --serialization "{\\"type\\":\\"Json\\",\\"properties\\":{\\"format\\":\\"Array\\",\\"encod\ +ing\\":\\"UTF8\\"}}" --output-name "output5195" --resource-group "sjrg6912" +""" + +helps['stream-analytics output update'] = """ + type: command + short-summary: "Update an existing output under an existing streaming job. This can be used to partially update \ +(ie. update one or two properties) an output without affecting the rest the job or output definition." + examples: + - name: Update a DocumentDB output + text: |- + az stream-analytics output update --job-name "sj2331" --datasource "{\\"type\\":\\"Microsoft.Storage/Doc\ +umentDB\\",\\"properties\\":{\\"partitionKey\\":\\"differentPartitionKey\\"}}" --output-name "output3022" \ +--resource-group "sjrg7983" + - name: Update a Power BI output + text: |- + az stream-analytics output update --job-name "sj2331" --datasource "{\\"type\\":\\"PowerBI\\",\\"propert\ +ies\\":{\\"dataset\\":\\"differentDataset\\"}}" --output-name "output3022" --resource-group "sjrg7983" + - name: Update a Service Bus Queue output with Avro serialization + text: |- + az stream-analytics output update --job-name "sj5095" --datasource "{\\"type\\":\\"Microsoft.ServiceBus/\ +Queue\\",\\"properties\\":{\\"queueName\\":\\"differentQueueName\\"}}" --serialization "{\\"type\\":\\"Json\\",\\"prope\ +rties\\":{\\"format\\":\\"LineSeparated\\",\\"encoding\\":\\"UTF8\\"}}" --output-name "output3456" --resource-group \ +"sjrg3410" + - name: Update a Service Bus Topic output with CSV serialization + text: |- + az stream-analytics output update --job-name "sj7094" --datasource "{\\"type\\":\\"Microsoft.ServiceBus/\ +Topic\\",\\"properties\\":{\\"topicName\\":\\"differentTopicName\\"}}" --serialization "{\\"type\\":\\"Csv\\",\\"proper\ +ties\\":{\\"encoding\\":\\"UTF8\\",\\"fieldDelimiter\\":\\"|\\"}}" --output-name "output7886" --resource-group \ +"sjrg6450" + - name: Update a blob output with CSV serialization + text: |- + az stream-analytics output update --job-name "sj900" --datasource "{\\"type\\":\\"Microsoft.Storage/Blob\ +\\",\\"properties\\":{\\"container\\":\\"differentContainer\\"}}" --serialization "{\\"type\\":\\"Csv\\",\\"properties\ +\\":{\\"encoding\\":\\"UTF8\\",\\"fieldDelimiter\\":\\"|\\"}}" --output-name "output1623" --resource-group "sjrg5023" + - name: Update an Azure Data Lake Store output with JSON serialization + text: |- + az stream-analytics output update --job-name "sj3310" --datasource "{\\"type\\":\\"Microsoft.DataLake/Ac\ +counts\\",\\"properties\\":{\\"accountName\\":\\"differentaccount\\"}}" --serialization "{\\"type\\":\\"Json\\",\\"prop\ +erties\\":{\\"format\\":\\"LineSeparated\\",\\"encoding\\":\\"UTF8\\"}}" --output-name "output5195" --resource-group \ +"sjrg6912" + - name: Update an Azure SQL database output + text: |- + az stream-analytics output update --job-name "sj6458" --datasource "{\\"type\\":\\"Microsoft.Sql/Server/\ +Database\\",\\"properties\\":{\\"table\\":\\"differentTable\\"}}" --output-name "output1755" --resource-group \ +"sjrg2157" + - name: Update an Azure Table output + text: |- + az stream-analytics output update --job-name "sj2790" --datasource "{\\"type\\":\\"Microsoft.Storage/Tab\ +le\\",\\"properties\\":{\\"partitionKey\\":\\"differentPartitionKey\\"}}" --output-name "output958" --resource-group \ +"sjrg5176" + - name: Update an Event Hub output with JSON serialization + text: |- + az stream-analytics output update --job-name "sj3310" --datasource "{\\"type\\":\\"Microsoft.ServiceBus/\ +EventHub\\",\\"properties\\":{\\"partitionKey\\":\\"differentPartitionKey\\"}}" --serialization \ +"{\\"type\\":\\"Json\\",\\"properties\\":{\\"format\\":\\"LineSeparated\\",\\"encoding\\":\\"UTF8\\"}}" --output-name \ +"output5195" --resource-group "sjrg6912" +""" + +helps['stream-analytics output delete'] = """ + type: command + short-summary: "Delete an output from the streaming job." + examples: + - name: Delete an output + text: |- + az stream-analytics output delete --job-name "sj6458" --name "output1755" --resource-group "sjrg2157" +""" + +helps['stream-analytics output test'] = """ + type: command + short-summary: "Test whether an output’s datasource is reachable and usable by the Azure Stream Analytics \ +service." + examples: + - name: Test the connection for an output + text: |- + az stream-analytics output test --job-name "sj6458" --output-name "output1755" --resource-group \ +"sjrg2157" +""" + +helps['stream-analytics output wait'] = """ + type: command + short-summary: Place the CLI in a waiting state until a condition of the stream-analytics output is met. + examples: + - name: Pause executing next line of CLI script until the stream-analytics output is successfully created. + text: |- + az stream-analytics output wait --job-name "sj3310" --output-name "output5195" --resource-group \ +"sjrg6912" --created +""" + +helps['stream-analytics transformation'] = """ + type: group + short-summary: Manage transformation with stream analytics +""" + +helps['stream-analytics transformation show'] = """ + type: command + short-summary: "Get details about the specified transformation." + examples: + - name: Get a transformation + text: |- + az stream-analytics transformation show --job-name "sj8374" --resource-group "sjrg4423" --name \ +"transformation952" +""" + +helps['stream-analytics transformation create'] = """ + type: command + short-summary: "Create a transformation or replaces an already existing transformation under an existing \ +streaming job." + examples: + - name: Create a transformation + text: |- + az stream-analytics transformation create --job-name "sj8374" --resource-group "sjrg4423" --saql \ +"Select Id, Name from inputtest" --streaming-units 6 --transformation-name "transformation952" +""" + +helps['stream-analytics transformation update'] = """ + type: command + short-summary: "Update an existing transformation under an existing streaming job. This can be used to partially \ +update (ie. update one or two properties) a transformation without affecting the rest the job or transformation \ +definition." + examples: + - name: Update a transformation + text: |- + az stream-analytics transformation update --job-name "sj8374" --resource-group "sjrg4423" --saql "New \ +query" --transformation-name "transformation952" +""" + +helps['stream-analytics function'] = """ + type: group + short-summary: Manage function with stream analytics +""" + +helps['stream-analytics function list'] = """ + type: command + short-summary: "List all of the functions under the specified streaming job." + examples: + - name: List all functions in a streaming job + text: |- + az stream-analytics function list --job-name "sj8653" --resource-group "sjrg1637" +""" + +helps['stream-analytics function show'] = """ + type: command + short-summary: "Get details about the specified function." + examples: + - name: Get a JavaScript function + text: |- + az stream-analytics function show --name "function8197" --job-name "sj8653" --resource-group "sjrg1637" + - name: Get an Azure ML function + text: |- + az stream-analytics function show --name "function588" --job-name "sj9093" --resource-group "sjrg7" +""" + +helps['stream-analytics function create'] = """ + type: command + short-summary: "Create a function or replaces an already existing function under an existing streaming job." + examples: + - name: Create a JavaScript function + text: |- + az stream-analytics function create --properties "{\\"type\\":\\"Scalar\\",\\"properties\\":{\\"binding\ +\\":{\\"type\\":\\"Microsoft.StreamAnalytics/JavascriptUdf\\",\\"properties\\":{\\"script\\":\\"function (x, y) { \ +return x + y; }\\"}},\\"inputs\\":[{\\"dataType\\":\\"Any\\"}],\\"output\\":{\\"dataType\\":\\"Any\\"}}}" \ +--function-name "function8197" --job-name "sj8653" --resource-group "sjrg1637" + - name: Create an Azure ML function + text: |- + az stream-analytics function create --properties "{\\"type\\":\\"Scalar\\",\\"properties\\":{\\"binding\ +\\":{\\"type\\":\\"Microsoft.MachineLearning/WebService\\",\\"properties\\":{\\"apiKey\\":\\"someApiKey==\\",\\"batchSi\ +ze\\":1000,\\"endpoint\\":\\"someAzureMLEndpointURL\\",\\"inputs\\":{\\"name\\":\\"input1\\",\\"columnNames\\":[{\\"nam\ +e\\":\\"tweet\\",\\"dataType\\":\\"string\\",\\"mapTo\\":0}]},\\"outputs\\":[{\\"name\\":\\"Sentiment\\",\\"dataType\\"\ +:\\"string\\"}]}},\\"inputs\\":[{\\"dataType\\":\\"nvarchar(max)\\"}],\\"output\\":{\\"dataType\\":\\"nvarchar(max)\\"}\ +}}" --function-name "function588" --job-name "sj9093" --resource-group "sjrg7" +""" + +helps['stream-analytics function update'] = """ + type: command + short-summary: "Update an existing function under an existing streaming job. This can be used to partially update \ +(ie. update one or two properties) a function without affecting the rest the job or function definition." + examples: + - name: Update a JavaScript function + text: |- + az stream-analytics function update --properties "{\\"type\\":\\"Scalar\\",\\"properties\\":{\\"binding\ +\\":{\\"type\\":\\"Microsoft.StreamAnalytics/JavascriptUdf\\",\\"properties\\":{\\"script\\":\\"function (a, b) { \ +return a * b; }\\"}}}}" --function-name "function8197" --job-name "sj8653" --resource-group "sjrg1637" + - name: Update an Azure ML function + text: |- + az stream-analytics function update --properties "{\\"type\\":\\"Scalar\\",\\"properties\\":{\\"binding\ +\\":{\\"type\\":\\"Microsoft.MachineLearning/WebService\\",\\"properties\\":{\\"batchSize\\":5000}}}}" --function-name \ +"function588" --job-name "sj9093" --resource-group "sjrg7" +""" + +helps['stream-analytics function delete'] = """ + type: command + short-summary: "Delete a function from the streaming job." + examples: + - name: Delete a function + text: |- + az stream-analytics function delete --name "function8197" --job-name "sj8653" --resource-group \ +"sjrg1637" +""" + +helps['stream-analytics function inspect'] = """ + type: command + short-summary: "Retrieve the default definition of a function based on the parameters specified." + parameters: + - name: --ml-properties + short-summary: "The parameters needed to retrieve the default function definition for an Azure Machine \ +Learning web service function." + long-summary: | + Usage: --ml-properties execute-endpoint=XX + + execute-endpoint: The Request-Response execute endpoint of the Azure Machine Learning web service. Find \ +out more here: https://docs.microsoft.com/en-us/azure/stream-analytics/machine-learning-udf +""" + +helps['stream-analytics function test'] = """ + type: command + short-summary: "Test if the information provided for a function is valid. This can range from testing the \ +connection to the underlying web service behind the function or making sure the function code provided is \ +syntactically correct." + examples: + - name: Test the connection for a JavaScript function + text: |- + az stream-analytics function test --function-name "function8197" --job-name "sj8653" --resource-group \ +"sjrg1637" + - name: Test the connection for an Azure ML function + text: |- + az stream-analytics function test --function-name "function588" --job-name "sj9093" --resource-group \ +"sjrg7" +""" + +helps['stream-analytics function wait'] = """ + type: command + short-summary: Place the CLI in a waiting state until a condition of the stream-analytics function is met. + examples: + - name: Pause executing next line of CLI script until the stream-analytics function is successfully created. + text: |- + az stream-analytics function wait --name "function588" --job-name "sj9093" --resource-group "sjrg7" \ +--created +""" + +helps['stream-analytics subscription'] = """ + type: group + short-summary: Manage subscription with stream analytics +""" + +helps['stream-analytics subscription inspect'] = """ + type: command + short-summary: "Retrieve the subscription's current quota information in a particular region." + examples: + - name: List subscription quota information in West US + text: |- + az stream-analytics subscription inspect --location "West US" +""" diff --git a/src/stream-analytics/azext_stream_analytics/manual/_params.py b/src/stream-analytics/azext_stream_analytics/manual/_params.py new file mode 100644 index 00000000000..420910be92d --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/manual/_params.py @@ -0,0 +1,24 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +# pylint: disable=line-too-long +# pylint: disable=too-many-lines + +from azure.cli.core.commands.parameters import resource_group_name_type + +from azext_stream_analytics.action import AddAzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters + + +def load_arguments(self, _): + with self.argument_context("stream-analytics function inspect") as c: + c.argument("resource_group_name", resource_group_name_type) + c.argument("job_name", type=str, help="The name of the streaming job.") + c.argument("function_name", options_list=["--name", "-n", "--function-name"], type=str, + help="The name of the function.") + c.argument("azure_machine_learning_web_service_function_retrieve_default_definition_parameters", + options_list=["--ml-properties"], + action=AddAzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters, nargs="+", + help="The parameters needed to retrieve the default function definition for an Azure Machine " + "Learning web service function.", arg_group="FunctionRetrieveDefaultDefinitionParameters") diff --git a/src/stream-analytics/azext_stream_analytics/manual/action.py b/src/stream-analytics/azext_stream_analytics/manual/action.py new file mode 100644 index 00000000000..bf81c86c943 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/manual/action.py @@ -0,0 +1,41 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +# pylint: disable=line-too-long +# pylint: disable=too-many-lines + +import argparse + +from collections import defaultdict +from azure.cli.core.azclierror import ArgumentUsageError + + +class AddAzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters(argparse.Action): + def __call__(self, parser, namespace, values, option_string=None): + action = self.get_action(values, option_string) + namespace.azure_machine_learning_web_service_function_retrieve_default_definition_parameters = action + + @staticmethod + def get_action(values, option_string): + try: + properties = defaultdict(list) + for (k, v) in (x.split('=', 1) for x in values): + properties[k].append(v) + properties = dict(properties) + except Exception as error: + err_msg = f"The content of {option_string} should be like [KEY=VALUE ...]." + raise ArgumentUsageError(err_msg) from error + d = {} + for k in properties: + kl = k.lower() + v = properties[k] + if kl == "execute-endpoint": + d["execute_endpoint"] = v[0] + else: + err_msg = f"Unsupported Key {k} is provided for {option_string}. All possible keys are: script." + raise ArgumentUsageError(err_msg) + d["udf_type"] = "Scalar" + d["binding_type"] = "Microsoft.MachineLearning/WebService" + return d diff --git a/src/stream-analytics/azext_stream_analytics/manual/commands.py b/src/stream-analytics/azext_stream_analytics/manual/commands.py new file mode 100644 index 00000000000..a95314e76e0 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/manual/commands.py @@ -0,0 +1,33 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +# pylint: disable=line-too-long +# pylint: disable=too-many-lines + +from azure.cli.core.commands import CliCommandType + + +def cf_stream_analytics_cl(cli_ctx, *_): + from azure.cli.core.commands.client_factory import get_mgmt_service_client + from azext_stream_analytics.vendored_sdks.streamanalytics import StreamAnalyticsManagementClient + return get_mgmt_service_client(cli_ctx, StreamAnalyticsManagementClient) + + +def cf_function(cli_ctx, *_): + return cf_stream_analytics_cl(cli_ctx).functions + + +stream_analytics_function = CliCommandType( + operations_tmpl=( + "azext_stream_analytics.vendored_sdks.streamanalytics.operations._functions_operations#FunctionsOperations.{}" + ), + client_factory=cf_function, +) + + +def load_command_table(self, _): + + with self.command_group("stream-analytics function", stream_analytics_function, client_factory=cf_function) as g: + g.custom_command("inspect", "stream_analytics_function_inspect") diff --git a/src/stream-analytics/azext_stream_analytics/manual/custom.py b/src/stream-analytics/azext_stream_analytics/manual/custom.py new file mode 100644 index 00000000000..285a0296484 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/manual/custom.py @@ -0,0 +1,27 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +# pylint: disable=line-too-long +# pylint: disable=too-many-lines + +from azure.cli.core.azclierror import ArgumentUsageError + + +def stream_analytics_function_inspect(client, + resource_group_name, + job_name, + function_name, + azure_machine_learning_web_service_function_retrieve_default_definition_parameters=None): + all_function_retrieve_default_definition_parameters = [] + if azure_machine_learning_web_service_function_retrieve_default_definition_parameters is not None: + all_function_retrieve_default_definition_parameters.append(azure_machine_learning_web_service_function_retrieve_default_definition_parameters) + if len(all_function_retrieve_default_definition_parameters) > 1: + err_msg = "At most one {--ml-properties} is needed for function inspect." + raise ArgumentUsageError(err_msg) + function_retrieve_default_definition_parameters = all_function_retrieve_default_definition_parameters[0] if len(all_function_retrieve_default_definition_parameters) == 1 else None + return client.retrieve_default_definition(resource_group_name=resource_group_name, + job_name=job_name, + function_name=function_name, + function_retrieve_default_definition_parameters=function_retrieve_default_definition_parameters) diff --git a/src/stream-analytics/azext_stream_analytics/tests/__init__.py b/src/stream-analytics/azext_stream_analytics/tests/__init__.py new file mode 100644 index 00000000000..70488e93851 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/tests/__init__.py @@ -0,0 +1,116 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- +import inspect +import logging +import os +import sys +import traceback +import datetime as dt + +from azure.core.exceptions import AzureError +from azure.cli.testsdk.exceptions import CliTestError, CliExecutionError, JMESPathCheckAssertionError + + +logger = logging.getLogger('azure.cli.testsdk') +logger.addHandler(logging.StreamHandler()) +__path__ = __import__('pkgutil').extend_path(__path__, __name__) +exceptions = [] +test_map = dict() +SUCCESSED = "successed" +FAILED = "failed" + + +def try_manual(func): + def import_manual_function(origin_func): + from importlib import import_module + decorated_path = inspect.getfile(origin_func).lower() + module_path = __path__[0].lower() + if not decorated_path.startswith(module_path): + raise Exception("Decorator can only be used in submodules!") + manual_path = os.path.join( + decorated_path[module_path.rfind(os.path.sep) + 1:]) + manual_file_path, manual_file_name = os.path.split(manual_path) + module_name, _ = os.path.splitext(manual_file_name) + manual_module = "..manual." + \ + ".".join(manual_file_path.split(os.path.sep) + [module_name, ]) + return getattr(import_module(manual_module, package=__name__), origin_func.__name__) + + def get_func_to_call(): + func_to_call = func + try: + func_to_call = import_manual_function(func) + logger.info("Found manual override for %s(...)", func.__name__) + except (ImportError, AttributeError): + pass + return func_to_call + + def wrapper(*args, **kwargs): + func_to_call = get_func_to_call() + logger.info("running %s()...", func.__name__) + try: + test_map[func.__name__] = dict() + test_map[func.__name__]["result"] = SUCCESSED + test_map[func.__name__]["error_message"] = "" + test_map[func.__name__]["error_stack"] = "" + test_map[func.__name__]["error_normalized"] = "" + test_map[func.__name__]["start_dt"] = dt.datetime.utcnow() + ret = func_to_call(*args, **kwargs) + except (AssertionError, AzureError, CliTestError, CliExecutionError, SystemExit, + JMESPathCheckAssertionError) as e: + use_exception_cache = os.getenv("TEST_EXCEPTION_CACHE") + if use_exception_cache is None or use_exception_cache.lower() != "true": + raise + test_map[func.__name__]["end_dt"] = dt.datetime.utcnow() + test_map[func.__name__]["result"] = FAILED + test_map[func.__name__]["error_message"] = str(e).replace("\r\n", " ").replace("\n", " ")[:500] + test_map[func.__name__]["error_stack"] = traceback.format_exc().replace( + "\r\n", " ").replace("\n", " ")[:500] + logger.info("--------------------------------------") + logger.info("step exception: %s", e) + logger.error("--------------------------------------") + logger.error("step exception in %s: %s", func.__name__, e) + logger.info(traceback.format_exc()) + exceptions.append((func.__name__, sys.exc_info())) + else: + test_map[func.__name__]["end_dt"] = dt.datetime.utcnow() + return ret + + if inspect.isclass(func): + return get_func_to_call() + return wrapper + + +def calc_coverage(filename): + filename = filename.split(".")[0] + coverage_name = filename + "_coverage.md" + with open(coverage_name, "w") as f: + f.write("|Scenario|Result|ErrorMessage|ErrorStack|ErrorNormalized|StartDt|EndDt|\n") + total = len(test_map) + covered = 0 + for k, v in test_map.items(): + if not k.startswith("step_"): + total -= 1 + continue + if v["result"] == SUCCESSED: + covered += 1 + f.write("|{step_name}|{result}|{error_message}|{error_stack}|{error_normalized}|{start_dt}|" + "{end_dt}|\n".format(step_name=k, **v)) + f.write("Coverage: {}/{}\n".format(covered, total)) + print("Create coverage\n", file=sys.stderr) + + +def raise_if(): + if exceptions: + if len(exceptions) <= 1: + raise exceptions[0][1][1] + message = "{}\nFollowed with exceptions in other steps:\n".format(str(exceptions[0][1][1])) + message += "\n".join(["{}: {}".format(h[0], h[1][1]) for h in exceptions[1:]]) + raise exceptions[0][1][0](message).with_traceback(exceptions[0][1][2]) diff --git a/src/stream-analytics/azext_stream_analytics/tests/latest/__init__.py b/src/stream-analytics/azext_stream_analytics/tests/latest/__init__.py new file mode 100644 index 00000000000..c9cfdc73e77 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/tests/latest/__init__.py @@ -0,0 +1,12 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +__path__ = __import__('pkgutil').extend_path(__path__, __name__) diff --git a/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_function_crud.yaml b/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_function_crud.yaml new file mode 100644 index 00000000000..48b5c4351aa --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_function_crud.yaml @@ -0,0 +1,488 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job create + Connection: + - keep-alive + ParameterSetName: + - -n -g --data-locale --output-error-policy --out-of-order-policy --order-max-delay + --arrival-max-delay + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001","name":"cli_test_stream_analytics_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T08:05:38Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:05:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"sku": {"name": "Standard"}, "eventsOutOfOrderPolicy": + "Drop", "outputErrorPolicy": "Drop", "eventsOutOfOrderMaxDelayInSeconds": 0, + "eventsLateArrivalMaxDelayInSeconds": 5, "dataLocale": "en-US"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job create + Connection: + - keep-alive + Content-Length: + - '234' + Content-Type: + - application/json + ParameterSetName: + - -n -g --data-locale --output-error-policy --out-of-order-policy --order-max-delay + --arrival-max-delay + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job","name":"job","type":"Microsoft.StreamAnalytics/streamingjobs","location":"West + US","properties":{"sku":{"name":"Standard"},"jobId":"1ddf1fd9-7e25-42f9-a526-8b0cb776e407","provisioningState":"Succeeded","jobState":"Created","eventsOutOfOrderPolicy":"Drop","outputErrorPolicy":"Drop","eventsOutOfOrderMaxDelayInSeconds":0,"eventsLateArrivalMaxDelayInSeconds":5,"dataLocale":"en-US","createdDate":"2021-11-24T08:05:50.487Z","compatibilityLevel":"1.0","package":null,"jobStorageAccount":null,"contentStoragePolicy":"SystemAccount","inputs":[],"functions":[],"outputs":[],"jobType":"Cloud","subnetResourceId":null,"cluster":null}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '830' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:05:50 GMT + etag: + - 6d028af0-46d9-451d-b65a-5dc14f5d2e06 + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"type": "Scalar", "properties": {"inputs": [{"dataType": + "Any"}], "output": {"dataType": "Any"}, "binding": {"type": "Microsoft.StreamAnalytics/JavascriptUdf", + "properties": {"script": "function (a, b) { return a + b; }"}}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics function create + Connection: + - keep-alive + Content-Length: + - '241' + Content-Type: + - application/json + ParameterSetName: + - -n -g --job-name --properties + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/functions/function?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/functions/function","name":"function","type":"Microsoft.StreamAnalytics/streamingjobs/functions","properties":{"type":"Scalar","properties":{"inputs":[{"dataType":"Any","isConfigurationParameter":null}],"output":{"dataType":"Any"},"binding":{"type":"Microsoft.StreamAnalytics/JavascriptUdf","properties":{"script":"function + (a, b) { return a + b; }"}}}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:05:53 GMT + etag: + - 90eb255a-5cc2-4257-adb3-f0669d14c26e + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"type": "Scalar", "properties": {"inputs": [{"dataType": + "Any"}], "output": {"dataType": "Any"}, "binding": {"type": "Microsoft.StreamAnalytics/JavascriptUdf", + "properties": {"script": "function (a, b) { return a + b; }"}}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics function test + Connection: + - keep-alive + Content-Length: + - '241' + Content-Type: + - application/json + ParameterSetName: + - -n -g --job-name --properties + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/functions/function/test?api-version=2020-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-store, no-cache + content-length: + - '0' + date: + - Wed, 24 Nov 2021 08:05:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/functions/function/OperationResults/90fc283f-c207-415f-91df-9ced07909b05?api-version=2020-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics function test + Connection: + - keep-alive + ParameterSetName: + - -n -g --job-name --properties + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/functions/function/OperationResults/90fc283f-c207-415f-91df-9ced07909b05?api-version=2020-03-01 + response: + body: + string: '{"status":"TestFailed","error":{"code":"BadRequest","message":"Test + operation is not supported for function type: Microsoft.StreamAnalytics/JavascriptUdf","details":null}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '171' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics function list + Connection: + - keep-alive + ParameterSetName: + - -g --job-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/functions?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/functions/function","name":"function","type":"Microsoft.StreamAnalytics/streamingjobs/functions","properties":{"type":"Scalar","properties":{"inputs":[{"dataType":"Any","isConfigurationParameter":null}],"output":{"dataType":"Any"},"binding":{"type":"Microsoft.StreamAnalytics/JavascriptUdf","properties":{"script":"function + (a, b) { return a + b; }"}}},"etag":"90eb255a-5cc2-4257-adb3-f0669d14c26e"}}],"nextLink":null}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '632' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"type": "Scalar", "properties": {"inputs": [{"dataType": + "Any"}], "output": {"dataType": "Any"}, "binding": {"type": "Microsoft.StreamAnalytics/JavascriptUdf", + "properties": {"script": "function (a, b) { return a * b; }"}}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics function update + Connection: + - keep-alive + Content-Length: + - '241' + Content-Type: + - application/json + ParameterSetName: + - -n -g --job-name --properties + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/functions/function?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/functions/function","name":"function","type":"Microsoft.StreamAnalytics/streamingjobs/functions","properties":{"type":"Scalar","properties":{"inputs":[{"dataType":"Any","isConfigurationParameter":null}],"output":{"dataType":"Any"},"binding":{"type":"Microsoft.StreamAnalytics/JavascriptUdf","properties":{"script":"function + (a, b) { return a * b; }"}}}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:09 GMT + etag: + - 3c4737a1-acf5-4a5b-a05f-1d1fee58e878 + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics function show + Connection: + - keep-alive + ParameterSetName: + - -n -g --job-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/functions/function?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/functions/function","name":"function","type":"Microsoft.StreamAnalytics/streamingjobs/functions","properties":{"type":"Scalar","properties":{"inputs":[{"dataType":"Any","isConfigurationParameter":null}],"output":{"dataType":"Any"},"binding":{"type":"Microsoft.StreamAnalytics/JavascriptUdf","properties":{"script":"function + (a, b) { return a * b; }"}}}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:10 GMT + etag: + - 3c4737a1-acf5-4a5b-a05f-1d1fee58e878 + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --job-name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job?api-version=2020-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-store, no-cache + content-length: + - '0' + content-type: + - application/json + date: + - Wed, 24 Nov 2021 08:06:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_input_crud.yaml b/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_input_crud.yaml new file mode 100644 index 00000000000..3538f8cc737 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_input_crud.yaml @@ -0,0 +1,629 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job create + Connection: + - keep-alive + ParameterSetName: + - -n -g --data-locale --output-error-policy --out-of-order-policy --order-max-delay + --arrival-max-delay + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001","name":"cli_test_stream_analytics_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T08:05:38Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"sku": {"name": "Standard"}, "eventsOutOfOrderPolicy": + "Drop", "outputErrorPolicy": "Drop", "eventsOutOfOrderMaxDelayInSeconds": 0, + "eventsLateArrivalMaxDelayInSeconds": 5, "dataLocale": "en-US"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job create + Connection: + - keep-alive + Content-Length: + - '234' + Content-Type: + - application/json + ParameterSetName: + - -n -g --data-locale --output-error-policy --out-of-order-policy --order-max-delay + --arrival-max-delay + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job","name":"job","type":"Microsoft.StreamAnalytics/streamingjobs","location":"West + US","properties":{"sku":{"name":"Standard"},"jobId":"aacca7f8-9d35-4944-81ce-9458ae29d6f7","provisioningState":"Succeeded","jobState":"Created","eventsOutOfOrderPolicy":"Drop","outputErrorPolicy":"Drop","eventsOutOfOrderMaxDelayInSeconds":0,"eventsLateArrivalMaxDelayInSeconds":5,"dataLocale":"en-US","createdDate":"2021-11-24T08:06:14.09Z","compatibilityLevel":"1.0","package":null,"jobStorageAccount":null,"contentStoragePolicy":"SystemAccount","inputs":[],"functions":[],"outputs":[],"jobType":"Cloud","subnetResourceId":null,"cluster":null}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '829' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:15 GMT + etag: + - 4f29de37-35d2-42b9-a53d-0725dcfd8305 + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account keys list + Connection: + - keep-alive + ParameterSetName: + - --account-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2021-06-01 + response: + body: + string: '{"value":[{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/azext","name":"azext","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-15T07:20:26.3629732Z","key2":"2021-10-15T07:20:26.3629732Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T07:20:26.3629732Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T07:20:26.3629732Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T07:20:26.2379798Z","primaryEndpoints":{"dfs":"https://azext.dfs.core.windows.net/","web":"https://azext.z13.web.core.windows.net/","blob":"https://azext.blob.core.windows.net/","queue":"https://azext.queue.core.windows.net/","table":"https://azext.table.core.windows.net/","file":"https://azext.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azext-secondary.dfs.core.windows.net/","web":"https://azext-secondary.z13.web.core.windows.net/","blob":"https://azext-secondary.blob.core.windows.net/","queue":"https://azext-secondary.queue.core.windows.net/","table":"https://azext-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-beta/providers/Microsoft.Storage/storageAccounts/azureclibetarelease","name":"azureclibetarelease","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-11T10:32:24.8036511Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-11T10:32:24.8036511Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-06-11T10:32:24.7099044Z","primaryEndpoints":{"dfs":"https://azureclibetarelease.dfs.core.windows.net/","web":"https://azureclibetarelease.z13.web.core.windows.net/","blob":"https://azureclibetarelease.blob.core.windows.net/","queue":"https://azureclibetarelease.queue.core.windows.net/","table":"https://azureclibetarelease.table.core.windows.net/","file":"https://azureclibetarelease.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azureclibetarelease-secondary.dfs.core.windows.net/","web":"https://azureclibetarelease-secondary.z13.web.core.windows.net/","blob":"https://azureclibetarelease-secondary.blob.core.windows.net/","queue":"https://azureclibetarelease-secondary.queue.core.windows.net/","table":"https://azureclibetarelease-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestresult/providers/Microsoft.Storage/storageAccounts/clitestresultstac","name":"clitestresultstac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-15T06:20:52.6907255Z","primaryEndpoints":{"dfs":"https://clitestresultstac.dfs.core.windows.net/","web":"https://clitestresultstac.z13.web.core.windows.net/","blob":"https://clitestresultstac.blob.core.windows.net/","queue":"https://clitestresultstac.queue.core.windows.net/","table":"https://clitestresultstac.table.core.windows.net/","file":"https://clitestresultstac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clitestresultstac-secondary.dfs.core.windows.net/","web":"https://clitestresultstac-secondary.z13.web.core.windows.net/","blob":"https://clitestresultstac-secondary.blob.core.windows.net/","queue":"https://clitestresultstac-secondary.queue.core.windows.net/","table":"https://clitestresultstac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MSP_bez-rg_bez-diskpool_eastus/providers/Microsoft.Storage/storageAccounts/diag211012t072040rmjrhhi","name":"diag211012t072040rmjrhhi","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"MSP_BuildVersion":"20211008-2.master.5bd2896a","MSP_DPMajorVersion":"v2_DualVm","MSP_DPMinorVersion":"0","k":"v"},"properties":{"keyCreationTime":{"key1":"2021-10-12T07:20:43.6860609Z","key2":"2021-10-12T07:20:43.6860609Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-12T07:20:43.7016857Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-12T07:20:43.7016857Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-12T07:20:43.5611096Z","primaryEndpoints":{"dfs":"https://diag211012t072040rmjrhhi.dfs.core.windows.net/","web":"https://diag211012t072040rmjrhhi.z13.web.core.windows.net/","blob":"https://diag211012t072040rmjrhhi.blob.core.windows.net/","queue":"https://diag211012t072040rmjrhhi.queue.core.windows.net/","table":"https://diag211012t072040rmjrhhi.table.core.windows.net/","file":"https://diag211012t072040rmjrhhi.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryapptest/providers/Microsoft.Storage/storageAccounts/galleryappaccount","name":"galleryappaccount","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-20T06:11:14.2816483Z","key2":"2021-10-20T06:11:14.2816483Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T06:11:14.2972777Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T06:11:14.2972777Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-20T06:11:14.1723329Z","primaryEndpoints":{"dfs":"https://galleryappaccount.dfs.core.windows.net/","web":"https://galleryappaccount.z13.web.core.windows.net/","blob":"https://galleryappaccount.blob.core.windows.net/","queue":"https://galleryappaccount.queue.core.windows.net/","table":"https://galleryappaccount.table.core.windows.net/","file":"https://galleryappaccount.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://galleryappaccount-secondary.dfs.core.windows.net/","web":"https://galleryappaccount-secondary.z13.web.core.windows.net/","blob":"https://galleryappaccount-secondary.blob.core.windows.net/","queue":"https://galleryappaccount-secondary.queue.core.windows.net/","table":"https://galleryappaccount-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/galleryapptestaccount","name":"galleryapptestaccount","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-20T02:51:38.9977139Z","key2":"2021-10-20T02:51:38.9977139Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T02:51:38.9977139Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T02:51:38.9977139Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-20T02:51:38.8727156Z","primaryEndpoints":{"dfs":"https://galleryapptestaccount.dfs.core.windows.net/","web":"https://galleryapptestaccount.z13.web.core.windows.net/","blob":"https://galleryapptestaccount.blob.core.windows.net/","queue":"https://galleryapptestaccount.queue.core.windows.net/","table":"https://galleryapptestaccount.table.core.windows.net/","file":"https://galleryapptestaccount.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-dev/providers/Microsoft.Storage/storageAccounts/jlst1007","name":"jlst1007","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-14T03:14:38.1272477Z","key2":"2021-10-07T06:12:08.4901645Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"resourceAccessRules":[],"bypass":"None","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-07T06:12:08.4901645Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-07T06:12:08.4901645Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2021-10-07T06:12:08.3807870Z","primaryEndpoints":{"dfs":"https://jlst1007.dfs.core.windows.net/","web":"https://jlst1007.z13.web.core.windows.net/","blob":"https://jlst1007.blob.core.windows.net/","queue":"https://jlst1007.queue.core.windows.net/","table":"https://jlst1007.table.core.windows.net/","file":"https://jlst1007.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portal2cli/providers/Microsoft.Storage/storageAccounts/portal2clistorage","name":"portal2clistorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-14T07:23:08.7502552Z","primaryEndpoints":{"dfs":"https://portal2clistorage.dfs.core.windows.net/","web":"https://portal2clistorage.z13.web.core.windows.net/","blob":"https://portal2clistorage.blob.core.windows.net/","queue":"https://portal2clistorage.queue.core.windows.net/","table":"https://portal2clistorage.table.core.windows.net/","file":"https://portal2clistorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://portal2clistorage-secondary.dfs.core.windows.net/","web":"https://portal2clistorage-secondary.z13.web.core.windows.net/","blob":"https://portal2clistorage-secondary.blob.core.windows.net/","queue":"https://portal2clistorage-secondary.queue.core.windows.net/","table":"https://portal2clistorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/privatepackage","name":"privatepackage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-19T08:53:09.0238938Z","key2":"2021-10-19T08:53:09.0238938Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-19T08:53:09.0238938Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-19T08:53:09.0238938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-19T08:53:08.9301661Z","primaryEndpoints":{"dfs":"https://privatepackage.dfs.core.windows.net/","web":"https://privatepackage.z13.web.core.windows.net/","blob":"https://privatepackage.blob.core.windows.net/","queue":"https://privatepackage.queue.core.windows.net/","table":"https://privatepackage.table.core.windows.net/","file":"https://privatepackage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://privatepackage-secondary.dfs.core.windows.net/","web":"https://privatepackage-secondary.z13.web.core.windows.net/","blob":"https://privatepackage-secondary.blob.core.windows.net/","queue":"https://privatepackage-secondary.queue.core.windows.net/","table":"https://privatepackage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/queuetest/providers/Microsoft.Storage/storageAccounts/qteststac","name":"qteststac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-11-10T05:21:49.0582561Z","key2":"2021-11-10T05:21:49.0582561Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-10T05:21:49.0582561Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-10T05:21:49.0582561Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-10T05:21:48.9488735Z","primaryEndpoints":{"dfs":"https://qteststac.dfs.core.windows.net/","web":"https://qteststac.z13.web.core.windows.net/","blob":"https://qteststac.blob.core.windows.net/","queue":"https://qteststac.queue.core.windows.net/","table":"https://qteststac.table.core.windows.net/","file":"https://qteststac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qteststac-secondary.dfs.core.windows.net/","web":"https://qteststac-secondary.z13.web.core.windows.net/","blob":"https://qteststac-secondary.blob.core.windows.net/","queue":"https://qteststac-secondary.queue.core.windows.net/","table":"https://qteststac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-purview-msyyc/providers/Microsoft.Storage/storageAccounts/scaneastusxncccyt","name":"scaneastusxncccyt","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-23T01:56:19.6672075Z","key2":"2021-08-23T01:56:19.6672075Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T01:56:19.6672075Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T01:56:19.6672075Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-23T01:56:19.5422473Z","primaryEndpoints":{"dfs":"https://scaneastusxncccyt.dfs.core.windows.net/","web":"https://scaneastusxncccyt.z13.web.core.windows.net/","blob":"https://scaneastusxncccyt.blob.core.windows.net/","queue":"https://scaneastusxncccyt.queue.core.windows.net/","table":"https://scaneastusxncccyt.table.core.windows.net/","file":"https://scaneastusxncccyt.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bez-rg/providers/Microsoft.Storage/storageAccounts/storagecontainer4test","name":"storagecontainer4test","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-15T02:14:52.4005326Z","key2":"2021-11-15T02:14:52.4005326Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-15T02:14:52.4005326Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-15T02:14:52.4005326Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2021-11-15T02:14:52.2599198Z","primaryEndpoints":{"dfs":"https://storagecontainer4test.dfs.core.windows.net/","blob":"https://storagecontainer4test.blob.core.windows.net/","table":"https://storagecontainer4test.table.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testvlw","name":"testvlw","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-27T06:47:50.5497427Z","key2":"2021-10-27T06:47:50.5497427Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:47:50.5497427Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:47:50.5497427Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T06:47:50.4247606Z","primaryEndpoints":{"dfs":"https://testvlw.dfs.core.windows.net/","web":"https://testvlw.z13.web.core.windows.net/","blob":"https://testvlw.blob.core.windows.net/","queue":"https://testvlw.queue.core.windows.net/","table":"https://testvlw.table.core.windows.net/","file":"https://testvlw.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testvlw-secondary.dfs.core.windows.net/","web":"https://testvlw-secondary.z13.web.core.windows.net/","blob":"https://testvlw-secondary.blob.core.windows.net/","queue":"https://testvlw-secondary.queue.core.windows.net/","table":"https://testvlw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssa","name":"yssa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"key1":"value1"},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-08-16T08:39:21.3287573Z","key2":"2021-08-16T08:39:21.3287573Z"},"privateEndpointConnections":[],"hnsOnMigrationInProgress":false,"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-16T08:39:21.3287573Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-16T08:39:21.3287573Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-16T08:39:21.2193709Z","primaryEndpoints":{"dfs":"https://yssa.dfs.core.windows.net/","web":"https://yssa.z13.web.core.windows.net/","blob":"https://yssa.blob.core.windows.net/","queue":"https://yssa.queue.core.windows.net/","table":"https://yssa.table.core.windows.net/","file":"https://yssa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsa","name":"zhiyihuangsa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-10T05:47:01.2111871Z","key2":"2021-09-10T05:47:01.2111871Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T05:47:01.2111871Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T05:47:01.2111871Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-10T05:47:01.0861745Z","primaryEndpoints":{"dfs":"https://zhiyihuangsa.dfs.core.windows.net/","web":"https://zhiyihuangsa.z13.web.core.windows.net/","blob":"https://zhiyihuangsa.blob.core.windows.net/","queue":"https://zhiyihuangsa.queue.core.windows.net/","table":"https://zhiyihuangsa.table.core.windows.net/","file":"https://zhiyihuangsa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhiyihuangsa-secondary.dfs.core.windows.net/","web":"https://zhiyihuangsa-secondary.z13.web.core.windows.net/","blob":"https://zhiyihuangsa-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsa-secondary.queue.core.windows.net/","table":"https://zhiyihuangsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azextensionedge","name":"azextensionedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-22T08:51:57.6947156Z","primaryEndpoints":{"dfs":"https://azextensionedge.dfs.core.windows.net/","web":"https://azextensionedge.z22.web.core.windows.net/","blob":"https://azextensionedge.blob.core.windows.net/","queue":"https://azextensionedge.queue.core.windows.net/","table":"https://azextensionedge.table.core.windows.net/","file":"https://azextensionedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azextensionedge-secondary.dfs.core.windows.net/","web":"https://azextensionedge-secondary.z22.web.core.windows.net/","blob":"https://azextensionedge-secondary.blob.core.windows.net/","queue":"https://azextensionedge-secondary.queue.core.windows.net/","table":"https://azextensionedge-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azurecliedge","name":"azurecliedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-13T08:41:36.2389304Z","primaryEndpoints":{"dfs":"https://azurecliedge.dfs.core.windows.net/","web":"https://azurecliedge.z22.web.core.windows.net/","blob":"https://azurecliedge.blob.core.windows.net/","queue":"https://azurecliedge.queue.core.windows.net/","table":"https://azurecliedge.table.core.windows.net/","file":"https://azurecliedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhddmban3xow2tgyly5j6xaruoliqaj443p3brq46idi/providers/Microsoft.Storage/storageAccounts/clitest4ydp57ynxl5tcjktl","name":"clitest4ydp57ynxl5tcjktl","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-21T06:49:12.4084643Z","key2":"2021-04-21T06:49:12.4084643Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-21T06:49:12.4240887Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-21T06:49:12.4240887Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-21T06:49:12.3303684Z","primaryEndpoints":{"blob":"https://clitest4ydp57ynxl5tcjktl.blob.core.windows.net/","queue":"https://clitest4ydp57ynxl5tcjktl.queue.core.windows.net/","table":"https://clitest4ydp57ynxl5tcjktl.table.core.windows.net/","file":"https://clitest4ydp57ynxl5tcjktl.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-24T08:05:49.2469830Z","key2":"2021-11-24T08:05:49.2469830Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-24T08:05:49.2469830Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-24T08:05:49.2469830Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-11-24T08:05:49.1532219Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_i4lo4j2uzywhrqyjbav5p3s6da5rdmwxguoto32gga6ihvp56/providers/Microsoft.Storage/storageAccounts/clitestqu2eilgodmu2w5l4u","name":"clitestqu2eilgodmu2w5l4u","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-24T08:05:48.7782353Z","key2":"2021-11-24T08:05:48.7782353Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-24T08:05:48.7782353Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-24T08:05:48.7782353Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-11-24T08:05:48.6844729Z","primaryEndpoints":{"blob":"https://clitestqu2eilgodmu2w5l4u.blob.core.windows.net/","queue":"https://clitestqu2eilgodmu2w5l4u.queue.core.windows.net/","table":"https://clitestqu2eilgodmu2w5l4u.table.core.windows.net/","file":"https://clitestqu2eilgodmu2w5l4u.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhddqxkb6y7azmjc53fhkyr66se7po4i2ve5es2y46av/providers/Microsoft.Storage/storageAccounts/clitestuxrcexs7kgo3dqsiz","name":"clitestuxrcexs7kgo3dqsiz","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-21T07:08:35.7386114Z","key2":"2021-04-21T07:08:35.7386114Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-21T07:08:35.7386114Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-21T07:08:35.7386114Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-21T07:08:35.6448419Z","primaryEndpoints":{"blob":"https://clitestuxrcexs7kgo3dqsiz.blob.core.windows.net/","queue":"https://clitestuxrcexs7kgo3dqsiz.queue.core.windows.net/","table":"https://clitestuxrcexs7kgo3dqsiz.table.core.windows.net/","file":"https://clitestuxrcexs7kgo3dqsiz.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kairu-persist/providers/Microsoft.Storage/storageAccounts/kairu","name":"kairu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-13T07:35:18.9856251Z","primaryEndpoints":{"blob":"https://kairu.blob.core.windows.net/","queue":"https://kairu.queue.core.windows.net/","table":"https://kairu.table.core.windows.net/","file":"https://kairu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/pythonsdkmsyyc","name":"pythonsdkmsyyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-30T09:03:04.8209550Z","key2":"2021-06-30T09:03:04.8209550Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-30T09:03:04.8209550Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-30T09:03:04.8209550Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-30T09:03:04.7272348Z","primaryEndpoints":{"dfs":"https://pythonsdkmsyyc.dfs.core.windows.net/","web":"https://pythonsdkmsyyc.z22.web.core.windows.net/","blob":"https://pythonsdkmsyyc.blob.core.windows.net/","queue":"https://pythonsdkmsyyc.queue.core.windows.net/","table":"https://pythonsdkmsyyc.table.core.windows.net/","file":"https://pythonsdkmsyyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Storage/storageAccounts/storageyyc","name":"storageyyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-26T05:53:22.9974267Z","key2":"2021-09-26T05:53:22.9974267Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:53:22.9974267Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:53:22.9974267Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:53:22.9192578Z","primaryEndpoints":{"dfs":"https://storageyyc.dfs.core.windows.net/","web":"https://storageyyc.z22.web.core.windows.net/","blob":"https://storageyyc.blob.core.windows.net/","queue":"https://storageyyc.queue.core.windows.net/","table":"https://storageyyc.table.core.windows.net/","file":"https://storageyyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw","name":"testalw","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true,"immutabilityPolicy":{"immutabilityPeriodSinceCreationInDays":3,"state":"Disabled"}},"keyCreationTime":{"key1":"2021-10-27T06:27:50.3554138Z","key2":"2021-10-27T06:27:50.3554138Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:27:50.3554138Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:27:50.3554138Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T06:27:50.2616355Z","primaryEndpoints":{"dfs":"https://testalw.dfs.core.windows.net/","web":"https://testalw.z22.web.core.windows.net/","blob":"https://testalw.blob.core.windows.net/","queue":"https://testalw.queue.core.windows.net/","table":"https://testalw.table.core.windows.net/","file":"https://testalw.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testalw-secondary.dfs.core.windows.net/","web":"https://testalw-secondary.z22.web.core.windows.net/","blob":"https://testalw-secondary.blob.core.windows.net/","queue":"https://testalw-secondary.queue.core.windows.net/","table":"https://testalw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1027","name":"testalw1027","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true,"immutabilityPolicy":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}},"keyCreationTime":{"key1":"2021-10-27T07:34:49.7592232Z","key2":"2021-10-27T07:34:49.7592232Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T07:34:49.7592232Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T07:34:49.7592232Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T07:34:49.6810731Z","primaryEndpoints":{"dfs":"https://testalw1027.dfs.core.windows.net/","web":"https://testalw1027.z22.web.core.windows.net/","blob":"https://testalw1027.blob.core.windows.net/","queue":"https://testalw1027.queue.core.windows.net/","table":"https://testalw1027.table.core.windows.net/","file":"https://testalw1027.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testalw1027-secondary.dfs.core.windows.net/","web":"https://testalw1027-secondary.z22.web.core.windows.net/","blob":"https://testalw1027-secondary.blob.core.windows.net/","queue":"https://testalw1027-secondary.queue.core.windows.net/","table":"https://testalw1027-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1028","name":"testalw1028","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true,"immutabilityPolicy":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}},"keyCreationTime":{"key1":"2021-10-28T01:49:10.2414505Z","key2":"2021-10-28T01:49:10.2414505Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T01:49:10.2414505Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T01:49:10.2414505Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T01:49:10.1633042Z","primaryEndpoints":{"dfs":"https://testalw1028.dfs.core.windows.net/","web":"https://testalw1028.z22.web.core.windows.net/","blob":"https://testalw1028.blob.core.windows.net/","queue":"https://testalw1028.queue.core.windows.net/","table":"https://testalw1028.table.core.windows.net/","file":"https://testalw1028.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testalw1028-secondary.dfs.core.windows.net/","web":"https://testalw1028-secondary.z22.web.core.windows.net/","blob":"https://testalw1028-secondary.blob.core.windows.net/","queue":"https://testalw1028-secondary.queue.core.windows.net/","table":"https://testalw1028-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yshns","name":"yshns","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-15T02:10:28.4103368Z","key2":"2021-10-15T02:10:28.4103368Z"},"privateEndpointConnections":[],"hnsOnMigrationInProgress":false,"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T02:10:28.4103368Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T02:10:28.4103368Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T02:10:28.3165819Z","primaryEndpoints":{"dfs":"https://yshns.dfs.core.windows.net/","web":"https://yshns.z22.web.core.windows.net/","blob":"https://yshns.blob.core.windows.net/","queue":"https://yshns.queue.core.windows.net/","table":"https://yshns.table.core.windows.net/","file":"https://yshns.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yshns-secondary.dfs.core.windows.net/","web":"https://yshns-secondary.z22.web.core.windows.net/","blob":"https://yshns-secondary.blob.core.windows.net/","queue":"https://yshns-secondary.queue.core.windows.net/","table":"https://yshns-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/azuresdktest","name":"azuresdktest","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-08-12T06:32:07.0689199Z","primaryEndpoints":{"dfs":"https://azuresdktest.dfs.core.windows.net/","web":"https://azuresdktest.z7.web.core.windows.net/","blob":"https://azuresdktest.blob.core.windows.net/","queue":"https://azuresdktest.queue.core.windows.net/","table":"https://azuresdktest.table.core.windows.net/","file":"https://azuresdktest.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrglkh7zr7/providers/Microsoft.Storage/storageAccounts/clitest2f63bh43aix4wcnlh","name":"clitest2f63bh43aix4wcnlh","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.5541453Z","key2":"2021-04-22T08:17:38.5541453Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.5541453Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.5541453Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.4760163Z","primaryEndpoints":{"blob":"https://clitest2f63bh43aix4wcnlh.blob.core.windows.net/","queue":"https://clitest2f63bh43aix4wcnlh.queue.core.windows.net/","table":"https://clitest2f63bh43aix4wcnlh.table.core.windows.net/","file":"https://clitest2f63bh43aix4wcnlh.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh5duq2f6uh/providers/Microsoft.Storage/storageAccounts/clitest2vjedutxs37ymp4ni","name":"clitest2vjedutxs37ymp4ni","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.0424866Z","key2":"2021-04-23T07:13:21.0424866Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0581083Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0581083Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9643257Z","primaryEndpoints":{"blob":"https://clitest2vjedutxs37ymp4ni.blob.core.windows.net/","queue":"https://clitest2vjedutxs37ymp4ni.queue.core.windows.net/","table":"https://clitest2vjedutxs37ymp4ni.table.core.windows.net/","file":"https://clitest2vjedutxs37ymp4ni.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl6l3rg6atb/providers/Microsoft.Storage/storageAccounts/clitest4sjmiwke5nz3f67pu","name":"clitest4sjmiwke5nz3f67pu","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:02:15.3305055Z","key2":"2021-04-22T08:02:15.3305055Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.3305055Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.3305055Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.2523305Z","primaryEndpoints":{"blob":"https://clitest4sjmiwke5nz3f67pu.blob.core.windows.net/","queue":"https://clitest4sjmiwke5nz3f67pu.queue.core.windows.net/","table":"https://clitest4sjmiwke5nz3f67pu.table.core.windows.net/","file":"https://clitest4sjmiwke5nz3f67pu.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbbt37xr2le/providers/Microsoft.Storage/storageAccounts/clitest5frikrzhxwryrkfel","name":"clitest5frikrzhxwryrkfel","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:19:22.9620171Z","key2":"2021-04-22T08:19:22.9620171Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:19:22.9776721Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:19:22.9776721Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:19:22.8838883Z","primaryEndpoints":{"blob":"https://clitest5frikrzhxwryrkfel.blob.core.windows.net/","queue":"https://clitest5frikrzhxwryrkfel.queue.core.windows.net/","table":"https://clitest5frikrzhxwryrkfel.table.core.windows.net/","file":"https://clitest5frikrzhxwryrkfel.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrc4sjsrzt4/providers/Microsoft.Storage/storageAccounts/clitest63b5vtkhuf7auho6z","name":"clitest63b5vtkhuf7auho6z","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.3198561Z","key2":"2021-04-22T08:17:38.3198561Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.3198561Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.3198561Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.2416459Z","primaryEndpoints":{"blob":"https://clitest63b5vtkhuf7auho6z.blob.core.windows.net/","queue":"https://clitest63b5vtkhuf7auho6z.queue.core.windows.net/","table":"https://clitest63b5vtkhuf7auho6z.table.core.windows.net/","file":"https://clitest63b5vtkhuf7auho6z.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitest6jusqp4qvczw52pql","name":"clitest6jusqp4qvczw52pql","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:05:08.7847684Z","key2":"2021-04-22T08:05:08.7847684Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:05:08.8003328Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:05:08.8003328Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:05:08.7065579Z","primaryEndpoints":{"blob":"https://clitest6jusqp4qvczw52pql.blob.core.windows.net/","queue":"https://clitest6jusqp4qvczw52pql.queue.core.windows.net/","table":"https://clitest6jusqp4qvczw52pql.table.core.windows.net/","file":"https://clitest6jusqp4qvczw52pql.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitest6qixwlhm5see7ipqv","name":"clitest6qixwlhm5see7ipqv","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:42:54.6967487Z","key2":"2021-04-23T03:42:54.6967487Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.6967487Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.6967487Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.6186031Z","primaryEndpoints":{"blob":"https://clitest6qixwlhm5see7ipqv.blob.core.windows.net/","queue":"https://clitest6qixwlhm5see7ipqv.queue.core.windows.net/","table":"https://clitest6qixwlhm5see7ipqv.table.core.windows.net/","file":"https://clitest6qixwlhm5see7ipqv.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbbt37xr2le/providers/Microsoft.Storage/storageAccounts/clitest74vl6rwuxl5fbuklw","name":"clitest74vl6rwuxl5fbuklw","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.2260082Z","key2":"2021-04-22T08:17:38.2260082Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.2260082Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.2260082Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.1635154Z","primaryEndpoints":{"blob":"https://clitest74vl6rwuxl5fbuklw.blob.core.windows.net/","queue":"https://clitest74vl6rwuxl5fbuklw.queue.core.windows.net/","table":"https://clitest74vl6rwuxl5fbuklw.table.core.windows.net/","file":"https://clitest74vl6rwuxl5fbuklw.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitestaxzz2w4ay2wruyjs5","name":"clitestaxzz2w4ay2wruyjs5","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:02:15.6585801Z","key2":"2021-04-22T08:02:15.6585801Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.6585801Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.6585801Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.5804737Z","primaryEndpoints":{"blob":"https://clitestaxzz2w4ay2wruyjs5.blob.core.windows.net/","queue":"https://clitestaxzz2w4ay2wruyjs5.queue.core.windows.net/","table":"https://clitestaxzz2w4ay2wruyjs5.table.core.windows.net/","file":"https://clitestaxzz2w4ay2wruyjs5.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiudkrkxpl4/providers/Microsoft.Storage/storageAccounts/clitestbiegaggvgwivkqyyi","name":"clitestbiegaggvgwivkqyyi","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.8705764Z","key2":"2021-04-23T07:13:20.8705764Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.8861995Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.8861995Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.7925187Z","primaryEndpoints":{"blob":"https://clitestbiegaggvgwivkqyyi.blob.core.windows.net/","queue":"https://clitestbiegaggvgwivkqyyi.queue.core.windows.net/","table":"https://clitestbiegaggvgwivkqyyi.table.core.windows.net/","file":"https://clitestbiegaggvgwivkqyyi.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg46ia57tmnz/providers/Microsoft.Storage/storageAccounts/clitestdlxtp24ycnjl3jui2","name":"clitestdlxtp24ycnjl3jui2","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:42:54.3217696Z","key2":"2021-04-23T03:42:54.3217696Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.3217696Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.3217696Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.2436164Z","primaryEndpoints":{"blob":"https://clitestdlxtp24ycnjl3jui2.blob.core.windows.net/","queue":"https://clitestdlxtp24ycnjl3jui2.queue.core.windows.net/","table":"https://clitestdlxtp24ycnjl3jui2.table.core.windows.net/","file":"https://clitestdlxtp24ycnjl3jui2.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg23akmjlz2r/providers/Microsoft.Storage/storageAccounts/clitestdmmxq6bklh35yongi","name":"clitestdmmxq6bklh35yongi","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-05T19:49:04.6966074Z","key2":"2021-08-05T19:49:04.6966074Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.6966074Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.6966074Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-05T19:49:04.6185933Z","primaryEndpoints":{"blob":"https://clitestdmmxq6bklh35yongi.blob.core.windows.net/","queue":"https://clitestdmmxq6bklh35yongi.queue.core.windows.net/","table":"https://clitestdmmxq6bklh35yongi.table.core.windows.net/","file":"https://clitestdmmxq6bklh35yongi.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv3m577d7ho/providers/Microsoft.Storage/storageAccounts/clitestej2fvhoj3zogyp5e7","name":"clitestej2fvhoj3zogyp5e7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:42:54.7279926Z","key2":"2021-04-23T03:42:54.7279926Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.7279926Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.7279926Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.6342444Z","primaryEndpoints":{"blob":"https://clitestej2fvhoj3zogyp5e7.blob.core.windows.net/","queue":"https://clitestej2fvhoj3zogyp5e7.queue.core.windows.net/","table":"https://clitestej2fvhoj3zogyp5e7.table.core.windows.net/","file":"https://clitestej2fvhoj3zogyp5e7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp6ikwpcsq7/providers/Microsoft.Storage/storageAccounts/clitestggvkyebv5o55dhakj","name":"clitestggvkyebv5o55dhakj","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.2300019Z","key2":"2021-04-23T07:13:21.2300019Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.2456239Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.2456239Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:21.1518492Z","primaryEndpoints":{"blob":"https://clitestggvkyebv5o55dhakj.blob.core.windows.net/","queue":"https://clitestggvkyebv5o55dhakj.queue.core.windows.net/","table":"https://clitestggvkyebv5o55dhakj.table.core.windows.net/","file":"https://clitestggvkyebv5o55dhakj.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn6glpfa25c/providers/Microsoft.Storage/storageAccounts/clitestgt3fjzabc7taya5zo","name":"clitestgt3fjzabc7taya5zo","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.6675009Z","key2":"2021-04-23T07:13:20.6675009Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6831653Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6831653Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.5894204Z","primaryEndpoints":{"blob":"https://clitestgt3fjzabc7taya5zo.blob.core.windows.net/","queue":"https://clitestgt3fjzabc7taya5zo.queue.core.windows.net/","table":"https://clitestgt3fjzabc7taya5zo.table.core.windows.net/","file":"https://clitestgt3fjzabc7taya5zo.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgptzwacrnwa/providers/Microsoft.Storage/storageAccounts/clitestivtrt5tp624n63ast","name":"clitestivtrt5tp624n63ast","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.1166795Z","key2":"2021-04-22T08:17:38.1166795Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.1166795Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.1166795Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.0541529Z","primaryEndpoints":{"blob":"https://clitestivtrt5tp624n63ast.blob.core.windows.net/","queue":"https://clitestivtrt5tp624n63ast.queue.core.windows.net/","table":"https://clitestivtrt5tp624n63ast.table.core.windows.net/","file":"https://clitestivtrt5tp624n63ast.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdc25pvki6m/providers/Microsoft.Storage/storageAccounts/clitestkxu4ahsqaxv42cyyf","name":"clitestkxu4ahsqaxv42cyyf","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:02:15.7523496Z","key2":"2021-04-22T08:02:15.7523496Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.7523496Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.7523496Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.6742355Z","primaryEndpoints":{"blob":"https://clitestkxu4ahsqaxv42cyyf.blob.core.windows.net/","queue":"https://clitestkxu4ahsqaxv42cyyf.queue.core.windows.net/","table":"https://clitestkxu4ahsqaxv42cyyf.table.core.windows.net/","file":"https://clitestkxu4ahsqaxv42cyyf.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghkyqf7pb5/providers/Microsoft.Storage/storageAccounts/clitestpuea6vlqwxw6ihiws","name":"clitestpuea6vlqwxw6ihiws","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.0581083Z","key2":"2021-04-23T07:13:21.0581083Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0737014Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0737014Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9799581Z","primaryEndpoints":{"blob":"https://clitestpuea6vlqwxw6ihiws.blob.core.windows.net/","queue":"https://clitestpuea6vlqwxw6ihiws.queue.core.windows.net/","table":"https://clitestpuea6vlqwxw6ihiws.table.core.windows.net/","file":"https://clitestpuea6vlqwxw6ihiws.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbo2ure7pgp/providers/Microsoft.Storage/storageAccounts/clitestsnv7joygpazk23npj","name":"clitestsnv7joygpazk23npj","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-21T02:19:20.7474327Z","key2":"2021-05-21T02:19:20.7474327Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-21T02:19:20.7474327Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-21T02:19:20.7474327Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-21T02:19:20.6537267Z","primaryEndpoints":{"blob":"https://clitestsnv7joygpazk23npj.blob.core.windows.net/","queue":"https://clitestsnv7joygpazk23npj.queue.core.windows.net/","table":"https://clitestsnv7joygpazk23npj.table.core.windows.net/","file":"https://clitestsnv7joygpazk23npj.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.Storage/storageAccounts/clitestu3p7a7ib4n4y7gt4m","name":"clitestu3p7a7ib4n4y7gt4m","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T01:51:53.0189478Z","primaryEndpoints":{"blob":"https://clitestu3p7a7ib4n4y7gt4m.blob.core.windows.net/","queue":"https://clitestu3p7a7ib4n4y7gt4m.queue.core.windows.net/","table":"https://clitestu3p7a7ib4n4y7gt4m.table.core.windows.net/","file":"https://clitestu3p7a7ib4n4y7gt4m.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitestwqzjytdeun46rphfd","name":"clitestwqzjytdeun46rphfd","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:44:35.3668592Z","key2":"2021-04-23T03:44:35.3668592Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:44:35.3668592Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:44:35.3668592Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:44:35.2887580Z","primaryEndpoints":{"blob":"https://clitestwqzjytdeun46rphfd.blob.core.windows.net/","queue":"https://clitestwqzjytdeun46rphfd.queue.core.windows.net/","table":"https://clitestwqzjytdeun46rphfd.table.core.windows.net/","file":"https://clitestwqzjytdeun46rphfd.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgltfej7yr4u/providers/Microsoft.Storage/storageAccounts/clitestwvsg2uskf4i7vjfto","name":"clitestwvsg2uskf4i7vjfto","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-13T07:48:30.9247776Z","key2":"2021-05-13T07:48:30.9247776Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-13T07:48:30.9403727Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-13T07:48:30.9403727Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-13T07:48:30.8309682Z","primaryEndpoints":{"blob":"https://clitestwvsg2uskf4i7vjfto.blob.core.windows.net/","queue":"https://clitestwvsg2uskf4i7vjfto.queue.core.windows.net/","table":"https://clitestwvsg2uskf4i7vjfto.table.core.windows.net/","file":"https://clitestwvsg2uskf4i7vjfto.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzjznhcqaoh/providers/Microsoft.Storage/storageAccounts/clitestwznnmnfot33xjztmk","name":"clitestwznnmnfot33xjztmk","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.7299628Z","key2":"2021-04-23T07:13:20.7299628Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.7456181Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.7456181Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.6518776Z","primaryEndpoints":{"blob":"https://clitestwznnmnfot33xjztmk.blob.core.windows.net/","queue":"https://clitestwznnmnfot33xjztmk.queue.core.windows.net/","table":"https://clitestwznnmnfot33xjztmk.table.core.windows.net/","file":"https://clitestwznnmnfot33xjztmk.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4yns4yxisb/providers/Microsoft.Storage/storageAccounts/clitestyt6rxgad3kebqzh26","name":"clitestyt6rxgad3kebqzh26","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-05T19:49:04.8528440Z","key2":"2021-08-05T19:49:04.8528440Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.8528440Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.8528440Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-05T19:49:04.7747435Z","primaryEndpoints":{"blob":"https://clitestyt6rxgad3kebqzh26.blob.core.windows.net/","queue":"https://clitestyt6rxgad3kebqzh26.queue.core.windows.net/","table":"https://clitestyt6rxgad3kebqzh26.table.core.windows.net/","file":"https://clitestyt6rxgad3kebqzh26.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgovptfsocfg/providers/Microsoft.Storage/storageAccounts/clitestz72bbbbv2cio2pmom","name":"clitestz72bbbbv2cio2pmom","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.0112600Z","key2":"2021-04-23T07:13:21.0112600Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0268549Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0268549Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9330720Z","primaryEndpoints":{"blob":"https://clitestz72bbbbv2cio2pmom.blob.core.windows.net/","queue":"https://clitestz72bbbbv2cio2pmom.queue.core.windows.net/","table":"https://clitestz72bbbbv2cio2pmom.table.core.windows.net/","file":"https://clitestz72bbbbv2cio2pmom.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxp7uwuibs5/providers/Microsoft.Storage/storageAccounts/clitestzrwidkqplnw3jmz4z","name":"clitestzrwidkqplnw3jmz4z","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.6831653Z","key2":"2021-04-23T07:13:20.6831653Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6987004Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6987004Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.6049571Z","primaryEndpoints":{"blob":"https://clitestzrwidkqplnw3jmz4z.blob.core.windows.net/","queue":"https://clitestzrwidkqplnw3jmz4z.queue.core.windows.net/","table":"https://clitestzrwidkqplnw3jmz4z.table.core.windows.net/","file":"https://clitestzrwidkqplnw3jmz4z.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524","name":"cs1100320004dd89524","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-26T05:48:15.7013062Z","key2":"2021-03-26T05:48:15.7013062Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-26T05:48:15.6545059Z","primaryEndpoints":{"dfs":"https://cs1100320004dd89524.dfs.core.windows.net/","web":"https://cs1100320004dd89524.z23.web.core.windows.net/","blob":"https://cs1100320004dd89524.blob.core.windows.net/","queue":"https://cs1100320004dd89524.queue.core.windows.net/","table":"https://cs1100320004dd89524.table.core.windows.net/","file":"https://cs1100320004dd89524.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320005416c8c9","name":"cs1100320005416c8c9","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-07-09T05:58:20.1898753Z","key2":"2021-07-09T05:58:20.1898753Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-09T05:58:20.2055665Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-09T05:58:20.2055665Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-09T05:58:20.0961322Z","primaryEndpoints":{"dfs":"https://cs1100320005416c8c9.dfs.core.windows.net/","web":"https://cs1100320005416c8c9.z23.web.core.windows.net/","blob":"https://cs1100320005416c8c9.blob.core.windows.net/","queue":"https://cs1100320005416c8c9.queue.core.windows.net/","table":"https://cs1100320005416c8c9.table.core.windows.net/","file":"https://cs1100320005416c8c9.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320007b1ce356","name":"cs1100320007b1ce356","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-08-31T13:56:10.5497663Z","key2":"2021-08-31T13:56:10.5497663Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T13:56:10.5497663Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T13:56:10.5497663Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-31T13:56:10.4560533Z","primaryEndpoints":{"dfs":"https://cs1100320007b1ce356.dfs.core.windows.net/","web":"https://cs1100320007b1ce356.z23.web.core.windows.net/","blob":"https://cs1100320007b1ce356.blob.core.windows.net/","queue":"https://cs1100320007b1ce356.queue.core.windows.net/","table":"https://cs1100320007b1ce356.table.core.windows.net/","file":"https://cs1100320007b1ce356.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867","name":"cs1100320007de01867","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-25T03:24:00.9490326Z","primaryEndpoints":{"dfs":"https://cs1100320007de01867.dfs.core.windows.net/","web":"https://cs1100320007de01867.z23.web.core.windows.net/","blob":"https://cs1100320007de01867.blob.core.windows.net/","queue":"https://cs1100320007de01867.queue.core.windows.net/","table":"https://cs1100320007de01867.table.core.windows.net/","file":"https://cs1100320007de01867.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200087c55daf","name":"cs11003200087c55daf","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-07-21T00:43:24.0011691Z","key2":"2021-07-21T00:43:24.0011691Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-21T00:43:24.0011691Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-21T00:43:24.0011691Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-21T00:43:23.9230250Z","primaryEndpoints":{"dfs":"https://cs11003200087c55daf.dfs.core.windows.net/","web":"https://cs11003200087c55daf.z23.web.core.windows.net/","blob":"https://cs11003200087c55daf.blob.core.windows.net/","queue":"https://cs11003200087c55daf.queue.core.windows.net/","table":"https://cs11003200087c55daf.table.core.windows.net/","file":"https://cs11003200087c55daf.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc","name":"cs1100320008debd5bc","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-17T07:12:44.1132341Z","key2":"2021-03-17T07:12:44.1132341Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-17T07:12:44.0351358Z","primaryEndpoints":{"dfs":"https://cs1100320008debd5bc.dfs.core.windows.net/","web":"https://cs1100320008debd5bc.z23.web.core.windows.net/","blob":"https://cs1100320008debd5bc.blob.core.windows.net/","queue":"https://cs1100320008debd5bc.queue.core.windows.net/","table":"https://cs1100320008debd5bc.table.core.windows.net/","file":"https://cs1100320008debd5bc.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000919ef7c5","name":"cs110032000919ef7c5","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-10-09T02:02:43.1652268Z","key2":"2021-10-09T02:02:43.1652268Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-09T02:02:43.1652268Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-09T02:02:43.1652268Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-09T02:02:43.0714900Z","primaryEndpoints":{"dfs":"https://cs110032000919ef7c5.dfs.core.windows.net/","web":"https://cs110032000919ef7c5.z23.web.core.windows.net/","blob":"https://cs110032000919ef7c5.blob.core.windows.net/","queue":"https://cs110032000919ef7c5.queue.core.windows.net/","table":"https://cs110032000919ef7c5.table.core.windows.net/","file":"https://cs110032000919ef7c5.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771","name":"cs11003200092fe0771","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-23T07:08:51.1436686Z","key2":"2021-03-23T07:08:51.1436686Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-23T07:08:51.0811120Z","primaryEndpoints":{"dfs":"https://cs11003200092fe0771.dfs.core.windows.net/","web":"https://cs11003200092fe0771.z23.web.core.windows.net/","blob":"https://cs11003200092fe0771.blob.core.windows.net/","queue":"https://cs11003200092fe0771.queue.core.windows.net/","table":"https://cs11003200092fe0771.table.core.windows.net/","file":"https://cs11003200092fe0771.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c","name":"cs110032000b6f3c90c","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-05-06T05:28:23.2493456Z","key2":"2021-05-06T05:28:23.2493456Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-06T05:28:23.2493456Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-06T05:28:23.2493456Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-06T05:28:23.1868245Z","primaryEndpoints":{"dfs":"https://cs110032000b6f3c90c.dfs.core.windows.net/","web":"https://cs110032000b6f3c90c.z23.web.core.windows.net/","blob":"https://cs110032000b6f3c90c.blob.core.windows.net/","queue":"https://cs110032000b6f3c90c.queue.core.windows.net/","table":"https://cs110032000b6f3c90c.table.core.windows.net/","file":"https://cs110032000b6f3c90c.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71","name":"cs110032000c31bae71","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-04-15T06:39:35.4649198Z","key2":"2021-04-15T06:39:35.4649198Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-15T06:39:35.4180004Z","primaryEndpoints":{"dfs":"https://cs110032000c31bae71.dfs.core.windows.net/","web":"https://cs110032000c31bae71.z23.web.core.windows.net/","blob":"https://cs110032000c31bae71.blob.core.windows.net/","queue":"https://cs110032000c31bae71.queue.core.windows.net/","table":"https://cs110032000c31bae71.table.core.windows.net/","file":"https://cs110032000c31bae71.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00","name":"cs110032000ca62af00","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-22T02:06:18.4217109Z","primaryEndpoints":{"dfs":"https://cs110032000ca62af00.dfs.core.windows.net/","web":"https://cs110032000ca62af00.z23.web.core.windows.net/","blob":"https://cs110032000ca62af00.blob.core.windows.net/","queue":"https://cs110032000ca62af00.queue.core.windows.net/","table":"https://cs110032000ca62af00.table.core.windows.net/","file":"https://cs110032000ca62af00.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e1cb9f41","name":"cs110032000e1cb9f41","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-06-01T02:14:02.8985613Z","key2":"2021-06-01T02:14:02.8985613Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-01T02:14:02.9140912Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-01T02:14:02.9140912Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-01T02:14:02.8047066Z","primaryEndpoints":{"dfs":"https://cs110032000e1cb9f41.dfs.core.windows.net/","web":"https://cs110032000e1cb9f41.z23.web.core.windows.net/","blob":"https://cs110032000e1cb9f41.blob.core.windows.net/","queue":"https://cs110032000e1cb9f41.queue.core.windows.net/","table":"https://cs110032000e1cb9f41.table.core.windows.net/","file":"https://cs110032000e1cb9f41.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978","name":"cs110032000e3121978","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-04-25T07:26:43.6124221Z","key2":"2021-04-25T07:26:43.6124221Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-25T07:26:43.6124221Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-25T07:26:43.6124221Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-25T07:26:43.5343583Z","primaryEndpoints":{"dfs":"https://cs110032000e3121978.dfs.core.windows.net/","web":"https://cs110032000e3121978.z23.web.core.windows.net/","blob":"https://cs110032000e3121978.blob.core.windows.net/","queue":"https://cs110032000e3121978.queue.core.windows.net/","table":"https://cs110032000e3121978.table.core.windows.net/","file":"https://cs110032000e3121978.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000f3aac891","name":"cs110032000f3aac891","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-10-08T11:18:17.0122606Z","key2":"2021-10-08T11:18:17.0122606Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-08T11:18:17.0122606Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-08T11:18:17.0122606Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-08T11:18:16.9184856Z","primaryEndpoints":{"dfs":"https://cs110032000f3aac891.dfs.core.windows.net/","web":"https://cs110032000f3aac891.z23.web.core.windows.net/","blob":"https://cs110032000f3aac891.blob.core.windows.net/","queue":"https://cs110032000f3aac891.queue.core.windows.net/","table":"https://cs110032000f3aac891.table.core.windows.net/","file":"https://cs110032000f3aac891.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320010339dce7","name":"cs1100320010339dce7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-07-01T12:55:31.1442388Z","key2":"2021-07-01T12:55:31.1442388Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-01T12:55:31.1442388Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-01T12:55:31.1442388Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-01T12:55:31.0661165Z","primaryEndpoints":{"dfs":"https://cs1100320010339dce7.dfs.core.windows.net/","web":"https://cs1100320010339dce7.z23.web.core.windows.net/","blob":"https://cs1100320010339dce7.blob.core.windows.net/","queue":"https://cs1100320010339dce7.queue.core.windows.net/","table":"https://cs1100320010339dce7.table.core.windows.net/","file":"https://cs1100320010339dce7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47","name":"cs11003200127365c47","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-25T03:10:52.6098894Z","key2":"2021-03-25T03:10:52.6098894Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-25T03:10:52.5318146Z","primaryEndpoints":{"dfs":"https://cs11003200127365c47.dfs.core.windows.net/","web":"https://cs11003200127365c47.z23.web.core.windows.net/","blob":"https://cs11003200127365c47.blob.core.windows.net/","queue":"https://cs11003200127365c47.queue.core.windows.net/","table":"https://cs11003200127365c47.table.core.windows.net/","file":"https://cs11003200127365c47.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200129e38348","name":"cs11003200129e38348","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-05-24T06:59:16.3135399Z","key2":"2021-05-24T06:59:16.3135399Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-24T06:59:16.3135399Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-24T06:59:16.3135399Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-24T06:59:16.2198282Z","primaryEndpoints":{"dfs":"https://cs11003200129e38348.dfs.core.windows.net/","web":"https://cs11003200129e38348.z23.web.core.windows.net/","blob":"https://cs11003200129e38348.blob.core.windows.net/","queue":"https://cs11003200129e38348.queue.core.windows.net/","table":"https://cs11003200129e38348.table.core.windows.net/","file":"https://cs11003200129e38348.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452","name":"cs1100320012c36c452","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-04-09T08:04:25.5979407Z","key2":"2021-04-09T08:04:25.5979407Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-09T08:04:25.5198295Z","primaryEndpoints":{"dfs":"https://cs1100320012c36c452.dfs.core.windows.net/","web":"https://cs1100320012c36c452.z23.web.core.windows.net/","blob":"https://cs1100320012c36c452.blob.core.windows.net/","queue":"https://cs1100320012c36c452.queue.core.windows.net/","table":"https://cs1100320012c36c452.table.core.windows.net/","file":"https://cs1100320012c36c452.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001520b2764","name":"cs110032001520b2764","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-09-03T08:56:46.2009376Z","key2":"2021-09-03T08:56:46.2009376Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T08:56:46.2009376Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T08:56:46.2009376Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-03T08:56:46.1071770Z","primaryEndpoints":{"dfs":"https://cs110032001520b2764.dfs.core.windows.net/","web":"https://cs110032001520b2764.z23.web.core.windows.net/","blob":"https://cs110032001520b2764.blob.core.windows.net/","queue":"https://cs110032001520b2764.queue.core.windows.net/","table":"https://cs110032001520b2764.table.core.windows.net/","file":"https://cs110032001520b2764.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320016ac59291","name":"cs1100320016ac59291","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-08-10T06:12:25.7518719Z","key2":"2021-08-10T06:12:25.7518719Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-10T06:12:25.7518719Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-10T06:12:25.7518719Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-10T06:12:25.6581170Z","primaryEndpoints":{"dfs":"https://cs1100320016ac59291.dfs.core.windows.net/","web":"https://cs1100320016ac59291.z23.web.core.windows.net/","blob":"https://cs1100320016ac59291.blob.core.windows.net/","queue":"https://cs1100320016ac59291.queue.core.windows.net/","table":"https://cs1100320016ac59291.table.core.windows.net/","file":"https://cs1100320016ac59291.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320018cedbbd6","name":"cs1100320018cedbbd6","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-11-02T06:32:13.4022120Z","key2":"2021-11-02T06:32:13.4022120Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T06:32:13.4022120Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T06:32:13.4022120Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-02T06:32:13.3084745Z","primaryEndpoints":{"dfs":"https://cs1100320018cedbbd6.dfs.core.windows.net/","web":"https://cs1100320018cedbbd6.z23.web.core.windows.net/","blob":"https://cs1100320018cedbbd6.blob.core.windows.net/","queue":"https://cs1100320018cedbbd6.queue.core.windows.net/","table":"https://cs1100320018cedbbd6.table.core.windows.net/","file":"https://cs1100320018cedbbd6.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-dev/providers/Microsoft.Storage/storageAccounts/jl0927","name":"jl0927","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-09-27T09:22:48.0910647Z","key2":"2021-09-27T09:22:48.0910647Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T09:22:48.0910647Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T09:22:48.0910647Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-27T09:22:47.9973304Z","primaryEndpoints":{"dfs":"https://jl0927.dfs.core.windows.net/","web":"https://jl0927.z23.web.core.windows.net/","blob":"https://jl0927.blob.core.windows.net/","queue":"https://jl0927.queue.core.windows.net/","table":"https://jl0927.table.core.windows.net/","file":"https://jl0927.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-feng-purview/providers/Microsoft.Storage/storageAccounts/scansouthcentralusdteqbx","name":"scansouthcentralusdteqbx","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-23T06:00:34.2251607Z","key2":"2021-09-23T06:00:34.2251607Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-23T06:00:34.2251607Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-23T06:00:34.2251607Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-23T06:00:34.1313540Z","primaryEndpoints":{"dfs":"https://scansouthcentralusdteqbx.dfs.core.windows.net/","web":"https://scansouthcentralusdteqbx.z21.web.core.windows.net/","blob":"https://scansouthcentralusdteqbx.blob.core.windows.net/","queue":"https://scansouthcentralusdteqbx.queue.core.windows.net/","table":"https://scansouthcentralusdteqbx.table.core.windows.net/","file":"https://scansouthcentralusdteqbx.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/extmigrate","name":"extmigrate","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-16T08:26:10.5858998Z","primaryEndpoints":{"blob":"https://extmigrate.blob.core.windows.net/","queue":"https://extmigrate.queue.core.windows.net/","table":"https://extmigrate.table.core.windows.net/","file":"https://extmigrate.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://extmigrate-secondary.blob.core.windows.net/","queue":"https://extmigrate-secondary.queue.core.windows.net/","table":"https://extmigrate-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-14T06:47:20.1106748Z","key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"dfs":"https://fengsa.dfs.core.windows.net/","web":"https://fengsa.z19.web.core.windows.net/","blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengsa-secondary.dfs.core.windows.net/","web":"https://fengsa-secondary.z19.web.core.windows.net/","blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengtestsa","name":"fengtestsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T03:10:28.6266623Z","primaryEndpoints":{"dfs":"https://fengtestsa.dfs.core.windows.net/","web":"https://fengtestsa.z19.web.core.windows.net/","blob":"https://fengtestsa.blob.core.windows.net/","queue":"https://fengtestsa.queue.core.windows.net/","table":"https://fengtestsa.table.core.windows.net/","file":"https://fengtestsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengtestsa-secondary.dfs.core.windows.net/","web":"https://fengtestsa-secondary.z19.web.core.windows.net/","blob":"https://fengtestsa-secondary.blob.core.windows.net/","queue":"https://fengtestsa-secondary.queue.core.windows.net/","table":"https://fengtestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:07:42.1277444Z","primaryEndpoints":{"dfs":"https://storagesfrepro1.dfs.core.windows.net/","web":"https://storagesfrepro1.z19.web.core.windows.net/","blob":"https://storagesfrepro1.blob.core.windows.net/","queue":"https://storagesfrepro1.queue.core.windows.net/","table":"https://storagesfrepro1.table.core.windows.net/","file":"https://storagesfrepro1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro1-secondary.dfs.core.windows.net/","web":"https://storagesfrepro1-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro1-secondary.blob.core.windows.net/","queue":"https://storagesfrepro1-secondary.queue.core.windows.net/","table":"https://storagesfrepro1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro10","name":"storagesfrepro10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:00.7815921Z","primaryEndpoints":{"dfs":"https://storagesfrepro10.dfs.core.windows.net/","web":"https://storagesfrepro10.z19.web.core.windows.net/","blob":"https://storagesfrepro10.blob.core.windows.net/","queue":"https://storagesfrepro10.queue.core.windows.net/","table":"https://storagesfrepro10.table.core.windows.net/","file":"https://storagesfrepro10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro10-secondary.dfs.core.windows.net/","web":"https://storagesfrepro10-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro10-secondary.blob.core.windows.net/","queue":"https://storagesfrepro10-secondary.queue.core.windows.net/","table":"https://storagesfrepro10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro11","name":"storagesfrepro11","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:28.8609347Z","primaryEndpoints":{"dfs":"https://storagesfrepro11.dfs.core.windows.net/","web":"https://storagesfrepro11.z19.web.core.windows.net/","blob":"https://storagesfrepro11.blob.core.windows.net/","queue":"https://storagesfrepro11.queue.core.windows.net/","table":"https://storagesfrepro11.table.core.windows.net/","file":"https://storagesfrepro11.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro11-secondary.dfs.core.windows.net/","web":"https://storagesfrepro11-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro11-secondary.blob.core.windows.net/","queue":"https://storagesfrepro11-secondary.queue.core.windows.net/","table":"https://storagesfrepro11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro12","name":"storagesfrepro12","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:15:15.5848345Z","primaryEndpoints":{"dfs":"https://storagesfrepro12.dfs.core.windows.net/","web":"https://storagesfrepro12.z19.web.core.windows.net/","blob":"https://storagesfrepro12.blob.core.windows.net/","queue":"https://storagesfrepro12.queue.core.windows.net/","table":"https://storagesfrepro12.table.core.windows.net/","file":"https://storagesfrepro12.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro12-secondary.dfs.core.windows.net/","web":"https://storagesfrepro12-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro12-secondary.blob.core.windows.net/","queue":"https://storagesfrepro12-secondary.queue.core.windows.net/","table":"https://storagesfrepro12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro13","name":"storagesfrepro13","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:16:55.6671828Z","primaryEndpoints":{"dfs":"https://storagesfrepro13.dfs.core.windows.net/","web":"https://storagesfrepro13.z19.web.core.windows.net/","blob":"https://storagesfrepro13.blob.core.windows.net/","queue":"https://storagesfrepro13.queue.core.windows.net/","table":"https://storagesfrepro13.table.core.windows.net/","file":"https://storagesfrepro13.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro13-secondary.dfs.core.windows.net/","web":"https://storagesfrepro13-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro13-secondary.blob.core.windows.net/","queue":"https://storagesfrepro13-secondary.queue.core.windows.net/","table":"https://storagesfrepro13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro14","name":"storagesfrepro14","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:17:40.6880204Z","primaryEndpoints":{"dfs":"https://storagesfrepro14.dfs.core.windows.net/","web":"https://storagesfrepro14.z19.web.core.windows.net/","blob":"https://storagesfrepro14.blob.core.windows.net/","queue":"https://storagesfrepro14.queue.core.windows.net/","table":"https://storagesfrepro14.table.core.windows.net/","file":"https://storagesfrepro14.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro14-secondary.dfs.core.windows.net/","web":"https://storagesfrepro14-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro14-secondary.blob.core.windows.net/","queue":"https://storagesfrepro14-secondary.queue.core.windows.net/","table":"https://storagesfrepro14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro15","name":"storagesfrepro15","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:18:52.0718543Z","primaryEndpoints":{"dfs":"https://storagesfrepro15.dfs.core.windows.net/","web":"https://storagesfrepro15.z19.web.core.windows.net/","blob":"https://storagesfrepro15.blob.core.windows.net/","queue":"https://storagesfrepro15.queue.core.windows.net/","table":"https://storagesfrepro15.table.core.windows.net/","file":"https://storagesfrepro15.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro15-secondary.dfs.core.windows.net/","web":"https://storagesfrepro15-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro15-secondary.blob.core.windows.net/","queue":"https://storagesfrepro15-secondary.queue.core.windows.net/","table":"https://storagesfrepro15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro16","name":"storagesfrepro16","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:19:33.0770034Z","primaryEndpoints":{"dfs":"https://storagesfrepro16.dfs.core.windows.net/","web":"https://storagesfrepro16.z19.web.core.windows.net/","blob":"https://storagesfrepro16.blob.core.windows.net/","queue":"https://storagesfrepro16.queue.core.windows.net/","table":"https://storagesfrepro16.table.core.windows.net/","file":"https://storagesfrepro16.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro16-secondary.dfs.core.windows.net/","web":"https://storagesfrepro16-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro16-secondary.blob.core.windows.net/","queue":"https://storagesfrepro16-secondary.queue.core.windows.net/","table":"https://storagesfrepro16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro17","name":"storagesfrepro17","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:23.4771469Z","primaryEndpoints":{"dfs":"https://storagesfrepro17.dfs.core.windows.net/","web":"https://storagesfrepro17.z19.web.core.windows.net/","blob":"https://storagesfrepro17.blob.core.windows.net/","queue":"https://storagesfrepro17.queue.core.windows.net/","table":"https://storagesfrepro17.table.core.windows.net/","file":"https://storagesfrepro17.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro17-secondary.dfs.core.windows.net/","web":"https://storagesfrepro17-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro17-secondary.blob.core.windows.net/","queue":"https://storagesfrepro17-secondary.queue.core.windows.net/","table":"https://storagesfrepro17-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro18","name":"storagesfrepro18","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:53.7383176Z","primaryEndpoints":{"dfs":"https://storagesfrepro18.dfs.core.windows.net/","web":"https://storagesfrepro18.z19.web.core.windows.net/","blob":"https://storagesfrepro18.blob.core.windows.net/","queue":"https://storagesfrepro18.queue.core.windows.net/","table":"https://storagesfrepro18.table.core.windows.net/","file":"https://storagesfrepro18.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro18-secondary.dfs.core.windows.net/","web":"https://storagesfrepro18-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro18-secondary.blob.core.windows.net/","queue":"https://storagesfrepro18-secondary.queue.core.windows.net/","table":"https://storagesfrepro18-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro19","name":"storagesfrepro19","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:05:26.2556326Z","primaryEndpoints":{"dfs":"https://storagesfrepro19.dfs.core.windows.net/","web":"https://storagesfrepro19.z19.web.core.windows.net/","blob":"https://storagesfrepro19.blob.core.windows.net/","queue":"https://storagesfrepro19.queue.core.windows.net/","table":"https://storagesfrepro19.table.core.windows.net/","file":"https://storagesfrepro19.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro19-secondary.dfs.core.windows.net/","web":"https://storagesfrepro19-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro19-secondary.blob.core.windows.net/","queue":"https://storagesfrepro19-secondary.queue.core.windows.net/","table":"https://storagesfrepro19-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro2","name":"storagesfrepro2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:08:45.7717196Z","primaryEndpoints":{"dfs":"https://storagesfrepro2.dfs.core.windows.net/","web":"https://storagesfrepro2.z19.web.core.windows.net/","blob":"https://storagesfrepro2.blob.core.windows.net/","queue":"https://storagesfrepro2.queue.core.windows.net/","table":"https://storagesfrepro2.table.core.windows.net/","file":"https://storagesfrepro2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro2-secondary.dfs.core.windows.net/","web":"https://storagesfrepro2-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro2-secondary.blob.core.windows.net/","queue":"https://storagesfrepro2-secondary.queue.core.windows.net/","table":"https://storagesfrepro2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro20","name":"storagesfrepro20","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:07.3358422Z","primaryEndpoints":{"dfs":"https://storagesfrepro20.dfs.core.windows.net/","web":"https://storagesfrepro20.z19.web.core.windows.net/","blob":"https://storagesfrepro20.blob.core.windows.net/","queue":"https://storagesfrepro20.queue.core.windows.net/","table":"https://storagesfrepro20.table.core.windows.net/","file":"https://storagesfrepro20.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro20-secondary.dfs.core.windows.net/","web":"https://storagesfrepro20-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro20-secondary.blob.core.windows.net/","queue":"https://storagesfrepro20-secondary.queue.core.windows.net/","table":"https://storagesfrepro20-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro21","name":"storagesfrepro21","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:37.3686460Z","primaryEndpoints":{"dfs":"https://storagesfrepro21.dfs.core.windows.net/","web":"https://storagesfrepro21.z19.web.core.windows.net/","blob":"https://storagesfrepro21.blob.core.windows.net/","queue":"https://storagesfrepro21.queue.core.windows.net/","table":"https://storagesfrepro21.table.core.windows.net/","file":"https://storagesfrepro21.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro21-secondary.dfs.core.windows.net/","web":"https://storagesfrepro21-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro21-secondary.blob.core.windows.net/","queue":"https://storagesfrepro21-secondary.queue.core.windows.net/","table":"https://storagesfrepro21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro22","name":"storagesfrepro22","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:59.7201581Z","primaryEndpoints":{"dfs":"https://storagesfrepro22.dfs.core.windows.net/","web":"https://storagesfrepro22.z19.web.core.windows.net/","blob":"https://storagesfrepro22.blob.core.windows.net/","queue":"https://storagesfrepro22.queue.core.windows.net/","table":"https://storagesfrepro22.table.core.windows.net/","file":"https://storagesfrepro22.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro22-secondary.dfs.core.windows.net/","web":"https://storagesfrepro22-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro22-secondary.blob.core.windows.net/","queue":"https://storagesfrepro22-secondary.queue.core.windows.net/","table":"https://storagesfrepro22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro23","name":"storagesfrepro23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:29.0065050Z","primaryEndpoints":{"dfs":"https://storagesfrepro23.dfs.core.windows.net/","web":"https://storagesfrepro23.z19.web.core.windows.net/","blob":"https://storagesfrepro23.blob.core.windows.net/","queue":"https://storagesfrepro23.queue.core.windows.net/","table":"https://storagesfrepro23.table.core.windows.net/","file":"https://storagesfrepro23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro23-secondary.dfs.core.windows.net/","web":"https://storagesfrepro23-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro23-secondary.blob.core.windows.net/","queue":"https://storagesfrepro23-secondary.queue.core.windows.net/","table":"https://storagesfrepro23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro24","name":"storagesfrepro24","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:53.1565651Z","primaryEndpoints":{"dfs":"https://storagesfrepro24.dfs.core.windows.net/","web":"https://storagesfrepro24.z19.web.core.windows.net/","blob":"https://storagesfrepro24.blob.core.windows.net/","queue":"https://storagesfrepro24.queue.core.windows.net/","table":"https://storagesfrepro24.table.core.windows.net/","file":"https://storagesfrepro24.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro24-secondary.dfs.core.windows.net/","web":"https://storagesfrepro24-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro24-secondary.blob.core.windows.net/","queue":"https://storagesfrepro24-secondary.queue.core.windows.net/","table":"https://storagesfrepro24-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro25","name":"storagesfrepro25","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:08:18.6338258Z","primaryEndpoints":{"dfs":"https://storagesfrepro25.dfs.core.windows.net/","web":"https://storagesfrepro25.z19.web.core.windows.net/","blob":"https://storagesfrepro25.blob.core.windows.net/","queue":"https://storagesfrepro25.queue.core.windows.net/","table":"https://storagesfrepro25.table.core.windows.net/","file":"https://storagesfrepro25.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro25-secondary.dfs.core.windows.net/","web":"https://storagesfrepro25-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro25-secondary.blob.core.windows.net/","queue":"https://storagesfrepro25-secondary.queue.core.windows.net/","table":"https://storagesfrepro25-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro3","name":"storagesfrepro3","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:19.3510997Z","primaryEndpoints":{"dfs":"https://storagesfrepro3.dfs.core.windows.net/","web":"https://storagesfrepro3.z19.web.core.windows.net/","blob":"https://storagesfrepro3.blob.core.windows.net/","queue":"https://storagesfrepro3.queue.core.windows.net/","table":"https://storagesfrepro3.table.core.windows.net/","file":"https://storagesfrepro3.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro3-secondary.dfs.core.windows.net/","web":"https://storagesfrepro3-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro3-secondary.blob.core.windows.net/","queue":"https://storagesfrepro3-secondary.queue.core.windows.net/","table":"https://storagesfrepro3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro4","name":"storagesfrepro4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:54.8993063Z","primaryEndpoints":{"dfs":"https://storagesfrepro4.dfs.core.windows.net/","web":"https://storagesfrepro4.z19.web.core.windows.net/","blob":"https://storagesfrepro4.blob.core.windows.net/","queue":"https://storagesfrepro4.queue.core.windows.net/","table":"https://storagesfrepro4.table.core.windows.net/","file":"https://storagesfrepro4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro4-secondary.dfs.core.windows.net/","web":"https://storagesfrepro4-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro4-secondary.blob.core.windows.net/","queue":"https://storagesfrepro4-secondary.queue.core.windows.net/","table":"https://storagesfrepro4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro5","name":"storagesfrepro5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:10:48.0177273Z","primaryEndpoints":{"dfs":"https://storagesfrepro5.dfs.core.windows.net/","web":"https://storagesfrepro5.z19.web.core.windows.net/","blob":"https://storagesfrepro5.blob.core.windows.net/","queue":"https://storagesfrepro5.queue.core.windows.net/","table":"https://storagesfrepro5.table.core.windows.net/","file":"https://storagesfrepro5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro5-secondary.dfs.core.windows.net/","web":"https://storagesfrepro5-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro5-secondary.blob.core.windows.net/","queue":"https://storagesfrepro5-secondary.queue.core.windows.net/","table":"https://storagesfrepro5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro6","name":"storagesfrepro6","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:11:27.9331594Z","primaryEndpoints":{"dfs":"https://storagesfrepro6.dfs.core.windows.net/","web":"https://storagesfrepro6.z19.web.core.windows.net/","blob":"https://storagesfrepro6.blob.core.windows.net/","queue":"https://storagesfrepro6.queue.core.windows.net/","table":"https://storagesfrepro6.table.core.windows.net/","file":"https://storagesfrepro6.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro6-secondary.dfs.core.windows.net/","web":"https://storagesfrepro6-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro6-secondary.blob.core.windows.net/","queue":"https://storagesfrepro6-secondary.queue.core.windows.net/","table":"https://storagesfrepro6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro7","name":"storagesfrepro7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:08.6824637Z","primaryEndpoints":{"dfs":"https://storagesfrepro7.dfs.core.windows.net/","web":"https://storagesfrepro7.z19.web.core.windows.net/","blob":"https://storagesfrepro7.blob.core.windows.net/","queue":"https://storagesfrepro7.queue.core.windows.net/","table":"https://storagesfrepro7.table.core.windows.net/","file":"https://storagesfrepro7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro7-secondary.dfs.core.windows.net/","web":"https://storagesfrepro7-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro7-secondary.blob.core.windows.net/","queue":"https://storagesfrepro7-secondary.queue.core.windows.net/","table":"https://storagesfrepro7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro8","name":"storagesfrepro8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:39.4283923Z","primaryEndpoints":{"dfs":"https://storagesfrepro8.dfs.core.windows.net/","web":"https://storagesfrepro8.z19.web.core.windows.net/","blob":"https://storagesfrepro8.blob.core.windows.net/","queue":"https://storagesfrepro8.queue.core.windows.net/","table":"https://storagesfrepro8.table.core.windows.net/","file":"https://storagesfrepro8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro8-secondary.dfs.core.windows.net/","web":"https://storagesfrepro8-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro8-secondary.blob.core.windows.net/","queue":"https://storagesfrepro8-secondary.queue.core.windows.net/","table":"https://storagesfrepro8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro9","name":"storagesfrepro9","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:13:18.0691096Z","primaryEndpoints":{"dfs":"https://storagesfrepro9.dfs.core.windows.net/","web":"https://storagesfrepro9.z19.web.core.windows.net/","blob":"https://storagesfrepro9.blob.core.windows.net/","queue":"https://storagesfrepro9.queue.core.windows.net/","table":"https://storagesfrepro9.table.core.windows.net/","file":"https://storagesfrepro9.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro9-secondary.dfs.core.windows.net/","web":"https://storagesfrepro9-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro9-secondary.blob.core.windows.net/","queue":"https://storagesfrepro9-secondary.queue.core.windows.net/","table":"https://storagesfrepro9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_acctestRG-ibt-24_acctest-IBT-0710-2_4ebedb5a-e3b1-4675-aa4c-3c160fe70907/providers/Microsoft.Storage/storageAccounts/6ynst8ytvcms52eviy9cme3e","name":"6ynst8ytvcms52eviy9cme3e","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{"createdby":"azureimagebuilder","magicvalue":"0d819542a3774a2a8709401a7cd09eb8"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-07-10T11:43:29.9651518Z","primaryEndpoints":{"blob":"https://6ynst8ytvcms52eviy9cme3e.blob.core.windows.net/","queue":"https://6ynst8ytvcms52eviy9cme3e.queue.core.windows.net/","table":"https://6ynst8ytvcms52eviy9cme3e.table.core.windows.net/","file":"https://6ynst8ytvcms52eviy9cme3e.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-fypurview/providers/Microsoft.Storage/storageAccounts/scanwestus2ghwdfbf","name":"scanwestus2ghwdfbf","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-28T03:24:36.3735480Z","key2":"2021-09-28T03:24:36.3735480Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T03:24:36.3891539Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T03:24:36.3891539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T03:24:36.2797988Z","primaryEndpoints":{"dfs":"https://scanwestus2ghwdfbf.dfs.core.windows.net/","web":"https://scanwestus2ghwdfbf.z5.web.core.windows.net/","blob":"https://scanwestus2ghwdfbf.blob.core.windows.net/","queue":"https://scanwestus2ghwdfbf.queue.core.windows.net/","table":"https://scanwestus2ghwdfbf.table.core.windows.net/","file":"https://scanwestus2ghwdfbf.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-file-handle-rg/providers/Microsoft.Storage/storageAccounts/testfilehandlesa","name":"testfilehandlesa","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-11-02T02:22:24.9147695Z","key2":"2021-11-02T02:22:24.9147695Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T02:22:24.9147695Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T02:22:24.9147695Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-02T02:22:24.8209748Z","primaryEndpoints":{"dfs":"https://testfilehandlesa.dfs.core.windows.net/","web":"https://testfilehandlesa.z5.web.core.windows.net/","blob":"https://testfilehandlesa.blob.core.windows.net/","queue":"https://testfilehandlesa.queue.core.windows.net/","table":"https://testfilehandlesa.table.core.windows.net/","file":"https://testfilehandlesa.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testfilehandlesa-secondary.dfs.core.windows.net/","web":"https://testfilehandlesa-secondary.z5.web.core.windows.net/","blob":"https://testfilehandlesa-secondary.blob.core.windows.net/","queue":"https://testfilehandlesa-secondary.queue.core.windows.net/","table":"https://testfilehandlesa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test1124/providers/Microsoft.Storage/storageAccounts/ystestsa","name":"ystestsa","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-24T06:28:08.3026622Z","key2":"2021-11-24T06:28:08.3026622Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-24T06:28:08.3026622Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-24T06:28:08.3026622Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-24T06:28:08.2245068Z","primaryEndpoints":{"dfs":"https://ystestsa.dfs.core.windows.net/","web":"https://ystestsa.z5.web.core.windows.net/","blob":"https://ystestsa.blob.core.windows.net/","queue":"https://ystestsa.queue.core.windows.net/","table":"https://ystestsa.table.core.windows.net/","file":"https://ystestsa.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ystestsa-secondary.dfs.core.windows.net/","web":"https://ystestsa-secondary.z5.web.core.windows.net/","blob":"https://ystestsa-secondary.blob.core.windows.net/","queue":"https://ystestsa-secondary.queue.core.windows.net/","table":"https://ystestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk3dgx6acfu6yrvvipseyqbiwldnaohcywhpi65w7jys42kv5gjs2pljpz5o7bsoah/providers/Microsoft.Storage/storageAccounts/clitest3tllg4jqytzq27ejk","name":"clitest3tllg4jqytzq27ejk","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-01T19:36:53.0876733Z","key2":"2021-11-01T19:36:53.0876733Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:36:53.0876733Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:36:53.0876733Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-01T19:36:53.0095332Z","primaryEndpoints":{"dfs":"https://clitest3tllg4jqytzq27ejk.dfs.core.windows.net/","web":"https://clitest3tllg4jqytzq27ejk.z3.web.core.windows.net/","blob":"https://clitest3tllg4jqytzq27ejk.blob.core.windows.net/","queue":"https://clitest3tllg4jqytzq27ejk.queue.core.windows.net/","table":"https://clitest3tllg4jqytzq27ejk.table.core.windows.net/","file":"https://clitest3tllg4jqytzq27ejk.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgllxoprxwjouhrzsd4vrfhqkpy7ft2fwgtiub56wonkmtvsogumww7h36czdisqqxm/providers/Microsoft.Storage/storageAccounts/clitest4slutm4qduocdiy7o","name":"clitest4slutm4qduocdiy7o","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-18T23:17:57.1095774Z","key2":"2021-11-18T23:17:57.1095774Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:57.1252046Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:57.1252046Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:17:57.0471042Z","primaryEndpoints":{"dfs":"https://clitest4slutm4qduocdiy7o.dfs.core.windows.net/","web":"https://clitest4slutm4qduocdiy7o.z3.web.core.windows.net/","blob":"https://clitest4slutm4qduocdiy7o.blob.core.windows.net/","queue":"https://clitest4slutm4qduocdiy7o.queue.core.windows.net/","table":"https://clitest4slutm4qduocdiy7o.table.core.windows.net/","file":"https://clitest4slutm4qduocdiy7o.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkqf4cu665yaejvrvcvhfklfoep7xw2qhgk7q5qkmosqpcdypz6aubtjovadrpefmu/providers/Microsoft.Storage/storageAccounts/clitest4ypv67tuvo34umfu5","name":"clitest4ypv67tuvo34umfu5","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-27T08:37:30.4318022Z","key2":"2021-09-27T08:37:30.4318022Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:37:30.4474578Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:37:30.4474578Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-27T08:37:30.3536782Z","primaryEndpoints":{"dfs":"https://clitest4ypv67tuvo34umfu5.dfs.core.windows.net/","web":"https://clitest4ypv67tuvo34umfu5.z3.web.core.windows.net/","blob":"https://clitest4ypv67tuvo34umfu5.blob.core.windows.net/","queue":"https://clitest4ypv67tuvo34umfu5.queue.core.windows.net/","table":"https://clitest4ypv67tuvo34umfu5.table.core.windows.net/","file":"https://clitest4ypv67tuvo34umfu5.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc5jqtmvrtl3o7vxoerxlozv7wigv64wbsa22tgbgkmtqqgw5r6zycdvmm6lsu2hgb/providers/Microsoft.Storage/storageAccounts/clitest63bx2k5whs46xb72f","name":"clitest63bx2k5whs46xb72f","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-29T22:30:48.3706890Z","key2":"2021-10-29T22:30:48.3706890Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:30:48.3706890Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:30:48.3706890Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-29T22:30:48.2925495Z","primaryEndpoints":{"dfs":"https://clitest63bx2k5whs46xb72f.dfs.core.windows.net/","web":"https://clitest63bx2k5whs46xb72f.z3.web.core.windows.net/","blob":"https://clitest63bx2k5whs46xb72f.blob.core.windows.net/","queue":"https://clitest63bx2k5whs46xb72f.queue.core.windows.net/","table":"https://clitest63bx2k5whs46xb72f.table.core.windows.net/","file":"https://clitest63bx2k5whs46xb72f.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgefj7prpkkfwowsohocdcgln4afkr36ayb7msfujq5xbxbhzxt6nl6226d6wpfd2v6/providers/Microsoft.Storage/storageAccounts/clitestajyrm6yrgbf4c5i2s","name":"clitestajyrm6yrgbf4c5i2s","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T05:36:26.5400357Z","key2":"2021-09-26T05:36:26.5400357Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:36:26.5400357Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:36:26.5400357Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:36:26.4619069Z","primaryEndpoints":{"dfs":"https://clitestajyrm6yrgbf4c5i2s.dfs.core.windows.net/","web":"https://clitestajyrm6yrgbf4c5i2s.z3.web.core.windows.net/","blob":"https://clitestajyrm6yrgbf4c5i2s.blob.core.windows.net/","queue":"https://clitestajyrm6yrgbf4c5i2s.queue.core.windows.net/","table":"https://clitestajyrm6yrgbf4c5i2s.table.core.windows.net/","file":"https://clitestajyrm6yrgbf4c5i2s.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglbpqpmgzjcfuaz4feleprn435rcjy72gfcclbzlno6zqjglg4vmjeekjfwp5ftczi/providers/Microsoft.Storage/storageAccounts/clitestbokalj4mocrwa4z32","name":"clitestbokalj4mocrwa4z32","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-29T22:30:16.8234389Z","key2":"2021-10-29T22:30:16.8234389Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:30:16.8234389Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:30:16.8234389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-29T22:30:16.7453107Z","primaryEndpoints":{"dfs":"https://clitestbokalj4mocrwa4z32.dfs.core.windows.net/","web":"https://clitestbokalj4mocrwa4z32.z3.web.core.windows.net/","blob":"https://clitestbokalj4mocrwa4z32.blob.core.windows.net/","queue":"https://clitestbokalj4mocrwa4z32.queue.core.windows.net/","table":"https://clitestbokalj4mocrwa4z32.table.core.windows.net/","file":"https://clitestbokalj4mocrwa4z32.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqqra7wllrqyeeka3jdtjjyjmqgvnwxpupwgn7gbi2vj2uiakni76ibediq2ngx2zs/providers/Microsoft.Storage/storageAccounts/clitestem4u2qtb7reiye6va","name":"clitestem4u2qtb7reiye6va","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T23:37:04.0767855Z","key2":"2021-10-22T23:37:04.0767855Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:37:04.0767855Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:37:04.0767855Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:37:04.0142815Z","primaryEndpoints":{"dfs":"https://clitestem4u2qtb7reiye6va.dfs.core.windows.net/","web":"https://clitestem4u2qtb7reiye6va.z3.web.core.windows.net/","blob":"https://clitestem4u2qtb7reiye6va.blob.core.windows.net/","queue":"https://clitestem4u2qtb7reiye6va.queue.core.windows.net/","table":"https://clitestem4u2qtb7reiye6va.table.core.windows.net/","file":"https://clitestem4u2qtb7reiye6va.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgorreyhcvnrewddhwjxfruu4jhexosk74hcq54o7pql6oiom4dhg4p45g6pwbrngfk/providers/Microsoft.Storage/storageAccounts/clitesterbttochhqmi5enzk","name":"clitesterbttochhqmi5enzk","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T15:56:16.9200018Z","key2":"2021-10-22T15:56:16.9200018Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:16.9200018Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:16.9200018Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T15:56:16.8575242Z","primaryEndpoints":{"dfs":"https://clitesterbttochhqmi5enzk.dfs.core.windows.net/","web":"https://clitesterbttochhqmi5enzk.z3.web.core.windows.net/","blob":"https://clitesterbttochhqmi5enzk.blob.core.windows.net/","queue":"https://clitesterbttochhqmi5enzk.queue.core.windows.net/","table":"https://clitesterbttochhqmi5enzk.table.core.windows.net/","file":"https://clitesterbttochhqmi5enzk.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzqoxctlppqseceswyeq36zau2eysrbugzmir6vxpsztoivt4atecrszzqgzpvjalj/providers/Microsoft.Storage/storageAccounts/clitestexazhooj6txsp4bif","name":"clitestexazhooj6txsp4bif","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:28:55.7862697Z","key2":"2021-09-26T06:28:55.7862697Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:28:55.8018954Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:28:55.8018954Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:28:55.7237634Z","primaryEndpoints":{"dfs":"https://clitestexazhooj6txsp4bif.dfs.core.windows.net/","web":"https://clitestexazhooj6txsp4bif.z3.web.core.windows.net/","blob":"https://clitestexazhooj6txsp4bif.blob.core.windows.net/","queue":"https://clitestexazhooj6txsp4bif.queue.core.windows.net/","table":"https://clitestexazhooj6txsp4bif.table.core.windows.net/","file":"https://clitestexazhooj6txsp4bif.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmwn5njjtr3wry7duhuccs6h5oxxiw2rhcfdlewmqw56fo3qehaoqulk5ktmyahglf/providers/Microsoft.Storage/storageAccounts/clitestfnjxc5idgmeluoxtm","name":"clitestfnjxc5idgmeluoxtm","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-27T08:40:43.7468930Z","key2":"2021-09-27T08:40:43.7468930Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:40:43.7625432Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:40:43.7625432Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-27T08:40:43.6688132Z","primaryEndpoints":{"dfs":"https://clitestfnjxc5idgmeluoxtm.dfs.core.windows.net/","web":"https://clitestfnjxc5idgmeluoxtm.z3.web.core.windows.net/","blob":"https://clitestfnjxc5idgmeluoxtm.blob.core.windows.net/","queue":"https://clitestfnjxc5idgmeluoxtm.queue.core.windows.net/","table":"https://clitestfnjxc5idgmeluoxtm.table.core.windows.net/","file":"https://clitestfnjxc5idgmeluoxtm.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4bazn4hnlcnsaasp63k6nvrlmtkyo7dqcjkyopsehticnihafl57ntorbz7ixqwos/providers/Microsoft.Storage/storageAccounts/clitestgnremsz2uxbgdy6uo","name":"clitestgnremsz2uxbgdy6uo","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-05T08:33:08.0149596Z","key2":"2021-11-05T08:33:08.0149596Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:33:08.0305829Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:33:08.0305829Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-05T08:33:07.9368092Z","primaryEndpoints":{"dfs":"https://clitestgnremsz2uxbgdy6uo.dfs.core.windows.net/","web":"https://clitestgnremsz2uxbgdy6uo.z3.web.core.windows.net/","blob":"https://clitestgnremsz2uxbgdy6uo.blob.core.windows.net/","queue":"https://clitestgnremsz2uxbgdy6uo.queue.core.windows.net/","table":"https://clitestgnremsz2uxbgdy6uo.table.core.windows.net/","file":"https://clitestgnremsz2uxbgdy6uo.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn2hrmou3vupc7hxv534r6ythn2qz6v45svfb666d75bigid4v562yvcrcu3zvopvd/providers/Microsoft.Storage/storageAccounts/clitesthn6lf7bmqfq4lihgr","name":"clitesthn6lf7bmqfq4lihgr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T23:36:25.4655609Z","key2":"2021-10-22T23:36:25.4655609Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:36:25.4655609Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:36:25.4655609Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:36:25.4186532Z","primaryEndpoints":{"dfs":"https://clitesthn6lf7bmqfq4lihgr.dfs.core.windows.net/","web":"https://clitesthn6lf7bmqfq4lihgr.z3.web.core.windows.net/","blob":"https://clitesthn6lf7bmqfq4lihgr.blob.core.windows.net/","queue":"https://clitesthn6lf7bmqfq4lihgr.queue.core.windows.net/","table":"https://clitesthn6lf7bmqfq4lihgr.table.core.windows.net/","file":"https://clitesthn6lf7bmqfq4lihgr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyyky3pdv7kfgca2zw6tt2uuyakcfh4mhe5jv652ywkhjplo2g3hkpg5l5vlzmscx/providers/Microsoft.Storage/storageAccounts/clitestlrazz3fr4p7ma2aqu","name":"clitestlrazz3fr4p7ma2aqu","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:26:22.0140081Z","key2":"2021-09-26T06:26:22.0140081Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:26:22.0140081Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:26:22.0140081Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:26:21.9514992Z","primaryEndpoints":{"dfs":"https://clitestlrazz3fr4p7ma2aqu.dfs.core.windows.net/","web":"https://clitestlrazz3fr4p7ma2aqu.z3.web.core.windows.net/","blob":"https://clitestlrazz3fr4p7ma2aqu.blob.core.windows.net/","queue":"https://clitestlrazz3fr4p7ma2aqu.queue.core.windows.net/","table":"https://clitestlrazz3fr4p7ma2aqu.table.core.windows.net/","file":"https://clitestlrazz3fr4p7ma2aqu.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgibc6w6pt2cu4nkppzr7rhgsrli5jhaumxaexydrvzpemxhixixcac5un3lkhugutn/providers/Microsoft.Storage/storageAccounts/clitestm3o7urdechvnvggxa","name":"clitestm3o7urdechvnvggxa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-04T22:04:25.7055241Z","key2":"2021-11-04T22:04:25.7055241Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:04:25.7055241Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:04:25.7055241Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-04T22:04:25.6274146Z","primaryEndpoints":{"dfs":"https://clitestm3o7urdechvnvggxa.dfs.core.windows.net/","web":"https://clitestm3o7urdechvnvggxa.z3.web.core.windows.net/","blob":"https://clitestm3o7urdechvnvggxa.blob.core.windows.net/","queue":"https://clitestm3o7urdechvnvggxa.queue.core.windows.net/","table":"https://clitestm3o7urdechvnvggxa.table.core.windows.net/","file":"https://clitestm3o7urdechvnvggxa.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgczn4zs5qjkhszwlrkz6fnvc3mysoovo6vsvis53flbw3gcbfqpwmfuwtqzw5pewbu/providers/Microsoft.Storage/storageAccounts/clitestmm22sas2jwf6b2ers","name":"clitestmm22sas2jwf6b2ers","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-04T22:05:15.5981807Z","key2":"2021-11-04T22:05:15.5981807Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:05:15.5981807Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:05:15.5981807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-04T22:05:15.5200800Z","primaryEndpoints":{"dfs":"https://clitestmm22sas2jwf6b2ers.dfs.core.windows.net/","web":"https://clitestmm22sas2jwf6b2ers.z3.web.core.windows.net/","blob":"https://clitestmm22sas2jwf6b2ers.blob.core.windows.net/","queue":"https://clitestmm22sas2jwf6b2ers.queue.core.windows.net/","table":"https://clitestmm22sas2jwf6b2ers.table.core.windows.net/","file":"https://clitestmm22sas2jwf6b2ers.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgihpamtetsioehvqhcaizytambbwjq2a4so6iz734ejm7u6prta4pxwcc2gyhhaxqf/providers/Microsoft.Storage/storageAccounts/clitestmyjybsngqmztsnzyt","name":"clitestmyjybsngqmztsnzyt","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T05:30:18.6096170Z","key2":"2021-09-26T05:30:18.6096170Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:30:18.6096170Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:30:18.6096170Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:30:18.5314899Z","primaryEndpoints":{"dfs":"https://clitestmyjybsngqmztsnzyt.dfs.core.windows.net/","web":"https://clitestmyjybsngqmztsnzyt.z3.web.core.windows.net/","blob":"https://clitestmyjybsngqmztsnzyt.blob.core.windows.net/","queue":"https://clitestmyjybsngqmztsnzyt.queue.core.windows.net/","table":"https://clitestmyjybsngqmztsnzyt.table.core.windows.net/","file":"https://clitestmyjybsngqmztsnzyt.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbksbwoy7iftsvok2gu7el6jq32a53l75d3amp4qff74lwqen6nypkv2vsy5qpvdx6/providers/Microsoft.Storage/storageAccounts/clitestnx46jh36sfhiun4zr","name":"clitestnx46jh36sfhiun4zr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:46:06.0337216Z","key2":"2021-09-26T06:46:06.0337216Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:46:06.0337216Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:46:06.0337216Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:46:05.9555808Z","primaryEndpoints":{"dfs":"https://clitestnx46jh36sfhiun4zr.dfs.core.windows.net/","web":"https://clitestnx46jh36sfhiun4zr.z3.web.core.windows.net/","blob":"https://clitestnx46jh36sfhiun4zr.blob.core.windows.net/","queue":"https://clitestnx46jh36sfhiun4zr.queue.core.windows.net/","table":"https://clitestnx46jh36sfhiun4zr.table.core.windows.net/","file":"https://clitestnx46jh36sfhiun4zr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg33fo62u6qo54y4oh6ubodzg5drtpqjvfeaxkl7eqcioetepluk6x6j2y26gadsnlb/providers/Microsoft.Storage/storageAccounts/clitestnyptbvai7mjrv4d36","name":"clitestnyptbvai7mjrv4d36","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:38:37.8872316Z","key2":"2021-09-26T06:38:37.8872316Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:38:37.8872316Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:38:37.8872316Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:38:37.8247073Z","primaryEndpoints":{"dfs":"https://clitestnyptbvai7mjrv4d36.dfs.core.windows.net/","web":"https://clitestnyptbvai7mjrv4d36.z3.web.core.windows.net/","blob":"https://clitestnyptbvai7mjrv4d36.blob.core.windows.net/","queue":"https://clitestnyptbvai7mjrv4d36.queue.core.windows.net/","table":"https://clitestnyptbvai7mjrv4d36.table.core.windows.net/","file":"https://clitestnyptbvai7mjrv4d36.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz5kpio6nxhll6ltpr5lf3p24xooufmmwyrk7tly3gjfj5vufntfmsdkla7o54pioa/providers/Microsoft.Storage/storageAccounts/clitestu5zychblljh7h4sbq","name":"clitestu5zychblljh7h4sbq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-01T19:37:27.6814745Z","key2":"2021-11-01T19:37:27.6814745Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:37:27.6814745Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:37:27.6814745Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-01T19:37:27.6033732Z","primaryEndpoints":{"dfs":"https://clitestu5zychblljh7h4sbq.dfs.core.windows.net/","web":"https://clitestu5zychblljh7h4sbq.z3.web.core.windows.net/","blob":"https://clitestu5zychblljh7h4sbq.blob.core.windows.net/","queue":"https://clitestu5zychblljh7h4sbq.queue.core.windows.net/","table":"https://clitestu5zychblljh7h4sbq.table.core.windows.net/","file":"https://clitestu5zychblljh7h4sbq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2r4n3w2kq5eqbdmscwkh6ss3jxr6cjmu237f6ei6q5e6svdpfhq6y4ogqfkkyhof/providers/Microsoft.Storage/storageAccounts/clitestue6lbut2twc5n7mpo","name":"clitestue6lbut2twc5n7mpo","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-11T22:08:44.1147576Z","key2":"2021-11-11T22:08:44.1147576Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:08:44.1303296Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:08:44.1303296Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:08:44.0366031Z","primaryEndpoints":{"dfs":"https://clitestue6lbut2twc5n7mpo.dfs.core.windows.net/","web":"https://clitestue6lbut2twc5n7mpo.z3.web.core.windows.net/","blob":"https://clitestue6lbut2twc5n7mpo.blob.core.windows.net/","queue":"https://clitestue6lbut2twc5n7mpo.queue.core.windows.net/","table":"https://clitestue6lbut2twc5n7mpo.table.core.windows.net/","file":"https://clitestue6lbut2twc5n7mpo.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkkh2eiycmh36lbpz6ceh7v2igu55ldcqfqf2gkkkaw5z2wtn25oaqo34wakzal3em/providers/Microsoft.Storage/storageAccounts/clitesturqfulbf5h2yjtmxd","name":"clitesturqfulbf5h2yjtmxd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-18T23:18:54.1881027Z","key2":"2021-11-18T23:18:54.1881027Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:18:54.1881027Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:18:54.1881027Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:18:54.1099855Z","primaryEndpoints":{"dfs":"https://clitesturqfulbf5h2yjtmxd.dfs.core.windows.net/","web":"https://clitesturqfulbf5h2yjtmxd.z3.web.core.windows.net/","blob":"https://clitesturqfulbf5h2yjtmxd.blob.core.windows.net/","queue":"https://clitesturqfulbf5h2yjtmxd.queue.core.windows.net/","table":"https://clitesturqfulbf5h2yjtmxd.table.core.windows.net/","file":"https://clitesturqfulbf5h2yjtmxd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmqfhye7lux2fp7jf2f63xt6n57sdnfoszmxotiwxyiy7vx7qzk45pp3nactebmfqj/providers/Microsoft.Storage/storageAccounts/clitestvfxf46hn27hcogcfa","name":"clitestvfxf46hn27hcogcfa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-05T08:33:04.9679670Z","key2":"2021-11-05T08:33:04.9679670Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:33:04.9835769Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:33:04.9835769Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-05T08:33:04.8898629Z","primaryEndpoints":{"dfs":"https://clitestvfxf46hn27hcogcfa.dfs.core.windows.net/","web":"https://clitestvfxf46hn27hcogcfa.z3.web.core.windows.net/","blob":"https://clitestvfxf46hn27hcogcfa.blob.core.windows.net/","queue":"https://clitestvfxf46hn27hcogcfa.queue.core.windows.net/","table":"https://clitestvfxf46hn27hcogcfa.table.core.windows.net/","file":"https://clitestvfxf46hn27hcogcfa.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglqgc5xdku5ojvlcdmxmxwx4otzrvmtvwkizs74vqyuovzqgtxbocao3wxuey3ckyg/providers/Microsoft.Storage/storageAccounts/clitestvkt5uhqkknoz4z2ps","name":"clitestvkt5uhqkknoz4z2ps","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T15:56:12.2012021Z","key2":"2021-10-22T15:56:12.2012021Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:12.2012021Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:12.2012021Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T15:56:12.1387094Z","primaryEndpoints":{"dfs":"https://clitestvkt5uhqkknoz4z2ps.dfs.core.windows.net/","web":"https://clitestvkt5uhqkknoz4z2ps.z3.web.core.windows.net/","blob":"https://clitestvkt5uhqkknoz4z2ps.blob.core.windows.net/","queue":"https://clitestvkt5uhqkknoz4z2ps.queue.core.windows.net/","table":"https://clitestvkt5uhqkknoz4z2ps.table.core.windows.net/","file":"https://clitestvkt5uhqkknoz4z2ps.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk76ijui24h7q2foey6svr7yhnhb6tcuioxiiic7pto4b7aye52xazbtphpkn4igdg/providers/Microsoft.Storage/storageAccounts/clitestwii2xus2tgji433nh","name":"clitestwii2xus2tgji433nh","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-11T22:07:45.0812213Z","key2":"2021-11-11T22:07:45.0812213Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:45.0812213Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:45.0812213Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:07:45.0031142Z","primaryEndpoints":{"dfs":"https://clitestwii2xus2tgji433nh.dfs.core.windows.net/","web":"https://clitestwii2xus2tgji433nh.z3.web.core.windows.net/","blob":"https://clitestwii2xus2tgji433nh.blob.core.windows.net/","queue":"https://clitestwii2xus2tgji433nh.queue.core.windows.net/","table":"https://clitestwii2xus2tgji433nh.table.core.windows.net/","file":"https://clitestwii2xus2tgji433nh.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgug2zs2ll3cqv3r5gw6yql5lexqi72ktubc4ozqz6g62yykofs5s6dzfutvlzwdfzd/providers/Microsoft.Storage/storageAccounts/clitestyrqe5rlxui5rawuhk","name":"clitestyrqe5rlxui5rawuhk","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T05:51:29.8791272Z","key2":"2021-09-26T05:51:29.8791272Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:51:29.8791272Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:51:29.8791272Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:51:29.8009981Z","primaryEndpoints":{"dfs":"https://clitestyrqe5rlxui5rawuhk.dfs.core.windows.net/","web":"https://clitestyrqe5rlxui5rawuhk.z3.web.core.windows.net/","blob":"https://clitestyrqe5rlxui5rawuhk.blob.core.windows.net/","queue":"https://clitestyrqe5rlxui5rawuhk.queue.core.windows.net/","table":"https://clitestyrqe5rlxui5rawuhk.table.core.windows.net/","file":"https://clitestyrqe5rlxui5rawuhk.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap-east/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuapeast","name":"zhiyihuangsaeuapeast","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-24T06:56:08.6084736Z","key2":"2021-09-24T06:56:08.6084736Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T06:56:08.6084736Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T06:56:08.6084736Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-24T06:56:08.5303617Z","primaryEndpoints":{"dfs":"https://zhiyihuangsaeuapeast.dfs.core.windows.net/","web":"https://zhiyihuangsaeuapeast.z3.web.core.windows.net/","blob":"https://zhiyihuangsaeuapeast.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast.table.core.windows.net/","file":"https://zhiyihuangsaeuapeast.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhiyihuangsaeuapeast-secondary.dfs.core.windows.net/","web":"https://zhiyihuangsaeuapeast-secondary.z3.web.core.windows.net/","blob":"https://zhiyihuangsaeuapeast-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhtest","name":"zuhtest","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"identity":{"type":"ManagedServiceIdentity","userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zuhid"},"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-14T07:13:45.1503826Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-14T07:13:45.1503826Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Creating","creationTime":"2021-01-14T07:13:45.0603798Z","primaryEndpoints":{"dfs":"https://zuhtest.dfs.core.windows.net/","web":"https://zuhtest.z3.web.core.windows.net/","blob":"https://zuhtest.blob.core.windows.net/","queue":"https://zuhtest.queue.core.windows.net/","table":"https://zuhtest.table.core.windows.net/","file":"https://zuhtest.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhtest-secondary.dfs.core.windows.net/","web":"https://zuhtest-secondary.z3.web.core.windows.net/","blob":"https://zuhtest-secondary.blob.core.windows.net/","queue":"https://zuhtest-secondary.queue.core.windows.net/","table":"https://zuhtest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest47xrljy3nijo3qd5vzsdilpqy5gmhc6vhrxdt4iznh6uaopskftgp4scam2w7drpot4l/providers/Microsoft.Storage/storageAccounts/clitest23zhehg2ug7pzcmmt","name":"clitest23zhehg2ug7pzcmmt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T23:52:09.9267277Z","key2":"2021-10-22T23:52:09.9267277Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:52:09.9267277Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:52:09.9267277Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:52:09.8486094Z","primaryEndpoints":{"dfs":"https://clitest23zhehg2ug7pzcmmt.dfs.core.windows.net/","web":"https://clitest23zhehg2ug7pzcmmt.z2.web.core.windows.net/","blob":"https://clitest23zhehg2ug7pzcmmt.blob.core.windows.net/","queue":"https://clitest23zhehg2ug7pzcmmt.queue.core.windows.net/","table":"https://clitest23zhehg2ug7pzcmmt.table.core.windows.net/","file":"https://clitest23zhehg2ug7pzcmmt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestuh33sdgq6xqrgmv2evfqsj7s5elfu75j425duypsq3ykwiqywcsbk7k5hm2dn6dhx3ga/providers/Microsoft.Storage/storageAccounts/clitest2dpu5cejmyr6o6fy4","name":"clitest2dpu5cejmyr6o6fy4","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-13T01:03:47.8707679Z","key2":"2021-08-13T01:03:47.8707679Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-13T01:03:47.8707679Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-13T01:03:47.8707679Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-13T01:03:47.8082686Z","primaryEndpoints":{"dfs":"https://clitest2dpu5cejmyr6o6fy4.dfs.core.windows.net/","web":"https://clitest2dpu5cejmyr6o6fy4.z2.web.core.windows.net/","blob":"https://clitest2dpu5cejmyr6o6fy4.blob.core.windows.net/","queue":"https://clitest2dpu5cejmyr6o6fy4.queue.core.windows.net/","table":"https://clitest2dpu5cejmyr6o6fy4.table.core.windows.net/","file":"https://clitest2dpu5cejmyr6o6fy4.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrl6kiw7ux2j73xj2v7cbet4byjrmn5uenrcnz6qfu5oxpvxtkkik2djcxys4gcpfrgr4/providers/Microsoft.Storage/storageAccounts/clitest2hc2cek5kg4wbcqwa","name":"clitest2hc2cek5kg4wbcqwa","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-18T09:03:47.2900270Z","key2":"2021-06-18T09:03:47.2900270Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T09:03:47.2950283Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T09:03:47.2950283Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-18T09:03:47.2400033Z","primaryEndpoints":{"dfs":"https://clitest2hc2cek5kg4wbcqwa.dfs.core.windows.net/","web":"https://clitest2hc2cek5kg4wbcqwa.z2.web.core.windows.net/","blob":"https://clitest2hc2cek5kg4wbcqwa.blob.core.windows.net/","queue":"https://clitest2hc2cek5kg4wbcqwa.queue.core.windows.net/","table":"https://clitest2hc2cek5kg4wbcqwa.table.core.windows.net/","file":"https://clitest2hc2cek5kg4wbcqwa.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcwbyb7elcliee36ry67adfa656263s5nl2c67it2o2pjr3wrh5mwmg3ocygfxjou3vxa/providers/Microsoft.Storage/storageAccounts/clitest2wy5mqj7vog4cn65p","name":"clitest2wy5mqj7vog4cn65p","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T16:12:01.9361563Z","key2":"2021-10-22T16:12:01.9361563Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T16:12:01.9361563Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T16:12:01.9361563Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T16:12:01.8580265Z","primaryEndpoints":{"dfs":"https://clitest2wy5mqj7vog4cn65p.dfs.core.windows.net/","web":"https://clitest2wy5mqj7vog4cn65p.z2.web.core.windows.net/","blob":"https://clitest2wy5mqj7vog4cn65p.blob.core.windows.net/","queue":"https://clitest2wy5mqj7vog4cn65p.queue.core.windows.net/","table":"https://clitest2wy5mqj7vog4cn65p.table.core.windows.net/","file":"https://clitest2wy5mqj7vog4cn65p.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesto72ftnrt7hfn5ltlqnh34e5cjvdyfwj4ny5d7yebu4imldxsoizqp5cazyouoms7ev6j/providers/Microsoft.Storage/storageAccounts/clitest4suuy3hvssqi2u3px","name":"clitest4suuy3hvssqi2u3px","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-11T22:23:05.8954115Z","key2":"2021-11-11T22:23:05.8954115Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:23:05.9110345Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:23:05.9110345Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:23:05.8172663Z","primaryEndpoints":{"dfs":"https://clitest4suuy3hvssqi2u3px.dfs.core.windows.net/","web":"https://clitest4suuy3hvssqi2u3px.z2.web.core.windows.net/","blob":"https://clitest4suuy3hvssqi2u3px.blob.core.windows.net/","queue":"https://clitest4suuy3hvssqi2u3px.queue.core.windows.net/","table":"https://clitest4suuy3hvssqi2u3px.table.core.windows.net/","file":"https://clitest4suuy3hvssqi2u3px.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlg5ebdqcv52sflwjoqlwhicwckgl6uznufjdep6cezb52lt73nagcohr2yn5s2pjkddl/providers/Microsoft.Storage/storageAccounts/clitest6vxkrzgloyre3jqjs","name":"clitest6vxkrzgloyre3jqjs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-23T03:10:29.4846667Z","key2":"2021-07-23T03:10:29.4846667Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-23T03:10:29.5002574Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-23T03:10:29.5002574Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-23T03:10:29.4377939Z","primaryEndpoints":{"dfs":"https://clitest6vxkrzgloyre3jqjs.dfs.core.windows.net/","web":"https://clitest6vxkrzgloyre3jqjs.z2.web.core.windows.net/","blob":"https://clitest6vxkrzgloyre3jqjs.blob.core.windows.net/","queue":"https://clitest6vxkrzgloyre3jqjs.queue.core.windows.net/","table":"https://clitest6vxkrzgloyre3jqjs.table.core.windows.net/","file":"https://clitest6vxkrzgloyre3jqjs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestmrngm5xnqzkfc35bpac2frhloyp5bhqs3bkzmzzsk4uxhhc5g5bilsacnxbfmtzgwe2j/providers/Microsoft.Storage/storageAccounts/clitest7bnb7msut4cjgzpbr","name":"clitest7bnb7msut4cjgzpbr","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-29T22:46:56.7491572Z","key2":"2021-10-29T22:46:56.7491572Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:46:56.7491572Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:46:56.7491572Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-29T22:46:56.6866372Z","primaryEndpoints":{"dfs":"https://clitest7bnb7msut4cjgzpbr.dfs.core.windows.net/","web":"https://clitest7bnb7msut4cjgzpbr.z2.web.core.windows.net/","blob":"https://clitest7bnb7msut4cjgzpbr.blob.core.windows.net/","queue":"https://clitest7bnb7msut4cjgzpbr.queue.core.windows.net/","table":"https://clitest7bnb7msut4cjgzpbr.table.core.windows.net/","file":"https://clitest7bnb7msut4cjgzpbr.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfwybg5aqnlewkvelizobsdyy6zocpnnltod4k5d6l62rlz3wfkmdpz7fcw3xbvo45lad/providers/Microsoft.Storage/storageAccounts/clitestdk7kvmf5lss5lltse","name":"clitestdk7kvmf5lss5lltse","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-21T03:24:22.5335528Z","key2":"2021-06-21T03:24:22.5335528Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T03:24:22.5335528Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T03:24:22.5335528Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-21T03:24:22.4635745Z","primaryEndpoints":{"dfs":"https://clitestdk7kvmf5lss5lltse.dfs.core.windows.net/","web":"https://clitestdk7kvmf5lss5lltse.z2.web.core.windows.net/","blob":"https://clitestdk7kvmf5lss5lltse.blob.core.windows.net/","queue":"https://clitestdk7kvmf5lss5lltse.queue.core.windows.net/","table":"https://clitestdk7kvmf5lss5lltse.table.core.windows.net/","file":"https://clitestdk7kvmf5lss5lltse.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaplqr3c25xdddlwukirxixwo5byw5rkls3kr5fo66qoamflxrkjhxpt27enj7wmk2yuj/providers/Microsoft.Storage/storageAccounts/clitestfbytzu7syzfrmr7kf","name":"clitestfbytzu7syzfrmr7kf","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-04T22:22:45.3374456Z","key2":"2021-11-04T22:22:45.3374456Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:22:45.3374456Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:22:45.3374456Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-04T22:22:45.2593440Z","primaryEndpoints":{"dfs":"https://clitestfbytzu7syzfrmr7kf.dfs.core.windows.net/","web":"https://clitestfbytzu7syzfrmr7kf.z2.web.core.windows.net/","blob":"https://clitestfbytzu7syzfrmr7kf.blob.core.windows.net/","queue":"https://clitestfbytzu7syzfrmr7kf.queue.core.windows.net/","table":"https://clitestfbytzu7syzfrmr7kf.table.core.windows.net/","file":"https://clitestfbytzu7syzfrmr7kf.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkmydtxqqwqds5d67vdbrwtk32xdryjsxq6fp74nse75bdhdla7mh47b6myevefnapwyx/providers/Microsoft.Storage/storageAccounts/clitestgqwsejh46zuqlc5pm","name":"clitestgqwsejh46zuqlc5pm","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-06T05:27:12.7993484Z","key2":"2021-08-06T05:27:12.7993484Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-06T05:27:12.8149753Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-06T05:27:12.8149753Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-06T05:27:12.7368799Z","primaryEndpoints":{"dfs":"https://clitestgqwsejh46zuqlc5pm.dfs.core.windows.net/","web":"https://clitestgqwsejh46zuqlc5pm.z2.web.core.windows.net/","blob":"https://clitestgqwsejh46zuqlc5pm.blob.core.windows.net/","queue":"https://clitestgqwsejh46zuqlc5pm.queue.core.windows.net/","table":"https://clitestgqwsejh46zuqlc5pm.table.core.windows.net/","file":"https://clitestgqwsejh46zuqlc5pm.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestndsnnd5ibnsjkzl7w5mbaujjmelonc2xjmyrd325iiwno27u6sxcxkewjeox2x2wr633/providers/Microsoft.Storage/storageAccounts/clitestgz6nb4it72a36mdpt","name":"clitestgz6nb4it72a36mdpt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-20T02:02:00.4577106Z","key2":"2021-08-20T02:02:00.4577106Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-20T02:02:00.4577106Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-20T02:02:00.4577106Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-20T02:02:00.3952449Z","primaryEndpoints":{"dfs":"https://clitestgz6nb4it72a36mdpt.dfs.core.windows.net/","web":"https://clitestgz6nb4it72a36mdpt.z2.web.core.windows.net/","blob":"https://clitestgz6nb4it72a36mdpt.blob.core.windows.net/","queue":"https://clitestgz6nb4it72a36mdpt.queue.core.windows.net/","table":"https://clitestgz6nb4it72a36mdpt.table.core.windows.net/","file":"https://clitestgz6nb4it72a36mdpt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsc4q5ncei7qimmmmtqmedt4valwfif74bbu7mdfwqimzfzfkopwgrmua7p4rcsga53m4/providers/Microsoft.Storage/storageAccounts/clitestlssboc5vg5mdivn4h","name":"clitestlssboc5vg5mdivn4h","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-18T08:34:36.9887468Z","key2":"2021-06-18T08:34:36.9887468Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T08:34:36.9937445Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T08:34:36.9937445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-18T08:34:36.9237913Z","primaryEndpoints":{"dfs":"https://clitestlssboc5vg5mdivn4h.dfs.core.windows.net/","web":"https://clitestlssboc5vg5mdivn4h.z2.web.core.windows.net/","blob":"https://clitestlssboc5vg5mdivn4h.blob.core.windows.net/","queue":"https://clitestlssboc5vg5mdivn4h.queue.core.windows.net/","table":"https://clitestlssboc5vg5mdivn4h.table.core.windows.net/","file":"https://clitestlssboc5vg5mdivn4h.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5yatgcl7dfear3v3e5d5hrqbpo5bdotmwoq7auiuykmzx74is6rzhkib56ajwf5ghxrk/providers/Microsoft.Storage/storageAccounts/clitestlzfflnot5wnc3y4j3","name":"clitestlzfflnot5wnc3y4j3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-28T02:21:02.0736425Z","key2":"2021-09-28T02:21:02.0736425Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:21:02.0736425Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:21:02.0736425Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T02:21:02.0267640Z","primaryEndpoints":{"dfs":"https://clitestlzfflnot5wnc3y4j3.dfs.core.windows.net/","web":"https://clitestlzfflnot5wnc3y4j3.z2.web.core.windows.net/","blob":"https://clitestlzfflnot5wnc3y4j3.blob.core.windows.net/","queue":"https://clitestlzfflnot5wnc3y4j3.queue.core.windows.net/","table":"https://clitestlzfflnot5wnc3y4j3.table.core.windows.net/","file":"https://clitestlzfflnot5wnc3y4j3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestjkw7fpanpscpileddbqrrrkjrtb5xi47wmvttkiqwsqcuo3ldvzszwso3x4c5apy6m5o/providers/Microsoft.Storage/storageAccounts/clitestm6u3xawj3qsydpfam","name":"clitestm6u3xawj3qsydpfam","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T07:13:03.1496586Z","key2":"2021-09-07T07:13:03.1496586Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T07:13:03.1496586Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T07:13:03.1496586Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T07:13:03.0714932Z","primaryEndpoints":{"dfs":"https://clitestm6u3xawj3qsydpfam.dfs.core.windows.net/","web":"https://clitestm6u3xawj3qsydpfam.z2.web.core.windows.net/","blob":"https://clitestm6u3xawj3qsydpfam.blob.core.windows.net/","queue":"https://clitestm6u3xawj3qsydpfam.queue.core.windows.net/","table":"https://clitestm6u3xawj3qsydpfam.table.core.windows.net/","file":"https://clitestm6u3xawj3qsydpfam.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvabzmquoslc3mtf5h3qd7dglwx45me4yxyefaw4ktsf7fbc3bx2tl75tdn5eqbgd3atx/providers/Microsoft.Storage/storageAccounts/clitestq7ur4vdqkjvy2rdgj","name":"clitestq7ur4vdqkjvy2rdgj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-28T02:27:14.4071914Z","key2":"2021-09-28T02:27:14.4071914Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:27:14.4071914Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:27:14.4071914Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T02:27:14.3446978Z","primaryEndpoints":{"dfs":"https://clitestq7ur4vdqkjvy2rdgj.dfs.core.windows.net/","web":"https://clitestq7ur4vdqkjvy2rdgj.z2.web.core.windows.net/","blob":"https://clitestq7ur4vdqkjvy2rdgj.blob.core.windows.net/","queue":"https://clitestq7ur4vdqkjvy2rdgj.queue.core.windows.net/","table":"https://clitestq7ur4vdqkjvy2rdgj.table.core.windows.net/","file":"https://clitestq7ur4vdqkjvy2rdgj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestugd6g2jxyo5mu6uxhc4zea4ygi2iuubouzxmdyuz6srnvrbwlidbvuu4qdieuwg4xlsr/providers/Microsoft.Storage/storageAccounts/clitestqorauf75d5yqkhdhc","name":"clitestqorauf75d5yqkhdhc","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-03T02:52:09.6342752Z","key2":"2021-09-03T02:52:09.6342752Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T02:52:09.6342752Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T02:52:09.6342752Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-03T02:52:09.5561638Z","primaryEndpoints":{"dfs":"https://clitestqorauf75d5yqkhdhc.dfs.core.windows.net/","web":"https://clitestqorauf75d5yqkhdhc.z2.web.core.windows.net/","blob":"https://clitestqorauf75d5yqkhdhc.blob.core.windows.net/","queue":"https://clitestqorauf75d5yqkhdhc.queue.core.windows.net/","table":"https://clitestqorauf75d5yqkhdhc.table.core.windows.net/","file":"https://clitestqorauf75d5yqkhdhc.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestzbuh7m7bllna7xosjhxr5ppfs6tnukxctfm4ydkzmzvyt7tf2ru3yjmthwy6mqqp62yy/providers/Microsoft.Storage/storageAccounts/clitestrpsk56xwloumq6ngj","name":"clitestrpsk56xwloumq6ngj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-21T05:52:26.0729783Z","key2":"2021-06-21T05:52:26.0729783Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T05:52:26.0779697Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T05:52:26.0779697Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-21T05:52:26.0129686Z","primaryEndpoints":{"dfs":"https://clitestrpsk56xwloumq6ngj.dfs.core.windows.net/","web":"https://clitestrpsk56xwloumq6ngj.z2.web.core.windows.net/","blob":"https://clitestrpsk56xwloumq6ngj.blob.core.windows.net/","queue":"https://clitestrpsk56xwloumq6ngj.queue.core.windows.net/","table":"https://clitestrpsk56xwloumq6ngj.table.core.windows.net/","file":"https://clitestrpsk56xwloumq6ngj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest62jxvr4odko5gn5tjo4z7ypmirid6zm72g3ah6zg25qh5r5xve5fhikdcnjpxvsaikhl/providers/Microsoft.Storage/storageAccounts/clitestst2iwgltnfj4zoiva","name":"clitestst2iwgltnfj4zoiva","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-27T01:58:18.2723177Z","key2":"2021-08-27T01:58:18.2723177Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-27T01:58:18.2723177Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-27T01:58:18.2723177Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-27T01:58:18.2410749Z","primaryEndpoints":{"dfs":"https://clitestst2iwgltnfj4zoiva.dfs.core.windows.net/","web":"https://clitestst2iwgltnfj4zoiva.z2.web.core.windows.net/","blob":"https://clitestst2iwgltnfj4zoiva.blob.core.windows.net/","queue":"https://clitestst2iwgltnfj4zoiva.queue.core.windows.net/","table":"https://clitestst2iwgltnfj4zoiva.table.core.windows.net/","file":"https://clitestst2iwgltnfj4zoiva.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestxk2peoqt7nd76ktof7sub3mkkcldygtt36d3imnwjd5clletodypibd5uaglpdk44yjm/providers/Microsoft.Storage/storageAccounts/clitestu6whdalngwsksemjs","name":"clitestu6whdalngwsksemjs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-10T02:29:23.5697486Z","key2":"2021-09-10T02:29:23.5697486Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T02:29:23.5697486Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T02:29:23.5697486Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-10T02:29:23.5072536Z","primaryEndpoints":{"dfs":"https://clitestu6whdalngwsksemjs.dfs.core.windows.net/","web":"https://clitestu6whdalngwsksemjs.z2.web.core.windows.net/","blob":"https://clitestu6whdalngwsksemjs.blob.core.windows.net/","queue":"https://clitestu6whdalngwsksemjs.queue.core.windows.net/","table":"https://clitestu6whdalngwsksemjs.table.core.windows.net/","file":"https://clitestu6whdalngwsksemjs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlriqfcojv6aujusys633edrxi3tkric7e6cvk5wwgjmdg4736dv56w4lwzmdnq5tr3mq/providers/Microsoft.Storage/storageAccounts/clitestw6aumidrfwmoqkzvm","name":"clitestw6aumidrfwmoqkzvm","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-18T23:32:38.8527397Z","key2":"2021-11-18T23:32:38.8527397Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:32:38.8527397Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:32:38.8527397Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:32:38.7902807Z","primaryEndpoints":{"dfs":"https://clitestw6aumidrfwmoqkzvm.dfs.core.windows.net/","web":"https://clitestw6aumidrfwmoqkzvm.z2.web.core.windows.net/","blob":"https://clitestw6aumidrfwmoqkzvm.blob.core.windows.net/","queue":"https://clitestw6aumidrfwmoqkzvm.queue.core.windows.net/","table":"https://clitestw6aumidrfwmoqkzvm.table.core.windows.net/","file":"https://clitestw6aumidrfwmoqkzvm.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttlschpyugymorheodsulam7yhpwylijzpbmjr3phwwis4vj2rx5elxcjkb236fcnumx3/providers/Microsoft.Storage/storageAccounts/clitestwv22naweyfr4m5rga","name":"clitestwv22naweyfr4m5rga","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-01T19:54:26.9185866Z","key2":"2021-11-01T19:54:26.9185866Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:54:26.9185866Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:54:26.9185866Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-01T19:54:26.8717369Z","primaryEndpoints":{"dfs":"https://clitestwv22naweyfr4m5rga.dfs.core.windows.net/","web":"https://clitestwv22naweyfr4m5rga.z2.web.core.windows.net/","blob":"https://clitestwv22naweyfr4m5rga.blob.core.windows.net/","queue":"https://clitestwv22naweyfr4m5rga.queue.core.windows.net/","table":"https://clitestwv22naweyfr4m5rga.table.core.windows.net/","file":"https://clitestwv22naweyfr4m5rga.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesth52efeutldrxowe5cfayjvk4zhpypdmky6fyppzro5r3ldqu7dwf2ca6jf3lqm4eijf6/providers/Microsoft.Storage/storageAccounts/clitestx5fskzfbidzs4kqmu","name":"clitestx5fskzfbidzs4kqmu","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-05T08:48:16.0575682Z","key2":"2021-11-05T08:48:16.0575682Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:48:16.0575682Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:48:16.0575682Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-05T08:48:15.9794412Z","primaryEndpoints":{"dfs":"https://clitestx5fskzfbidzs4kqmu.dfs.core.windows.net/","web":"https://clitestx5fskzfbidzs4kqmu.z2.web.core.windows.net/","blob":"https://clitestx5fskzfbidzs4kqmu.blob.core.windows.net/","queue":"https://clitestx5fskzfbidzs4kqmu.queue.core.windows.net/","table":"https://clitestx5fskzfbidzs4kqmu.table.core.windows.net/","file":"https://clitestx5fskzfbidzs4kqmu.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlnzg2rscuyweetdgvywse35jkhd3s7gay3wnjzoyqojyq6i3iw42uycss45mj52zitnl/providers/Microsoft.Storage/storageAccounts/clitestzarcstbcgg3yqinfg","name":"clitestzarcstbcgg3yqinfg","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-30T02:23:46.1127669Z","key2":"2021-07-30T02:23:46.1127669Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-30T02:23:46.1127669Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-30T02:23:46.1127669Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-30T02:23:46.0658902Z","primaryEndpoints":{"dfs":"https://clitestzarcstbcgg3yqinfg.dfs.core.windows.net/","web":"https://clitestzarcstbcgg3yqinfg.z2.web.core.windows.net/","blob":"https://clitestzarcstbcgg3yqinfg.blob.core.windows.net/","queue":"https://clitestzarcstbcgg3yqinfg.queue.core.windows.net/","table":"https://clitestzarcstbcgg3yqinfg.table.core.windows.net/","file":"https://clitestzarcstbcgg3yqinfg.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrvgfrlua5ai2leiutip26a27qxs2lzedu3g6gjrqjzi3rna2yxcinlc5ioxhhfvnx5rv/providers/Microsoft.Storage/storageAccounts/versiongdbkjcemb56eyu3rj","name":"versiongdbkjcemb56eyu3rj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-18T23:17:17.2960150Z","key2":"2021-11-18T23:17:17.2960150Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:17.2960150Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:17.2960150Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:17:17.2335295Z","primaryEndpoints":{"dfs":"https://versiongdbkjcemb56eyu3rj.dfs.core.windows.net/","web":"https://versiongdbkjcemb56eyu3rj.z2.web.core.windows.net/","blob":"https://versiongdbkjcemb56eyu3rj.blob.core.windows.net/","queue":"https://versiongdbkjcemb56eyu3rj.queue.core.windows.net/","table":"https://versiongdbkjcemb56eyu3rj.table.core.windows.net/","file":"https://versiongdbkjcemb56eyu3rj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestnsw32miijgjmandsqepzbytqsxe2dbpfuh3t2d2u7saewxrnoilajjocllnjxt45ggjc/providers/Microsoft.Storage/storageAccounts/versionhf53xzmbt3fwu3kn3","name":"versionhf53xzmbt3fwu3kn3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:29:06.2474527Z","key2":"2021-09-07T02:29:06.2474527Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:29:06.2474527Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:29:06.2474527Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:29:06.1849281Z","primaryEndpoints":{"dfs":"https://versionhf53xzmbt3fwu3kn3.dfs.core.windows.net/","web":"https://versionhf53xzmbt3fwu3kn3.z2.web.core.windows.net/","blob":"https://versionhf53xzmbt3fwu3kn3.blob.core.windows.net/","queue":"https://versionhf53xzmbt3fwu3kn3.queue.core.windows.net/","table":"https://versionhf53xzmbt3fwu3kn3.table.core.windows.net/","file":"https://versionhf53xzmbt3fwu3kn3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyex6l2i6otx4eikzzr7rikdz4b6rezhqeg6mnzwvtof4vpxkcw34rd7hwpk7q5ltnrxp/providers/Microsoft.Storage/storageAccounts/versionncoq7gv5mbp4o2uf6","name":"versionncoq7gv5mbp4o2uf6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-15T06:47:03.1566686Z","key2":"2021-10-15T06:47:03.1566686Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T06:47:03.1723019Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T06:47:03.1723019Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T06:47:03.0785915Z","primaryEndpoints":{"dfs":"https://versionncoq7gv5mbp4o2uf6.dfs.core.windows.net/","web":"https://versionncoq7gv5mbp4o2uf6.z2.web.core.windows.net/","blob":"https://versionncoq7gv5mbp4o2uf6.blob.core.windows.net/","queue":"https://versionncoq7gv5mbp4o2uf6.queue.core.windows.net/","table":"https://versionncoq7gv5mbp4o2uf6.table.core.windows.net/","file":"https://versionncoq7gv5mbp4o2uf6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyxq5yt6z4or5ddvyvubtdjn73mslv25s4bqqme3ljmj6jsaagbmyn376m3cdex35tubw/providers/Microsoft.Storage/storageAccounts/versionqp3efyteboplomp5w","name":"versionqp3efyteboplomp5w","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:20:09.3003824Z","key2":"2021-09-07T02:20:09.3003824Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:20:09.3003824Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:20:09.3003824Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:20:09.2378807Z","primaryEndpoints":{"dfs":"https://versionqp3efyteboplomp5w.dfs.core.windows.net/","web":"https://versionqp3efyteboplomp5w.z2.web.core.windows.net/","blob":"https://versionqp3efyteboplomp5w.blob.core.windows.net/","queue":"https://versionqp3efyteboplomp5w.queue.core.windows.net/","table":"https://versionqp3efyteboplomp5w.table.core.windows.net/","file":"https://versionqp3efyteboplomp5w.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest27tntypkdnlo3adbzt7qqcx3detlxgtxnuxhaxdgobws4bjc26vshca2qezntlnmpuup/providers/Microsoft.Storage/storageAccounts/versionryihikjyurp5tntba","name":"versionryihikjyurp5tntba","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-11T22:07:42.2418545Z","key2":"2021-11-11T22:07:42.2418545Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:42.2418545Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:42.2418545Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:07:42.1637179Z","primaryEndpoints":{"dfs":"https://versionryihikjyurp5tntba.dfs.core.windows.net/","web":"https://versionryihikjyurp5tntba.z2.web.core.windows.net/","blob":"https://versionryihikjyurp5tntba.blob.core.windows.net/","queue":"https://versionryihikjyurp5tntba.queue.core.windows.net/","table":"https://versionryihikjyurp5tntba.table.core.windows.net/","file":"https://versionryihikjyurp5tntba.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesturbzqfflmkkupfwgtkutwvdy5nte5rec7neu6eyya4kahyepssopgq72mzxl54g7h2pt/providers/Microsoft.Storage/storageAccounts/versionscknbekpvmwrjeznt","name":"versionscknbekpvmwrjeznt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-28T02:39:44.7553582Z","key2":"2021-10-28T02:39:44.7553582Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T02:39:44.7553582Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T02:39:44.7553582Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T02:39:44.6772068Z","primaryEndpoints":{"dfs":"https://versionscknbekpvmwrjeznt.dfs.core.windows.net/","web":"https://versionscknbekpvmwrjeznt.z2.web.core.windows.net/","blob":"https://versionscknbekpvmwrjeznt.blob.core.windows.net/","queue":"https://versionscknbekpvmwrjeznt.queue.core.windows.net/","table":"https://versionscknbekpvmwrjeznt.table.core.windows.net/","file":"https://versionscknbekpvmwrjeznt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrhkyigtoloz2mqogvsddvmbtemvops4dw6kluaww553xqrbl5kwgnpuse5fdom2fq5bd/providers/Microsoft.Storage/storageAccounts/versionvsfin4nwuwcxndawj","name":"versionvsfin4nwuwcxndawj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:26:57.6350762Z","key2":"2021-09-07T02:26:57.6350762Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:26:57.6350762Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:26:57.6350762Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:26:57.5726321Z","primaryEndpoints":{"dfs":"https://versionvsfin4nwuwcxndawj.dfs.core.windows.net/","web":"https://versionvsfin4nwuwcxndawj.z2.web.core.windows.net/","blob":"https://versionvsfin4nwuwcxndawj.blob.core.windows.net/","queue":"https://versionvsfin4nwuwcxndawj.queue.core.windows.net/","table":"https://versionvsfin4nwuwcxndawj.table.core.windows.net/","file":"https://versionvsfin4nwuwcxndawj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyvbbewdobz5vnqkoyumrkqbdufktrisug2ukkkvnirbc6frn2hxuvpe7weosgtfc4spk/providers/Microsoft.Storage/storageAccounts/versionymg2k5haow6be3wlh","name":"versionymg2k5haow6be3wlh","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-08T05:20:27.5220722Z","key2":"2021-11-08T05:20:27.5220722Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-08T05:20:27.5220722Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-08T05:20:27.5220722Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-08T05:20:27.4439279Z","primaryEndpoints":{"dfs":"https://versionymg2k5haow6be3wlh.dfs.core.windows.net/","web":"https://versionymg2k5haow6be3wlh.z2.web.core.windows.net/","blob":"https://versionymg2k5haow6be3wlh.blob.core.windows.net/","queue":"https://versionymg2k5haow6be3wlh.queue.core.windows.net/","table":"https://versionymg2k5haow6be3wlh.table.core.windows.net/","file":"https://versionymg2k5haow6be3wlh.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkngvostxvfzwz7hb2pyqpst4ekovxl4qehicnbufjmoug5injclokanwouejm77muega/providers/Microsoft.Storage/storageAccounts/versionyrdifxty6izovwb6i","name":"versionyrdifxty6izovwb6i","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:23:07.0385168Z","key2":"2021-09-07T02:23:07.0385168Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:23:07.0385168Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:23:07.0385168Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:23:06.9760160Z","primaryEndpoints":{"dfs":"https://versionyrdifxty6izovwb6i.dfs.core.windows.net/","web":"https://versionyrdifxty6izovwb6i.z2.web.core.windows.net/","blob":"https://versionyrdifxty6izovwb6i.blob.core.windows.net/","queue":"https://versionyrdifxty6izovwb6i.queue.core.windows.net/","table":"https://versionyrdifxty6izovwb6i.table.core.windows.net/","file":"https://versionyrdifxty6izovwb6i.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssaeuap","name":"yssaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-06T07:56:33.4932788Z","key2":"2021-09-06T07:56:33.4932788Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-06T07:56:33.5088661Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-06T07:56:33.5088661Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-06T07:56:33.4151419Z","primaryEndpoints":{"dfs":"https://yssaeuap.dfs.core.windows.net/","web":"https://yssaeuap.z2.web.core.windows.net/","blob":"https://yssaeuap.blob.core.windows.net/","queue":"https://yssaeuap.queue.core.windows.net/","table":"https://yssaeuap.table.core.windows.net/","file":"https://yssaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuap","name":"zhiyihuangsaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true},"keyCreationTime":{"key1":"2021-09-24T05:54:33.0930905Z","key2":"2021-09-24T05:54:33.0930905Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T05:54:33.1087163Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T05:54:33.1087163Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-24T05:54:33.0305911Z","primaryEndpoints":{"dfs":"https://zhiyihuangsaeuap.dfs.core.windows.net/","web":"https://zhiyihuangsaeuap.z2.web.core.windows.net/","blob":"https://zhiyihuangsaeuap.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap.queue.core.windows.net/","table":"https://zhiyihuangsaeuap.table.core.windows.net/","file":"https://zhiyihuangsaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available","secondaryLocation":"eastus2euap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhiyihuangsaeuap-secondary.dfs.core.windows.net/","web":"https://zhiyihuangsaeuap-secondary.z2.web.core.windows.net/","blob":"https://zhiyihuangsaeuap-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuap-secondary.table.core.windows.net/"}}}]}' + headers: + cache-control: + - no-cache + content-length: + - '269371' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 7f7344c8-5419-42c9-884d-965ff48c9746 + - 75228555-b952-453e-a5f8-bb774dd19af0 + - bdcce4da-c6aa-477e-bd26-940cd982a948 + - e82c5cfc-a197-4b05-a5b7-02c944f7e8b9 + - 653451a7-19d7-4c4d-95c0-32bcb4096539 + - 2b5393fe-9249-4363-b267-19bad80e4a40 + - cd798db8-ca28-4cb9-8aca-3332ce20f7a9 + - 2cc583c2-fd8b-47cf-8814-d34c7b6ac6ad + - a62dd438-fc9b-4c81-b758-1e90e16cee63 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account keys list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --account-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2021-06-01&$expand=kerb + response: + body: + string: '{"keys":[{"creationTime":"2021-11-24T08:05:49.2469830Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-24T08:05:49.2469830Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '380' + content-type: + - application/json + date: + - Wed, 24 Nov 2021 08:06:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) AZURECLI/2.30.0 + x-ms-date: + - Wed, 24 Nov 2021 08:06:19 GMT + x-ms-version: + - '2018-11-09' + method: PUT + uri: https://clitest000002.blob.core.windows.net/container?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Wed, 24 Nov 2021 08:06:20 GMT + etag: + - '"0x8D9AF214D1DE22F"' + last-modified: + - Wed, 24 Nov 2021 08:06:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2018-11-09' + status: + code: 201 + message: Created +- request: + body: '{"properties": {"type": "Reference", "serialization": {"type": "Csv", "properties": + {"fieldDelimiter": ",", "encoding": "UTF8"}}, "datasource": {"type": "Microsoft.Storage/Blob", + "properties": {"storageAccounts": [{"accountName": "clitest000002", "accountKey": + "veryFakedStorageAccountKey=="}], "container": "container", "pathPattern": "{date}/{time}", + "dateFormat": "yyyy/MM/dd", "timeFormat": "HH"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics input create + Connection: + - keep-alive + Content-Length: + - '474' + Content-Type: + - application/json + ParameterSetName: + - -n -g --job-name --properties + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/inputs/input?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/inputs/input","name":"input","type":"Microsoft.StreamAnalytics/streamingjobs/inputs","properties":{"type":"Reference","datasource":{"type":"Microsoft.Storage/Blob","properties":{"storageAccounts":[{"accountName":"clitest000002"}],"container":"container","pathPattern":"{date}/{time}","dateFormat":"yyyy/MM/dd","timeFormat":"HH","authenticationMode":"ConnectionString"}},"compression":{"type":"None"},"serialization":{"type":"Csv","properties":{"fieldDelimiter":",","encoding":"UTF8"}}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '701' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:22 GMT + etag: + - 634c737f-1bf1-4121-a643-40fcaaed76f1 + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"type": "Reference", "serialization": {"type": "Csv", "properties": + {"fieldDelimiter": ",", "encoding": "UTF8"}}, "datasource": {"type": "Microsoft.Storage/Blob", + "properties": {"storageAccounts": [{"accountName": "clitest000002", "accountKey": + "veryFakedStorageAccountKey=="}], "container": "container", "pathPattern": "{date}/{time}", + "dateFormat": "yyyy/MM/dd", "timeFormat": "HH"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics input test + Connection: + - keep-alive + Content-Length: + - '474' + Content-Type: + - application/json + ParameterSetName: + - -n -g --job-name --properties + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/inputs/input/test?api-version=2020-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-store, no-cache + content-length: + - '0' + date: + - Wed, 24 Nov 2021 08:06:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/inputs/input/OperationResults/b51998ce-8d0b-4de8-b909-72ea6d68b698?api-version=2020-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics input test + Connection: + - keep-alive + ParameterSetName: + - -n -g --job-name --properties + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/inputs/input/OperationResults/b51998ce-8d0b-4de8-b909-72ea6d68b698?api-version=2020-03-01 + response: + body: + string: '{"status":"TestSucceeded","error":null}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '39' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics input list + Connection: + - keep-alive + ParameterSetName: + - -g --job-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/inputs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/inputs/input","name":"input","type":"Microsoft.StreamAnalytics/streamingjobs/inputs","properties":{"type":"Reference","datasource":{"type":"Microsoft.Storage/Blob","properties":{"storageAccounts":[{"accountName":"clitest000002"}],"container":"container","pathPattern":"{date}/{time}","dateFormat":"yyyy/MM/dd","timeFormat":"HH","authenticationMode":"ConnectionString"}},"compression":{"type":"None"},"serialization":{"type":"Csv","properties":{"fieldDelimiter":",","encoding":"UTF8"}},"etag":"634c737f-1bf1-4121-a643-40fcaaed76f1"}}],"nextLink":null}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '775' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"type": "Reference", "serialization": {"type": "Csv", "properties": + {"fieldDelimiter": ",", "encoding": "UTF8"}}, "datasource": {"type": "Microsoft.Storage/Blob", + "properties": {"storageAccounts": [{"accountName": "clitest000002", "accountKey": + "veryFakedStorageAccountKey=="}], "container": "container", "pathPattern": "{date}/{time}", + "dateFormat": "MM/dd/yyyy", "timeFormat": "HH"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics input update + Connection: + - keep-alive + Content-Length: + - '474' + Content-Type: + - application/json + ParameterSetName: + - -n -g --job-name --properties + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/inputs/input?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/inputs/input","name":"input","type":"Microsoft.StreamAnalytics/streamingjobs/inputs","properties":{"type":"Reference","datasource":{"type":"Microsoft.Storage/Blob","properties":{"storageAccounts":[{"accountName":"clitest000002"}],"container":"container","pathPattern":"{date}/{time}","dateFormat":"MM/dd/yyyy","timeFormat":"HH","authenticationMode":"ConnectionString"}},"compression":{"type":"None"},"serialization":{"type":"Csv","properties":{"fieldDelimiter":",","encoding":"UTF8"}}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '701' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:37 GMT + etag: + - abad9ccf-8791-4d4d-8984-2aa83433d58c + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics input show + Connection: + - keep-alive + ParameterSetName: + - -n -g --job-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/inputs/input?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/inputs/input","name":"input","type":"Microsoft.StreamAnalytics/streamingjobs/inputs","properties":{"type":"Reference","datasource":{"type":"Microsoft.Storage/Blob","properties":{"storageAccounts":[{"accountName":"clitest000002"}],"container":"container","pathPattern":"{date}/{time}","dateFormat":"MM/dd/yyyy","timeFormat":"HH","authenticationMode":"ConnectionString"}},"compression":{"type":"None"},"serialization":{"type":"Csv","properties":{"fieldDelimiter":",","encoding":"UTF8"}}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '701' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:37 GMT + etag: + - abad9ccf-8791-4d4d-8984-2aa83433d58c + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics input delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --job-name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/inputs/input?api-version=2020-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-store, no-cache + content-length: + - '0' + content-type: + - application/json + date: + - Wed, 24 Nov 2021 08:06:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_job_crud.yaml b/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_job_crud.yaml new file mode 100644 index 00000000000..e69f67d9043 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_job_crud.yaml @@ -0,0 +1,367 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job create + Connection: + - keep-alive + ParameterSetName: + - -n -g --data-locale --output-error-policy --out-of-order-policy --order-max-delay + --arrival-max-delay + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001","name":"cli_test_stream_analytics_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T08:05:38Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:05:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"sku": {"name": "Standard"}, "eventsOutOfOrderPolicy": + "Drop", "outputErrorPolicy": "Drop", "eventsOutOfOrderMaxDelayInSeconds": 0, + "eventsLateArrivalMaxDelayInSeconds": 5, "dataLocale": "en-US"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job create + Connection: + - keep-alive + Content-Length: + - '234' + Content-Type: + - application/json + ParameterSetName: + - -n -g --data-locale --output-error-policy --out-of-order-policy --order-max-delay + --arrival-max-delay + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job","name":"job","type":"Microsoft.StreamAnalytics/streamingjobs","location":"West + US","properties":{"sku":{"name":"Standard"},"jobId":"61a20f81-36be-4f5b-8b8c-aac34ad5430b","provisioningState":"Succeeded","jobState":"Created","eventsOutOfOrderPolicy":"Drop","outputErrorPolicy":"Drop","eventsOutOfOrderMaxDelayInSeconds":0,"eventsLateArrivalMaxDelayInSeconds":5,"dataLocale":"en-US","createdDate":"2021-11-24T08:05:50.06Z","compatibilityLevel":"1.0","package":null,"jobStorageAccount":null,"contentStoragePolicy":"SystemAccount","inputs":[],"functions":[],"outputs":[],"jobType":"Cloud","subnetResourceId":null,"cluster":null}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '829' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:05:50 GMT + etag: + - 8b0881e3-94e0-4bcc-9bb5-369d2a045d65 + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job","name":"job","type":"Microsoft.StreamAnalytics/streamingjobs","location":"West + US","properties":{"sku":{"name":"Standard"},"jobId":"61a20f81-36be-4f5b-8b8c-aac34ad5430b","provisioningState":"Succeeded","jobState":"Created","eventsOutOfOrderPolicy":"Drop","outputErrorPolicy":"Drop","eventsOutOfOrderMaxDelayInSeconds":0,"eventsLateArrivalMaxDelayInSeconds":5,"dataLocale":"en-US","createdDate":"2021-11-24T08:05:50.06Z","compatibilityLevel":"1.0","package":null,"jobStorageAccount":null,"contentStoragePolicy":"SystemAccount","etag":"8b0881e3-94e0-4bcc-9bb5-369d2a045d65","jobType":"Cloud","subnetResourceId":null,"cluster":null}}],"nextLink":null}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '863' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:05:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '399' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job update + Connection: + - keep-alive + ParameterSetName: + - -n -g --order-max-delay --arrival-max-delay + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001","name":"cli_test_stream_analytics_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T08:05:38Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:05:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"sku": {"name": "Standard"}, "eventsOutOfOrderMaxDelayInSeconds": + 10, "eventsLateArrivalMaxDelayInSeconds": 29}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job update + Connection: + - keep-alive + Content-Length: + - '150' + Content-Type: + - application/json + ParameterSetName: + - -n -g --order-max-delay --arrival-max-delay + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job","name":"job","type":"Microsoft.StreamAnalytics/streamingjobs","location":"West + US","properties":{"sku":{"name":"Standard"},"jobId":"61a20f81-36be-4f5b-8b8c-aac34ad5430b","provisioningState":"Succeeded","jobState":"Created","eventsOutOfOrderPolicy":"Drop","outputErrorPolicy":"Drop","eventsOutOfOrderMaxDelayInSeconds":10,"eventsLateArrivalMaxDelayInSeconds":29,"dataLocale":"en-US","createdDate":"2021-11-24T08:05:50.06Z","compatibilityLevel":"1.0","package":null,"jobStorageAccount":null,"contentStoragePolicy":"SystemAccount","jobType":"Cloud","subnetResourceId":null,"cluster":null}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '791' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:05:54 GMT + etag: + - a4884592-db76-4c67-bc54-621cba128191 + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job","name":"job","type":"Microsoft.StreamAnalytics/streamingjobs","location":"West + US","properties":{"sku":{"name":"Standard"},"jobId":"61a20f81-36be-4f5b-8b8c-aac34ad5430b","provisioningState":"Succeeded","jobState":"Created","eventsOutOfOrderPolicy":"Drop","outputErrorPolicy":"Drop","eventsOutOfOrderMaxDelayInSeconds":10,"eventsLateArrivalMaxDelayInSeconds":29,"dataLocale":"en-US","createdDate":"2021-11-24T08:05:50.06Z","compatibilityLevel":"1.0","package":null,"jobStorageAccount":null,"contentStoragePolicy":"SystemAccount","jobType":"Cloud","subnetResourceId":null,"cluster":null}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '791' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:05:55 GMT + etag: + - a4884592-db76-4c67-bc54-621cba128191 + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '399' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job?api-version=2020-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-store, no-cache + content-length: + - '0' + content-type: + - application/json + date: + - Wed, 24 Nov 2021 08:06:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_job_scale.yaml b/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_job_scale.yaml new file mode 100644 index 00000000000..539c40f1a1b --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_job_scale.yaml @@ -0,0 +1,851 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job create + Connection: + - keep-alive + ParameterSetName: + - -n -g --data-locale --output-error-policy --out-of-order-policy --order-max-delay + --arrival-max-delay + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001","name":"cli_test_stream_analytics_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T08:05:38Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"sku": {"name": "Standard"}, "eventsOutOfOrderPolicy": + "Drop", "outputErrorPolicy": "Drop", "eventsOutOfOrderMaxDelayInSeconds": 0, + "eventsLateArrivalMaxDelayInSeconds": 5, "dataLocale": "en-US"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job create + Connection: + - keep-alive + Content-Length: + - '234' + Content-Type: + - application/json + ParameterSetName: + - -n -g --data-locale --output-error-policy --out-of-order-policy --order-max-delay + --arrival-max-delay + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job","name":"job","type":"Microsoft.StreamAnalytics/streamingjobs","location":"West + US","properties":{"sku":{"name":"Standard"},"jobId":"4935231a-a1bd-40e3-b60d-b59218d51a6e","provisioningState":"Succeeded","jobState":"Created","eventsOutOfOrderPolicy":"Drop","outputErrorPolicy":"Drop","eventsOutOfOrderMaxDelayInSeconds":0,"eventsLateArrivalMaxDelayInSeconds":5,"dataLocale":"en-US","createdDate":"2021-11-24T08:06:17.23Z","compatibilityLevel":"1.0","package":null,"jobStorageAccount":null,"contentStoragePolicy":"SystemAccount","inputs":[],"functions":[],"outputs":[],"jobType":"Cloud","subnetResourceId":null,"cluster":null}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '829' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:17 GMT + etag: + - d8a4efcd-9344-4d2a-8b74-1e41b1dbd054 + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"streamingUnits": 6, "query": "SELECT * INTO output FROM + input"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics transformation create + Connection: + - keep-alive + Content-Length: + - '81' + Content-Type: + - application/json + ParameterSetName: + - -n -g --job-name --saql --streaming-units + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/transformations/transformation?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/transformations/transformation","name":"transformation","type":"Microsoft.StreamAnalytics/streamingjobs/transformations","properties":{"streamingUnits":6,"query":"SELECT + * INTO output FROM input"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '401' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:19 GMT + etag: + - 1df6a46c-5c5d-415b-8d87-b4eaa01dd62c + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account keys list + Connection: + - keep-alive + ParameterSetName: + - --account-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2021-06-01 + response: + body: + string: '{"value":[{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/azext","name":"azext","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-15T07:20:26.3629732Z","key2":"2021-10-15T07:20:26.3629732Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T07:20:26.3629732Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T07:20:26.3629732Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T07:20:26.2379798Z","primaryEndpoints":{"dfs":"https://azext.dfs.core.windows.net/","web":"https://azext.z13.web.core.windows.net/","blob":"https://azext.blob.core.windows.net/","queue":"https://azext.queue.core.windows.net/","table":"https://azext.table.core.windows.net/","file":"https://azext.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azext-secondary.dfs.core.windows.net/","web":"https://azext-secondary.z13.web.core.windows.net/","blob":"https://azext-secondary.blob.core.windows.net/","queue":"https://azext-secondary.queue.core.windows.net/","table":"https://azext-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-beta/providers/Microsoft.Storage/storageAccounts/azureclibetarelease","name":"azureclibetarelease","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-11T10:32:24.8036511Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-11T10:32:24.8036511Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-06-11T10:32:24.7099044Z","primaryEndpoints":{"dfs":"https://azureclibetarelease.dfs.core.windows.net/","web":"https://azureclibetarelease.z13.web.core.windows.net/","blob":"https://azureclibetarelease.blob.core.windows.net/","queue":"https://azureclibetarelease.queue.core.windows.net/","table":"https://azureclibetarelease.table.core.windows.net/","file":"https://azureclibetarelease.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azureclibetarelease-secondary.dfs.core.windows.net/","web":"https://azureclibetarelease-secondary.z13.web.core.windows.net/","blob":"https://azureclibetarelease-secondary.blob.core.windows.net/","queue":"https://azureclibetarelease-secondary.queue.core.windows.net/","table":"https://azureclibetarelease-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestresult/providers/Microsoft.Storage/storageAccounts/clitestresultstac","name":"clitestresultstac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-15T06:20:52.6907255Z","primaryEndpoints":{"dfs":"https://clitestresultstac.dfs.core.windows.net/","web":"https://clitestresultstac.z13.web.core.windows.net/","blob":"https://clitestresultstac.blob.core.windows.net/","queue":"https://clitestresultstac.queue.core.windows.net/","table":"https://clitestresultstac.table.core.windows.net/","file":"https://clitestresultstac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clitestresultstac-secondary.dfs.core.windows.net/","web":"https://clitestresultstac-secondary.z13.web.core.windows.net/","blob":"https://clitestresultstac-secondary.blob.core.windows.net/","queue":"https://clitestresultstac-secondary.queue.core.windows.net/","table":"https://clitestresultstac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MSP_bez-rg_bez-diskpool_eastus/providers/Microsoft.Storage/storageAccounts/diag211012t072040rmjrhhi","name":"diag211012t072040rmjrhhi","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"MSP_BuildVersion":"20211008-2.master.5bd2896a","MSP_DPMajorVersion":"v2_DualVm","MSP_DPMinorVersion":"0","k":"v"},"properties":{"keyCreationTime":{"key1":"2021-10-12T07:20:43.6860609Z","key2":"2021-10-12T07:20:43.6860609Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-12T07:20:43.7016857Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-12T07:20:43.7016857Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-12T07:20:43.5611096Z","primaryEndpoints":{"dfs":"https://diag211012t072040rmjrhhi.dfs.core.windows.net/","web":"https://diag211012t072040rmjrhhi.z13.web.core.windows.net/","blob":"https://diag211012t072040rmjrhhi.blob.core.windows.net/","queue":"https://diag211012t072040rmjrhhi.queue.core.windows.net/","table":"https://diag211012t072040rmjrhhi.table.core.windows.net/","file":"https://diag211012t072040rmjrhhi.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryapptest/providers/Microsoft.Storage/storageAccounts/galleryappaccount","name":"galleryappaccount","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-20T06:11:14.2816483Z","key2":"2021-10-20T06:11:14.2816483Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T06:11:14.2972777Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T06:11:14.2972777Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-20T06:11:14.1723329Z","primaryEndpoints":{"dfs":"https://galleryappaccount.dfs.core.windows.net/","web":"https://galleryappaccount.z13.web.core.windows.net/","blob":"https://galleryappaccount.blob.core.windows.net/","queue":"https://galleryappaccount.queue.core.windows.net/","table":"https://galleryappaccount.table.core.windows.net/","file":"https://galleryappaccount.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://galleryappaccount-secondary.dfs.core.windows.net/","web":"https://galleryappaccount-secondary.z13.web.core.windows.net/","blob":"https://galleryappaccount-secondary.blob.core.windows.net/","queue":"https://galleryappaccount-secondary.queue.core.windows.net/","table":"https://galleryappaccount-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/galleryapptestaccount","name":"galleryapptestaccount","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-20T02:51:38.9977139Z","key2":"2021-10-20T02:51:38.9977139Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T02:51:38.9977139Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T02:51:38.9977139Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-20T02:51:38.8727156Z","primaryEndpoints":{"dfs":"https://galleryapptestaccount.dfs.core.windows.net/","web":"https://galleryapptestaccount.z13.web.core.windows.net/","blob":"https://galleryapptestaccount.blob.core.windows.net/","queue":"https://galleryapptestaccount.queue.core.windows.net/","table":"https://galleryapptestaccount.table.core.windows.net/","file":"https://galleryapptestaccount.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-dev/providers/Microsoft.Storage/storageAccounts/jlst1007","name":"jlst1007","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-14T03:14:38.1272477Z","key2":"2021-10-07T06:12:08.4901645Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"resourceAccessRules":[],"bypass":"None","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-07T06:12:08.4901645Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-07T06:12:08.4901645Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2021-10-07T06:12:08.3807870Z","primaryEndpoints":{"dfs":"https://jlst1007.dfs.core.windows.net/","web":"https://jlst1007.z13.web.core.windows.net/","blob":"https://jlst1007.blob.core.windows.net/","queue":"https://jlst1007.queue.core.windows.net/","table":"https://jlst1007.table.core.windows.net/","file":"https://jlst1007.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portal2cli/providers/Microsoft.Storage/storageAccounts/portal2clistorage","name":"portal2clistorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-14T07:23:08.7502552Z","primaryEndpoints":{"dfs":"https://portal2clistorage.dfs.core.windows.net/","web":"https://portal2clistorage.z13.web.core.windows.net/","blob":"https://portal2clistorage.blob.core.windows.net/","queue":"https://portal2clistorage.queue.core.windows.net/","table":"https://portal2clistorage.table.core.windows.net/","file":"https://portal2clistorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://portal2clistorage-secondary.dfs.core.windows.net/","web":"https://portal2clistorage-secondary.z13.web.core.windows.net/","blob":"https://portal2clistorage-secondary.blob.core.windows.net/","queue":"https://portal2clistorage-secondary.queue.core.windows.net/","table":"https://portal2clistorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/privatepackage","name":"privatepackage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-19T08:53:09.0238938Z","key2":"2021-10-19T08:53:09.0238938Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-19T08:53:09.0238938Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-19T08:53:09.0238938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-19T08:53:08.9301661Z","primaryEndpoints":{"dfs":"https://privatepackage.dfs.core.windows.net/","web":"https://privatepackage.z13.web.core.windows.net/","blob":"https://privatepackage.blob.core.windows.net/","queue":"https://privatepackage.queue.core.windows.net/","table":"https://privatepackage.table.core.windows.net/","file":"https://privatepackage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://privatepackage-secondary.dfs.core.windows.net/","web":"https://privatepackage-secondary.z13.web.core.windows.net/","blob":"https://privatepackage-secondary.blob.core.windows.net/","queue":"https://privatepackage-secondary.queue.core.windows.net/","table":"https://privatepackage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/queuetest/providers/Microsoft.Storage/storageAccounts/qteststac","name":"qteststac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-11-10T05:21:49.0582561Z","key2":"2021-11-10T05:21:49.0582561Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-10T05:21:49.0582561Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-10T05:21:49.0582561Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-10T05:21:48.9488735Z","primaryEndpoints":{"dfs":"https://qteststac.dfs.core.windows.net/","web":"https://qteststac.z13.web.core.windows.net/","blob":"https://qteststac.blob.core.windows.net/","queue":"https://qteststac.queue.core.windows.net/","table":"https://qteststac.table.core.windows.net/","file":"https://qteststac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qteststac-secondary.dfs.core.windows.net/","web":"https://qteststac-secondary.z13.web.core.windows.net/","blob":"https://qteststac-secondary.blob.core.windows.net/","queue":"https://qteststac-secondary.queue.core.windows.net/","table":"https://qteststac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-purview-msyyc/providers/Microsoft.Storage/storageAccounts/scaneastusxncccyt","name":"scaneastusxncccyt","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-23T01:56:19.6672075Z","key2":"2021-08-23T01:56:19.6672075Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T01:56:19.6672075Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T01:56:19.6672075Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-23T01:56:19.5422473Z","primaryEndpoints":{"dfs":"https://scaneastusxncccyt.dfs.core.windows.net/","web":"https://scaneastusxncccyt.z13.web.core.windows.net/","blob":"https://scaneastusxncccyt.blob.core.windows.net/","queue":"https://scaneastusxncccyt.queue.core.windows.net/","table":"https://scaneastusxncccyt.table.core.windows.net/","file":"https://scaneastusxncccyt.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bez-rg/providers/Microsoft.Storage/storageAccounts/storagecontainer4test","name":"storagecontainer4test","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-15T02:14:52.4005326Z","key2":"2021-11-15T02:14:52.4005326Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-15T02:14:52.4005326Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-15T02:14:52.4005326Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2021-11-15T02:14:52.2599198Z","primaryEndpoints":{"dfs":"https://storagecontainer4test.dfs.core.windows.net/","blob":"https://storagecontainer4test.blob.core.windows.net/","table":"https://storagecontainer4test.table.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testvlw","name":"testvlw","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-27T06:47:50.5497427Z","key2":"2021-10-27T06:47:50.5497427Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:47:50.5497427Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:47:50.5497427Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T06:47:50.4247606Z","primaryEndpoints":{"dfs":"https://testvlw.dfs.core.windows.net/","web":"https://testvlw.z13.web.core.windows.net/","blob":"https://testvlw.blob.core.windows.net/","queue":"https://testvlw.queue.core.windows.net/","table":"https://testvlw.table.core.windows.net/","file":"https://testvlw.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testvlw-secondary.dfs.core.windows.net/","web":"https://testvlw-secondary.z13.web.core.windows.net/","blob":"https://testvlw-secondary.blob.core.windows.net/","queue":"https://testvlw-secondary.queue.core.windows.net/","table":"https://testvlw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssa","name":"yssa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"key1":"value1"},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-08-16T08:39:21.3287573Z","key2":"2021-08-16T08:39:21.3287573Z"},"privateEndpointConnections":[],"hnsOnMigrationInProgress":false,"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-16T08:39:21.3287573Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-16T08:39:21.3287573Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-16T08:39:21.2193709Z","primaryEndpoints":{"dfs":"https://yssa.dfs.core.windows.net/","web":"https://yssa.z13.web.core.windows.net/","blob":"https://yssa.blob.core.windows.net/","queue":"https://yssa.queue.core.windows.net/","table":"https://yssa.table.core.windows.net/","file":"https://yssa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsa","name":"zhiyihuangsa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-10T05:47:01.2111871Z","key2":"2021-09-10T05:47:01.2111871Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T05:47:01.2111871Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T05:47:01.2111871Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-10T05:47:01.0861745Z","primaryEndpoints":{"dfs":"https://zhiyihuangsa.dfs.core.windows.net/","web":"https://zhiyihuangsa.z13.web.core.windows.net/","blob":"https://zhiyihuangsa.blob.core.windows.net/","queue":"https://zhiyihuangsa.queue.core.windows.net/","table":"https://zhiyihuangsa.table.core.windows.net/","file":"https://zhiyihuangsa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhiyihuangsa-secondary.dfs.core.windows.net/","web":"https://zhiyihuangsa-secondary.z13.web.core.windows.net/","blob":"https://zhiyihuangsa-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsa-secondary.queue.core.windows.net/","table":"https://zhiyihuangsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azextensionedge","name":"azextensionedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-22T08:51:57.6947156Z","primaryEndpoints":{"dfs":"https://azextensionedge.dfs.core.windows.net/","web":"https://azextensionedge.z22.web.core.windows.net/","blob":"https://azextensionedge.blob.core.windows.net/","queue":"https://azextensionedge.queue.core.windows.net/","table":"https://azextensionedge.table.core.windows.net/","file":"https://azextensionedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azextensionedge-secondary.dfs.core.windows.net/","web":"https://azextensionedge-secondary.z22.web.core.windows.net/","blob":"https://azextensionedge-secondary.blob.core.windows.net/","queue":"https://azextensionedge-secondary.queue.core.windows.net/","table":"https://azextensionedge-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azurecliedge","name":"azurecliedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-13T08:41:36.2389304Z","primaryEndpoints":{"dfs":"https://azurecliedge.dfs.core.windows.net/","web":"https://azurecliedge.z22.web.core.windows.net/","blob":"https://azurecliedge.blob.core.windows.net/","queue":"https://azurecliedge.queue.core.windows.net/","table":"https://azurecliedge.table.core.windows.net/","file":"https://azurecliedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhddmban3xow2tgyly5j6xaruoliqaj443p3brq46idi/providers/Microsoft.Storage/storageAccounts/clitest4ydp57ynxl5tcjktl","name":"clitest4ydp57ynxl5tcjktl","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-21T06:49:12.4084643Z","key2":"2021-04-21T06:49:12.4084643Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-21T06:49:12.4240887Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-21T06:49:12.4240887Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-21T06:49:12.3303684Z","primaryEndpoints":{"blob":"https://clitest4ydp57ynxl5tcjktl.blob.core.windows.net/","queue":"https://clitest4ydp57ynxl5tcjktl.queue.core.windows.net/","table":"https://clitest4ydp57ynxl5tcjktl.table.core.windows.net/","file":"https://clitest4ydp57ynxl5tcjktl.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_gispc7ysv7inh53dpsqcfmuifcpnlfdpblbk7oeusu256nqvo/providers/Microsoft.Storage/storageAccounts/clitestinwmrbyrcxw4mqbtg","name":"clitestinwmrbyrcxw4mqbtg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-24T08:05:49.2469830Z","key2":"2021-11-24T08:05:49.2469830Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-24T08:05:49.2469830Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-24T08:05:49.2469830Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-11-24T08:05:49.1532219Z","primaryEndpoints":{"blob":"https://clitestinwmrbyrcxw4mqbtg.blob.core.windows.net/","queue":"https://clitestinwmrbyrcxw4mqbtg.queue.core.windows.net/","table":"https://clitestinwmrbyrcxw4mqbtg.table.core.windows.net/","file":"https://clitestinwmrbyrcxw4mqbtg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-24T08:05:48.7782353Z","key2":"2021-11-24T08:05:48.7782353Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-24T08:05:48.7782353Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-24T08:05:48.7782353Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-11-24T08:05:48.6844729Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhddqxkb6y7azmjc53fhkyr66se7po4i2ve5es2y46av/providers/Microsoft.Storage/storageAccounts/clitestuxrcexs7kgo3dqsiz","name":"clitestuxrcexs7kgo3dqsiz","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-21T07:08:35.7386114Z","key2":"2021-04-21T07:08:35.7386114Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-21T07:08:35.7386114Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-21T07:08:35.7386114Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-21T07:08:35.6448419Z","primaryEndpoints":{"blob":"https://clitestuxrcexs7kgo3dqsiz.blob.core.windows.net/","queue":"https://clitestuxrcexs7kgo3dqsiz.queue.core.windows.net/","table":"https://clitestuxrcexs7kgo3dqsiz.table.core.windows.net/","file":"https://clitestuxrcexs7kgo3dqsiz.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kairu-persist/providers/Microsoft.Storage/storageAccounts/kairu","name":"kairu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-13T07:35:18.9856251Z","primaryEndpoints":{"blob":"https://kairu.blob.core.windows.net/","queue":"https://kairu.queue.core.windows.net/","table":"https://kairu.table.core.windows.net/","file":"https://kairu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/pythonsdkmsyyc","name":"pythonsdkmsyyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-30T09:03:04.8209550Z","key2":"2021-06-30T09:03:04.8209550Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-30T09:03:04.8209550Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-30T09:03:04.8209550Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-30T09:03:04.7272348Z","primaryEndpoints":{"dfs":"https://pythonsdkmsyyc.dfs.core.windows.net/","web":"https://pythonsdkmsyyc.z22.web.core.windows.net/","blob":"https://pythonsdkmsyyc.blob.core.windows.net/","queue":"https://pythonsdkmsyyc.queue.core.windows.net/","table":"https://pythonsdkmsyyc.table.core.windows.net/","file":"https://pythonsdkmsyyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Storage/storageAccounts/storageyyc","name":"storageyyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-26T05:53:22.9974267Z","key2":"2021-09-26T05:53:22.9974267Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:53:22.9974267Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:53:22.9974267Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:53:22.9192578Z","primaryEndpoints":{"dfs":"https://storageyyc.dfs.core.windows.net/","web":"https://storageyyc.z22.web.core.windows.net/","blob":"https://storageyyc.blob.core.windows.net/","queue":"https://storageyyc.queue.core.windows.net/","table":"https://storageyyc.table.core.windows.net/","file":"https://storageyyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw","name":"testalw","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true,"immutabilityPolicy":{"immutabilityPeriodSinceCreationInDays":3,"state":"Disabled"}},"keyCreationTime":{"key1":"2021-10-27T06:27:50.3554138Z","key2":"2021-10-27T06:27:50.3554138Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:27:50.3554138Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:27:50.3554138Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T06:27:50.2616355Z","primaryEndpoints":{"dfs":"https://testalw.dfs.core.windows.net/","web":"https://testalw.z22.web.core.windows.net/","blob":"https://testalw.blob.core.windows.net/","queue":"https://testalw.queue.core.windows.net/","table":"https://testalw.table.core.windows.net/","file":"https://testalw.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testalw-secondary.dfs.core.windows.net/","web":"https://testalw-secondary.z22.web.core.windows.net/","blob":"https://testalw-secondary.blob.core.windows.net/","queue":"https://testalw-secondary.queue.core.windows.net/","table":"https://testalw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1027","name":"testalw1027","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true,"immutabilityPolicy":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}},"keyCreationTime":{"key1":"2021-10-27T07:34:49.7592232Z","key2":"2021-10-27T07:34:49.7592232Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T07:34:49.7592232Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T07:34:49.7592232Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T07:34:49.6810731Z","primaryEndpoints":{"dfs":"https://testalw1027.dfs.core.windows.net/","web":"https://testalw1027.z22.web.core.windows.net/","blob":"https://testalw1027.blob.core.windows.net/","queue":"https://testalw1027.queue.core.windows.net/","table":"https://testalw1027.table.core.windows.net/","file":"https://testalw1027.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testalw1027-secondary.dfs.core.windows.net/","web":"https://testalw1027-secondary.z22.web.core.windows.net/","blob":"https://testalw1027-secondary.blob.core.windows.net/","queue":"https://testalw1027-secondary.queue.core.windows.net/","table":"https://testalw1027-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1028","name":"testalw1028","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true,"immutabilityPolicy":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}},"keyCreationTime":{"key1":"2021-10-28T01:49:10.2414505Z","key2":"2021-10-28T01:49:10.2414505Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T01:49:10.2414505Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T01:49:10.2414505Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T01:49:10.1633042Z","primaryEndpoints":{"dfs":"https://testalw1028.dfs.core.windows.net/","web":"https://testalw1028.z22.web.core.windows.net/","blob":"https://testalw1028.blob.core.windows.net/","queue":"https://testalw1028.queue.core.windows.net/","table":"https://testalw1028.table.core.windows.net/","file":"https://testalw1028.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testalw1028-secondary.dfs.core.windows.net/","web":"https://testalw1028-secondary.z22.web.core.windows.net/","blob":"https://testalw1028-secondary.blob.core.windows.net/","queue":"https://testalw1028-secondary.queue.core.windows.net/","table":"https://testalw1028-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yshns","name":"yshns","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-15T02:10:28.4103368Z","key2":"2021-10-15T02:10:28.4103368Z"},"privateEndpointConnections":[],"hnsOnMigrationInProgress":false,"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T02:10:28.4103368Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T02:10:28.4103368Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T02:10:28.3165819Z","primaryEndpoints":{"dfs":"https://yshns.dfs.core.windows.net/","web":"https://yshns.z22.web.core.windows.net/","blob":"https://yshns.blob.core.windows.net/","queue":"https://yshns.queue.core.windows.net/","table":"https://yshns.table.core.windows.net/","file":"https://yshns.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yshns-secondary.dfs.core.windows.net/","web":"https://yshns-secondary.z22.web.core.windows.net/","blob":"https://yshns-secondary.blob.core.windows.net/","queue":"https://yshns-secondary.queue.core.windows.net/","table":"https://yshns-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/azuresdktest","name":"azuresdktest","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-08-12T06:32:07.0689199Z","primaryEndpoints":{"dfs":"https://azuresdktest.dfs.core.windows.net/","web":"https://azuresdktest.z7.web.core.windows.net/","blob":"https://azuresdktest.blob.core.windows.net/","queue":"https://azuresdktest.queue.core.windows.net/","table":"https://azuresdktest.table.core.windows.net/","file":"https://azuresdktest.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrglkh7zr7/providers/Microsoft.Storage/storageAccounts/clitest2f63bh43aix4wcnlh","name":"clitest2f63bh43aix4wcnlh","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.5541453Z","key2":"2021-04-22T08:17:38.5541453Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.5541453Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.5541453Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.4760163Z","primaryEndpoints":{"blob":"https://clitest2f63bh43aix4wcnlh.blob.core.windows.net/","queue":"https://clitest2f63bh43aix4wcnlh.queue.core.windows.net/","table":"https://clitest2f63bh43aix4wcnlh.table.core.windows.net/","file":"https://clitest2f63bh43aix4wcnlh.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh5duq2f6uh/providers/Microsoft.Storage/storageAccounts/clitest2vjedutxs37ymp4ni","name":"clitest2vjedutxs37ymp4ni","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.0424866Z","key2":"2021-04-23T07:13:21.0424866Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0581083Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0581083Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9643257Z","primaryEndpoints":{"blob":"https://clitest2vjedutxs37ymp4ni.blob.core.windows.net/","queue":"https://clitest2vjedutxs37ymp4ni.queue.core.windows.net/","table":"https://clitest2vjedutxs37ymp4ni.table.core.windows.net/","file":"https://clitest2vjedutxs37ymp4ni.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl6l3rg6atb/providers/Microsoft.Storage/storageAccounts/clitest4sjmiwke5nz3f67pu","name":"clitest4sjmiwke5nz3f67pu","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:02:15.3305055Z","key2":"2021-04-22T08:02:15.3305055Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.3305055Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.3305055Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.2523305Z","primaryEndpoints":{"blob":"https://clitest4sjmiwke5nz3f67pu.blob.core.windows.net/","queue":"https://clitest4sjmiwke5nz3f67pu.queue.core.windows.net/","table":"https://clitest4sjmiwke5nz3f67pu.table.core.windows.net/","file":"https://clitest4sjmiwke5nz3f67pu.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbbt37xr2le/providers/Microsoft.Storage/storageAccounts/clitest5frikrzhxwryrkfel","name":"clitest5frikrzhxwryrkfel","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:19:22.9620171Z","key2":"2021-04-22T08:19:22.9620171Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:19:22.9776721Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:19:22.9776721Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:19:22.8838883Z","primaryEndpoints":{"blob":"https://clitest5frikrzhxwryrkfel.blob.core.windows.net/","queue":"https://clitest5frikrzhxwryrkfel.queue.core.windows.net/","table":"https://clitest5frikrzhxwryrkfel.table.core.windows.net/","file":"https://clitest5frikrzhxwryrkfel.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrc4sjsrzt4/providers/Microsoft.Storage/storageAccounts/clitest63b5vtkhuf7auho6z","name":"clitest63b5vtkhuf7auho6z","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.3198561Z","key2":"2021-04-22T08:17:38.3198561Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.3198561Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.3198561Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.2416459Z","primaryEndpoints":{"blob":"https://clitest63b5vtkhuf7auho6z.blob.core.windows.net/","queue":"https://clitest63b5vtkhuf7auho6z.queue.core.windows.net/","table":"https://clitest63b5vtkhuf7auho6z.table.core.windows.net/","file":"https://clitest63b5vtkhuf7auho6z.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitest6jusqp4qvczw52pql","name":"clitest6jusqp4qvczw52pql","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:05:08.7847684Z","key2":"2021-04-22T08:05:08.7847684Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:05:08.8003328Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:05:08.8003328Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:05:08.7065579Z","primaryEndpoints":{"blob":"https://clitest6jusqp4qvczw52pql.blob.core.windows.net/","queue":"https://clitest6jusqp4qvczw52pql.queue.core.windows.net/","table":"https://clitest6jusqp4qvczw52pql.table.core.windows.net/","file":"https://clitest6jusqp4qvczw52pql.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitest6qixwlhm5see7ipqv","name":"clitest6qixwlhm5see7ipqv","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:42:54.6967487Z","key2":"2021-04-23T03:42:54.6967487Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.6967487Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.6967487Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.6186031Z","primaryEndpoints":{"blob":"https://clitest6qixwlhm5see7ipqv.blob.core.windows.net/","queue":"https://clitest6qixwlhm5see7ipqv.queue.core.windows.net/","table":"https://clitest6qixwlhm5see7ipqv.table.core.windows.net/","file":"https://clitest6qixwlhm5see7ipqv.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbbt37xr2le/providers/Microsoft.Storage/storageAccounts/clitest74vl6rwuxl5fbuklw","name":"clitest74vl6rwuxl5fbuklw","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.2260082Z","key2":"2021-04-22T08:17:38.2260082Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.2260082Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.2260082Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.1635154Z","primaryEndpoints":{"blob":"https://clitest74vl6rwuxl5fbuklw.blob.core.windows.net/","queue":"https://clitest74vl6rwuxl5fbuklw.queue.core.windows.net/","table":"https://clitest74vl6rwuxl5fbuklw.table.core.windows.net/","file":"https://clitest74vl6rwuxl5fbuklw.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitestaxzz2w4ay2wruyjs5","name":"clitestaxzz2w4ay2wruyjs5","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:02:15.6585801Z","key2":"2021-04-22T08:02:15.6585801Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.6585801Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.6585801Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.5804737Z","primaryEndpoints":{"blob":"https://clitestaxzz2w4ay2wruyjs5.blob.core.windows.net/","queue":"https://clitestaxzz2w4ay2wruyjs5.queue.core.windows.net/","table":"https://clitestaxzz2w4ay2wruyjs5.table.core.windows.net/","file":"https://clitestaxzz2w4ay2wruyjs5.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiudkrkxpl4/providers/Microsoft.Storage/storageAccounts/clitestbiegaggvgwivkqyyi","name":"clitestbiegaggvgwivkqyyi","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.8705764Z","key2":"2021-04-23T07:13:20.8705764Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.8861995Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.8861995Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.7925187Z","primaryEndpoints":{"blob":"https://clitestbiegaggvgwivkqyyi.blob.core.windows.net/","queue":"https://clitestbiegaggvgwivkqyyi.queue.core.windows.net/","table":"https://clitestbiegaggvgwivkqyyi.table.core.windows.net/","file":"https://clitestbiegaggvgwivkqyyi.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg46ia57tmnz/providers/Microsoft.Storage/storageAccounts/clitestdlxtp24ycnjl3jui2","name":"clitestdlxtp24ycnjl3jui2","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:42:54.3217696Z","key2":"2021-04-23T03:42:54.3217696Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.3217696Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.3217696Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.2436164Z","primaryEndpoints":{"blob":"https://clitestdlxtp24ycnjl3jui2.blob.core.windows.net/","queue":"https://clitestdlxtp24ycnjl3jui2.queue.core.windows.net/","table":"https://clitestdlxtp24ycnjl3jui2.table.core.windows.net/","file":"https://clitestdlxtp24ycnjl3jui2.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg23akmjlz2r/providers/Microsoft.Storage/storageAccounts/clitestdmmxq6bklh35yongi","name":"clitestdmmxq6bklh35yongi","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-05T19:49:04.6966074Z","key2":"2021-08-05T19:49:04.6966074Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.6966074Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.6966074Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-05T19:49:04.6185933Z","primaryEndpoints":{"blob":"https://clitestdmmxq6bklh35yongi.blob.core.windows.net/","queue":"https://clitestdmmxq6bklh35yongi.queue.core.windows.net/","table":"https://clitestdmmxq6bklh35yongi.table.core.windows.net/","file":"https://clitestdmmxq6bklh35yongi.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv3m577d7ho/providers/Microsoft.Storage/storageAccounts/clitestej2fvhoj3zogyp5e7","name":"clitestej2fvhoj3zogyp5e7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:42:54.7279926Z","key2":"2021-04-23T03:42:54.7279926Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.7279926Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.7279926Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.6342444Z","primaryEndpoints":{"blob":"https://clitestej2fvhoj3zogyp5e7.blob.core.windows.net/","queue":"https://clitestej2fvhoj3zogyp5e7.queue.core.windows.net/","table":"https://clitestej2fvhoj3zogyp5e7.table.core.windows.net/","file":"https://clitestej2fvhoj3zogyp5e7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp6ikwpcsq7/providers/Microsoft.Storage/storageAccounts/clitestggvkyebv5o55dhakj","name":"clitestggvkyebv5o55dhakj","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.2300019Z","key2":"2021-04-23T07:13:21.2300019Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.2456239Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.2456239Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:21.1518492Z","primaryEndpoints":{"blob":"https://clitestggvkyebv5o55dhakj.blob.core.windows.net/","queue":"https://clitestggvkyebv5o55dhakj.queue.core.windows.net/","table":"https://clitestggvkyebv5o55dhakj.table.core.windows.net/","file":"https://clitestggvkyebv5o55dhakj.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn6glpfa25c/providers/Microsoft.Storage/storageAccounts/clitestgt3fjzabc7taya5zo","name":"clitestgt3fjzabc7taya5zo","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.6675009Z","key2":"2021-04-23T07:13:20.6675009Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6831653Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6831653Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.5894204Z","primaryEndpoints":{"blob":"https://clitestgt3fjzabc7taya5zo.blob.core.windows.net/","queue":"https://clitestgt3fjzabc7taya5zo.queue.core.windows.net/","table":"https://clitestgt3fjzabc7taya5zo.table.core.windows.net/","file":"https://clitestgt3fjzabc7taya5zo.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgptzwacrnwa/providers/Microsoft.Storage/storageAccounts/clitestivtrt5tp624n63ast","name":"clitestivtrt5tp624n63ast","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.1166795Z","key2":"2021-04-22T08:17:38.1166795Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.1166795Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.1166795Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.0541529Z","primaryEndpoints":{"blob":"https://clitestivtrt5tp624n63ast.blob.core.windows.net/","queue":"https://clitestivtrt5tp624n63ast.queue.core.windows.net/","table":"https://clitestivtrt5tp624n63ast.table.core.windows.net/","file":"https://clitestivtrt5tp624n63ast.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdc25pvki6m/providers/Microsoft.Storage/storageAccounts/clitestkxu4ahsqaxv42cyyf","name":"clitestkxu4ahsqaxv42cyyf","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:02:15.7523496Z","key2":"2021-04-22T08:02:15.7523496Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.7523496Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.7523496Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.6742355Z","primaryEndpoints":{"blob":"https://clitestkxu4ahsqaxv42cyyf.blob.core.windows.net/","queue":"https://clitestkxu4ahsqaxv42cyyf.queue.core.windows.net/","table":"https://clitestkxu4ahsqaxv42cyyf.table.core.windows.net/","file":"https://clitestkxu4ahsqaxv42cyyf.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghkyqf7pb5/providers/Microsoft.Storage/storageAccounts/clitestpuea6vlqwxw6ihiws","name":"clitestpuea6vlqwxw6ihiws","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.0581083Z","key2":"2021-04-23T07:13:21.0581083Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0737014Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0737014Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9799581Z","primaryEndpoints":{"blob":"https://clitestpuea6vlqwxw6ihiws.blob.core.windows.net/","queue":"https://clitestpuea6vlqwxw6ihiws.queue.core.windows.net/","table":"https://clitestpuea6vlqwxw6ihiws.table.core.windows.net/","file":"https://clitestpuea6vlqwxw6ihiws.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbo2ure7pgp/providers/Microsoft.Storage/storageAccounts/clitestsnv7joygpazk23npj","name":"clitestsnv7joygpazk23npj","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-21T02:19:20.7474327Z","key2":"2021-05-21T02:19:20.7474327Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-21T02:19:20.7474327Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-21T02:19:20.7474327Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-21T02:19:20.6537267Z","primaryEndpoints":{"blob":"https://clitestsnv7joygpazk23npj.blob.core.windows.net/","queue":"https://clitestsnv7joygpazk23npj.queue.core.windows.net/","table":"https://clitestsnv7joygpazk23npj.table.core.windows.net/","file":"https://clitestsnv7joygpazk23npj.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.Storage/storageAccounts/clitestu3p7a7ib4n4y7gt4m","name":"clitestu3p7a7ib4n4y7gt4m","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T01:51:53.0189478Z","primaryEndpoints":{"blob":"https://clitestu3p7a7ib4n4y7gt4m.blob.core.windows.net/","queue":"https://clitestu3p7a7ib4n4y7gt4m.queue.core.windows.net/","table":"https://clitestu3p7a7ib4n4y7gt4m.table.core.windows.net/","file":"https://clitestu3p7a7ib4n4y7gt4m.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitestwqzjytdeun46rphfd","name":"clitestwqzjytdeun46rphfd","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:44:35.3668592Z","key2":"2021-04-23T03:44:35.3668592Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:44:35.3668592Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:44:35.3668592Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:44:35.2887580Z","primaryEndpoints":{"blob":"https://clitestwqzjytdeun46rphfd.blob.core.windows.net/","queue":"https://clitestwqzjytdeun46rphfd.queue.core.windows.net/","table":"https://clitestwqzjytdeun46rphfd.table.core.windows.net/","file":"https://clitestwqzjytdeun46rphfd.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgltfej7yr4u/providers/Microsoft.Storage/storageAccounts/clitestwvsg2uskf4i7vjfto","name":"clitestwvsg2uskf4i7vjfto","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-13T07:48:30.9247776Z","key2":"2021-05-13T07:48:30.9247776Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-13T07:48:30.9403727Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-13T07:48:30.9403727Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-13T07:48:30.8309682Z","primaryEndpoints":{"blob":"https://clitestwvsg2uskf4i7vjfto.blob.core.windows.net/","queue":"https://clitestwvsg2uskf4i7vjfto.queue.core.windows.net/","table":"https://clitestwvsg2uskf4i7vjfto.table.core.windows.net/","file":"https://clitestwvsg2uskf4i7vjfto.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzjznhcqaoh/providers/Microsoft.Storage/storageAccounts/clitestwznnmnfot33xjztmk","name":"clitestwznnmnfot33xjztmk","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.7299628Z","key2":"2021-04-23T07:13:20.7299628Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.7456181Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.7456181Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.6518776Z","primaryEndpoints":{"blob":"https://clitestwznnmnfot33xjztmk.blob.core.windows.net/","queue":"https://clitestwznnmnfot33xjztmk.queue.core.windows.net/","table":"https://clitestwznnmnfot33xjztmk.table.core.windows.net/","file":"https://clitestwznnmnfot33xjztmk.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4yns4yxisb/providers/Microsoft.Storage/storageAccounts/clitestyt6rxgad3kebqzh26","name":"clitestyt6rxgad3kebqzh26","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-05T19:49:04.8528440Z","key2":"2021-08-05T19:49:04.8528440Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.8528440Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.8528440Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-05T19:49:04.7747435Z","primaryEndpoints":{"blob":"https://clitestyt6rxgad3kebqzh26.blob.core.windows.net/","queue":"https://clitestyt6rxgad3kebqzh26.queue.core.windows.net/","table":"https://clitestyt6rxgad3kebqzh26.table.core.windows.net/","file":"https://clitestyt6rxgad3kebqzh26.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgovptfsocfg/providers/Microsoft.Storage/storageAccounts/clitestz72bbbbv2cio2pmom","name":"clitestz72bbbbv2cio2pmom","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.0112600Z","key2":"2021-04-23T07:13:21.0112600Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0268549Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0268549Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9330720Z","primaryEndpoints":{"blob":"https://clitestz72bbbbv2cio2pmom.blob.core.windows.net/","queue":"https://clitestz72bbbbv2cio2pmom.queue.core.windows.net/","table":"https://clitestz72bbbbv2cio2pmom.table.core.windows.net/","file":"https://clitestz72bbbbv2cio2pmom.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxp7uwuibs5/providers/Microsoft.Storage/storageAccounts/clitestzrwidkqplnw3jmz4z","name":"clitestzrwidkqplnw3jmz4z","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.6831653Z","key2":"2021-04-23T07:13:20.6831653Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6987004Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6987004Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.6049571Z","primaryEndpoints":{"blob":"https://clitestzrwidkqplnw3jmz4z.blob.core.windows.net/","queue":"https://clitestzrwidkqplnw3jmz4z.queue.core.windows.net/","table":"https://clitestzrwidkqplnw3jmz4z.table.core.windows.net/","file":"https://clitestzrwidkqplnw3jmz4z.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524","name":"cs1100320004dd89524","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-26T05:48:15.7013062Z","key2":"2021-03-26T05:48:15.7013062Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-26T05:48:15.6545059Z","primaryEndpoints":{"dfs":"https://cs1100320004dd89524.dfs.core.windows.net/","web":"https://cs1100320004dd89524.z23.web.core.windows.net/","blob":"https://cs1100320004dd89524.blob.core.windows.net/","queue":"https://cs1100320004dd89524.queue.core.windows.net/","table":"https://cs1100320004dd89524.table.core.windows.net/","file":"https://cs1100320004dd89524.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320005416c8c9","name":"cs1100320005416c8c9","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-07-09T05:58:20.1898753Z","key2":"2021-07-09T05:58:20.1898753Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-09T05:58:20.2055665Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-09T05:58:20.2055665Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-09T05:58:20.0961322Z","primaryEndpoints":{"dfs":"https://cs1100320005416c8c9.dfs.core.windows.net/","web":"https://cs1100320005416c8c9.z23.web.core.windows.net/","blob":"https://cs1100320005416c8c9.blob.core.windows.net/","queue":"https://cs1100320005416c8c9.queue.core.windows.net/","table":"https://cs1100320005416c8c9.table.core.windows.net/","file":"https://cs1100320005416c8c9.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320007b1ce356","name":"cs1100320007b1ce356","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-08-31T13:56:10.5497663Z","key2":"2021-08-31T13:56:10.5497663Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T13:56:10.5497663Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T13:56:10.5497663Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-31T13:56:10.4560533Z","primaryEndpoints":{"dfs":"https://cs1100320007b1ce356.dfs.core.windows.net/","web":"https://cs1100320007b1ce356.z23.web.core.windows.net/","blob":"https://cs1100320007b1ce356.blob.core.windows.net/","queue":"https://cs1100320007b1ce356.queue.core.windows.net/","table":"https://cs1100320007b1ce356.table.core.windows.net/","file":"https://cs1100320007b1ce356.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867","name":"cs1100320007de01867","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-25T03:24:00.9490326Z","primaryEndpoints":{"dfs":"https://cs1100320007de01867.dfs.core.windows.net/","web":"https://cs1100320007de01867.z23.web.core.windows.net/","blob":"https://cs1100320007de01867.blob.core.windows.net/","queue":"https://cs1100320007de01867.queue.core.windows.net/","table":"https://cs1100320007de01867.table.core.windows.net/","file":"https://cs1100320007de01867.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200087c55daf","name":"cs11003200087c55daf","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-07-21T00:43:24.0011691Z","key2":"2021-07-21T00:43:24.0011691Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-21T00:43:24.0011691Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-21T00:43:24.0011691Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-21T00:43:23.9230250Z","primaryEndpoints":{"dfs":"https://cs11003200087c55daf.dfs.core.windows.net/","web":"https://cs11003200087c55daf.z23.web.core.windows.net/","blob":"https://cs11003200087c55daf.blob.core.windows.net/","queue":"https://cs11003200087c55daf.queue.core.windows.net/","table":"https://cs11003200087c55daf.table.core.windows.net/","file":"https://cs11003200087c55daf.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc","name":"cs1100320008debd5bc","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-17T07:12:44.1132341Z","key2":"2021-03-17T07:12:44.1132341Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-17T07:12:44.0351358Z","primaryEndpoints":{"dfs":"https://cs1100320008debd5bc.dfs.core.windows.net/","web":"https://cs1100320008debd5bc.z23.web.core.windows.net/","blob":"https://cs1100320008debd5bc.blob.core.windows.net/","queue":"https://cs1100320008debd5bc.queue.core.windows.net/","table":"https://cs1100320008debd5bc.table.core.windows.net/","file":"https://cs1100320008debd5bc.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000919ef7c5","name":"cs110032000919ef7c5","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-10-09T02:02:43.1652268Z","key2":"2021-10-09T02:02:43.1652268Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-09T02:02:43.1652268Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-09T02:02:43.1652268Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-09T02:02:43.0714900Z","primaryEndpoints":{"dfs":"https://cs110032000919ef7c5.dfs.core.windows.net/","web":"https://cs110032000919ef7c5.z23.web.core.windows.net/","blob":"https://cs110032000919ef7c5.blob.core.windows.net/","queue":"https://cs110032000919ef7c5.queue.core.windows.net/","table":"https://cs110032000919ef7c5.table.core.windows.net/","file":"https://cs110032000919ef7c5.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771","name":"cs11003200092fe0771","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-23T07:08:51.1436686Z","key2":"2021-03-23T07:08:51.1436686Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-23T07:08:51.0811120Z","primaryEndpoints":{"dfs":"https://cs11003200092fe0771.dfs.core.windows.net/","web":"https://cs11003200092fe0771.z23.web.core.windows.net/","blob":"https://cs11003200092fe0771.blob.core.windows.net/","queue":"https://cs11003200092fe0771.queue.core.windows.net/","table":"https://cs11003200092fe0771.table.core.windows.net/","file":"https://cs11003200092fe0771.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c","name":"cs110032000b6f3c90c","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-05-06T05:28:23.2493456Z","key2":"2021-05-06T05:28:23.2493456Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-06T05:28:23.2493456Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-06T05:28:23.2493456Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-06T05:28:23.1868245Z","primaryEndpoints":{"dfs":"https://cs110032000b6f3c90c.dfs.core.windows.net/","web":"https://cs110032000b6f3c90c.z23.web.core.windows.net/","blob":"https://cs110032000b6f3c90c.blob.core.windows.net/","queue":"https://cs110032000b6f3c90c.queue.core.windows.net/","table":"https://cs110032000b6f3c90c.table.core.windows.net/","file":"https://cs110032000b6f3c90c.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71","name":"cs110032000c31bae71","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-04-15T06:39:35.4649198Z","key2":"2021-04-15T06:39:35.4649198Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-15T06:39:35.4180004Z","primaryEndpoints":{"dfs":"https://cs110032000c31bae71.dfs.core.windows.net/","web":"https://cs110032000c31bae71.z23.web.core.windows.net/","blob":"https://cs110032000c31bae71.blob.core.windows.net/","queue":"https://cs110032000c31bae71.queue.core.windows.net/","table":"https://cs110032000c31bae71.table.core.windows.net/","file":"https://cs110032000c31bae71.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00","name":"cs110032000ca62af00","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-22T02:06:18.4217109Z","primaryEndpoints":{"dfs":"https://cs110032000ca62af00.dfs.core.windows.net/","web":"https://cs110032000ca62af00.z23.web.core.windows.net/","blob":"https://cs110032000ca62af00.blob.core.windows.net/","queue":"https://cs110032000ca62af00.queue.core.windows.net/","table":"https://cs110032000ca62af00.table.core.windows.net/","file":"https://cs110032000ca62af00.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e1cb9f41","name":"cs110032000e1cb9f41","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-06-01T02:14:02.8985613Z","key2":"2021-06-01T02:14:02.8985613Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-01T02:14:02.9140912Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-01T02:14:02.9140912Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-01T02:14:02.8047066Z","primaryEndpoints":{"dfs":"https://cs110032000e1cb9f41.dfs.core.windows.net/","web":"https://cs110032000e1cb9f41.z23.web.core.windows.net/","blob":"https://cs110032000e1cb9f41.blob.core.windows.net/","queue":"https://cs110032000e1cb9f41.queue.core.windows.net/","table":"https://cs110032000e1cb9f41.table.core.windows.net/","file":"https://cs110032000e1cb9f41.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978","name":"cs110032000e3121978","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-04-25T07:26:43.6124221Z","key2":"2021-04-25T07:26:43.6124221Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-25T07:26:43.6124221Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-25T07:26:43.6124221Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-25T07:26:43.5343583Z","primaryEndpoints":{"dfs":"https://cs110032000e3121978.dfs.core.windows.net/","web":"https://cs110032000e3121978.z23.web.core.windows.net/","blob":"https://cs110032000e3121978.blob.core.windows.net/","queue":"https://cs110032000e3121978.queue.core.windows.net/","table":"https://cs110032000e3121978.table.core.windows.net/","file":"https://cs110032000e3121978.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000f3aac891","name":"cs110032000f3aac891","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-10-08T11:18:17.0122606Z","key2":"2021-10-08T11:18:17.0122606Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-08T11:18:17.0122606Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-08T11:18:17.0122606Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-08T11:18:16.9184856Z","primaryEndpoints":{"dfs":"https://cs110032000f3aac891.dfs.core.windows.net/","web":"https://cs110032000f3aac891.z23.web.core.windows.net/","blob":"https://cs110032000f3aac891.blob.core.windows.net/","queue":"https://cs110032000f3aac891.queue.core.windows.net/","table":"https://cs110032000f3aac891.table.core.windows.net/","file":"https://cs110032000f3aac891.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320010339dce7","name":"cs1100320010339dce7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-07-01T12:55:31.1442388Z","key2":"2021-07-01T12:55:31.1442388Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-01T12:55:31.1442388Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-01T12:55:31.1442388Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-01T12:55:31.0661165Z","primaryEndpoints":{"dfs":"https://cs1100320010339dce7.dfs.core.windows.net/","web":"https://cs1100320010339dce7.z23.web.core.windows.net/","blob":"https://cs1100320010339dce7.blob.core.windows.net/","queue":"https://cs1100320010339dce7.queue.core.windows.net/","table":"https://cs1100320010339dce7.table.core.windows.net/","file":"https://cs1100320010339dce7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47","name":"cs11003200127365c47","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-25T03:10:52.6098894Z","key2":"2021-03-25T03:10:52.6098894Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-25T03:10:52.5318146Z","primaryEndpoints":{"dfs":"https://cs11003200127365c47.dfs.core.windows.net/","web":"https://cs11003200127365c47.z23.web.core.windows.net/","blob":"https://cs11003200127365c47.blob.core.windows.net/","queue":"https://cs11003200127365c47.queue.core.windows.net/","table":"https://cs11003200127365c47.table.core.windows.net/","file":"https://cs11003200127365c47.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200129e38348","name":"cs11003200129e38348","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-05-24T06:59:16.3135399Z","key2":"2021-05-24T06:59:16.3135399Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-24T06:59:16.3135399Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-24T06:59:16.3135399Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-24T06:59:16.2198282Z","primaryEndpoints":{"dfs":"https://cs11003200129e38348.dfs.core.windows.net/","web":"https://cs11003200129e38348.z23.web.core.windows.net/","blob":"https://cs11003200129e38348.blob.core.windows.net/","queue":"https://cs11003200129e38348.queue.core.windows.net/","table":"https://cs11003200129e38348.table.core.windows.net/","file":"https://cs11003200129e38348.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452","name":"cs1100320012c36c452","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-04-09T08:04:25.5979407Z","key2":"2021-04-09T08:04:25.5979407Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-09T08:04:25.5198295Z","primaryEndpoints":{"dfs":"https://cs1100320012c36c452.dfs.core.windows.net/","web":"https://cs1100320012c36c452.z23.web.core.windows.net/","blob":"https://cs1100320012c36c452.blob.core.windows.net/","queue":"https://cs1100320012c36c452.queue.core.windows.net/","table":"https://cs1100320012c36c452.table.core.windows.net/","file":"https://cs1100320012c36c452.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001520b2764","name":"cs110032001520b2764","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-09-03T08:56:46.2009376Z","key2":"2021-09-03T08:56:46.2009376Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T08:56:46.2009376Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T08:56:46.2009376Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-03T08:56:46.1071770Z","primaryEndpoints":{"dfs":"https://cs110032001520b2764.dfs.core.windows.net/","web":"https://cs110032001520b2764.z23.web.core.windows.net/","blob":"https://cs110032001520b2764.blob.core.windows.net/","queue":"https://cs110032001520b2764.queue.core.windows.net/","table":"https://cs110032001520b2764.table.core.windows.net/","file":"https://cs110032001520b2764.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320016ac59291","name":"cs1100320016ac59291","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-08-10T06:12:25.7518719Z","key2":"2021-08-10T06:12:25.7518719Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-10T06:12:25.7518719Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-10T06:12:25.7518719Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-10T06:12:25.6581170Z","primaryEndpoints":{"dfs":"https://cs1100320016ac59291.dfs.core.windows.net/","web":"https://cs1100320016ac59291.z23.web.core.windows.net/","blob":"https://cs1100320016ac59291.blob.core.windows.net/","queue":"https://cs1100320016ac59291.queue.core.windows.net/","table":"https://cs1100320016ac59291.table.core.windows.net/","file":"https://cs1100320016ac59291.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320018cedbbd6","name":"cs1100320018cedbbd6","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-11-02T06:32:13.4022120Z","key2":"2021-11-02T06:32:13.4022120Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T06:32:13.4022120Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T06:32:13.4022120Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-02T06:32:13.3084745Z","primaryEndpoints":{"dfs":"https://cs1100320018cedbbd6.dfs.core.windows.net/","web":"https://cs1100320018cedbbd6.z23.web.core.windows.net/","blob":"https://cs1100320018cedbbd6.blob.core.windows.net/","queue":"https://cs1100320018cedbbd6.queue.core.windows.net/","table":"https://cs1100320018cedbbd6.table.core.windows.net/","file":"https://cs1100320018cedbbd6.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-dev/providers/Microsoft.Storage/storageAccounts/jl0927","name":"jl0927","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-09-27T09:22:48.0910647Z","key2":"2021-09-27T09:22:48.0910647Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T09:22:48.0910647Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T09:22:48.0910647Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-27T09:22:47.9973304Z","primaryEndpoints":{"dfs":"https://jl0927.dfs.core.windows.net/","web":"https://jl0927.z23.web.core.windows.net/","blob":"https://jl0927.blob.core.windows.net/","queue":"https://jl0927.queue.core.windows.net/","table":"https://jl0927.table.core.windows.net/","file":"https://jl0927.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-feng-purview/providers/Microsoft.Storage/storageAccounts/scansouthcentralusdteqbx","name":"scansouthcentralusdteqbx","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-23T06:00:34.2251607Z","key2":"2021-09-23T06:00:34.2251607Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-23T06:00:34.2251607Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-23T06:00:34.2251607Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-23T06:00:34.1313540Z","primaryEndpoints":{"dfs":"https://scansouthcentralusdteqbx.dfs.core.windows.net/","web":"https://scansouthcentralusdteqbx.z21.web.core.windows.net/","blob":"https://scansouthcentralusdteqbx.blob.core.windows.net/","queue":"https://scansouthcentralusdteqbx.queue.core.windows.net/","table":"https://scansouthcentralusdteqbx.table.core.windows.net/","file":"https://scansouthcentralusdteqbx.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/extmigrate","name":"extmigrate","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-16T08:26:10.5858998Z","primaryEndpoints":{"blob":"https://extmigrate.blob.core.windows.net/","queue":"https://extmigrate.queue.core.windows.net/","table":"https://extmigrate.table.core.windows.net/","file":"https://extmigrate.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://extmigrate-secondary.blob.core.windows.net/","queue":"https://extmigrate-secondary.queue.core.windows.net/","table":"https://extmigrate-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-14T06:47:20.1106748Z","key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"dfs":"https://fengsa.dfs.core.windows.net/","web":"https://fengsa.z19.web.core.windows.net/","blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengsa-secondary.dfs.core.windows.net/","web":"https://fengsa-secondary.z19.web.core.windows.net/","blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengtestsa","name":"fengtestsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T03:10:28.6266623Z","primaryEndpoints":{"dfs":"https://fengtestsa.dfs.core.windows.net/","web":"https://fengtestsa.z19.web.core.windows.net/","blob":"https://fengtestsa.blob.core.windows.net/","queue":"https://fengtestsa.queue.core.windows.net/","table":"https://fengtestsa.table.core.windows.net/","file":"https://fengtestsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengtestsa-secondary.dfs.core.windows.net/","web":"https://fengtestsa-secondary.z19.web.core.windows.net/","blob":"https://fengtestsa-secondary.blob.core.windows.net/","queue":"https://fengtestsa-secondary.queue.core.windows.net/","table":"https://fengtestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:07:42.1277444Z","primaryEndpoints":{"dfs":"https://storagesfrepro1.dfs.core.windows.net/","web":"https://storagesfrepro1.z19.web.core.windows.net/","blob":"https://storagesfrepro1.blob.core.windows.net/","queue":"https://storagesfrepro1.queue.core.windows.net/","table":"https://storagesfrepro1.table.core.windows.net/","file":"https://storagesfrepro1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro1-secondary.dfs.core.windows.net/","web":"https://storagesfrepro1-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro1-secondary.blob.core.windows.net/","queue":"https://storagesfrepro1-secondary.queue.core.windows.net/","table":"https://storagesfrepro1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro10","name":"storagesfrepro10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:00.7815921Z","primaryEndpoints":{"dfs":"https://storagesfrepro10.dfs.core.windows.net/","web":"https://storagesfrepro10.z19.web.core.windows.net/","blob":"https://storagesfrepro10.blob.core.windows.net/","queue":"https://storagesfrepro10.queue.core.windows.net/","table":"https://storagesfrepro10.table.core.windows.net/","file":"https://storagesfrepro10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro10-secondary.dfs.core.windows.net/","web":"https://storagesfrepro10-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro10-secondary.blob.core.windows.net/","queue":"https://storagesfrepro10-secondary.queue.core.windows.net/","table":"https://storagesfrepro10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro11","name":"storagesfrepro11","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:28.8609347Z","primaryEndpoints":{"dfs":"https://storagesfrepro11.dfs.core.windows.net/","web":"https://storagesfrepro11.z19.web.core.windows.net/","blob":"https://storagesfrepro11.blob.core.windows.net/","queue":"https://storagesfrepro11.queue.core.windows.net/","table":"https://storagesfrepro11.table.core.windows.net/","file":"https://storagesfrepro11.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro11-secondary.dfs.core.windows.net/","web":"https://storagesfrepro11-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro11-secondary.blob.core.windows.net/","queue":"https://storagesfrepro11-secondary.queue.core.windows.net/","table":"https://storagesfrepro11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro12","name":"storagesfrepro12","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:15:15.5848345Z","primaryEndpoints":{"dfs":"https://storagesfrepro12.dfs.core.windows.net/","web":"https://storagesfrepro12.z19.web.core.windows.net/","blob":"https://storagesfrepro12.blob.core.windows.net/","queue":"https://storagesfrepro12.queue.core.windows.net/","table":"https://storagesfrepro12.table.core.windows.net/","file":"https://storagesfrepro12.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro12-secondary.dfs.core.windows.net/","web":"https://storagesfrepro12-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro12-secondary.blob.core.windows.net/","queue":"https://storagesfrepro12-secondary.queue.core.windows.net/","table":"https://storagesfrepro12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro13","name":"storagesfrepro13","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:16:55.6671828Z","primaryEndpoints":{"dfs":"https://storagesfrepro13.dfs.core.windows.net/","web":"https://storagesfrepro13.z19.web.core.windows.net/","blob":"https://storagesfrepro13.blob.core.windows.net/","queue":"https://storagesfrepro13.queue.core.windows.net/","table":"https://storagesfrepro13.table.core.windows.net/","file":"https://storagesfrepro13.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro13-secondary.dfs.core.windows.net/","web":"https://storagesfrepro13-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro13-secondary.blob.core.windows.net/","queue":"https://storagesfrepro13-secondary.queue.core.windows.net/","table":"https://storagesfrepro13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro14","name":"storagesfrepro14","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:17:40.6880204Z","primaryEndpoints":{"dfs":"https://storagesfrepro14.dfs.core.windows.net/","web":"https://storagesfrepro14.z19.web.core.windows.net/","blob":"https://storagesfrepro14.blob.core.windows.net/","queue":"https://storagesfrepro14.queue.core.windows.net/","table":"https://storagesfrepro14.table.core.windows.net/","file":"https://storagesfrepro14.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro14-secondary.dfs.core.windows.net/","web":"https://storagesfrepro14-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro14-secondary.blob.core.windows.net/","queue":"https://storagesfrepro14-secondary.queue.core.windows.net/","table":"https://storagesfrepro14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro15","name":"storagesfrepro15","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:18:52.0718543Z","primaryEndpoints":{"dfs":"https://storagesfrepro15.dfs.core.windows.net/","web":"https://storagesfrepro15.z19.web.core.windows.net/","blob":"https://storagesfrepro15.blob.core.windows.net/","queue":"https://storagesfrepro15.queue.core.windows.net/","table":"https://storagesfrepro15.table.core.windows.net/","file":"https://storagesfrepro15.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro15-secondary.dfs.core.windows.net/","web":"https://storagesfrepro15-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro15-secondary.blob.core.windows.net/","queue":"https://storagesfrepro15-secondary.queue.core.windows.net/","table":"https://storagesfrepro15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro16","name":"storagesfrepro16","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:19:33.0770034Z","primaryEndpoints":{"dfs":"https://storagesfrepro16.dfs.core.windows.net/","web":"https://storagesfrepro16.z19.web.core.windows.net/","blob":"https://storagesfrepro16.blob.core.windows.net/","queue":"https://storagesfrepro16.queue.core.windows.net/","table":"https://storagesfrepro16.table.core.windows.net/","file":"https://storagesfrepro16.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro16-secondary.dfs.core.windows.net/","web":"https://storagesfrepro16-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro16-secondary.blob.core.windows.net/","queue":"https://storagesfrepro16-secondary.queue.core.windows.net/","table":"https://storagesfrepro16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro17","name":"storagesfrepro17","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:23.4771469Z","primaryEndpoints":{"dfs":"https://storagesfrepro17.dfs.core.windows.net/","web":"https://storagesfrepro17.z19.web.core.windows.net/","blob":"https://storagesfrepro17.blob.core.windows.net/","queue":"https://storagesfrepro17.queue.core.windows.net/","table":"https://storagesfrepro17.table.core.windows.net/","file":"https://storagesfrepro17.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro17-secondary.dfs.core.windows.net/","web":"https://storagesfrepro17-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro17-secondary.blob.core.windows.net/","queue":"https://storagesfrepro17-secondary.queue.core.windows.net/","table":"https://storagesfrepro17-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro18","name":"storagesfrepro18","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:53.7383176Z","primaryEndpoints":{"dfs":"https://storagesfrepro18.dfs.core.windows.net/","web":"https://storagesfrepro18.z19.web.core.windows.net/","blob":"https://storagesfrepro18.blob.core.windows.net/","queue":"https://storagesfrepro18.queue.core.windows.net/","table":"https://storagesfrepro18.table.core.windows.net/","file":"https://storagesfrepro18.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro18-secondary.dfs.core.windows.net/","web":"https://storagesfrepro18-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro18-secondary.blob.core.windows.net/","queue":"https://storagesfrepro18-secondary.queue.core.windows.net/","table":"https://storagesfrepro18-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro19","name":"storagesfrepro19","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:05:26.2556326Z","primaryEndpoints":{"dfs":"https://storagesfrepro19.dfs.core.windows.net/","web":"https://storagesfrepro19.z19.web.core.windows.net/","blob":"https://storagesfrepro19.blob.core.windows.net/","queue":"https://storagesfrepro19.queue.core.windows.net/","table":"https://storagesfrepro19.table.core.windows.net/","file":"https://storagesfrepro19.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro19-secondary.dfs.core.windows.net/","web":"https://storagesfrepro19-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro19-secondary.blob.core.windows.net/","queue":"https://storagesfrepro19-secondary.queue.core.windows.net/","table":"https://storagesfrepro19-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro2","name":"storagesfrepro2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:08:45.7717196Z","primaryEndpoints":{"dfs":"https://storagesfrepro2.dfs.core.windows.net/","web":"https://storagesfrepro2.z19.web.core.windows.net/","blob":"https://storagesfrepro2.blob.core.windows.net/","queue":"https://storagesfrepro2.queue.core.windows.net/","table":"https://storagesfrepro2.table.core.windows.net/","file":"https://storagesfrepro2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro2-secondary.dfs.core.windows.net/","web":"https://storagesfrepro2-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro2-secondary.blob.core.windows.net/","queue":"https://storagesfrepro2-secondary.queue.core.windows.net/","table":"https://storagesfrepro2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro20","name":"storagesfrepro20","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:07.3358422Z","primaryEndpoints":{"dfs":"https://storagesfrepro20.dfs.core.windows.net/","web":"https://storagesfrepro20.z19.web.core.windows.net/","blob":"https://storagesfrepro20.blob.core.windows.net/","queue":"https://storagesfrepro20.queue.core.windows.net/","table":"https://storagesfrepro20.table.core.windows.net/","file":"https://storagesfrepro20.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro20-secondary.dfs.core.windows.net/","web":"https://storagesfrepro20-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro20-secondary.blob.core.windows.net/","queue":"https://storagesfrepro20-secondary.queue.core.windows.net/","table":"https://storagesfrepro20-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro21","name":"storagesfrepro21","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:37.3686460Z","primaryEndpoints":{"dfs":"https://storagesfrepro21.dfs.core.windows.net/","web":"https://storagesfrepro21.z19.web.core.windows.net/","blob":"https://storagesfrepro21.blob.core.windows.net/","queue":"https://storagesfrepro21.queue.core.windows.net/","table":"https://storagesfrepro21.table.core.windows.net/","file":"https://storagesfrepro21.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro21-secondary.dfs.core.windows.net/","web":"https://storagesfrepro21-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro21-secondary.blob.core.windows.net/","queue":"https://storagesfrepro21-secondary.queue.core.windows.net/","table":"https://storagesfrepro21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro22","name":"storagesfrepro22","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:59.7201581Z","primaryEndpoints":{"dfs":"https://storagesfrepro22.dfs.core.windows.net/","web":"https://storagesfrepro22.z19.web.core.windows.net/","blob":"https://storagesfrepro22.blob.core.windows.net/","queue":"https://storagesfrepro22.queue.core.windows.net/","table":"https://storagesfrepro22.table.core.windows.net/","file":"https://storagesfrepro22.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro22-secondary.dfs.core.windows.net/","web":"https://storagesfrepro22-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro22-secondary.blob.core.windows.net/","queue":"https://storagesfrepro22-secondary.queue.core.windows.net/","table":"https://storagesfrepro22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro23","name":"storagesfrepro23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:29.0065050Z","primaryEndpoints":{"dfs":"https://storagesfrepro23.dfs.core.windows.net/","web":"https://storagesfrepro23.z19.web.core.windows.net/","blob":"https://storagesfrepro23.blob.core.windows.net/","queue":"https://storagesfrepro23.queue.core.windows.net/","table":"https://storagesfrepro23.table.core.windows.net/","file":"https://storagesfrepro23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro23-secondary.dfs.core.windows.net/","web":"https://storagesfrepro23-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro23-secondary.blob.core.windows.net/","queue":"https://storagesfrepro23-secondary.queue.core.windows.net/","table":"https://storagesfrepro23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro24","name":"storagesfrepro24","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:53.1565651Z","primaryEndpoints":{"dfs":"https://storagesfrepro24.dfs.core.windows.net/","web":"https://storagesfrepro24.z19.web.core.windows.net/","blob":"https://storagesfrepro24.blob.core.windows.net/","queue":"https://storagesfrepro24.queue.core.windows.net/","table":"https://storagesfrepro24.table.core.windows.net/","file":"https://storagesfrepro24.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro24-secondary.dfs.core.windows.net/","web":"https://storagesfrepro24-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro24-secondary.blob.core.windows.net/","queue":"https://storagesfrepro24-secondary.queue.core.windows.net/","table":"https://storagesfrepro24-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro25","name":"storagesfrepro25","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:08:18.6338258Z","primaryEndpoints":{"dfs":"https://storagesfrepro25.dfs.core.windows.net/","web":"https://storagesfrepro25.z19.web.core.windows.net/","blob":"https://storagesfrepro25.blob.core.windows.net/","queue":"https://storagesfrepro25.queue.core.windows.net/","table":"https://storagesfrepro25.table.core.windows.net/","file":"https://storagesfrepro25.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro25-secondary.dfs.core.windows.net/","web":"https://storagesfrepro25-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro25-secondary.blob.core.windows.net/","queue":"https://storagesfrepro25-secondary.queue.core.windows.net/","table":"https://storagesfrepro25-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro3","name":"storagesfrepro3","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:19.3510997Z","primaryEndpoints":{"dfs":"https://storagesfrepro3.dfs.core.windows.net/","web":"https://storagesfrepro3.z19.web.core.windows.net/","blob":"https://storagesfrepro3.blob.core.windows.net/","queue":"https://storagesfrepro3.queue.core.windows.net/","table":"https://storagesfrepro3.table.core.windows.net/","file":"https://storagesfrepro3.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro3-secondary.dfs.core.windows.net/","web":"https://storagesfrepro3-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro3-secondary.blob.core.windows.net/","queue":"https://storagesfrepro3-secondary.queue.core.windows.net/","table":"https://storagesfrepro3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro4","name":"storagesfrepro4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:54.8993063Z","primaryEndpoints":{"dfs":"https://storagesfrepro4.dfs.core.windows.net/","web":"https://storagesfrepro4.z19.web.core.windows.net/","blob":"https://storagesfrepro4.blob.core.windows.net/","queue":"https://storagesfrepro4.queue.core.windows.net/","table":"https://storagesfrepro4.table.core.windows.net/","file":"https://storagesfrepro4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro4-secondary.dfs.core.windows.net/","web":"https://storagesfrepro4-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro4-secondary.blob.core.windows.net/","queue":"https://storagesfrepro4-secondary.queue.core.windows.net/","table":"https://storagesfrepro4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro5","name":"storagesfrepro5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:10:48.0177273Z","primaryEndpoints":{"dfs":"https://storagesfrepro5.dfs.core.windows.net/","web":"https://storagesfrepro5.z19.web.core.windows.net/","blob":"https://storagesfrepro5.blob.core.windows.net/","queue":"https://storagesfrepro5.queue.core.windows.net/","table":"https://storagesfrepro5.table.core.windows.net/","file":"https://storagesfrepro5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro5-secondary.dfs.core.windows.net/","web":"https://storagesfrepro5-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro5-secondary.blob.core.windows.net/","queue":"https://storagesfrepro5-secondary.queue.core.windows.net/","table":"https://storagesfrepro5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro6","name":"storagesfrepro6","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:11:27.9331594Z","primaryEndpoints":{"dfs":"https://storagesfrepro6.dfs.core.windows.net/","web":"https://storagesfrepro6.z19.web.core.windows.net/","blob":"https://storagesfrepro6.blob.core.windows.net/","queue":"https://storagesfrepro6.queue.core.windows.net/","table":"https://storagesfrepro6.table.core.windows.net/","file":"https://storagesfrepro6.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro6-secondary.dfs.core.windows.net/","web":"https://storagesfrepro6-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro6-secondary.blob.core.windows.net/","queue":"https://storagesfrepro6-secondary.queue.core.windows.net/","table":"https://storagesfrepro6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro7","name":"storagesfrepro7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:08.6824637Z","primaryEndpoints":{"dfs":"https://storagesfrepro7.dfs.core.windows.net/","web":"https://storagesfrepro7.z19.web.core.windows.net/","blob":"https://storagesfrepro7.blob.core.windows.net/","queue":"https://storagesfrepro7.queue.core.windows.net/","table":"https://storagesfrepro7.table.core.windows.net/","file":"https://storagesfrepro7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro7-secondary.dfs.core.windows.net/","web":"https://storagesfrepro7-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro7-secondary.blob.core.windows.net/","queue":"https://storagesfrepro7-secondary.queue.core.windows.net/","table":"https://storagesfrepro7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro8","name":"storagesfrepro8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:39.4283923Z","primaryEndpoints":{"dfs":"https://storagesfrepro8.dfs.core.windows.net/","web":"https://storagesfrepro8.z19.web.core.windows.net/","blob":"https://storagesfrepro8.blob.core.windows.net/","queue":"https://storagesfrepro8.queue.core.windows.net/","table":"https://storagesfrepro8.table.core.windows.net/","file":"https://storagesfrepro8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro8-secondary.dfs.core.windows.net/","web":"https://storagesfrepro8-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro8-secondary.blob.core.windows.net/","queue":"https://storagesfrepro8-secondary.queue.core.windows.net/","table":"https://storagesfrepro8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro9","name":"storagesfrepro9","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:13:18.0691096Z","primaryEndpoints":{"dfs":"https://storagesfrepro9.dfs.core.windows.net/","web":"https://storagesfrepro9.z19.web.core.windows.net/","blob":"https://storagesfrepro9.blob.core.windows.net/","queue":"https://storagesfrepro9.queue.core.windows.net/","table":"https://storagesfrepro9.table.core.windows.net/","file":"https://storagesfrepro9.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro9-secondary.dfs.core.windows.net/","web":"https://storagesfrepro9-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro9-secondary.blob.core.windows.net/","queue":"https://storagesfrepro9-secondary.queue.core.windows.net/","table":"https://storagesfrepro9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_acctestRG-ibt-24_acctest-IBT-0710-2_4ebedb5a-e3b1-4675-aa4c-3c160fe70907/providers/Microsoft.Storage/storageAccounts/6ynst8ytvcms52eviy9cme3e","name":"6ynst8ytvcms52eviy9cme3e","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{"createdby":"azureimagebuilder","magicvalue":"0d819542a3774a2a8709401a7cd09eb8"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-07-10T11:43:29.9651518Z","primaryEndpoints":{"blob":"https://6ynst8ytvcms52eviy9cme3e.blob.core.windows.net/","queue":"https://6ynst8ytvcms52eviy9cme3e.queue.core.windows.net/","table":"https://6ynst8ytvcms52eviy9cme3e.table.core.windows.net/","file":"https://6ynst8ytvcms52eviy9cme3e.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-fypurview/providers/Microsoft.Storage/storageAccounts/scanwestus2ghwdfbf","name":"scanwestus2ghwdfbf","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-28T03:24:36.3735480Z","key2":"2021-09-28T03:24:36.3735480Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T03:24:36.3891539Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T03:24:36.3891539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T03:24:36.2797988Z","primaryEndpoints":{"dfs":"https://scanwestus2ghwdfbf.dfs.core.windows.net/","web":"https://scanwestus2ghwdfbf.z5.web.core.windows.net/","blob":"https://scanwestus2ghwdfbf.blob.core.windows.net/","queue":"https://scanwestus2ghwdfbf.queue.core.windows.net/","table":"https://scanwestus2ghwdfbf.table.core.windows.net/","file":"https://scanwestus2ghwdfbf.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-file-handle-rg/providers/Microsoft.Storage/storageAccounts/testfilehandlesa","name":"testfilehandlesa","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-11-02T02:22:24.9147695Z","key2":"2021-11-02T02:22:24.9147695Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T02:22:24.9147695Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T02:22:24.9147695Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-02T02:22:24.8209748Z","primaryEndpoints":{"dfs":"https://testfilehandlesa.dfs.core.windows.net/","web":"https://testfilehandlesa.z5.web.core.windows.net/","blob":"https://testfilehandlesa.blob.core.windows.net/","queue":"https://testfilehandlesa.queue.core.windows.net/","table":"https://testfilehandlesa.table.core.windows.net/","file":"https://testfilehandlesa.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testfilehandlesa-secondary.dfs.core.windows.net/","web":"https://testfilehandlesa-secondary.z5.web.core.windows.net/","blob":"https://testfilehandlesa-secondary.blob.core.windows.net/","queue":"https://testfilehandlesa-secondary.queue.core.windows.net/","table":"https://testfilehandlesa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test1124/providers/Microsoft.Storage/storageAccounts/ystestsa","name":"ystestsa","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-24T06:28:08.3026622Z","key2":"2021-11-24T06:28:08.3026622Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-24T06:28:08.3026622Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-24T06:28:08.3026622Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-24T06:28:08.2245068Z","primaryEndpoints":{"dfs":"https://ystestsa.dfs.core.windows.net/","web":"https://ystestsa.z5.web.core.windows.net/","blob":"https://ystestsa.blob.core.windows.net/","queue":"https://ystestsa.queue.core.windows.net/","table":"https://ystestsa.table.core.windows.net/","file":"https://ystestsa.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ystestsa-secondary.dfs.core.windows.net/","web":"https://ystestsa-secondary.z5.web.core.windows.net/","blob":"https://ystestsa-secondary.blob.core.windows.net/","queue":"https://ystestsa-secondary.queue.core.windows.net/","table":"https://ystestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk3dgx6acfu6yrvvipseyqbiwldnaohcywhpi65w7jys42kv5gjs2pljpz5o7bsoah/providers/Microsoft.Storage/storageAccounts/clitest3tllg4jqytzq27ejk","name":"clitest3tllg4jqytzq27ejk","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-01T19:36:53.0876733Z","key2":"2021-11-01T19:36:53.0876733Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:36:53.0876733Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:36:53.0876733Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-01T19:36:53.0095332Z","primaryEndpoints":{"dfs":"https://clitest3tllg4jqytzq27ejk.dfs.core.windows.net/","web":"https://clitest3tllg4jqytzq27ejk.z3.web.core.windows.net/","blob":"https://clitest3tllg4jqytzq27ejk.blob.core.windows.net/","queue":"https://clitest3tllg4jqytzq27ejk.queue.core.windows.net/","table":"https://clitest3tllg4jqytzq27ejk.table.core.windows.net/","file":"https://clitest3tllg4jqytzq27ejk.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgllxoprxwjouhrzsd4vrfhqkpy7ft2fwgtiub56wonkmtvsogumww7h36czdisqqxm/providers/Microsoft.Storage/storageAccounts/clitest4slutm4qduocdiy7o","name":"clitest4slutm4qduocdiy7o","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-18T23:17:57.1095774Z","key2":"2021-11-18T23:17:57.1095774Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:57.1252046Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:57.1252046Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:17:57.0471042Z","primaryEndpoints":{"dfs":"https://clitest4slutm4qduocdiy7o.dfs.core.windows.net/","web":"https://clitest4slutm4qduocdiy7o.z3.web.core.windows.net/","blob":"https://clitest4slutm4qduocdiy7o.blob.core.windows.net/","queue":"https://clitest4slutm4qduocdiy7o.queue.core.windows.net/","table":"https://clitest4slutm4qduocdiy7o.table.core.windows.net/","file":"https://clitest4slutm4qduocdiy7o.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkqf4cu665yaejvrvcvhfklfoep7xw2qhgk7q5qkmosqpcdypz6aubtjovadrpefmu/providers/Microsoft.Storage/storageAccounts/clitest4ypv67tuvo34umfu5","name":"clitest4ypv67tuvo34umfu5","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-27T08:37:30.4318022Z","key2":"2021-09-27T08:37:30.4318022Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:37:30.4474578Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:37:30.4474578Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-27T08:37:30.3536782Z","primaryEndpoints":{"dfs":"https://clitest4ypv67tuvo34umfu5.dfs.core.windows.net/","web":"https://clitest4ypv67tuvo34umfu5.z3.web.core.windows.net/","blob":"https://clitest4ypv67tuvo34umfu5.blob.core.windows.net/","queue":"https://clitest4ypv67tuvo34umfu5.queue.core.windows.net/","table":"https://clitest4ypv67tuvo34umfu5.table.core.windows.net/","file":"https://clitest4ypv67tuvo34umfu5.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc5jqtmvrtl3o7vxoerxlozv7wigv64wbsa22tgbgkmtqqgw5r6zycdvmm6lsu2hgb/providers/Microsoft.Storage/storageAccounts/clitest63bx2k5whs46xb72f","name":"clitest63bx2k5whs46xb72f","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-29T22:30:48.3706890Z","key2":"2021-10-29T22:30:48.3706890Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:30:48.3706890Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:30:48.3706890Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-29T22:30:48.2925495Z","primaryEndpoints":{"dfs":"https://clitest63bx2k5whs46xb72f.dfs.core.windows.net/","web":"https://clitest63bx2k5whs46xb72f.z3.web.core.windows.net/","blob":"https://clitest63bx2k5whs46xb72f.blob.core.windows.net/","queue":"https://clitest63bx2k5whs46xb72f.queue.core.windows.net/","table":"https://clitest63bx2k5whs46xb72f.table.core.windows.net/","file":"https://clitest63bx2k5whs46xb72f.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgefj7prpkkfwowsohocdcgln4afkr36ayb7msfujq5xbxbhzxt6nl6226d6wpfd2v6/providers/Microsoft.Storage/storageAccounts/clitestajyrm6yrgbf4c5i2s","name":"clitestajyrm6yrgbf4c5i2s","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T05:36:26.5400357Z","key2":"2021-09-26T05:36:26.5400357Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:36:26.5400357Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:36:26.5400357Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:36:26.4619069Z","primaryEndpoints":{"dfs":"https://clitestajyrm6yrgbf4c5i2s.dfs.core.windows.net/","web":"https://clitestajyrm6yrgbf4c5i2s.z3.web.core.windows.net/","blob":"https://clitestajyrm6yrgbf4c5i2s.blob.core.windows.net/","queue":"https://clitestajyrm6yrgbf4c5i2s.queue.core.windows.net/","table":"https://clitestajyrm6yrgbf4c5i2s.table.core.windows.net/","file":"https://clitestajyrm6yrgbf4c5i2s.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglbpqpmgzjcfuaz4feleprn435rcjy72gfcclbzlno6zqjglg4vmjeekjfwp5ftczi/providers/Microsoft.Storage/storageAccounts/clitestbokalj4mocrwa4z32","name":"clitestbokalj4mocrwa4z32","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-29T22:30:16.8234389Z","key2":"2021-10-29T22:30:16.8234389Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:30:16.8234389Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:30:16.8234389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-29T22:30:16.7453107Z","primaryEndpoints":{"dfs":"https://clitestbokalj4mocrwa4z32.dfs.core.windows.net/","web":"https://clitestbokalj4mocrwa4z32.z3.web.core.windows.net/","blob":"https://clitestbokalj4mocrwa4z32.blob.core.windows.net/","queue":"https://clitestbokalj4mocrwa4z32.queue.core.windows.net/","table":"https://clitestbokalj4mocrwa4z32.table.core.windows.net/","file":"https://clitestbokalj4mocrwa4z32.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqqra7wllrqyeeka3jdtjjyjmqgvnwxpupwgn7gbi2vj2uiakni76ibediq2ngx2zs/providers/Microsoft.Storage/storageAccounts/clitestem4u2qtb7reiye6va","name":"clitestem4u2qtb7reiye6va","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T23:37:04.0767855Z","key2":"2021-10-22T23:37:04.0767855Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:37:04.0767855Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:37:04.0767855Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:37:04.0142815Z","primaryEndpoints":{"dfs":"https://clitestem4u2qtb7reiye6va.dfs.core.windows.net/","web":"https://clitestem4u2qtb7reiye6va.z3.web.core.windows.net/","blob":"https://clitestem4u2qtb7reiye6va.blob.core.windows.net/","queue":"https://clitestem4u2qtb7reiye6va.queue.core.windows.net/","table":"https://clitestem4u2qtb7reiye6va.table.core.windows.net/","file":"https://clitestem4u2qtb7reiye6va.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgorreyhcvnrewddhwjxfruu4jhexosk74hcq54o7pql6oiom4dhg4p45g6pwbrngfk/providers/Microsoft.Storage/storageAccounts/clitesterbttochhqmi5enzk","name":"clitesterbttochhqmi5enzk","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T15:56:16.9200018Z","key2":"2021-10-22T15:56:16.9200018Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:16.9200018Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:16.9200018Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T15:56:16.8575242Z","primaryEndpoints":{"dfs":"https://clitesterbttochhqmi5enzk.dfs.core.windows.net/","web":"https://clitesterbttochhqmi5enzk.z3.web.core.windows.net/","blob":"https://clitesterbttochhqmi5enzk.blob.core.windows.net/","queue":"https://clitesterbttochhqmi5enzk.queue.core.windows.net/","table":"https://clitesterbttochhqmi5enzk.table.core.windows.net/","file":"https://clitesterbttochhqmi5enzk.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzqoxctlppqseceswyeq36zau2eysrbugzmir6vxpsztoivt4atecrszzqgzpvjalj/providers/Microsoft.Storage/storageAccounts/clitestexazhooj6txsp4bif","name":"clitestexazhooj6txsp4bif","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:28:55.7862697Z","key2":"2021-09-26T06:28:55.7862697Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:28:55.8018954Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:28:55.8018954Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:28:55.7237634Z","primaryEndpoints":{"dfs":"https://clitestexazhooj6txsp4bif.dfs.core.windows.net/","web":"https://clitestexazhooj6txsp4bif.z3.web.core.windows.net/","blob":"https://clitestexazhooj6txsp4bif.blob.core.windows.net/","queue":"https://clitestexazhooj6txsp4bif.queue.core.windows.net/","table":"https://clitestexazhooj6txsp4bif.table.core.windows.net/","file":"https://clitestexazhooj6txsp4bif.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmwn5njjtr3wry7duhuccs6h5oxxiw2rhcfdlewmqw56fo3qehaoqulk5ktmyahglf/providers/Microsoft.Storage/storageAccounts/clitestfnjxc5idgmeluoxtm","name":"clitestfnjxc5idgmeluoxtm","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-27T08:40:43.7468930Z","key2":"2021-09-27T08:40:43.7468930Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:40:43.7625432Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:40:43.7625432Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-27T08:40:43.6688132Z","primaryEndpoints":{"dfs":"https://clitestfnjxc5idgmeluoxtm.dfs.core.windows.net/","web":"https://clitestfnjxc5idgmeluoxtm.z3.web.core.windows.net/","blob":"https://clitestfnjxc5idgmeluoxtm.blob.core.windows.net/","queue":"https://clitestfnjxc5idgmeluoxtm.queue.core.windows.net/","table":"https://clitestfnjxc5idgmeluoxtm.table.core.windows.net/","file":"https://clitestfnjxc5idgmeluoxtm.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4bazn4hnlcnsaasp63k6nvrlmtkyo7dqcjkyopsehticnihafl57ntorbz7ixqwos/providers/Microsoft.Storage/storageAccounts/clitestgnremsz2uxbgdy6uo","name":"clitestgnremsz2uxbgdy6uo","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-05T08:33:08.0149596Z","key2":"2021-11-05T08:33:08.0149596Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:33:08.0305829Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:33:08.0305829Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-05T08:33:07.9368092Z","primaryEndpoints":{"dfs":"https://clitestgnremsz2uxbgdy6uo.dfs.core.windows.net/","web":"https://clitestgnremsz2uxbgdy6uo.z3.web.core.windows.net/","blob":"https://clitestgnremsz2uxbgdy6uo.blob.core.windows.net/","queue":"https://clitestgnremsz2uxbgdy6uo.queue.core.windows.net/","table":"https://clitestgnremsz2uxbgdy6uo.table.core.windows.net/","file":"https://clitestgnremsz2uxbgdy6uo.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn2hrmou3vupc7hxv534r6ythn2qz6v45svfb666d75bigid4v562yvcrcu3zvopvd/providers/Microsoft.Storage/storageAccounts/clitesthn6lf7bmqfq4lihgr","name":"clitesthn6lf7bmqfq4lihgr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T23:36:25.4655609Z","key2":"2021-10-22T23:36:25.4655609Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:36:25.4655609Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:36:25.4655609Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:36:25.4186532Z","primaryEndpoints":{"dfs":"https://clitesthn6lf7bmqfq4lihgr.dfs.core.windows.net/","web":"https://clitesthn6lf7bmqfq4lihgr.z3.web.core.windows.net/","blob":"https://clitesthn6lf7bmqfq4lihgr.blob.core.windows.net/","queue":"https://clitesthn6lf7bmqfq4lihgr.queue.core.windows.net/","table":"https://clitesthn6lf7bmqfq4lihgr.table.core.windows.net/","file":"https://clitesthn6lf7bmqfq4lihgr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyyky3pdv7kfgca2zw6tt2uuyakcfh4mhe5jv652ywkhjplo2g3hkpg5l5vlzmscx/providers/Microsoft.Storage/storageAccounts/clitestlrazz3fr4p7ma2aqu","name":"clitestlrazz3fr4p7ma2aqu","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:26:22.0140081Z","key2":"2021-09-26T06:26:22.0140081Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:26:22.0140081Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:26:22.0140081Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:26:21.9514992Z","primaryEndpoints":{"dfs":"https://clitestlrazz3fr4p7ma2aqu.dfs.core.windows.net/","web":"https://clitestlrazz3fr4p7ma2aqu.z3.web.core.windows.net/","blob":"https://clitestlrazz3fr4p7ma2aqu.blob.core.windows.net/","queue":"https://clitestlrazz3fr4p7ma2aqu.queue.core.windows.net/","table":"https://clitestlrazz3fr4p7ma2aqu.table.core.windows.net/","file":"https://clitestlrazz3fr4p7ma2aqu.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgibc6w6pt2cu4nkppzr7rhgsrli5jhaumxaexydrvzpemxhixixcac5un3lkhugutn/providers/Microsoft.Storage/storageAccounts/clitestm3o7urdechvnvggxa","name":"clitestm3o7urdechvnvggxa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-04T22:04:25.7055241Z","key2":"2021-11-04T22:04:25.7055241Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:04:25.7055241Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:04:25.7055241Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-04T22:04:25.6274146Z","primaryEndpoints":{"dfs":"https://clitestm3o7urdechvnvggxa.dfs.core.windows.net/","web":"https://clitestm3o7urdechvnvggxa.z3.web.core.windows.net/","blob":"https://clitestm3o7urdechvnvggxa.blob.core.windows.net/","queue":"https://clitestm3o7urdechvnvggxa.queue.core.windows.net/","table":"https://clitestm3o7urdechvnvggxa.table.core.windows.net/","file":"https://clitestm3o7urdechvnvggxa.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgczn4zs5qjkhszwlrkz6fnvc3mysoovo6vsvis53flbw3gcbfqpwmfuwtqzw5pewbu/providers/Microsoft.Storage/storageAccounts/clitestmm22sas2jwf6b2ers","name":"clitestmm22sas2jwf6b2ers","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-04T22:05:15.5981807Z","key2":"2021-11-04T22:05:15.5981807Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:05:15.5981807Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:05:15.5981807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-04T22:05:15.5200800Z","primaryEndpoints":{"dfs":"https://clitestmm22sas2jwf6b2ers.dfs.core.windows.net/","web":"https://clitestmm22sas2jwf6b2ers.z3.web.core.windows.net/","blob":"https://clitestmm22sas2jwf6b2ers.blob.core.windows.net/","queue":"https://clitestmm22sas2jwf6b2ers.queue.core.windows.net/","table":"https://clitestmm22sas2jwf6b2ers.table.core.windows.net/","file":"https://clitestmm22sas2jwf6b2ers.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgihpamtetsioehvqhcaizytambbwjq2a4so6iz734ejm7u6prta4pxwcc2gyhhaxqf/providers/Microsoft.Storage/storageAccounts/clitestmyjybsngqmztsnzyt","name":"clitestmyjybsngqmztsnzyt","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T05:30:18.6096170Z","key2":"2021-09-26T05:30:18.6096170Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:30:18.6096170Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:30:18.6096170Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:30:18.5314899Z","primaryEndpoints":{"dfs":"https://clitestmyjybsngqmztsnzyt.dfs.core.windows.net/","web":"https://clitestmyjybsngqmztsnzyt.z3.web.core.windows.net/","blob":"https://clitestmyjybsngqmztsnzyt.blob.core.windows.net/","queue":"https://clitestmyjybsngqmztsnzyt.queue.core.windows.net/","table":"https://clitestmyjybsngqmztsnzyt.table.core.windows.net/","file":"https://clitestmyjybsngqmztsnzyt.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbksbwoy7iftsvok2gu7el6jq32a53l75d3amp4qff74lwqen6nypkv2vsy5qpvdx6/providers/Microsoft.Storage/storageAccounts/clitestnx46jh36sfhiun4zr","name":"clitestnx46jh36sfhiun4zr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:46:06.0337216Z","key2":"2021-09-26T06:46:06.0337216Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:46:06.0337216Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:46:06.0337216Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:46:05.9555808Z","primaryEndpoints":{"dfs":"https://clitestnx46jh36sfhiun4zr.dfs.core.windows.net/","web":"https://clitestnx46jh36sfhiun4zr.z3.web.core.windows.net/","blob":"https://clitestnx46jh36sfhiun4zr.blob.core.windows.net/","queue":"https://clitestnx46jh36sfhiun4zr.queue.core.windows.net/","table":"https://clitestnx46jh36sfhiun4zr.table.core.windows.net/","file":"https://clitestnx46jh36sfhiun4zr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg33fo62u6qo54y4oh6ubodzg5drtpqjvfeaxkl7eqcioetepluk6x6j2y26gadsnlb/providers/Microsoft.Storage/storageAccounts/clitestnyptbvai7mjrv4d36","name":"clitestnyptbvai7mjrv4d36","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:38:37.8872316Z","key2":"2021-09-26T06:38:37.8872316Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:38:37.8872316Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:38:37.8872316Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:38:37.8247073Z","primaryEndpoints":{"dfs":"https://clitestnyptbvai7mjrv4d36.dfs.core.windows.net/","web":"https://clitestnyptbvai7mjrv4d36.z3.web.core.windows.net/","blob":"https://clitestnyptbvai7mjrv4d36.blob.core.windows.net/","queue":"https://clitestnyptbvai7mjrv4d36.queue.core.windows.net/","table":"https://clitestnyptbvai7mjrv4d36.table.core.windows.net/","file":"https://clitestnyptbvai7mjrv4d36.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz5kpio6nxhll6ltpr5lf3p24xooufmmwyrk7tly3gjfj5vufntfmsdkla7o54pioa/providers/Microsoft.Storage/storageAccounts/clitestu5zychblljh7h4sbq","name":"clitestu5zychblljh7h4sbq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-01T19:37:27.6814745Z","key2":"2021-11-01T19:37:27.6814745Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:37:27.6814745Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:37:27.6814745Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-01T19:37:27.6033732Z","primaryEndpoints":{"dfs":"https://clitestu5zychblljh7h4sbq.dfs.core.windows.net/","web":"https://clitestu5zychblljh7h4sbq.z3.web.core.windows.net/","blob":"https://clitestu5zychblljh7h4sbq.blob.core.windows.net/","queue":"https://clitestu5zychblljh7h4sbq.queue.core.windows.net/","table":"https://clitestu5zychblljh7h4sbq.table.core.windows.net/","file":"https://clitestu5zychblljh7h4sbq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2r4n3w2kq5eqbdmscwkh6ss3jxr6cjmu237f6ei6q5e6svdpfhq6y4ogqfkkyhof/providers/Microsoft.Storage/storageAccounts/clitestue6lbut2twc5n7mpo","name":"clitestue6lbut2twc5n7mpo","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-11T22:08:44.1147576Z","key2":"2021-11-11T22:08:44.1147576Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:08:44.1303296Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:08:44.1303296Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:08:44.0366031Z","primaryEndpoints":{"dfs":"https://clitestue6lbut2twc5n7mpo.dfs.core.windows.net/","web":"https://clitestue6lbut2twc5n7mpo.z3.web.core.windows.net/","blob":"https://clitestue6lbut2twc5n7mpo.blob.core.windows.net/","queue":"https://clitestue6lbut2twc5n7mpo.queue.core.windows.net/","table":"https://clitestue6lbut2twc5n7mpo.table.core.windows.net/","file":"https://clitestue6lbut2twc5n7mpo.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkkh2eiycmh36lbpz6ceh7v2igu55ldcqfqf2gkkkaw5z2wtn25oaqo34wakzal3em/providers/Microsoft.Storage/storageAccounts/clitesturqfulbf5h2yjtmxd","name":"clitesturqfulbf5h2yjtmxd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-18T23:18:54.1881027Z","key2":"2021-11-18T23:18:54.1881027Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:18:54.1881027Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:18:54.1881027Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:18:54.1099855Z","primaryEndpoints":{"dfs":"https://clitesturqfulbf5h2yjtmxd.dfs.core.windows.net/","web":"https://clitesturqfulbf5h2yjtmxd.z3.web.core.windows.net/","blob":"https://clitesturqfulbf5h2yjtmxd.blob.core.windows.net/","queue":"https://clitesturqfulbf5h2yjtmxd.queue.core.windows.net/","table":"https://clitesturqfulbf5h2yjtmxd.table.core.windows.net/","file":"https://clitesturqfulbf5h2yjtmxd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmqfhye7lux2fp7jf2f63xt6n57sdnfoszmxotiwxyiy7vx7qzk45pp3nactebmfqj/providers/Microsoft.Storage/storageAccounts/clitestvfxf46hn27hcogcfa","name":"clitestvfxf46hn27hcogcfa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-05T08:33:04.9679670Z","key2":"2021-11-05T08:33:04.9679670Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:33:04.9835769Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:33:04.9835769Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-05T08:33:04.8898629Z","primaryEndpoints":{"dfs":"https://clitestvfxf46hn27hcogcfa.dfs.core.windows.net/","web":"https://clitestvfxf46hn27hcogcfa.z3.web.core.windows.net/","blob":"https://clitestvfxf46hn27hcogcfa.blob.core.windows.net/","queue":"https://clitestvfxf46hn27hcogcfa.queue.core.windows.net/","table":"https://clitestvfxf46hn27hcogcfa.table.core.windows.net/","file":"https://clitestvfxf46hn27hcogcfa.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglqgc5xdku5ojvlcdmxmxwx4otzrvmtvwkizs74vqyuovzqgtxbocao3wxuey3ckyg/providers/Microsoft.Storage/storageAccounts/clitestvkt5uhqkknoz4z2ps","name":"clitestvkt5uhqkknoz4z2ps","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T15:56:12.2012021Z","key2":"2021-10-22T15:56:12.2012021Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:12.2012021Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:12.2012021Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T15:56:12.1387094Z","primaryEndpoints":{"dfs":"https://clitestvkt5uhqkknoz4z2ps.dfs.core.windows.net/","web":"https://clitestvkt5uhqkknoz4z2ps.z3.web.core.windows.net/","blob":"https://clitestvkt5uhqkknoz4z2ps.blob.core.windows.net/","queue":"https://clitestvkt5uhqkknoz4z2ps.queue.core.windows.net/","table":"https://clitestvkt5uhqkknoz4z2ps.table.core.windows.net/","file":"https://clitestvkt5uhqkknoz4z2ps.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk76ijui24h7q2foey6svr7yhnhb6tcuioxiiic7pto4b7aye52xazbtphpkn4igdg/providers/Microsoft.Storage/storageAccounts/clitestwii2xus2tgji433nh","name":"clitestwii2xus2tgji433nh","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-11T22:07:45.0812213Z","key2":"2021-11-11T22:07:45.0812213Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:45.0812213Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:45.0812213Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:07:45.0031142Z","primaryEndpoints":{"dfs":"https://clitestwii2xus2tgji433nh.dfs.core.windows.net/","web":"https://clitestwii2xus2tgji433nh.z3.web.core.windows.net/","blob":"https://clitestwii2xus2tgji433nh.blob.core.windows.net/","queue":"https://clitestwii2xus2tgji433nh.queue.core.windows.net/","table":"https://clitestwii2xus2tgji433nh.table.core.windows.net/","file":"https://clitestwii2xus2tgji433nh.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgug2zs2ll3cqv3r5gw6yql5lexqi72ktubc4ozqz6g62yykofs5s6dzfutvlzwdfzd/providers/Microsoft.Storage/storageAccounts/clitestyrqe5rlxui5rawuhk","name":"clitestyrqe5rlxui5rawuhk","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T05:51:29.8791272Z","key2":"2021-09-26T05:51:29.8791272Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:51:29.8791272Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:51:29.8791272Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:51:29.8009981Z","primaryEndpoints":{"dfs":"https://clitestyrqe5rlxui5rawuhk.dfs.core.windows.net/","web":"https://clitestyrqe5rlxui5rawuhk.z3.web.core.windows.net/","blob":"https://clitestyrqe5rlxui5rawuhk.blob.core.windows.net/","queue":"https://clitestyrqe5rlxui5rawuhk.queue.core.windows.net/","table":"https://clitestyrqe5rlxui5rawuhk.table.core.windows.net/","file":"https://clitestyrqe5rlxui5rawuhk.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap-east/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuapeast","name":"zhiyihuangsaeuapeast","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-24T06:56:08.6084736Z","key2":"2021-09-24T06:56:08.6084736Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T06:56:08.6084736Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T06:56:08.6084736Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-24T06:56:08.5303617Z","primaryEndpoints":{"dfs":"https://zhiyihuangsaeuapeast.dfs.core.windows.net/","web":"https://zhiyihuangsaeuapeast.z3.web.core.windows.net/","blob":"https://zhiyihuangsaeuapeast.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast.table.core.windows.net/","file":"https://zhiyihuangsaeuapeast.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhiyihuangsaeuapeast-secondary.dfs.core.windows.net/","web":"https://zhiyihuangsaeuapeast-secondary.z3.web.core.windows.net/","blob":"https://zhiyihuangsaeuapeast-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhtest","name":"zuhtest","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"identity":{"type":"ManagedServiceIdentity","userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zuhid"},"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-14T07:13:45.1503826Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-14T07:13:45.1503826Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Creating","creationTime":"2021-01-14T07:13:45.0603798Z","primaryEndpoints":{"dfs":"https://zuhtest.dfs.core.windows.net/","web":"https://zuhtest.z3.web.core.windows.net/","blob":"https://zuhtest.blob.core.windows.net/","queue":"https://zuhtest.queue.core.windows.net/","table":"https://zuhtest.table.core.windows.net/","file":"https://zuhtest.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhtest-secondary.dfs.core.windows.net/","web":"https://zuhtest-secondary.z3.web.core.windows.net/","blob":"https://zuhtest-secondary.blob.core.windows.net/","queue":"https://zuhtest-secondary.queue.core.windows.net/","table":"https://zuhtest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest47xrljy3nijo3qd5vzsdilpqy5gmhc6vhrxdt4iznh6uaopskftgp4scam2w7drpot4l/providers/Microsoft.Storage/storageAccounts/clitest23zhehg2ug7pzcmmt","name":"clitest23zhehg2ug7pzcmmt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T23:52:09.9267277Z","key2":"2021-10-22T23:52:09.9267277Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:52:09.9267277Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:52:09.9267277Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:52:09.8486094Z","primaryEndpoints":{"dfs":"https://clitest23zhehg2ug7pzcmmt.dfs.core.windows.net/","web":"https://clitest23zhehg2ug7pzcmmt.z2.web.core.windows.net/","blob":"https://clitest23zhehg2ug7pzcmmt.blob.core.windows.net/","queue":"https://clitest23zhehg2ug7pzcmmt.queue.core.windows.net/","table":"https://clitest23zhehg2ug7pzcmmt.table.core.windows.net/","file":"https://clitest23zhehg2ug7pzcmmt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestuh33sdgq6xqrgmv2evfqsj7s5elfu75j425duypsq3ykwiqywcsbk7k5hm2dn6dhx3ga/providers/Microsoft.Storage/storageAccounts/clitest2dpu5cejmyr6o6fy4","name":"clitest2dpu5cejmyr6o6fy4","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-13T01:03:47.8707679Z","key2":"2021-08-13T01:03:47.8707679Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-13T01:03:47.8707679Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-13T01:03:47.8707679Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-13T01:03:47.8082686Z","primaryEndpoints":{"dfs":"https://clitest2dpu5cejmyr6o6fy4.dfs.core.windows.net/","web":"https://clitest2dpu5cejmyr6o6fy4.z2.web.core.windows.net/","blob":"https://clitest2dpu5cejmyr6o6fy4.blob.core.windows.net/","queue":"https://clitest2dpu5cejmyr6o6fy4.queue.core.windows.net/","table":"https://clitest2dpu5cejmyr6o6fy4.table.core.windows.net/","file":"https://clitest2dpu5cejmyr6o6fy4.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrl6kiw7ux2j73xj2v7cbet4byjrmn5uenrcnz6qfu5oxpvxtkkik2djcxys4gcpfrgr4/providers/Microsoft.Storage/storageAccounts/clitest2hc2cek5kg4wbcqwa","name":"clitest2hc2cek5kg4wbcqwa","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-18T09:03:47.2900270Z","key2":"2021-06-18T09:03:47.2900270Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T09:03:47.2950283Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T09:03:47.2950283Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-18T09:03:47.2400033Z","primaryEndpoints":{"dfs":"https://clitest2hc2cek5kg4wbcqwa.dfs.core.windows.net/","web":"https://clitest2hc2cek5kg4wbcqwa.z2.web.core.windows.net/","blob":"https://clitest2hc2cek5kg4wbcqwa.blob.core.windows.net/","queue":"https://clitest2hc2cek5kg4wbcqwa.queue.core.windows.net/","table":"https://clitest2hc2cek5kg4wbcqwa.table.core.windows.net/","file":"https://clitest2hc2cek5kg4wbcqwa.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcwbyb7elcliee36ry67adfa656263s5nl2c67it2o2pjr3wrh5mwmg3ocygfxjou3vxa/providers/Microsoft.Storage/storageAccounts/clitest2wy5mqj7vog4cn65p","name":"clitest2wy5mqj7vog4cn65p","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T16:12:01.9361563Z","key2":"2021-10-22T16:12:01.9361563Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T16:12:01.9361563Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T16:12:01.9361563Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T16:12:01.8580265Z","primaryEndpoints":{"dfs":"https://clitest2wy5mqj7vog4cn65p.dfs.core.windows.net/","web":"https://clitest2wy5mqj7vog4cn65p.z2.web.core.windows.net/","blob":"https://clitest2wy5mqj7vog4cn65p.blob.core.windows.net/","queue":"https://clitest2wy5mqj7vog4cn65p.queue.core.windows.net/","table":"https://clitest2wy5mqj7vog4cn65p.table.core.windows.net/","file":"https://clitest2wy5mqj7vog4cn65p.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesto72ftnrt7hfn5ltlqnh34e5cjvdyfwj4ny5d7yebu4imldxsoizqp5cazyouoms7ev6j/providers/Microsoft.Storage/storageAccounts/clitest4suuy3hvssqi2u3px","name":"clitest4suuy3hvssqi2u3px","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-11T22:23:05.8954115Z","key2":"2021-11-11T22:23:05.8954115Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:23:05.9110345Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:23:05.9110345Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:23:05.8172663Z","primaryEndpoints":{"dfs":"https://clitest4suuy3hvssqi2u3px.dfs.core.windows.net/","web":"https://clitest4suuy3hvssqi2u3px.z2.web.core.windows.net/","blob":"https://clitest4suuy3hvssqi2u3px.blob.core.windows.net/","queue":"https://clitest4suuy3hvssqi2u3px.queue.core.windows.net/","table":"https://clitest4suuy3hvssqi2u3px.table.core.windows.net/","file":"https://clitest4suuy3hvssqi2u3px.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlg5ebdqcv52sflwjoqlwhicwckgl6uznufjdep6cezb52lt73nagcohr2yn5s2pjkddl/providers/Microsoft.Storage/storageAccounts/clitest6vxkrzgloyre3jqjs","name":"clitest6vxkrzgloyre3jqjs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-23T03:10:29.4846667Z","key2":"2021-07-23T03:10:29.4846667Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-23T03:10:29.5002574Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-23T03:10:29.5002574Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-23T03:10:29.4377939Z","primaryEndpoints":{"dfs":"https://clitest6vxkrzgloyre3jqjs.dfs.core.windows.net/","web":"https://clitest6vxkrzgloyre3jqjs.z2.web.core.windows.net/","blob":"https://clitest6vxkrzgloyre3jqjs.blob.core.windows.net/","queue":"https://clitest6vxkrzgloyre3jqjs.queue.core.windows.net/","table":"https://clitest6vxkrzgloyre3jqjs.table.core.windows.net/","file":"https://clitest6vxkrzgloyre3jqjs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestmrngm5xnqzkfc35bpac2frhloyp5bhqs3bkzmzzsk4uxhhc5g5bilsacnxbfmtzgwe2j/providers/Microsoft.Storage/storageAccounts/clitest7bnb7msut4cjgzpbr","name":"clitest7bnb7msut4cjgzpbr","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-29T22:46:56.7491572Z","key2":"2021-10-29T22:46:56.7491572Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:46:56.7491572Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:46:56.7491572Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-29T22:46:56.6866372Z","primaryEndpoints":{"dfs":"https://clitest7bnb7msut4cjgzpbr.dfs.core.windows.net/","web":"https://clitest7bnb7msut4cjgzpbr.z2.web.core.windows.net/","blob":"https://clitest7bnb7msut4cjgzpbr.blob.core.windows.net/","queue":"https://clitest7bnb7msut4cjgzpbr.queue.core.windows.net/","table":"https://clitest7bnb7msut4cjgzpbr.table.core.windows.net/","file":"https://clitest7bnb7msut4cjgzpbr.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfwybg5aqnlewkvelizobsdyy6zocpnnltod4k5d6l62rlz3wfkmdpz7fcw3xbvo45lad/providers/Microsoft.Storage/storageAccounts/clitestdk7kvmf5lss5lltse","name":"clitestdk7kvmf5lss5lltse","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-21T03:24:22.5335528Z","key2":"2021-06-21T03:24:22.5335528Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T03:24:22.5335528Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T03:24:22.5335528Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-21T03:24:22.4635745Z","primaryEndpoints":{"dfs":"https://clitestdk7kvmf5lss5lltse.dfs.core.windows.net/","web":"https://clitestdk7kvmf5lss5lltse.z2.web.core.windows.net/","blob":"https://clitestdk7kvmf5lss5lltse.blob.core.windows.net/","queue":"https://clitestdk7kvmf5lss5lltse.queue.core.windows.net/","table":"https://clitestdk7kvmf5lss5lltse.table.core.windows.net/","file":"https://clitestdk7kvmf5lss5lltse.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaplqr3c25xdddlwukirxixwo5byw5rkls3kr5fo66qoamflxrkjhxpt27enj7wmk2yuj/providers/Microsoft.Storage/storageAccounts/clitestfbytzu7syzfrmr7kf","name":"clitestfbytzu7syzfrmr7kf","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-04T22:22:45.3374456Z","key2":"2021-11-04T22:22:45.3374456Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:22:45.3374456Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:22:45.3374456Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-04T22:22:45.2593440Z","primaryEndpoints":{"dfs":"https://clitestfbytzu7syzfrmr7kf.dfs.core.windows.net/","web":"https://clitestfbytzu7syzfrmr7kf.z2.web.core.windows.net/","blob":"https://clitestfbytzu7syzfrmr7kf.blob.core.windows.net/","queue":"https://clitestfbytzu7syzfrmr7kf.queue.core.windows.net/","table":"https://clitestfbytzu7syzfrmr7kf.table.core.windows.net/","file":"https://clitestfbytzu7syzfrmr7kf.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkmydtxqqwqds5d67vdbrwtk32xdryjsxq6fp74nse75bdhdla7mh47b6myevefnapwyx/providers/Microsoft.Storage/storageAccounts/clitestgqwsejh46zuqlc5pm","name":"clitestgqwsejh46zuqlc5pm","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-06T05:27:12.7993484Z","key2":"2021-08-06T05:27:12.7993484Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-06T05:27:12.8149753Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-06T05:27:12.8149753Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-06T05:27:12.7368799Z","primaryEndpoints":{"dfs":"https://clitestgqwsejh46zuqlc5pm.dfs.core.windows.net/","web":"https://clitestgqwsejh46zuqlc5pm.z2.web.core.windows.net/","blob":"https://clitestgqwsejh46zuqlc5pm.blob.core.windows.net/","queue":"https://clitestgqwsejh46zuqlc5pm.queue.core.windows.net/","table":"https://clitestgqwsejh46zuqlc5pm.table.core.windows.net/","file":"https://clitestgqwsejh46zuqlc5pm.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestndsnnd5ibnsjkzl7w5mbaujjmelonc2xjmyrd325iiwno27u6sxcxkewjeox2x2wr633/providers/Microsoft.Storage/storageAccounts/clitestgz6nb4it72a36mdpt","name":"clitestgz6nb4it72a36mdpt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-20T02:02:00.4577106Z","key2":"2021-08-20T02:02:00.4577106Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-20T02:02:00.4577106Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-20T02:02:00.4577106Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-20T02:02:00.3952449Z","primaryEndpoints":{"dfs":"https://clitestgz6nb4it72a36mdpt.dfs.core.windows.net/","web":"https://clitestgz6nb4it72a36mdpt.z2.web.core.windows.net/","blob":"https://clitestgz6nb4it72a36mdpt.blob.core.windows.net/","queue":"https://clitestgz6nb4it72a36mdpt.queue.core.windows.net/","table":"https://clitestgz6nb4it72a36mdpt.table.core.windows.net/","file":"https://clitestgz6nb4it72a36mdpt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsc4q5ncei7qimmmmtqmedt4valwfif74bbu7mdfwqimzfzfkopwgrmua7p4rcsga53m4/providers/Microsoft.Storage/storageAccounts/clitestlssboc5vg5mdivn4h","name":"clitestlssboc5vg5mdivn4h","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-18T08:34:36.9887468Z","key2":"2021-06-18T08:34:36.9887468Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T08:34:36.9937445Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T08:34:36.9937445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-18T08:34:36.9237913Z","primaryEndpoints":{"dfs":"https://clitestlssboc5vg5mdivn4h.dfs.core.windows.net/","web":"https://clitestlssboc5vg5mdivn4h.z2.web.core.windows.net/","blob":"https://clitestlssboc5vg5mdivn4h.blob.core.windows.net/","queue":"https://clitestlssboc5vg5mdivn4h.queue.core.windows.net/","table":"https://clitestlssboc5vg5mdivn4h.table.core.windows.net/","file":"https://clitestlssboc5vg5mdivn4h.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5yatgcl7dfear3v3e5d5hrqbpo5bdotmwoq7auiuykmzx74is6rzhkib56ajwf5ghxrk/providers/Microsoft.Storage/storageAccounts/clitestlzfflnot5wnc3y4j3","name":"clitestlzfflnot5wnc3y4j3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-28T02:21:02.0736425Z","key2":"2021-09-28T02:21:02.0736425Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:21:02.0736425Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:21:02.0736425Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T02:21:02.0267640Z","primaryEndpoints":{"dfs":"https://clitestlzfflnot5wnc3y4j3.dfs.core.windows.net/","web":"https://clitestlzfflnot5wnc3y4j3.z2.web.core.windows.net/","blob":"https://clitestlzfflnot5wnc3y4j3.blob.core.windows.net/","queue":"https://clitestlzfflnot5wnc3y4j3.queue.core.windows.net/","table":"https://clitestlzfflnot5wnc3y4j3.table.core.windows.net/","file":"https://clitestlzfflnot5wnc3y4j3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestjkw7fpanpscpileddbqrrrkjrtb5xi47wmvttkiqwsqcuo3ldvzszwso3x4c5apy6m5o/providers/Microsoft.Storage/storageAccounts/clitestm6u3xawj3qsydpfam","name":"clitestm6u3xawj3qsydpfam","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T07:13:03.1496586Z","key2":"2021-09-07T07:13:03.1496586Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T07:13:03.1496586Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T07:13:03.1496586Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T07:13:03.0714932Z","primaryEndpoints":{"dfs":"https://clitestm6u3xawj3qsydpfam.dfs.core.windows.net/","web":"https://clitestm6u3xawj3qsydpfam.z2.web.core.windows.net/","blob":"https://clitestm6u3xawj3qsydpfam.blob.core.windows.net/","queue":"https://clitestm6u3xawj3qsydpfam.queue.core.windows.net/","table":"https://clitestm6u3xawj3qsydpfam.table.core.windows.net/","file":"https://clitestm6u3xawj3qsydpfam.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvabzmquoslc3mtf5h3qd7dglwx45me4yxyefaw4ktsf7fbc3bx2tl75tdn5eqbgd3atx/providers/Microsoft.Storage/storageAccounts/clitestq7ur4vdqkjvy2rdgj","name":"clitestq7ur4vdqkjvy2rdgj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-28T02:27:14.4071914Z","key2":"2021-09-28T02:27:14.4071914Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:27:14.4071914Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:27:14.4071914Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T02:27:14.3446978Z","primaryEndpoints":{"dfs":"https://clitestq7ur4vdqkjvy2rdgj.dfs.core.windows.net/","web":"https://clitestq7ur4vdqkjvy2rdgj.z2.web.core.windows.net/","blob":"https://clitestq7ur4vdqkjvy2rdgj.blob.core.windows.net/","queue":"https://clitestq7ur4vdqkjvy2rdgj.queue.core.windows.net/","table":"https://clitestq7ur4vdqkjvy2rdgj.table.core.windows.net/","file":"https://clitestq7ur4vdqkjvy2rdgj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestugd6g2jxyo5mu6uxhc4zea4ygi2iuubouzxmdyuz6srnvrbwlidbvuu4qdieuwg4xlsr/providers/Microsoft.Storage/storageAccounts/clitestqorauf75d5yqkhdhc","name":"clitestqorauf75d5yqkhdhc","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-03T02:52:09.6342752Z","key2":"2021-09-03T02:52:09.6342752Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T02:52:09.6342752Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T02:52:09.6342752Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-03T02:52:09.5561638Z","primaryEndpoints":{"dfs":"https://clitestqorauf75d5yqkhdhc.dfs.core.windows.net/","web":"https://clitestqorauf75d5yqkhdhc.z2.web.core.windows.net/","blob":"https://clitestqorauf75d5yqkhdhc.blob.core.windows.net/","queue":"https://clitestqorauf75d5yqkhdhc.queue.core.windows.net/","table":"https://clitestqorauf75d5yqkhdhc.table.core.windows.net/","file":"https://clitestqorauf75d5yqkhdhc.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestzbuh7m7bllna7xosjhxr5ppfs6tnukxctfm4ydkzmzvyt7tf2ru3yjmthwy6mqqp62yy/providers/Microsoft.Storage/storageAccounts/clitestrpsk56xwloumq6ngj","name":"clitestrpsk56xwloumq6ngj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-21T05:52:26.0729783Z","key2":"2021-06-21T05:52:26.0729783Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T05:52:26.0779697Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T05:52:26.0779697Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-21T05:52:26.0129686Z","primaryEndpoints":{"dfs":"https://clitestrpsk56xwloumq6ngj.dfs.core.windows.net/","web":"https://clitestrpsk56xwloumq6ngj.z2.web.core.windows.net/","blob":"https://clitestrpsk56xwloumq6ngj.blob.core.windows.net/","queue":"https://clitestrpsk56xwloumq6ngj.queue.core.windows.net/","table":"https://clitestrpsk56xwloumq6ngj.table.core.windows.net/","file":"https://clitestrpsk56xwloumq6ngj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest62jxvr4odko5gn5tjo4z7ypmirid6zm72g3ah6zg25qh5r5xve5fhikdcnjpxvsaikhl/providers/Microsoft.Storage/storageAccounts/clitestst2iwgltnfj4zoiva","name":"clitestst2iwgltnfj4zoiva","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-27T01:58:18.2723177Z","key2":"2021-08-27T01:58:18.2723177Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-27T01:58:18.2723177Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-27T01:58:18.2723177Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-27T01:58:18.2410749Z","primaryEndpoints":{"dfs":"https://clitestst2iwgltnfj4zoiva.dfs.core.windows.net/","web":"https://clitestst2iwgltnfj4zoiva.z2.web.core.windows.net/","blob":"https://clitestst2iwgltnfj4zoiva.blob.core.windows.net/","queue":"https://clitestst2iwgltnfj4zoiva.queue.core.windows.net/","table":"https://clitestst2iwgltnfj4zoiva.table.core.windows.net/","file":"https://clitestst2iwgltnfj4zoiva.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestxk2peoqt7nd76ktof7sub3mkkcldygtt36d3imnwjd5clletodypibd5uaglpdk44yjm/providers/Microsoft.Storage/storageAccounts/clitestu6whdalngwsksemjs","name":"clitestu6whdalngwsksemjs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-10T02:29:23.5697486Z","key2":"2021-09-10T02:29:23.5697486Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T02:29:23.5697486Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T02:29:23.5697486Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-10T02:29:23.5072536Z","primaryEndpoints":{"dfs":"https://clitestu6whdalngwsksemjs.dfs.core.windows.net/","web":"https://clitestu6whdalngwsksemjs.z2.web.core.windows.net/","blob":"https://clitestu6whdalngwsksemjs.blob.core.windows.net/","queue":"https://clitestu6whdalngwsksemjs.queue.core.windows.net/","table":"https://clitestu6whdalngwsksemjs.table.core.windows.net/","file":"https://clitestu6whdalngwsksemjs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlriqfcojv6aujusys633edrxi3tkric7e6cvk5wwgjmdg4736dv56w4lwzmdnq5tr3mq/providers/Microsoft.Storage/storageAccounts/clitestw6aumidrfwmoqkzvm","name":"clitestw6aumidrfwmoqkzvm","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-18T23:32:38.8527397Z","key2":"2021-11-18T23:32:38.8527397Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:32:38.8527397Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:32:38.8527397Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:32:38.7902807Z","primaryEndpoints":{"dfs":"https://clitestw6aumidrfwmoqkzvm.dfs.core.windows.net/","web":"https://clitestw6aumidrfwmoqkzvm.z2.web.core.windows.net/","blob":"https://clitestw6aumidrfwmoqkzvm.blob.core.windows.net/","queue":"https://clitestw6aumidrfwmoqkzvm.queue.core.windows.net/","table":"https://clitestw6aumidrfwmoqkzvm.table.core.windows.net/","file":"https://clitestw6aumidrfwmoqkzvm.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttlschpyugymorheodsulam7yhpwylijzpbmjr3phwwis4vj2rx5elxcjkb236fcnumx3/providers/Microsoft.Storage/storageAccounts/clitestwv22naweyfr4m5rga","name":"clitestwv22naweyfr4m5rga","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-01T19:54:26.9185866Z","key2":"2021-11-01T19:54:26.9185866Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:54:26.9185866Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:54:26.9185866Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-01T19:54:26.8717369Z","primaryEndpoints":{"dfs":"https://clitestwv22naweyfr4m5rga.dfs.core.windows.net/","web":"https://clitestwv22naweyfr4m5rga.z2.web.core.windows.net/","blob":"https://clitestwv22naweyfr4m5rga.blob.core.windows.net/","queue":"https://clitestwv22naweyfr4m5rga.queue.core.windows.net/","table":"https://clitestwv22naweyfr4m5rga.table.core.windows.net/","file":"https://clitestwv22naweyfr4m5rga.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesth52efeutldrxowe5cfayjvk4zhpypdmky6fyppzro5r3ldqu7dwf2ca6jf3lqm4eijf6/providers/Microsoft.Storage/storageAccounts/clitestx5fskzfbidzs4kqmu","name":"clitestx5fskzfbidzs4kqmu","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-05T08:48:16.0575682Z","key2":"2021-11-05T08:48:16.0575682Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:48:16.0575682Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:48:16.0575682Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-05T08:48:15.9794412Z","primaryEndpoints":{"dfs":"https://clitestx5fskzfbidzs4kqmu.dfs.core.windows.net/","web":"https://clitestx5fskzfbidzs4kqmu.z2.web.core.windows.net/","blob":"https://clitestx5fskzfbidzs4kqmu.blob.core.windows.net/","queue":"https://clitestx5fskzfbidzs4kqmu.queue.core.windows.net/","table":"https://clitestx5fskzfbidzs4kqmu.table.core.windows.net/","file":"https://clitestx5fskzfbidzs4kqmu.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlnzg2rscuyweetdgvywse35jkhd3s7gay3wnjzoyqojyq6i3iw42uycss45mj52zitnl/providers/Microsoft.Storage/storageAccounts/clitestzarcstbcgg3yqinfg","name":"clitestzarcstbcgg3yqinfg","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-30T02:23:46.1127669Z","key2":"2021-07-30T02:23:46.1127669Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-30T02:23:46.1127669Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-30T02:23:46.1127669Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-30T02:23:46.0658902Z","primaryEndpoints":{"dfs":"https://clitestzarcstbcgg3yqinfg.dfs.core.windows.net/","web":"https://clitestzarcstbcgg3yqinfg.z2.web.core.windows.net/","blob":"https://clitestzarcstbcgg3yqinfg.blob.core.windows.net/","queue":"https://clitestzarcstbcgg3yqinfg.queue.core.windows.net/","table":"https://clitestzarcstbcgg3yqinfg.table.core.windows.net/","file":"https://clitestzarcstbcgg3yqinfg.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrvgfrlua5ai2leiutip26a27qxs2lzedu3g6gjrqjzi3rna2yxcinlc5ioxhhfvnx5rv/providers/Microsoft.Storage/storageAccounts/versiongdbkjcemb56eyu3rj","name":"versiongdbkjcemb56eyu3rj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-18T23:17:17.2960150Z","key2":"2021-11-18T23:17:17.2960150Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:17.2960150Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:17.2960150Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:17:17.2335295Z","primaryEndpoints":{"dfs":"https://versiongdbkjcemb56eyu3rj.dfs.core.windows.net/","web":"https://versiongdbkjcemb56eyu3rj.z2.web.core.windows.net/","blob":"https://versiongdbkjcemb56eyu3rj.blob.core.windows.net/","queue":"https://versiongdbkjcemb56eyu3rj.queue.core.windows.net/","table":"https://versiongdbkjcemb56eyu3rj.table.core.windows.net/","file":"https://versiongdbkjcemb56eyu3rj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestnsw32miijgjmandsqepzbytqsxe2dbpfuh3t2d2u7saewxrnoilajjocllnjxt45ggjc/providers/Microsoft.Storage/storageAccounts/versionhf53xzmbt3fwu3kn3","name":"versionhf53xzmbt3fwu3kn3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:29:06.2474527Z","key2":"2021-09-07T02:29:06.2474527Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:29:06.2474527Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:29:06.2474527Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:29:06.1849281Z","primaryEndpoints":{"dfs":"https://versionhf53xzmbt3fwu3kn3.dfs.core.windows.net/","web":"https://versionhf53xzmbt3fwu3kn3.z2.web.core.windows.net/","blob":"https://versionhf53xzmbt3fwu3kn3.blob.core.windows.net/","queue":"https://versionhf53xzmbt3fwu3kn3.queue.core.windows.net/","table":"https://versionhf53xzmbt3fwu3kn3.table.core.windows.net/","file":"https://versionhf53xzmbt3fwu3kn3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyex6l2i6otx4eikzzr7rikdz4b6rezhqeg6mnzwvtof4vpxkcw34rd7hwpk7q5ltnrxp/providers/Microsoft.Storage/storageAccounts/versionncoq7gv5mbp4o2uf6","name":"versionncoq7gv5mbp4o2uf6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-15T06:47:03.1566686Z","key2":"2021-10-15T06:47:03.1566686Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T06:47:03.1723019Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T06:47:03.1723019Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T06:47:03.0785915Z","primaryEndpoints":{"dfs":"https://versionncoq7gv5mbp4o2uf6.dfs.core.windows.net/","web":"https://versionncoq7gv5mbp4o2uf6.z2.web.core.windows.net/","blob":"https://versionncoq7gv5mbp4o2uf6.blob.core.windows.net/","queue":"https://versionncoq7gv5mbp4o2uf6.queue.core.windows.net/","table":"https://versionncoq7gv5mbp4o2uf6.table.core.windows.net/","file":"https://versionncoq7gv5mbp4o2uf6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyxq5yt6z4or5ddvyvubtdjn73mslv25s4bqqme3ljmj6jsaagbmyn376m3cdex35tubw/providers/Microsoft.Storage/storageAccounts/versionqp3efyteboplomp5w","name":"versionqp3efyteboplomp5w","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:20:09.3003824Z","key2":"2021-09-07T02:20:09.3003824Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:20:09.3003824Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:20:09.3003824Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:20:09.2378807Z","primaryEndpoints":{"dfs":"https://versionqp3efyteboplomp5w.dfs.core.windows.net/","web":"https://versionqp3efyteboplomp5w.z2.web.core.windows.net/","blob":"https://versionqp3efyteboplomp5w.blob.core.windows.net/","queue":"https://versionqp3efyteboplomp5w.queue.core.windows.net/","table":"https://versionqp3efyteboplomp5w.table.core.windows.net/","file":"https://versionqp3efyteboplomp5w.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest27tntypkdnlo3adbzt7qqcx3detlxgtxnuxhaxdgobws4bjc26vshca2qezntlnmpuup/providers/Microsoft.Storage/storageAccounts/versionryihikjyurp5tntba","name":"versionryihikjyurp5tntba","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-11T22:07:42.2418545Z","key2":"2021-11-11T22:07:42.2418545Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:42.2418545Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:42.2418545Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:07:42.1637179Z","primaryEndpoints":{"dfs":"https://versionryihikjyurp5tntba.dfs.core.windows.net/","web":"https://versionryihikjyurp5tntba.z2.web.core.windows.net/","blob":"https://versionryihikjyurp5tntba.blob.core.windows.net/","queue":"https://versionryihikjyurp5tntba.queue.core.windows.net/","table":"https://versionryihikjyurp5tntba.table.core.windows.net/","file":"https://versionryihikjyurp5tntba.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesturbzqfflmkkupfwgtkutwvdy5nte5rec7neu6eyya4kahyepssopgq72mzxl54g7h2pt/providers/Microsoft.Storage/storageAccounts/versionscknbekpvmwrjeznt","name":"versionscknbekpvmwrjeznt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-28T02:39:44.7553582Z","key2":"2021-10-28T02:39:44.7553582Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T02:39:44.7553582Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T02:39:44.7553582Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T02:39:44.6772068Z","primaryEndpoints":{"dfs":"https://versionscknbekpvmwrjeznt.dfs.core.windows.net/","web":"https://versionscknbekpvmwrjeznt.z2.web.core.windows.net/","blob":"https://versionscknbekpvmwrjeznt.blob.core.windows.net/","queue":"https://versionscknbekpvmwrjeznt.queue.core.windows.net/","table":"https://versionscknbekpvmwrjeznt.table.core.windows.net/","file":"https://versionscknbekpvmwrjeznt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrhkyigtoloz2mqogvsddvmbtemvops4dw6kluaww553xqrbl5kwgnpuse5fdom2fq5bd/providers/Microsoft.Storage/storageAccounts/versionvsfin4nwuwcxndawj","name":"versionvsfin4nwuwcxndawj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:26:57.6350762Z","key2":"2021-09-07T02:26:57.6350762Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:26:57.6350762Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:26:57.6350762Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:26:57.5726321Z","primaryEndpoints":{"dfs":"https://versionvsfin4nwuwcxndawj.dfs.core.windows.net/","web":"https://versionvsfin4nwuwcxndawj.z2.web.core.windows.net/","blob":"https://versionvsfin4nwuwcxndawj.blob.core.windows.net/","queue":"https://versionvsfin4nwuwcxndawj.queue.core.windows.net/","table":"https://versionvsfin4nwuwcxndawj.table.core.windows.net/","file":"https://versionvsfin4nwuwcxndawj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyvbbewdobz5vnqkoyumrkqbdufktrisug2ukkkvnirbc6frn2hxuvpe7weosgtfc4spk/providers/Microsoft.Storage/storageAccounts/versionymg2k5haow6be3wlh","name":"versionymg2k5haow6be3wlh","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-08T05:20:27.5220722Z","key2":"2021-11-08T05:20:27.5220722Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-08T05:20:27.5220722Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-08T05:20:27.5220722Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-08T05:20:27.4439279Z","primaryEndpoints":{"dfs":"https://versionymg2k5haow6be3wlh.dfs.core.windows.net/","web":"https://versionymg2k5haow6be3wlh.z2.web.core.windows.net/","blob":"https://versionymg2k5haow6be3wlh.blob.core.windows.net/","queue":"https://versionymg2k5haow6be3wlh.queue.core.windows.net/","table":"https://versionymg2k5haow6be3wlh.table.core.windows.net/","file":"https://versionymg2k5haow6be3wlh.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkngvostxvfzwz7hb2pyqpst4ekovxl4qehicnbufjmoug5injclokanwouejm77muega/providers/Microsoft.Storage/storageAccounts/versionyrdifxty6izovwb6i","name":"versionyrdifxty6izovwb6i","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:23:07.0385168Z","key2":"2021-09-07T02:23:07.0385168Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:23:07.0385168Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:23:07.0385168Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:23:06.9760160Z","primaryEndpoints":{"dfs":"https://versionyrdifxty6izovwb6i.dfs.core.windows.net/","web":"https://versionyrdifxty6izovwb6i.z2.web.core.windows.net/","blob":"https://versionyrdifxty6izovwb6i.blob.core.windows.net/","queue":"https://versionyrdifxty6izovwb6i.queue.core.windows.net/","table":"https://versionyrdifxty6izovwb6i.table.core.windows.net/","file":"https://versionyrdifxty6izovwb6i.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssaeuap","name":"yssaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-06T07:56:33.4932788Z","key2":"2021-09-06T07:56:33.4932788Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-06T07:56:33.5088661Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-06T07:56:33.5088661Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-06T07:56:33.4151419Z","primaryEndpoints":{"dfs":"https://yssaeuap.dfs.core.windows.net/","web":"https://yssaeuap.z2.web.core.windows.net/","blob":"https://yssaeuap.blob.core.windows.net/","queue":"https://yssaeuap.queue.core.windows.net/","table":"https://yssaeuap.table.core.windows.net/","file":"https://yssaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuap","name":"zhiyihuangsaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true},"keyCreationTime":{"key1":"2021-09-24T05:54:33.0930905Z","key2":"2021-09-24T05:54:33.0930905Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T05:54:33.1087163Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T05:54:33.1087163Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-24T05:54:33.0305911Z","primaryEndpoints":{"dfs":"https://zhiyihuangsaeuap.dfs.core.windows.net/","web":"https://zhiyihuangsaeuap.z2.web.core.windows.net/","blob":"https://zhiyihuangsaeuap.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap.queue.core.windows.net/","table":"https://zhiyihuangsaeuap.table.core.windows.net/","file":"https://zhiyihuangsaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available","secondaryLocation":"eastus2euap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhiyihuangsaeuap-secondary.dfs.core.windows.net/","web":"https://zhiyihuangsaeuap-secondary.z2.web.core.windows.net/","blob":"https://zhiyihuangsaeuap-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuap-secondary.table.core.windows.net/"}}}]}' + headers: + cache-control: + - no-cache + content-length: + - '269371' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - bb474e5b-3651-4776-bbee-5bea6060ad91 + - 477703ae-6022-4996-9d5e-0ef9ae96c735 + - 9936d829-d5a9-47d9-a2b8-224ceff1bdce + - a7ae161e-ab15-401b-bc7d-11de762d2ed2 + - bd24754c-ce22-41c0-8530-ff8771cea8f0 + - 416ed879-d7b6-46b2-83f5-4b4160488b51 + - 5c625d51-6e96-456b-a063-d207274687ee + - 1bdb3d0d-547d-4e00-89d6-9ea9ce709adc + - 583406bf-28e4-4c4b-b2cb-78c4d1d56916 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account keys list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --account-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2021-06-01&$expand=kerb + response: + body: + string: '{"keys":[{"creationTime":"2021-11-24T08:05:48.7782353Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-24T08:05:48.7782353Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '380' + content-type: + - application/json + date: + - Wed, 24 Nov 2021 08:06:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) AZURECLI/2.30.0 + x-ms-date: + - Wed, 24 Nov 2021 08:06:24 GMT + x-ms-version: + - '2018-11-09' + method: PUT + uri: https://clitest000002.blob.core.windows.net/container?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Wed, 24 Nov 2021 08:06:25 GMT + etag: + - '"0x8D9AF214FF43ED6"' + last-modified: + - Wed, 24 Nov 2021 08:06:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2018-11-09' + status: + code: 201 + message: Created +- request: + body: '{"properties": {"type": "Stream", "serialization": {"type": "Csv", "properties": + {"fieldDelimiter": ",", "encoding": "UTF8"}}, "datasource": {"type": "Microsoft.Storage/Blob", + "properties": {"storageAccounts": [{"accountName": "clitest000002", "accountKey": + "veryFakedStorageAccountKey=="}], "container": "container", "pathPattern": "{date}/{time}", + "dateFormat": "MM/dd/yyyy", "timeFormat": "HH", "sourcePartitionCount": 16}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics input create + Connection: + - keep-alive + Content-Length: + - '499' + Content-Type: + - application/json + ParameterSetName: + - -n -g --job-name --properties + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/inputs/input?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/inputs/input","name":"input","type":"Microsoft.StreamAnalytics/streamingjobs/inputs","properties":{"type":"Stream","datasource":{"type":"Microsoft.Storage/Blob","properties":{"sourcePartitionCount":16,"storageAccounts":[{"accountName":"clitest000002"}],"container":"container","pathPattern":"{date}/{time}","dateFormat":"MM/dd/yyyy","timeFormat":"HH","authenticationMode":"ConnectionString"}},"compression":{"type":"None"},"serialization":{"type":"Csv","properties":{"fieldDelimiter":",","encoding":"UTF8"}}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '724' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:27 GMT + etag: + - b67fe8c6-396b-46ef-b116-92d526fb5f50 + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"datasource": {"type": "Microsoft.Storage/Blob", "properties": + {"storageAccounts": [{"accountName": "clitest000002", "accountKey": "veryFakedStorageAccountKey=="}], + "container": "container", "pathPattern": "{date}/{time}", "dateFormat": "yyyy/MM/dd", + "timeFormat": "HH"}}, "serialization": {"type": "Csv", "properties": {"fieldDelimiter": + ",", "encoding": "UTF8"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics output create + Connection: + - keep-alive + Content-Length: + - '453' + Content-Type: + - application/json + ParameterSetName: + - -n -g --job-name --datasource --serialization + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/outputs/output?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/outputs/output","name":"output","type":"Microsoft.StreamAnalytics/streamingjobs/outputs","properties":{"datasource":{"type":"Microsoft.Storage/Blob","properties":{"blobPathPrefix":"{date}/{time}","storageAccounts":[{"accountName":"clitest000002"}],"container":"container","pathPattern":"{date}/{time}","dateFormat":"yyyy/MM/dd","timeFormat":"HH","authenticationMode":"ConnectionString"}},"serialization":{"type":"Csv","properties":{"fieldDelimiter":",","encoding":"UTF8"}}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '689' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:28 GMT + etag: + - b2fdd6e7-b5f7-4a1e-9666-9aa0326f21b0 + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"outputStartMode": "JobStartTime"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job start + Connection: + - keep-alive + Content-Length: + - '35' + Content-Type: + - application/json + ParameterSetName: + - -n -g --output-start-mode + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/start?api-version=2020-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-store, no-cache + content-length: + - '0' + date: + - Wed, 24 Nov 2021 08:06:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/OperationResults/1fe1ef31-b43e-45c2-a94b-dd9b41764c46?api-version=2020-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job start + Connection: + - keep-alive + ParameterSetName: + - -n -g --output-start-mode + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/OperationResults/1fe1ef31-b43e-45c2-a94b-dd9b41764c46?api-version=2020-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-store, no-cache + content-length: + - '0' + date: + - Wed, 24 Nov 2021 08:06:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/OperationResults/1fe1ef31-b43e-45c2-a94b-dd9b41764c46?api-version=2020-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job start + Connection: + - keep-alive + ParameterSetName: + - -n -g --output-start-mode + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/OperationResults/1fe1ef31-b43e-45c2-a94b-dd9b41764c46?api-version=2020-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-store, no-cache + content-length: + - '0' + date: + - Wed, 24 Nov 2021 08:06:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/OperationResults/1fe1ef31-b43e-45c2-a94b-dd9b41764c46?api-version=2020-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job start + Connection: + - keep-alive + ParameterSetName: + - -n -g --output-start-mode + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/OperationResults/1fe1ef31-b43e-45c2-a94b-dd9b41764c46?api-version=2020-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-store, no-cache + content-length: + - '0' + date: + - Wed, 24 Nov 2021 08:07:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/OperationResults/1fe1ef31-b43e-45c2-a94b-dd9b41764c46?api-version=2020-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job start + Connection: + - keep-alive + ParameterSetName: + - -n -g --output-start-mode + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/OperationResults/1fe1ef31-b43e-45c2-a94b-dd9b41764c46?api-version=2020-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-store, no-cache + content-length: + - '0' + date: + - Wed, 24 Nov 2021 08:07:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/OperationResults/1fe1ef31-b43e-45c2-a94b-dd9b41764c46?api-version=2020-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job start + Connection: + - keep-alive + ParameterSetName: + - -n -g --output-start-mode + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/OperationResults/1fe1ef31-b43e-45c2-a94b-dd9b41764c46?api-version=2020-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-store, no-cache + content-length: + - '0' + content-type: + - application/json + date: + - Wed, 24 Nov 2021 08:07:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job stop + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/stop?api-version=2020-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-store, no-cache + content-length: + - '0' + date: + - Wed, 24 Nov 2021 08:07:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/OperationResults/16cef8f4-bed7-46c9-b535-f8f7099d38da?api-version=2020-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job stop + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/OperationResults/16cef8f4-bed7-46c9-b535-f8f7099d38da?api-version=2020-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-store, no-cache + content-length: + - '0' + date: + - Wed, 24 Nov 2021 08:07:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/OperationResults/16cef8f4-bed7-46c9-b535-f8f7099d38da?api-version=2020-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job stop + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/OperationResults/16cef8f4-bed7-46c9-b535-f8f7099d38da?api-version=2020-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-store, no-cache + content-length: + - '0' + content-type: + - application/json + date: + - Wed, 24 Nov 2021 08:07:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_output_crud.yaml b/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_output_crud.yaml new file mode 100644 index 00000000000..7783ee1ec48 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_output_crud.yaml @@ -0,0 +1,629 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job create + Connection: + - keep-alive + ParameterSetName: + - -n -g --data-locale --output-error-policy --out-of-order-policy --order-max-delay + --arrival-max-delay + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001","name":"cli_test_stream_analytics_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T08:06:24Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"sku": {"name": "Standard"}, "eventsOutOfOrderPolicy": + "Drop", "outputErrorPolicy": "Drop", "eventsOutOfOrderMaxDelayInSeconds": 0, + "eventsLateArrivalMaxDelayInSeconds": 5, "dataLocale": "en-US"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job create + Connection: + - keep-alive + Content-Length: + - '234' + Content-Type: + - application/json + ParameterSetName: + - -n -g --data-locale --output-error-policy --out-of-order-policy --order-max-delay + --arrival-max-delay + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job","name":"job","type":"Microsoft.StreamAnalytics/streamingjobs","location":"West + US","properties":{"sku":{"name":"Standard"},"jobId":"e8103359-2d21-4e55-a866-186cfff263a8","provisioningState":"Succeeded","jobState":"Created","eventsOutOfOrderPolicy":"Drop","outputErrorPolicy":"Drop","eventsOutOfOrderMaxDelayInSeconds":0,"eventsLateArrivalMaxDelayInSeconds":5,"dataLocale":"en-US","createdDate":"2021-11-24T08:06:59.607Z","compatibilityLevel":"1.0","package":null,"jobStorageAccount":null,"contentStoragePolicy":"SystemAccount","inputs":[],"functions":[],"outputs":[],"jobType":"Cloud","subnetResourceId":null,"cluster":null}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '830' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:07:01 GMT + etag: + - c9e7575a-192e-43de-8e78-04b9ab4b00b8 + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account keys list + Connection: + - keep-alive + ParameterSetName: + - --account-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2021-06-01 + response: + body: + string: '{"value":[{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/azext","name":"azext","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-15T07:20:26.3629732Z","key2":"2021-10-15T07:20:26.3629732Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T07:20:26.3629732Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T07:20:26.3629732Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T07:20:26.2379798Z","primaryEndpoints":{"dfs":"https://azext.dfs.core.windows.net/","web":"https://azext.z13.web.core.windows.net/","blob":"https://azext.blob.core.windows.net/","queue":"https://azext.queue.core.windows.net/","table":"https://azext.table.core.windows.net/","file":"https://azext.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azext-secondary.dfs.core.windows.net/","web":"https://azext-secondary.z13.web.core.windows.net/","blob":"https://azext-secondary.blob.core.windows.net/","queue":"https://azext-secondary.queue.core.windows.net/","table":"https://azext-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-beta/providers/Microsoft.Storage/storageAccounts/azureclibetarelease","name":"azureclibetarelease","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-11T10:32:24.8036511Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-11T10:32:24.8036511Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-06-11T10:32:24.7099044Z","primaryEndpoints":{"dfs":"https://azureclibetarelease.dfs.core.windows.net/","web":"https://azureclibetarelease.z13.web.core.windows.net/","blob":"https://azureclibetarelease.blob.core.windows.net/","queue":"https://azureclibetarelease.queue.core.windows.net/","table":"https://azureclibetarelease.table.core.windows.net/","file":"https://azureclibetarelease.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azureclibetarelease-secondary.dfs.core.windows.net/","web":"https://azureclibetarelease-secondary.z13.web.core.windows.net/","blob":"https://azureclibetarelease-secondary.blob.core.windows.net/","queue":"https://azureclibetarelease-secondary.queue.core.windows.net/","table":"https://azureclibetarelease-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestresult/providers/Microsoft.Storage/storageAccounts/clitestresultstac","name":"clitestresultstac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-15T06:20:52.6907255Z","primaryEndpoints":{"dfs":"https://clitestresultstac.dfs.core.windows.net/","web":"https://clitestresultstac.z13.web.core.windows.net/","blob":"https://clitestresultstac.blob.core.windows.net/","queue":"https://clitestresultstac.queue.core.windows.net/","table":"https://clitestresultstac.table.core.windows.net/","file":"https://clitestresultstac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clitestresultstac-secondary.dfs.core.windows.net/","web":"https://clitestresultstac-secondary.z13.web.core.windows.net/","blob":"https://clitestresultstac-secondary.blob.core.windows.net/","queue":"https://clitestresultstac-secondary.queue.core.windows.net/","table":"https://clitestresultstac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MSP_bez-rg_bez-diskpool_eastus/providers/Microsoft.Storage/storageAccounts/diag211012t072040rmjrhhi","name":"diag211012t072040rmjrhhi","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"MSP_BuildVersion":"20211008-2.master.5bd2896a","MSP_DPMajorVersion":"v2_DualVm","MSP_DPMinorVersion":"0","k":"v"},"properties":{"keyCreationTime":{"key1":"2021-10-12T07:20:43.6860609Z","key2":"2021-10-12T07:20:43.6860609Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-12T07:20:43.7016857Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-12T07:20:43.7016857Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-12T07:20:43.5611096Z","primaryEndpoints":{"dfs":"https://diag211012t072040rmjrhhi.dfs.core.windows.net/","web":"https://diag211012t072040rmjrhhi.z13.web.core.windows.net/","blob":"https://diag211012t072040rmjrhhi.blob.core.windows.net/","queue":"https://diag211012t072040rmjrhhi.queue.core.windows.net/","table":"https://diag211012t072040rmjrhhi.table.core.windows.net/","file":"https://diag211012t072040rmjrhhi.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryapptest/providers/Microsoft.Storage/storageAccounts/galleryappaccount","name":"galleryappaccount","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-20T06:11:14.2816483Z","key2":"2021-10-20T06:11:14.2816483Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T06:11:14.2972777Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T06:11:14.2972777Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-20T06:11:14.1723329Z","primaryEndpoints":{"dfs":"https://galleryappaccount.dfs.core.windows.net/","web":"https://galleryappaccount.z13.web.core.windows.net/","blob":"https://galleryappaccount.blob.core.windows.net/","queue":"https://galleryappaccount.queue.core.windows.net/","table":"https://galleryappaccount.table.core.windows.net/","file":"https://galleryappaccount.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://galleryappaccount-secondary.dfs.core.windows.net/","web":"https://galleryappaccount-secondary.z13.web.core.windows.net/","blob":"https://galleryappaccount-secondary.blob.core.windows.net/","queue":"https://galleryappaccount-secondary.queue.core.windows.net/","table":"https://galleryappaccount-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/galleryapptestaccount","name":"galleryapptestaccount","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-20T02:51:38.9977139Z","key2":"2021-10-20T02:51:38.9977139Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T02:51:38.9977139Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T02:51:38.9977139Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-20T02:51:38.8727156Z","primaryEndpoints":{"dfs":"https://galleryapptestaccount.dfs.core.windows.net/","web":"https://galleryapptestaccount.z13.web.core.windows.net/","blob":"https://galleryapptestaccount.blob.core.windows.net/","queue":"https://galleryapptestaccount.queue.core.windows.net/","table":"https://galleryapptestaccount.table.core.windows.net/","file":"https://galleryapptestaccount.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-dev/providers/Microsoft.Storage/storageAccounts/jlst1007","name":"jlst1007","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-14T03:14:38.1272477Z","key2":"2021-10-07T06:12:08.4901645Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"resourceAccessRules":[],"bypass":"None","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-07T06:12:08.4901645Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-07T06:12:08.4901645Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2021-10-07T06:12:08.3807870Z","primaryEndpoints":{"dfs":"https://jlst1007.dfs.core.windows.net/","web":"https://jlst1007.z13.web.core.windows.net/","blob":"https://jlst1007.blob.core.windows.net/","queue":"https://jlst1007.queue.core.windows.net/","table":"https://jlst1007.table.core.windows.net/","file":"https://jlst1007.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portal2cli/providers/Microsoft.Storage/storageAccounts/portal2clistorage","name":"portal2clistorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-14T07:23:08.7502552Z","primaryEndpoints":{"dfs":"https://portal2clistorage.dfs.core.windows.net/","web":"https://portal2clistorage.z13.web.core.windows.net/","blob":"https://portal2clistorage.blob.core.windows.net/","queue":"https://portal2clistorage.queue.core.windows.net/","table":"https://portal2clistorage.table.core.windows.net/","file":"https://portal2clistorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://portal2clistorage-secondary.dfs.core.windows.net/","web":"https://portal2clistorage-secondary.z13.web.core.windows.net/","blob":"https://portal2clistorage-secondary.blob.core.windows.net/","queue":"https://portal2clistorage-secondary.queue.core.windows.net/","table":"https://portal2clistorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/privatepackage","name":"privatepackage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-19T08:53:09.0238938Z","key2":"2021-10-19T08:53:09.0238938Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-19T08:53:09.0238938Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-19T08:53:09.0238938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-19T08:53:08.9301661Z","primaryEndpoints":{"dfs":"https://privatepackage.dfs.core.windows.net/","web":"https://privatepackage.z13.web.core.windows.net/","blob":"https://privatepackage.blob.core.windows.net/","queue":"https://privatepackage.queue.core.windows.net/","table":"https://privatepackage.table.core.windows.net/","file":"https://privatepackage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://privatepackage-secondary.dfs.core.windows.net/","web":"https://privatepackage-secondary.z13.web.core.windows.net/","blob":"https://privatepackage-secondary.blob.core.windows.net/","queue":"https://privatepackage-secondary.queue.core.windows.net/","table":"https://privatepackage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/queuetest/providers/Microsoft.Storage/storageAccounts/qteststac","name":"qteststac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-11-10T05:21:49.0582561Z","key2":"2021-11-10T05:21:49.0582561Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-10T05:21:49.0582561Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-10T05:21:49.0582561Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-10T05:21:48.9488735Z","primaryEndpoints":{"dfs":"https://qteststac.dfs.core.windows.net/","web":"https://qteststac.z13.web.core.windows.net/","blob":"https://qteststac.blob.core.windows.net/","queue":"https://qteststac.queue.core.windows.net/","table":"https://qteststac.table.core.windows.net/","file":"https://qteststac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qteststac-secondary.dfs.core.windows.net/","web":"https://qteststac-secondary.z13.web.core.windows.net/","blob":"https://qteststac-secondary.blob.core.windows.net/","queue":"https://qteststac-secondary.queue.core.windows.net/","table":"https://qteststac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-purview-msyyc/providers/Microsoft.Storage/storageAccounts/scaneastusxncccyt","name":"scaneastusxncccyt","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-23T01:56:19.6672075Z","key2":"2021-08-23T01:56:19.6672075Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T01:56:19.6672075Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T01:56:19.6672075Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-23T01:56:19.5422473Z","primaryEndpoints":{"dfs":"https://scaneastusxncccyt.dfs.core.windows.net/","web":"https://scaneastusxncccyt.z13.web.core.windows.net/","blob":"https://scaneastusxncccyt.blob.core.windows.net/","queue":"https://scaneastusxncccyt.queue.core.windows.net/","table":"https://scaneastusxncccyt.table.core.windows.net/","file":"https://scaneastusxncccyt.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bez-rg/providers/Microsoft.Storage/storageAccounts/storagecontainer4test","name":"storagecontainer4test","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-15T02:14:52.4005326Z","key2":"2021-11-15T02:14:52.4005326Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-15T02:14:52.4005326Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-15T02:14:52.4005326Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Cool","provisioningState":"Succeeded","creationTime":"2021-11-15T02:14:52.2599198Z","primaryEndpoints":{"dfs":"https://storagecontainer4test.dfs.core.windows.net/","blob":"https://storagecontainer4test.blob.core.windows.net/","table":"https://storagecontainer4test.table.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testvlw","name":"testvlw","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-27T06:47:50.5497427Z","key2":"2021-10-27T06:47:50.5497427Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:47:50.5497427Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:47:50.5497427Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T06:47:50.4247606Z","primaryEndpoints":{"dfs":"https://testvlw.dfs.core.windows.net/","web":"https://testvlw.z13.web.core.windows.net/","blob":"https://testvlw.blob.core.windows.net/","queue":"https://testvlw.queue.core.windows.net/","table":"https://testvlw.table.core.windows.net/","file":"https://testvlw.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testvlw-secondary.dfs.core.windows.net/","web":"https://testvlw-secondary.z13.web.core.windows.net/","blob":"https://testvlw-secondary.blob.core.windows.net/","queue":"https://testvlw-secondary.queue.core.windows.net/","table":"https://testvlw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssa","name":"yssa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"key1":"value1"},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-08-16T08:39:21.3287573Z","key2":"2021-08-16T08:39:21.3287573Z"},"privateEndpointConnections":[],"hnsOnMigrationInProgress":false,"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-16T08:39:21.3287573Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-16T08:39:21.3287573Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-16T08:39:21.2193709Z","primaryEndpoints":{"dfs":"https://yssa.dfs.core.windows.net/","web":"https://yssa.z13.web.core.windows.net/","blob":"https://yssa.blob.core.windows.net/","queue":"https://yssa.queue.core.windows.net/","table":"https://yssa.table.core.windows.net/","file":"https://yssa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsa","name":"zhiyihuangsa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-10T05:47:01.2111871Z","key2":"2021-09-10T05:47:01.2111871Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T05:47:01.2111871Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T05:47:01.2111871Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-10T05:47:01.0861745Z","primaryEndpoints":{"dfs":"https://zhiyihuangsa.dfs.core.windows.net/","web":"https://zhiyihuangsa.z13.web.core.windows.net/","blob":"https://zhiyihuangsa.blob.core.windows.net/","queue":"https://zhiyihuangsa.queue.core.windows.net/","table":"https://zhiyihuangsa.table.core.windows.net/","file":"https://zhiyihuangsa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhiyihuangsa-secondary.dfs.core.windows.net/","web":"https://zhiyihuangsa-secondary.z13.web.core.windows.net/","blob":"https://zhiyihuangsa-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsa-secondary.queue.core.windows.net/","table":"https://zhiyihuangsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azextensionedge","name":"azextensionedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-22T08:51:57.6947156Z","primaryEndpoints":{"dfs":"https://azextensionedge.dfs.core.windows.net/","web":"https://azextensionedge.z22.web.core.windows.net/","blob":"https://azextensionedge.blob.core.windows.net/","queue":"https://azextensionedge.queue.core.windows.net/","table":"https://azextensionedge.table.core.windows.net/","file":"https://azextensionedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azextensionedge-secondary.dfs.core.windows.net/","web":"https://azextensionedge-secondary.z22.web.core.windows.net/","blob":"https://azextensionedge-secondary.blob.core.windows.net/","queue":"https://azextensionedge-secondary.queue.core.windows.net/","table":"https://azextensionedge-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azurecliedge","name":"azurecliedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-13T08:41:36.2389304Z","primaryEndpoints":{"dfs":"https://azurecliedge.dfs.core.windows.net/","web":"https://azurecliedge.z22.web.core.windows.net/","blob":"https://azurecliedge.blob.core.windows.net/","queue":"https://azurecliedge.queue.core.windows.net/","table":"https://azurecliedge.table.core.windows.net/","file":"https://azurecliedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhddmban3xow2tgyly5j6xaruoliqaj443p3brq46idi/providers/Microsoft.Storage/storageAccounts/clitest4ydp57ynxl5tcjktl","name":"clitest4ydp57ynxl5tcjktl","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-21T06:49:12.4084643Z","key2":"2021-04-21T06:49:12.4084643Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-21T06:49:12.4240887Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-21T06:49:12.4240887Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-21T06:49:12.3303684Z","primaryEndpoints":{"blob":"https://clitest4ydp57ynxl5tcjktl.blob.core.windows.net/","queue":"https://clitest4ydp57ynxl5tcjktl.queue.core.windows.net/","table":"https://clitest4ydp57ynxl5tcjktl.table.core.windows.net/","file":"https://clitest4ydp57ynxl5tcjktl.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_gispc7ysv7inh53dpsqcfmuifcpnlfdpblbk7oeusu256nqvo/providers/Microsoft.Storage/storageAccounts/clitestinwmrbyrcxw4mqbtg","name":"clitestinwmrbyrcxw4mqbtg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-24T08:05:49.2469830Z","key2":"2021-11-24T08:05:49.2469830Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-24T08:05:49.2469830Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-24T08:05:49.2469830Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-11-24T08:05:49.1532219Z","primaryEndpoints":{"blob":"https://clitestinwmrbyrcxw4mqbtg.blob.core.windows.net/","queue":"https://clitestinwmrbyrcxw4mqbtg.queue.core.windows.net/","table":"https://clitestinwmrbyrcxw4mqbtg.table.core.windows.net/","file":"https://clitestinwmrbyrcxw4mqbtg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_i4lo4j2uzywhrqyjbav5p3s6da5rdmwxguoto32gga6ihvp56/providers/Microsoft.Storage/storageAccounts/clitestqu2eilgodmu2w5l4u","name":"clitestqu2eilgodmu2w5l4u","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-24T08:05:48.7782353Z","key2":"2021-11-24T08:05:48.7782353Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-24T08:05:48.7782353Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-24T08:05:48.7782353Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-11-24T08:05:48.6844729Z","primaryEndpoints":{"blob":"https://clitestqu2eilgodmu2w5l4u.blob.core.windows.net/","queue":"https://clitestqu2eilgodmu2w5l4u.queue.core.windows.net/","table":"https://clitestqu2eilgodmu2w5l4u.table.core.windows.net/","file":"https://clitestqu2eilgodmu2w5l4u.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-24T08:06:33.4189055Z","key2":"2021-11-24T08:06:33.4189055Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-24T08:06:33.4189055Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-24T08:06:33.4189055Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-11-24T08:06:33.3095385Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhddqxkb6y7azmjc53fhkyr66se7po4i2ve5es2y46av/providers/Microsoft.Storage/storageAccounts/clitestuxrcexs7kgo3dqsiz","name":"clitestuxrcexs7kgo3dqsiz","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-21T07:08:35.7386114Z","key2":"2021-04-21T07:08:35.7386114Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-21T07:08:35.7386114Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-21T07:08:35.7386114Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-21T07:08:35.6448419Z","primaryEndpoints":{"blob":"https://clitestuxrcexs7kgo3dqsiz.blob.core.windows.net/","queue":"https://clitestuxrcexs7kgo3dqsiz.queue.core.windows.net/","table":"https://clitestuxrcexs7kgo3dqsiz.table.core.windows.net/","file":"https://clitestuxrcexs7kgo3dqsiz.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kairu-persist/providers/Microsoft.Storage/storageAccounts/kairu","name":"kairu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-13T07:35:18.9856251Z","primaryEndpoints":{"blob":"https://kairu.blob.core.windows.net/","queue":"https://kairu.queue.core.windows.net/","table":"https://kairu.table.core.windows.net/","file":"https://kairu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/pythonsdkmsyyc","name":"pythonsdkmsyyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-30T09:03:04.8209550Z","key2":"2021-06-30T09:03:04.8209550Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-30T09:03:04.8209550Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-30T09:03:04.8209550Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-30T09:03:04.7272348Z","primaryEndpoints":{"dfs":"https://pythonsdkmsyyc.dfs.core.windows.net/","web":"https://pythonsdkmsyyc.z22.web.core.windows.net/","blob":"https://pythonsdkmsyyc.blob.core.windows.net/","queue":"https://pythonsdkmsyyc.queue.core.windows.net/","table":"https://pythonsdkmsyyc.table.core.windows.net/","file":"https://pythonsdkmsyyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Storage/storageAccounts/storageyyc","name":"storageyyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-26T05:53:22.9974267Z","key2":"2021-09-26T05:53:22.9974267Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:53:22.9974267Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:53:22.9974267Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:53:22.9192578Z","primaryEndpoints":{"dfs":"https://storageyyc.dfs.core.windows.net/","web":"https://storageyyc.z22.web.core.windows.net/","blob":"https://storageyyc.blob.core.windows.net/","queue":"https://storageyyc.queue.core.windows.net/","table":"https://storageyyc.table.core.windows.net/","file":"https://storageyyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw","name":"testalw","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true,"immutabilityPolicy":{"immutabilityPeriodSinceCreationInDays":3,"state":"Disabled"}},"keyCreationTime":{"key1":"2021-10-27T06:27:50.3554138Z","key2":"2021-10-27T06:27:50.3554138Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:27:50.3554138Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:27:50.3554138Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T06:27:50.2616355Z","primaryEndpoints":{"dfs":"https://testalw.dfs.core.windows.net/","web":"https://testalw.z22.web.core.windows.net/","blob":"https://testalw.blob.core.windows.net/","queue":"https://testalw.queue.core.windows.net/","table":"https://testalw.table.core.windows.net/","file":"https://testalw.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testalw-secondary.dfs.core.windows.net/","web":"https://testalw-secondary.z22.web.core.windows.net/","blob":"https://testalw-secondary.blob.core.windows.net/","queue":"https://testalw-secondary.queue.core.windows.net/","table":"https://testalw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1027","name":"testalw1027","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true,"immutabilityPolicy":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}},"keyCreationTime":{"key1":"2021-10-27T07:34:49.7592232Z","key2":"2021-10-27T07:34:49.7592232Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T07:34:49.7592232Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T07:34:49.7592232Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T07:34:49.6810731Z","primaryEndpoints":{"dfs":"https://testalw1027.dfs.core.windows.net/","web":"https://testalw1027.z22.web.core.windows.net/","blob":"https://testalw1027.blob.core.windows.net/","queue":"https://testalw1027.queue.core.windows.net/","table":"https://testalw1027.table.core.windows.net/","file":"https://testalw1027.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testalw1027-secondary.dfs.core.windows.net/","web":"https://testalw1027-secondary.z22.web.core.windows.net/","blob":"https://testalw1027-secondary.blob.core.windows.net/","queue":"https://testalw1027-secondary.queue.core.windows.net/","table":"https://testalw1027-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1028","name":"testalw1028","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true,"immutabilityPolicy":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}},"keyCreationTime":{"key1":"2021-10-28T01:49:10.2414505Z","key2":"2021-10-28T01:49:10.2414505Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T01:49:10.2414505Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T01:49:10.2414505Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T01:49:10.1633042Z","primaryEndpoints":{"dfs":"https://testalw1028.dfs.core.windows.net/","web":"https://testalw1028.z22.web.core.windows.net/","blob":"https://testalw1028.blob.core.windows.net/","queue":"https://testalw1028.queue.core.windows.net/","table":"https://testalw1028.table.core.windows.net/","file":"https://testalw1028.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testalw1028-secondary.dfs.core.windows.net/","web":"https://testalw1028-secondary.z22.web.core.windows.net/","blob":"https://testalw1028-secondary.blob.core.windows.net/","queue":"https://testalw1028-secondary.queue.core.windows.net/","table":"https://testalw1028-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yshns","name":"yshns","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-15T02:10:28.4103368Z","key2":"2021-10-15T02:10:28.4103368Z"},"privateEndpointConnections":[],"hnsOnMigrationInProgress":false,"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T02:10:28.4103368Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T02:10:28.4103368Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T02:10:28.3165819Z","primaryEndpoints":{"dfs":"https://yshns.dfs.core.windows.net/","web":"https://yshns.z22.web.core.windows.net/","blob":"https://yshns.blob.core.windows.net/","queue":"https://yshns.queue.core.windows.net/","table":"https://yshns.table.core.windows.net/","file":"https://yshns.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yshns-secondary.dfs.core.windows.net/","web":"https://yshns-secondary.z22.web.core.windows.net/","blob":"https://yshns-secondary.blob.core.windows.net/","queue":"https://yshns-secondary.queue.core.windows.net/","table":"https://yshns-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/azuresdktest","name":"azuresdktest","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-08-12T06:32:07.0689199Z","primaryEndpoints":{"dfs":"https://azuresdktest.dfs.core.windows.net/","web":"https://azuresdktest.z7.web.core.windows.net/","blob":"https://azuresdktest.blob.core.windows.net/","queue":"https://azuresdktest.queue.core.windows.net/","table":"https://azuresdktest.table.core.windows.net/","file":"https://azuresdktest.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrglkh7zr7/providers/Microsoft.Storage/storageAccounts/clitest2f63bh43aix4wcnlh","name":"clitest2f63bh43aix4wcnlh","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.5541453Z","key2":"2021-04-22T08:17:38.5541453Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.5541453Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.5541453Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.4760163Z","primaryEndpoints":{"blob":"https://clitest2f63bh43aix4wcnlh.blob.core.windows.net/","queue":"https://clitest2f63bh43aix4wcnlh.queue.core.windows.net/","table":"https://clitest2f63bh43aix4wcnlh.table.core.windows.net/","file":"https://clitest2f63bh43aix4wcnlh.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh5duq2f6uh/providers/Microsoft.Storage/storageAccounts/clitest2vjedutxs37ymp4ni","name":"clitest2vjedutxs37ymp4ni","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.0424866Z","key2":"2021-04-23T07:13:21.0424866Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0581083Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0581083Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9643257Z","primaryEndpoints":{"blob":"https://clitest2vjedutxs37ymp4ni.blob.core.windows.net/","queue":"https://clitest2vjedutxs37ymp4ni.queue.core.windows.net/","table":"https://clitest2vjedutxs37ymp4ni.table.core.windows.net/","file":"https://clitest2vjedutxs37ymp4ni.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl6l3rg6atb/providers/Microsoft.Storage/storageAccounts/clitest4sjmiwke5nz3f67pu","name":"clitest4sjmiwke5nz3f67pu","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:02:15.3305055Z","key2":"2021-04-22T08:02:15.3305055Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.3305055Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.3305055Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.2523305Z","primaryEndpoints":{"blob":"https://clitest4sjmiwke5nz3f67pu.blob.core.windows.net/","queue":"https://clitest4sjmiwke5nz3f67pu.queue.core.windows.net/","table":"https://clitest4sjmiwke5nz3f67pu.table.core.windows.net/","file":"https://clitest4sjmiwke5nz3f67pu.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbbt37xr2le/providers/Microsoft.Storage/storageAccounts/clitest5frikrzhxwryrkfel","name":"clitest5frikrzhxwryrkfel","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:19:22.9620171Z","key2":"2021-04-22T08:19:22.9620171Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:19:22.9776721Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:19:22.9776721Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:19:22.8838883Z","primaryEndpoints":{"blob":"https://clitest5frikrzhxwryrkfel.blob.core.windows.net/","queue":"https://clitest5frikrzhxwryrkfel.queue.core.windows.net/","table":"https://clitest5frikrzhxwryrkfel.table.core.windows.net/","file":"https://clitest5frikrzhxwryrkfel.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrc4sjsrzt4/providers/Microsoft.Storage/storageAccounts/clitest63b5vtkhuf7auho6z","name":"clitest63b5vtkhuf7auho6z","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.3198561Z","key2":"2021-04-22T08:17:38.3198561Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.3198561Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.3198561Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.2416459Z","primaryEndpoints":{"blob":"https://clitest63b5vtkhuf7auho6z.blob.core.windows.net/","queue":"https://clitest63b5vtkhuf7auho6z.queue.core.windows.net/","table":"https://clitest63b5vtkhuf7auho6z.table.core.windows.net/","file":"https://clitest63b5vtkhuf7auho6z.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitest6jusqp4qvczw52pql","name":"clitest6jusqp4qvczw52pql","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:05:08.7847684Z","key2":"2021-04-22T08:05:08.7847684Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:05:08.8003328Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:05:08.8003328Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:05:08.7065579Z","primaryEndpoints":{"blob":"https://clitest6jusqp4qvczw52pql.blob.core.windows.net/","queue":"https://clitest6jusqp4qvczw52pql.queue.core.windows.net/","table":"https://clitest6jusqp4qvczw52pql.table.core.windows.net/","file":"https://clitest6jusqp4qvczw52pql.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitest6qixwlhm5see7ipqv","name":"clitest6qixwlhm5see7ipqv","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:42:54.6967487Z","key2":"2021-04-23T03:42:54.6967487Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.6967487Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.6967487Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.6186031Z","primaryEndpoints":{"blob":"https://clitest6qixwlhm5see7ipqv.blob.core.windows.net/","queue":"https://clitest6qixwlhm5see7ipqv.queue.core.windows.net/","table":"https://clitest6qixwlhm5see7ipqv.table.core.windows.net/","file":"https://clitest6qixwlhm5see7ipqv.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbbt37xr2le/providers/Microsoft.Storage/storageAccounts/clitest74vl6rwuxl5fbuklw","name":"clitest74vl6rwuxl5fbuklw","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.2260082Z","key2":"2021-04-22T08:17:38.2260082Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.2260082Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.2260082Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.1635154Z","primaryEndpoints":{"blob":"https://clitest74vl6rwuxl5fbuklw.blob.core.windows.net/","queue":"https://clitest74vl6rwuxl5fbuklw.queue.core.windows.net/","table":"https://clitest74vl6rwuxl5fbuklw.table.core.windows.net/","file":"https://clitest74vl6rwuxl5fbuklw.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitestaxzz2w4ay2wruyjs5","name":"clitestaxzz2w4ay2wruyjs5","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:02:15.6585801Z","key2":"2021-04-22T08:02:15.6585801Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.6585801Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.6585801Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.5804737Z","primaryEndpoints":{"blob":"https://clitestaxzz2w4ay2wruyjs5.blob.core.windows.net/","queue":"https://clitestaxzz2w4ay2wruyjs5.queue.core.windows.net/","table":"https://clitestaxzz2w4ay2wruyjs5.table.core.windows.net/","file":"https://clitestaxzz2w4ay2wruyjs5.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiudkrkxpl4/providers/Microsoft.Storage/storageAccounts/clitestbiegaggvgwivkqyyi","name":"clitestbiegaggvgwivkqyyi","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.8705764Z","key2":"2021-04-23T07:13:20.8705764Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.8861995Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.8861995Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.7925187Z","primaryEndpoints":{"blob":"https://clitestbiegaggvgwivkqyyi.blob.core.windows.net/","queue":"https://clitestbiegaggvgwivkqyyi.queue.core.windows.net/","table":"https://clitestbiegaggvgwivkqyyi.table.core.windows.net/","file":"https://clitestbiegaggvgwivkqyyi.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg46ia57tmnz/providers/Microsoft.Storage/storageAccounts/clitestdlxtp24ycnjl3jui2","name":"clitestdlxtp24ycnjl3jui2","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:42:54.3217696Z","key2":"2021-04-23T03:42:54.3217696Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.3217696Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.3217696Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.2436164Z","primaryEndpoints":{"blob":"https://clitestdlxtp24ycnjl3jui2.blob.core.windows.net/","queue":"https://clitestdlxtp24ycnjl3jui2.queue.core.windows.net/","table":"https://clitestdlxtp24ycnjl3jui2.table.core.windows.net/","file":"https://clitestdlxtp24ycnjl3jui2.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg23akmjlz2r/providers/Microsoft.Storage/storageAccounts/clitestdmmxq6bklh35yongi","name":"clitestdmmxq6bklh35yongi","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-05T19:49:04.6966074Z","key2":"2021-08-05T19:49:04.6966074Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.6966074Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.6966074Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-05T19:49:04.6185933Z","primaryEndpoints":{"blob":"https://clitestdmmxq6bklh35yongi.blob.core.windows.net/","queue":"https://clitestdmmxq6bklh35yongi.queue.core.windows.net/","table":"https://clitestdmmxq6bklh35yongi.table.core.windows.net/","file":"https://clitestdmmxq6bklh35yongi.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv3m577d7ho/providers/Microsoft.Storage/storageAccounts/clitestej2fvhoj3zogyp5e7","name":"clitestej2fvhoj3zogyp5e7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:42:54.7279926Z","key2":"2021-04-23T03:42:54.7279926Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.7279926Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.7279926Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.6342444Z","primaryEndpoints":{"blob":"https://clitestej2fvhoj3zogyp5e7.blob.core.windows.net/","queue":"https://clitestej2fvhoj3zogyp5e7.queue.core.windows.net/","table":"https://clitestej2fvhoj3zogyp5e7.table.core.windows.net/","file":"https://clitestej2fvhoj3zogyp5e7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp6ikwpcsq7/providers/Microsoft.Storage/storageAccounts/clitestggvkyebv5o55dhakj","name":"clitestggvkyebv5o55dhakj","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.2300019Z","key2":"2021-04-23T07:13:21.2300019Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.2456239Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.2456239Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:21.1518492Z","primaryEndpoints":{"blob":"https://clitestggvkyebv5o55dhakj.blob.core.windows.net/","queue":"https://clitestggvkyebv5o55dhakj.queue.core.windows.net/","table":"https://clitestggvkyebv5o55dhakj.table.core.windows.net/","file":"https://clitestggvkyebv5o55dhakj.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn6glpfa25c/providers/Microsoft.Storage/storageAccounts/clitestgt3fjzabc7taya5zo","name":"clitestgt3fjzabc7taya5zo","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.6675009Z","key2":"2021-04-23T07:13:20.6675009Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6831653Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6831653Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.5894204Z","primaryEndpoints":{"blob":"https://clitestgt3fjzabc7taya5zo.blob.core.windows.net/","queue":"https://clitestgt3fjzabc7taya5zo.queue.core.windows.net/","table":"https://clitestgt3fjzabc7taya5zo.table.core.windows.net/","file":"https://clitestgt3fjzabc7taya5zo.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgptzwacrnwa/providers/Microsoft.Storage/storageAccounts/clitestivtrt5tp624n63ast","name":"clitestivtrt5tp624n63ast","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.1166795Z","key2":"2021-04-22T08:17:38.1166795Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.1166795Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.1166795Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.0541529Z","primaryEndpoints":{"blob":"https://clitestivtrt5tp624n63ast.blob.core.windows.net/","queue":"https://clitestivtrt5tp624n63ast.queue.core.windows.net/","table":"https://clitestivtrt5tp624n63ast.table.core.windows.net/","file":"https://clitestivtrt5tp624n63ast.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdc25pvki6m/providers/Microsoft.Storage/storageAccounts/clitestkxu4ahsqaxv42cyyf","name":"clitestkxu4ahsqaxv42cyyf","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:02:15.7523496Z","key2":"2021-04-22T08:02:15.7523496Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.7523496Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.7523496Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.6742355Z","primaryEndpoints":{"blob":"https://clitestkxu4ahsqaxv42cyyf.blob.core.windows.net/","queue":"https://clitestkxu4ahsqaxv42cyyf.queue.core.windows.net/","table":"https://clitestkxu4ahsqaxv42cyyf.table.core.windows.net/","file":"https://clitestkxu4ahsqaxv42cyyf.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghkyqf7pb5/providers/Microsoft.Storage/storageAccounts/clitestpuea6vlqwxw6ihiws","name":"clitestpuea6vlqwxw6ihiws","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.0581083Z","key2":"2021-04-23T07:13:21.0581083Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0737014Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0737014Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9799581Z","primaryEndpoints":{"blob":"https://clitestpuea6vlqwxw6ihiws.blob.core.windows.net/","queue":"https://clitestpuea6vlqwxw6ihiws.queue.core.windows.net/","table":"https://clitestpuea6vlqwxw6ihiws.table.core.windows.net/","file":"https://clitestpuea6vlqwxw6ihiws.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbo2ure7pgp/providers/Microsoft.Storage/storageAccounts/clitestsnv7joygpazk23npj","name":"clitestsnv7joygpazk23npj","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-21T02:19:20.7474327Z","key2":"2021-05-21T02:19:20.7474327Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-21T02:19:20.7474327Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-21T02:19:20.7474327Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-21T02:19:20.6537267Z","primaryEndpoints":{"blob":"https://clitestsnv7joygpazk23npj.blob.core.windows.net/","queue":"https://clitestsnv7joygpazk23npj.queue.core.windows.net/","table":"https://clitestsnv7joygpazk23npj.table.core.windows.net/","file":"https://clitestsnv7joygpazk23npj.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.Storage/storageAccounts/clitestu3p7a7ib4n4y7gt4m","name":"clitestu3p7a7ib4n4y7gt4m","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T01:51:53.0189478Z","primaryEndpoints":{"blob":"https://clitestu3p7a7ib4n4y7gt4m.blob.core.windows.net/","queue":"https://clitestu3p7a7ib4n4y7gt4m.queue.core.windows.net/","table":"https://clitestu3p7a7ib4n4y7gt4m.table.core.windows.net/","file":"https://clitestu3p7a7ib4n4y7gt4m.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitestwqzjytdeun46rphfd","name":"clitestwqzjytdeun46rphfd","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:44:35.3668592Z","key2":"2021-04-23T03:44:35.3668592Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:44:35.3668592Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:44:35.3668592Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:44:35.2887580Z","primaryEndpoints":{"blob":"https://clitestwqzjytdeun46rphfd.blob.core.windows.net/","queue":"https://clitestwqzjytdeun46rphfd.queue.core.windows.net/","table":"https://clitestwqzjytdeun46rphfd.table.core.windows.net/","file":"https://clitestwqzjytdeun46rphfd.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgltfej7yr4u/providers/Microsoft.Storage/storageAccounts/clitestwvsg2uskf4i7vjfto","name":"clitestwvsg2uskf4i7vjfto","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-13T07:48:30.9247776Z","key2":"2021-05-13T07:48:30.9247776Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-13T07:48:30.9403727Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-13T07:48:30.9403727Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-13T07:48:30.8309682Z","primaryEndpoints":{"blob":"https://clitestwvsg2uskf4i7vjfto.blob.core.windows.net/","queue":"https://clitestwvsg2uskf4i7vjfto.queue.core.windows.net/","table":"https://clitestwvsg2uskf4i7vjfto.table.core.windows.net/","file":"https://clitestwvsg2uskf4i7vjfto.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzjznhcqaoh/providers/Microsoft.Storage/storageAccounts/clitestwznnmnfot33xjztmk","name":"clitestwznnmnfot33xjztmk","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.7299628Z","key2":"2021-04-23T07:13:20.7299628Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.7456181Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.7456181Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.6518776Z","primaryEndpoints":{"blob":"https://clitestwznnmnfot33xjztmk.blob.core.windows.net/","queue":"https://clitestwznnmnfot33xjztmk.queue.core.windows.net/","table":"https://clitestwznnmnfot33xjztmk.table.core.windows.net/","file":"https://clitestwznnmnfot33xjztmk.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4yns4yxisb/providers/Microsoft.Storage/storageAccounts/clitestyt6rxgad3kebqzh26","name":"clitestyt6rxgad3kebqzh26","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-05T19:49:04.8528440Z","key2":"2021-08-05T19:49:04.8528440Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.8528440Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.8528440Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-05T19:49:04.7747435Z","primaryEndpoints":{"blob":"https://clitestyt6rxgad3kebqzh26.blob.core.windows.net/","queue":"https://clitestyt6rxgad3kebqzh26.queue.core.windows.net/","table":"https://clitestyt6rxgad3kebqzh26.table.core.windows.net/","file":"https://clitestyt6rxgad3kebqzh26.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgovptfsocfg/providers/Microsoft.Storage/storageAccounts/clitestz72bbbbv2cio2pmom","name":"clitestz72bbbbv2cio2pmom","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.0112600Z","key2":"2021-04-23T07:13:21.0112600Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0268549Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0268549Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9330720Z","primaryEndpoints":{"blob":"https://clitestz72bbbbv2cio2pmom.blob.core.windows.net/","queue":"https://clitestz72bbbbv2cio2pmom.queue.core.windows.net/","table":"https://clitestz72bbbbv2cio2pmom.table.core.windows.net/","file":"https://clitestz72bbbbv2cio2pmom.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxp7uwuibs5/providers/Microsoft.Storage/storageAccounts/clitestzrwidkqplnw3jmz4z","name":"clitestzrwidkqplnw3jmz4z","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.6831653Z","key2":"2021-04-23T07:13:20.6831653Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6987004Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6987004Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.6049571Z","primaryEndpoints":{"blob":"https://clitestzrwidkqplnw3jmz4z.blob.core.windows.net/","queue":"https://clitestzrwidkqplnw3jmz4z.queue.core.windows.net/","table":"https://clitestzrwidkqplnw3jmz4z.table.core.windows.net/","file":"https://clitestzrwidkqplnw3jmz4z.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524","name":"cs1100320004dd89524","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-26T05:48:15.7013062Z","key2":"2021-03-26T05:48:15.7013062Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-26T05:48:15.6545059Z","primaryEndpoints":{"dfs":"https://cs1100320004dd89524.dfs.core.windows.net/","web":"https://cs1100320004dd89524.z23.web.core.windows.net/","blob":"https://cs1100320004dd89524.blob.core.windows.net/","queue":"https://cs1100320004dd89524.queue.core.windows.net/","table":"https://cs1100320004dd89524.table.core.windows.net/","file":"https://cs1100320004dd89524.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320005416c8c9","name":"cs1100320005416c8c9","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-07-09T05:58:20.1898753Z","key2":"2021-07-09T05:58:20.1898753Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-09T05:58:20.2055665Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-09T05:58:20.2055665Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-09T05:58:20.0961322Z","primaryEndpoints":{"dfs":"https://cs1100320005416c8c9.dfs.core.windows.net/","web":"https://cs1100320005416c8c9.z23.web.core.windows.net/","blob":"https://cs1100320005416c8c9.blob.core.windows.net/","queue":"https://cs1100320005416c8c9.queue.core.windows.net/","table":"https://cs1100320005416c8c9.table.core.windows.net/","file":"https://cs1100320005416c8c9.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320007b1ce356","name":"cs1100320007b1ce356","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-08-31T13:56:10.5497663Z","key2":"2021-08-31T13:56:10.5497663Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T13:56:10.5497663Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T13:56:10.5497663Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-31T13:56:10.4560533Z","primaryEndpoints":{"dfs":"https://cs1100320007b1ce356.dfs.core.windows.net/","web":"https://cs1100320007b1ce356.z23.web.core.windows.net/","blob":"https://cs1100320007b1ce356.blob.core.windows.net/","queue":"https://cs1100320007b1ce356.queue.core.windows.net/","table":"https://cs1100320007b1ce356.table.core.windows.net/","file":"https://cs1100320007b1ce356.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867","name":"cs1100320007de01867","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-25T03:24:00.9490326Z","primaryEndpoints":{"dfs":"https://cs1100320007de01867.dfs.core.windows.net/","web":"https://cs1100320007de01867.z23.web.core.windows.net/","blob":"https://cs1100320007de01867.blob.core.windows.net/","queue":"https://cs1100320007de01867.queue.core.windows.net/","table":"https://cs1100320007de01867.table.core.windows.net/","file":"https://cs1100320007de01867.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200087c55daf","name":"cs11003200087c55daf","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-07-21T00:43:24.0011691Z","key2":"2021-07-21T00:43:24.0011691Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-21T00:43:24.0011691Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-21T00:43:24.0011691Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-21T00:43:23.9230250Z","primaryEndpoints":{"dfs":"https://cs11003200087c55daf.dfs.core.windows.net/","web":"https://cs11003200087c55daf.z23.web.core.windows.net/","blob":"https://cs11003200087c55daf.blob.core.windows.net/","queue":"https://cs11003200087c55daf.queue.core.windows.net/","table":"https://cs11003200087c55daf.table.core.windows.net/","file":"https://cs11003200087c55daf.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc","name":"cs1100320008debd5bc","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-17T07:12:44.1132341Z","key2":"2021-03-17T07:12:44.1132341Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-17T07:12:44.0351358Z","primaryEndpoints":{"dfs":"https://cs1100320008debd5bc.dfs.core.windows.net/","web":"https://cs1100320008debd5bc.z23.web.core.windows.net/","blob":"https://cs1100320008debd5bc.blob.core.windows.net/","queue":"https://cs1100320008debd5bc.queue.core.windows.net/","table":"https://cs1100320008debd5bc.table.core.windows.net/","file":"https://cs1100320008debd5bc.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000919ef7c5","name":"cs110032000919ef7c5","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-10-09T02:02:43.1652268Z","key2":"2021-10-09T02:02:43.1652268Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-09T02:02:43.1652268Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-09T02:02:43.1652268Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-09T02:02:43.0714900Z","primaryEndpoints":{"dfs":"https://cs110032000919ef7c5.dfs.core.windows.net/","web":"https://cs110032000919ef7c5.z23.web.core.windows.net/","blob":"https://cs110032000919ef7c5.blob.core.windows.net/","queue":"https://cs110032000919ef7c5.queue.core.windows.net/","table":"https://cs110032000919ef7c5.table.core.windows.net/","file":"https://cs110032000919ef7c5.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771","name":"cs11003200092fe0771","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-23T07:08:51.1436686Z","key2":"2021-03-23T07:08:51.1436686Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-23T07:08:51.0811120Z","primaryEndpoints":{"dfs":"https://cs11003200092fe0771.dfs.core.windows.net/","web":"https://cs11003200092fe0771.z23.web.core.windows.net/","blob":"https://cs11003200092fe0771.blob.core.windows.net/","queue":"https://cs11003200092fe0771.queue.core.windows.net/","table":"https://cs11003200092fe0771.table.core.windows.net/","file":"https://cs11003200092fe0771.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c","name":"cs110032000b6f3c90c","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-05-06T05:28:23.2493456Z","key2":"2021-05-06T05:28:23.2493456Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-06T05:28:23.2493456Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-06T05:28:23.2493456Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-06T05:28:23.1868245Z","primaryEndpoints":{"dfs":"https://cs110032000b6f3c90c.dfs.core.windows.net/","web":"https://cs110032000b6f3c90c.z23.web.core.windows.net/","blob":"https://cs110032000b6f3c90c.blob.core.windows.net/","queue":"https://cs110032000b6f3c90c.queue.core.windows.net/","table":"https://cs110032000b6f3c90c.table.core.windows.net/","file":"https://cs110032000b6f3c90c.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71","name":"cs110032000c31bae71","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-04-15T06:39:35.4649198Z","key2":"2021-04-15T06:39:35.4649198Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-15T06:39:35.4180004Z","primaryEndpoints":{"dfs":"https://cs110032000c31bae71.dfs.core.windows.net/","web":"https://cs110032000c31bae71.z23.web.core.windows.net/","blob":"https://cs110032000c31bae71.blob.core.windows.net/","queue":"https://cs110032000c31bae71.queue.core.windows.net/","table":"https://cs110032000c31bae71.table.core.windows.net/","file":"https://cs110032000c31bae71.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00","name":"cs110032000ca62af00","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-22T02:06:18.4217109Z","primaryEndpoints":{"dfs":"https://cs110032000ca62af00.dfs.core.windows.net/","web":"https://cs110032000ca62af00.z23.web.core.windows.net/","blob":"https://cs110032000ca62af00.blob.core.windows.net/","queue":"https://cs110032000ca62af00.queue.core.windows.net/","table":"https://cs110032000ca62af00.table.core.windows.net/","file":"https://cs110032000ca62af00.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e1cb9f41","name":"cs110032000e1cb9f41","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-06-01T02:14:02.8985613Z","key2":"2021-06-01T02:14:02.8985613Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-01T02:14:02.9140912Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-01T02:14:02.9140912Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-01T02:14:02.8047066Z","primaryEndpoints":{"dfs":"https://cs110032000e1cb9f41.dfs.core.windows.net/","web":"https://cs110032000e1cb9f41.z23.web.core.windows.net/","blob":"https://cs110032000e1cb9f41.blob.core.windows.net/","queue":"https://cs110032000e1cb9f41.queue.core.windows.net/","table":"https://cs110032000e1cb9f41.table.core.windows.net/","file":"https://cs110032000e1cb9f41.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978","name":"cs110032000e3121978","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-04-25T07:26:43.6124221Z","key2":"2021-04-25T07:26:43.6124221Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-25T07:26:43.6124221Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-25T07:26:43.6124221Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-25T07:26:43.5343583Z","primaryEndpoints":{"dfs":"https://cs110032000e3121978.dfs.core.windows.net/","web":"https://cs110032000e3121978.z23.web.core.windows.net/","blob":"https://cs110032000e3121978.blob.core.windows.net/","queue":"https://cs110032000e3121978.queue.core.windows.net/","table":"https://cs110032000e3121978.table.core.windows.net/","file":"https://cs110032000e3121978.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000f3aac891","name":"cs110032000f3aac891","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-10-08T11:18:17.0122606Z","key2":"2021-10-08T11:18:17.0122606Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-08T11:18:17.0122606Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-08T11:18:17.0122606Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-08T11:18:16.9184856Z","primaryEndpoints":{"dfs":"https://cs110032000f3aac891.dfs.core.windows.net/","web":"https://cs110032000f3aac891.z23.web.core.windows.net/","blob":"https://cs110032000f3aac891.blob.core.windows.net/","queue":"https://cs110032000f3aac891.queue.core.windows.net/","table":"https://cs110032000f3aac891.table.core.windows.net/","file":"https://cs110032000f3aac891.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320010339dce7","name":"cs1100320010339dce7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-07-01T12:55:31.1442388Z","key2":"2021-07-01T12:55:31.1442388Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-01T12:55:31.1442388Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-01T12:55:31.1442388Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-01T12:55:31.0661165Z","primaryEndpoints":{"dfs":"https://cs1100320010339dce7.dfs.core.windows.net/","web":"https://cs1100320010339dce7.z23.web.core.windows.net/","blob":"https://cs1100320010339dce7.blob.core.windows.net/","queue":"https://cs1100320010339dce7.queue.core.windows.net/","table":"https://cs1100320010339dce7.table.core.windows.net/","file":"https://cs1100320010339dce7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47","name":"cs11003200127365c47","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-25T03:10:52.6098894Z","key2":"2021-03-25T03:10:52.6098894Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-25T03:10:52.5318146Z","primaryEndpoints":{"dfs":"https://cs11003200127365c47.dfs.core.windows.net/","web":"https://cs11003200127365c47.z23.web.core.windows.net/","blob":"https://cs11003200127365c47.blob.core.windows.net/","queue":"https://cs11003200127365c47.queue.core.windows.net/","table":"https://cs11003200127365c47.table.core.windows.net/","file":"https://cs11003200127365c47.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200129e38348","name":"cs11003200129e38348","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-05-24T06:59:16.3135399Z","key2":"2021-05-24T06:59:16.3135399Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-24T06:59:16.3135399Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-24T06:59:16.3135399Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-24T06:59:16.2198282Z","primaryEndpoints":{"dfs":"https://cs11003200129e38348.dfs.core.windows.net/","web":"https://cs11003200129e38348.z23.web.core.windows.net/","blob":"https://cs11003200129e38348.blob.core.windows.net/","queue":"https://cs11003200129e38348.queue.core.windows.net/","table":"https://cs11003200129e38348.table.core.windows.net/","file":"https://cs11003200129e38348.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452","name":"cs1100320012c36c452","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-04-09T08:04:25.5979407Z","key2":"2021-04-09T08:04:25.5979407Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-09T08:04:25.5198295Z","primaryEndpoints":{"dfs":"https://cs1100320012c36c452.dfs.core.windows.net/","web":"https://cs1100320012c36c452.z23.web.core.windows.net/","blob":"https://cs1100320012c36c452.blob.core.windows.net/","queue":"https://cs1100320012c36c452.queue.core.windows.net/","table":"https://cs1100320012c36c452.table.core.windows.net/","file":"https://cs1100320012c36c452.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001520b2764","name":"cs110032001520b2764","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-09-03T08:56:46.2009376Z","key2":"2021-09-03T08:56:46.2009376Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T08:56:46.2009376Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T08:56:46.2009376Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-03T08:56:46.1071770Z","primaryEndpoints":{"dfs":"https://cs110032001520b2764.dfs.core.windows.net/","web":"https://cs110032001520b2764.z23.web.core.windows.net/","blob":"https://cs110032001520b2764.blob.core.windows.net/","queue":"https://cs110032001520b2764.queue.core.windows.net/","table":"https://cs110032001520b2764.table.core.windows.net/","file":"https://cs110032001520b2764.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320016ac59291","name":"cs1100320016ac59291","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-08-10T06:12:25.7518719Z","key2":"2021-08-10T06:12:25.7518719Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-10T06:12:25.7518719Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-10T06:12:25.7518719Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-10T06:12:25.6581170Z","primaryEndpoints":{"dfs":"https://cs1100320016ac59291.dfs.core.windows.net/","web":"https://cs1100320016ac59291.z23.web.core.windows.net/","blob":"https://cs1100320016ac59291.blob.core.windows.net/","queue":"https://cs1100320016ac59291.queue.core.windows.net/","table":"https://cs1100320016ac59291.table.core.windows.net/","file":"https://cs1100320016ac59291.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320018cedbbd6","name":"cs1100320018cedbbd6","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-11-02T06:32:13.4022120Z","key2":"2021-11-02T06:32:13.4022120Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T06:32:13.4022120Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T06:32:13.4022120Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-02T06:32:13.3084745Z","primaryEndpoints":{"dfs":"https://cs1100320018cedbbd6.dfs.core.windows.net/","web":"https://cs1100320018cedbbd6.z23.web.core.windows.net/","blob":"https://cs1100320018cedbbd6.blob.core.windows.net/","queue":"https://cs1100320018cedbbd6.queue.core.windows.net/","table":"https://cs1100320018cedbbd6.table.core.windows.net/","file":"https://cs1100320018cedbbd6.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-dev/providers/Microsoft.Storage/storageAccounts/jl0927","name":"jl0927","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-09-27T09:22:48.0910647Z","key2":"2021-09-27T09:22:48.0910647Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T09:22:48.0910647Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T09:22:48.0910647Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-27T09:22:47.9973304Z","primaryEndpoints":{"dfs":"https://jl0927.dfs.core.windows.net/","web":"https://jl0927.z23.web.core.windows.net/","blob":"https://jl0927.blob.core.windows.net/","queue":"https://jl0927.queue.core.windows.net/","table":"https://jl0927.table.core.windows.net/","file":"https://jl0927.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-feng-purview/providers/Microsoft.Storage/storageAccounts/scansouthcentralusdteqbx","name":"scansouthcentralusdteqbx","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-23T06:00:34.2251607Z","key2":"2021-09-23T06:00:34.2251607Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-23T06:00:34.2251607Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-23T06:00:34.2251607Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-23T06:00:34.1313540Z","primaryEndpoints":{"dfs":"https://scansouthcentralusdteqbx.dfs.core.windows.net/","web":"https://scansouthcentralusdteqbx.z21.web.core.windows.net/","blob":"https://scansouthcentralusdteqbx.blob.core.windows.net/","queue":"https://scansouthcentralusdteqbx.queue.core.windows.net/","table":"https://scansouthcentralusdteqbx.table.core.windows.net/","file":"https://scansouthcentralusdteqbx.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/extmigrate","name":"extmigrate","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-16T08:26:10.5858998Z","primaryEndpoints":{"blob":"https://extmigrate.blob.core.windows.net/","queue":"https://extmigrate.queue.core.windows.net/","table":"https://extmigrate.table.core.windows.net/","file":"https://extmigrate.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://extmigrate-secondary.blob.core.windows.net/","queue":"https://extmigrate-secondary.queue.core.windows.net/","table":"https://extmigrate-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-14T06:47:20.1106748Z","key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"dfs":"https://fengsa.dfs.core.windows.net/","web":"https://fengsa.z19.web.core.windows.net/","blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengsa-secondary.dfs.core.windows.net/","web":"https://fengsa-secondary.z19.web.core.windows.net/","blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengtestsa","name":"fengtestsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T03:10:28.6266623Z","primaryEndpoints":{"dfs":"https://fengtestsa.dfs.core.windows.net/","web":"https://fengtestsa.z19.web.core.windows.net/","blob":"https://fengtestsa.blob.core.windows.net/","queue":"https://fengtestsa.queue.core.windows.net/","table":"https://fengtestsa.table.core.windows.net/","file":"https://fengtestsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengtestsa-secondary.dfs.core.windows.net/","web":"https://fengtestsa-secondary.z19.web.core.windows.net/","blob":"https://fengtestsa-secondary.blob.core.windows.net/","queue":"https://fengtestsa-secondary.queue.core.windows.net/","table":"https://fengtestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:07:42.1277444Z","primaryEndpoints":{"dfs":"https://storagesfrepro1.dfs.core.windows.net/","web":"https://storagesfrepro1.z19.web.core.windows.net/","blob":"https://storagesfrepro1.blob.core.windows.net/","queue":"https://storagesfrepro1.queue.core.windows.net/","table":"https://storagesfrepro1.table.core.windows.net/","file":"https://storagesfrepro1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro1-secondary.dfs.core.windows.net/","web":"https://storagesfrepro1-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro1-secondary.blob.core.windows.net/","queue":"https://storagesfrepro1-secondary.queue.core.windows.net/","table":"https://storagesfrepro1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro10","name":"storagesfrepro10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:00.7815921Z","primaryEndpoints":{"dfs":"https://storagesfrepro10.dfs.core.windows.net/","web":"https://storagesfrepro10.z19.web.core.windows.net/","blob":"https://storagesfrepro10.blob.core.windows.net/","queue":"https://storagesfrepro10.queue.core.windows.net/","table":"https://storagesfrepro10.table.core.windows.net/","file":"https://storagesfrepro10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro10-secondary.dfs.core.windows.net/","web":"https://storagesfrepro10-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro10-secondary.blob.core.windows.net/","queue":"https://storagesfrepro10-secondary.queue.core.windows.net/","table":"https://storagesfrepro10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro11","name":"storagesfrepro11","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:28.8609347Z","primaryEndpoints":{"dfs":"https://storagesfrepro11.dfs.core.windows.net/","web":"https://storagesfrepro11.z19.web.core.windows.net/","blob":"https://storagesfrepro11.blob.core.windows.net/","queue":"https://storagesfrepro11.queue.core.windows.net/","table":"https://storagesfrepro11.table.core.windows.net/","file":"https://storagesfrepro11.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro11-secondary.dfs.core.windows.net/","web":"https://storagesfrepro11-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro11-secondary.blob.core.windows.net/","queue":"https://storagesfrepro11-secondary.queue.core.windows.net/","table":"https://storagesfrepro11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro12","name":"storagesfrepro12","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:15:15.5848345Z","primaryEndpoints":{"dfs":"https://storagesfrepro12.dfs.core.windows.net/","web":"https://storagesfrepro12.z19.web.core.windows.net/","blob":"https://storagesfrepro12.blob.core.windows.net/","queue":"https://storagesfrepro12.queue.core.windows.net/","table":"https://storagesfrepro12.table.core.windows.net/","file":"https://storagesfrepro12.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro12-secondary.dfs.core.windows.net/","web":"https://storagesfrepro12-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro12-secondary.blob.core.windows.net/","queue":"https://storagesfrepro12-secondary.queue.core.windows.net/","table":"https://storagesfrepro12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro13","name":"storagesfrepro13","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:16:55.6671828Z","primaryEndpoints":{"dfs":"https://storagesfrepro13.dfs.core.windows.net/","web":"https://storagesfrepro13.z19.web.core.windows.net/","blob":"https://storagesfrepro13.blob.core.windows.net/","queue":"https://storagesfrepro13.queue.core.windows.net/","table":"https://storagesfrepro13.table.core.windows.net/","file":"https://storagesfrepro13.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro13-secondary.dfs.core.windows.net/","web":"https://storagesfrepro13-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro13-secondary.blob.core.windows.net/","queue":"https://storagesfrepro13-secondary.queue.core.windows.net/","table":"https://storagesfrepro13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro14","name":"storagesfrepro14","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:17:40.6880204Z","primaryEndpoints":{"dfs":"https://storagesfrepro14.dfs.core.windows.net/","web":"https://storagesfrepro14.z19.web.core.windows.net/","blob":"https://storagesfrepro14.blob.core.windows.net/","queue":"https://storagesfrepro14.queue.core.windows.net/","table":"https://storagesfrepro14.table.core.windows.net/","file":"https://storagesfrepro14.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro14-secondary.dfs.core.windows.net/","web":"https://storagesfrepro14-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro14-secondary.blob.core.windows.net/","queue":"https://storagesfrepro14-secondary.queue.core.windows.net/","table":"https://storagesfrepro14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro15","name":"storagesfrepro15","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:18:52.0718543Z","primaryEndpoints":{"dfs":"https://storagesfrepro15.dfs.core.windows.net/","web":"https://storagesfrepro15.z19.web.core.windows.net/","blob":"https://storagesfrepro15.blob.core.windows.net/","queue":"https://storagesfrepro15.queue.core.windows.net/","table":"https://storagesfrepro15.table.core.windows.net/","file":"https://storagesfrepro15.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro15-secondary.dfs.core.windows.net/","web":"https://storagesfrepro15-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro15-secondary.blob.core.windows.net/","queue":"https://storagesfrepro15-secondary.queue.core.windows.net/","table":"https://storagesfrepro15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro16","name":"storagesfrepro16","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:19:33.0770034Z","primaryEndpoints":{"dfs":"https://storagesfrepro16.dfs.core.windows.net/","web":"https://storagesfrepro16.z19.web.core.windows.net/","blob":"https://storagesfrepro16.blob.core.windows.net/","queue":"https://storagesfrepro16.queue.core.windows.net/","table":"https://storagesfrepro16.table.core.windows.net/","file":"https://storagesfrepro16.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro16-secondary.dfs.core.windows.net/","web":"https://storagesfrepro16-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro16-secondary.blob.core.windows.net/","queue":"https://storagesfrepro16-secondary.queue.core.windows.net/","table":"https://storagesfrepro16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro17","name":"storagesfrepro17","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:23.4771469Z","primaryEndpoints":{"dfs":"https://storagesfrepro17.dfs.core.windows.net/","web":"https://storagesfrepro17.z19.web.core.windows.net/","blob":"https://storagesfrepro17.blob.core.windows.net/","queue":"https://storagesfrepro17.queue.core.windows.net/","table":"https://storagesfrepro17.table.core.windows.net/","file":"https://storagesfrepro17.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro17-secondary.dfs.core.windows.net/","web":"https://storagesfrepro17-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro17-secondary.blob.core.windows.net/","queue":"https://storagesfrepro17-secondary.queue.core.windows.net/","table":"https://storagesfrepro17-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro18","name":"storagesfrepro18","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:53.7383176Z","primaryEndpoints":{"dfs":"https://storagesfrepro18.dfs.core.windows.net/","web":"https://storagesfrepro18.z19.web.core.windows.net/","blob":"https://storagesfrepro18.blob.core.windows.net/","queue":"https://storagesfrepro18.queue.core.windows.net/","table":"https://storagesfrepro18.table.core.windows.net/","file":"https://storagesfrepro18.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro18-secondary.dfs.core.windows.net/","web":"https://storagesfrepro18-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro18-secondary.blob.core.windows.net/","queue":"https://storagesfrepro18-secondary.queue.core.windows.net/","table":"https://storagesfrepro18-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro19","name":"storagesfrepro19","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:05:26.2556326Z","primaryEndpoints":{"dfs":"https://storagesfrepro19.dfs.core.windows.net/","web":"https://storagesfrepro19.z19.web.core.windows.net/","blob":"https://storagesfrepro19.blob.core.windows.net/","queue":"https://storagesfrepro19.queue.core.windows.net/","table":"https://storagesfrepro19.table.core.windows.net/","file":"https://storagesfrepro19.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro19-secondary.dfs.core.windows.net/","web":"https://storagesfrepro19-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro19-secondary.blob.core.windows.net/","queue":"https://storagesfrepro19-secondary.queue.core.windows.net/","table":"https://storagesfrepro19-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro2","name":"storagesfrepro2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:08:45.7717196Z","primaryEndpoints":{"dfs":"https://storagesfrepro2.dfs.core.windows.net/","web":"https://storagesfrepro2.z19.web.core.windows.net/","blob":"https://storagesfrepro2.blob.core.windows.net/","queue":"https://storagesfrepro2.queue.core.windows.net/","table":"https://storagesfrepro2.table.core.windows.net/","file":"https://storagesfrepro2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro2-secondary.dfs.core.windows.net/","web":"https://storagesfrepro2-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro2-secondary.blob.core.windows.net/","queue":"https://storagesfrepro2-secondary.queue.core.windows.net/","table":"https://storagesfrepro2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro20","name":"storagesfrepro20","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:07.3358422Z","primaryEndpoints":{"dfs":"https://storagesfrepro20.dfs.core.windows.net/","web":"https://storagesfrepro20.z19.web.core.windows.net/","blob":"https://storagesfrepro20.blob.core.windows.net/","queue":"https://storagesfrepro20.queue.core.windows.net/","table":"https://storagesfrepro20.table.core.windows.net/","file":"https://storagesfrepro20.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro20-secondary.dfs.core.windows.net/","web":"https://storagesfrepro20-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro20-secondary.blob.core.windows.net/","queue":"https://storagesfrepro20-secondary.queue.core.windows.net/","table":"https://storagesfrepro20-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro21","name":"storagesfrepro21","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:37.3686460Z","primaryEndpoints":{"dfs":"https://storagesfrepro21.dfs.core.windows.net/","web":"https://storagesfrepro21.z19.web.core.windows.net/","blob":"https://storagesfrepro21.blob.core.windows.net/","queue":"https://storagesfrepro21.queue.core.windows.net/","table":"https://storagesfrepro21.table.core.windows.net/","file":"https://storagesfrepro21.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro21-secondary.dfs.core.windows.net/","web":"https://storagesfrepro21-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro21-secondary.blob.core.windows.net/","queue":"https://storagesfrepro21-secondary.queue.core.windows.net/","table":"https://storagesfrepro21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro22","name":"storagesfrepro22","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:59.7201581Z","primaryEndpoints":{"dfs":"https://storagesfrepro22.dfs.core.windows.net/","web":"https://storagesfrepro22.z19.web.core.windows.net/","blob":"https://storagesfrepro22.blob.core.windows.net/","queue":"https://storagesfrepro22.queue.core.windows.net/","table":"https://storagesfrepro22.table.core.windows.net/","file":"https://storagesfrepro22.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro22-secondary.dfs.core.windows.net/","web":"https://storagesfrepro22-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro22-secondary.blob.core.windows.net/","queue":"https://storagesfrepro22-secondary.queue.core.windows.net/","table":"https://storagesfrepro22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro23","name":"storagesfrepro23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:29.0065050Z","primaryEndpoints":{"dfs":"https://storagesfrepro23.dfs.core.windows.net/","web":"https://storagesfrepro23.z19.web.core.windows.net/","blob":"https://storagesfrepro23.blob.core.windows.net/","queue":"https://storagesfrepro23.queue.core.windows.net/","table":"https://storagesfrepro23.table.core.windows.net/","file":"https://storagesfrepro23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro23-secondary.dfs.core.windows.net/","web":"https://storagesfrepro23-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro23-secondary.blob.core.windows.net/","queue":"https://storagesfrepro23-secondary.queue.core.windows.net/","table":"https://storagesfrepro23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro24","name":"storagesfrepro24","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:53.1565651Z","primaryEndpoints":{"dfs":"https://storagesfrepro24.dfs.core.windows.net/","web":"https://storagesfrepro24.z19.web.core.windows.net/","blob":"https://storagesfrepro24.blob.core.windows.net/","queue":"https://storagesfrepro24.queue.core.windows.net/","table":"https://storagesfrepro24.table.core.windows.net/","file":"https://storagesfrepro24.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro24-secondary.dfs.core.windows.net/","web":"https://storagesfrepro24-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro24-secondary.blob.core.windows.net/","queue":"https://storagesfrepro24-secondary.queue.core.windows.net/","table":"https://storagesfrepro24-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro25","name":"storagesfrepro25","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:08:18.6338258Z","primaryEndpoints":{"dfs":"https://storagesfrepro25.dfs.core.windows.net/","web":"https://storagesfrepro25.z19.web.core.windows.net/","blob":"https://storagesfrepro25.blob.core.windows.net/","queue":"https://storagesfrepro25.queue.core.windows.net/","table":"https://storagesfrepro25.table.core.windows.net/","file":"https://storagesfrepro25.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro25-secondary.dfs.core.windows.net/","web":"https://storagesfrepro25-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro25-secondary.blob.core.windows.net/","queue":"https://storagesfrepro25-secondary.queue.core.windows.net/","table":"https://storagesfrepro25-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro3","name":"storagesfrepro3","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:19.3510997Z","primaryEndpoints":{"dfs":"https://storagesfrepro3.dfs.core.windows.net/","web":"https://storagesfrepro3.z19.web.core.windows.net/","blob":"https://storagesfrepro3.blob.core.windows.net/","queue":"https://storagesfrepro3.queue.core.windows.net/","table":"https://storagesfrepro3.table.core.windows.net/","file":"https://storagesfrepro3.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro3-secondary.dfs.core.windows.net/","web":"https://storagesfrepro3-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro3-secondary.blob.core.windows.net/","queue":"https://storagesfrepro3-secondary.queue.core.windows.net/","table":"https://storagesfrepro3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro4","name":"storagesfrepro4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:54.8993063Z","primaryEndpoints":{"dfs":"https://storagesfrepro4.dfs.core.windows.net/","web":"https://storagesfrepro4.z19.web.core.windows.net/","blob":"https://storagesfrepro4.blob.core.windows.net/","queue":"https://storagesfrepro4.queue.core.windows.net/","table":"https://storagesfrepro4.table.core.windows.net/","file":"https://storagesfrepro4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro4-secondary.dfs.core.windows.net/","web":"https://storagesfrepro4-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro4-secondary.blob.core.windows.net/","queue":"https://storagesfrepro4-secondary.queue.core.windows.net/","table":"https://storagesfrepro4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro5","name":"storagesfrepro5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:10:48.0177273Z","primaryEndpoints":{"dfs":"https://storagesfrepro5.dfs.core.windows.net/","web":"https://storagesfrepro5.z19.web.core.windows.net/","blob":"https://storagesfrepro5.blob.core.windows.net/","queue":"https://storagesfrepro5.queue.core.windows.net/","table":"https://storagesfrepro5.table.core.windows.net/","file":"https://storagesfrepro5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro5-secondary.dfs.core.windows.net/","web":"https://storagesfrepro5-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro5-secondary.blob.core.windows.net/","queue":"https://storagesfrepro5-secondary.queue.core.windows.net/","table":"https://storagesfrepro5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro6","name":"storagesfrepro6","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:11:27.9331594Z","primaryEndpoints":{"dfs":"https://storagesfrepro6.dfs.core.windows.net/","web":"https://storagesfrepro6.z19.web.core.windows.net/","blob":"https://storagesfrepro6.blob.core.windows.net/","queue":"https://storagesfrepro6.queue.core.windows.net/","table":"https://storagesfrepro6.table.core.windows.net/","file":"https://storagesfrepro6.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro6-secondary.dfs.core.windows.net/","web":"https://storagesfrepro6-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro6-secondary.blob.core.windows.net/","queue":"https://storagesfrepro6-secondary.queue.core.windows.net/","table":"https://storagesfrepro6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro7","name":"storagesfrepro7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:08.6824637Z","primaryEndpoints":{"dfs":"https://storagesfrepro7.dfs.core.windows.net/","web":"https://storagesfrepro7.z19.web.core.windows.net/","blob":"https://storagesfrepro7.blob.core.windows.net/","queue":"https://storagesfrepro7.queue.core.windows.net/","table":"https://storagesfrepro7.table.core.windows.net/","file":"https://storagesfrepro7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro7-secondary.dfs.core.windows.net/","web":"https://storagesfrepro7-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro7-secondary.blob.core.windows.net/","queue":"https://storagesfrepro7-secondary.queue.core.windows.net/","table":"https://storagesfrepro7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro8","name":"storagesfrepro8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:39.4283923Z","primaryEndpoints":{"dfs":"https://storagesfrepro8.dfs.core.windows.net/","web":"https://storagesfrepro8.z19.web.core.windows.net/","blob":"https://storagesfrepro8.blob.core.windows.net/","queue":"https://storagesfrepro8.queue.core.windows.net/","table":"https://storagesfrepro8.table.core.windows.net/","file":"https://storagesfrepro8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro8-secondary.dfs.core.windows.net/","web":"https://storagesfrepro8-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro8-secondary.blob.core.windows.net/","queue":"https://storagesfrepro8-secondary.queue.core.windows.net/","table":"https://storagesfrepro8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro9","name":"storagesfrepro9","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:13:18.0691096Z","primaryEndpoints":{"dfs":"https://storagesfrepro9.dfs.core.windows.net/","web":"https://storagesfrepro9.z19.web.core.windows.net/","blob":"https://storagesfrepro9.blob.core.windows.net/","queue":"https://storagesfrepro9.queue.core.windows.net/","table":"https://storagesfrepro9.table.core.windows.net/","file":"https://storagesfrepro9.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro9-secondary.dfs.core.windows.net/","web":"https://storagesfrepro9-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro9-secondary.blob.core.windows.net/","queue":"https://storagesfrepro9-secondary.queue.core.windows.net/","table":"https://storagesfrepro9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_acctestRG-ibt-24_acctest-IBT-0710-2_4ebedb5a-e3b1-4675-aa4c-3c160fe70907/providers/Microsoft.Storage/storageAccounts/6ynst8ytvcms52eviy9cme3e","name":"6ynst8ytvcms52eviy9cme3e","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{"createdby":"azureimagebuilder","magicvalue":"0d819542a3774a2a8709401a7cd09eb8"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-07-10T11:43:29.9651518Z","primaryEndpoints":{"blob":"https://6ynst8ytvcms52eviy9cme3e.blob.core.windows.net/","queue":"https://6ynst8ytvcms52eviy9cme3e.queue.core.windows.net/","table":"https://6ynst8ytvcms52eviy9cme3e.table.core.windows.net/","file":"https://6ynst8ytvcms52eviy9cme3e.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-fypurview/providers/Microsoft.Storage/storageAccounts/scanwestus2ghwdfbf","name":"scanwestus2ghwdfbf","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-28T03:24:36.3735480Z","key2":"2021-09-28T03:24:36.3735480Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T03:24:36.3891539Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T03:24:36.3891539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T03:24:36.2797988Z","primaryEndpoints":{"dfs":"https://scanwestus2ghwdfbf.dfs.core.windows.net/","web":"https://scanwestus2ghwdfbf.z5.web.core.windows.net/","blob":"https://scanwestus2ghwdfbf.blob.core.windows.net/","queue":"https://scanwestus2ghwdfbf.queue.core.windows.net/","table":"https://scanwestus2ghwdfbf.table.core.windows.net/","file":"https://scanwestus2ghwdfbf.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-file-handle-rg/providers/Microsoft.Storage/storageAccounts/testfilehandlesa","name":"testfilehandlesa","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-11-02T02:22:24.9147695Z","key2":"2021-11-02T02:22:24.9147695Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T02:22:24.9147695Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T02:22:24.9147695Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-02T02:22:24.8209748Z","primaryEndpoints":{"dfs":"https://testfilehandlesa.dfs.core.windows.net/","web":"https://testfilehandlesa.z5.web.core.windows.net/","blob":"https://testfilehandlesa.blob.core.windows.net/","queue":"https://testfilehandlesa.queue.core.windows.net/","table":"https://testfilehandlesa.table.core.windows.net/","file":"https://testfilehandlesa.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testfilehandlesa-secondary.dfs.core.windows.net/","web":"https://testfilehandlesa-secondary.z5.web.core.windows.net/","blob":"https://testfilehandlesa-secondary.blob.core.windows.net/","queue":"https://testfilehandlesa-secondary.queue.core.windows.net/","table":"https://testfilehandlesa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test1124/providers/Microsoft.Storage/storageAccounts/ystestsa","name":"ystestsa","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-24T06:28:08.3026622Z","key2":"2021-11-24T06:28:08.3026622Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-24T06:28:08.3026622Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-24T06:28:08.3026622Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-24T06:28:08.2245068Z","primaryEndpoints":{"dfs":"https://ystestsa.dfs.core.windows.net/","web":"https://ystestsa.z5.web.core.windows.net/","blob":"https://ystestsa.blob.core.windows.net/","queue":"https://ystestsa.queue.core.windows.net/","table":"https://ystestsa.table.core.windows.net/","file":"https://ystestsa.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ystestsa-secondary.dfs.core.windows.net/","web":"https://ystestsa-secondary.z5.web.core.windows.net/","blob":"https://ystestsa-secondary.blob.core.windows.net/","queue":"https://ystestsa-secondary.queue.core.windows.net/","table":"https://ystestsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk3dgx6acfu6yrvvipseyqbiwldnaohcywhpi65w7jys42kv5gjs2pljpz5o7bsoah/providers/Microsoft.Storage/storageAccounts/clitest3tllg4jqytzq27ejk","name":"clitest3tllg4jqytzq27ejk","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-01T19:36:53.0876733Z","key2":"2021-11-01T19:36:53.0876733Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:36:53.0876733Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:36:53.0876733Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-01T19:36:53.0095332Z","primaryEndpoints":{"dfs":"https://clitest3tllg4jqytzq27ejk.dfs.core.windows.net/","web":"https://clitest3tllg4jqytzq27ejk.z3.web.core.windows.net/","blob":"https://clitest3tllg4jqytzq27ejk.blob.core.windows.net/","queue":"https://clitest3tllg4jqytzq27ejk.queue.core.windows.net/","table":"https://clitest3tllg4jqytzq27ejk.table.core.windows.net/","file":"https://clitest3tllg4jqytzq27ejk.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgllxoprxwjouhrzsd4vrfhqkpy7ft2fwgtiub56wonkmtvsogumww7h36czdisqqxm/providers/Microsoft.Storage/storageAccounts/clitest4slutm4qduocdiy7o","name":"clitest4slutm4qduocdiy7o","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-18T23:17:57.1095774Z","key2":"2021-11-18T23:17:57.1095774Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:57.1252046Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:57.1252046Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:17:57.0471042Z","primaryEndpoints":{"dfs":"https://clitest4slutm4qduocdiy7o.dfs.core.windows.net/","web":"https://clitest4slutm4qduocdiy7o.z3.web.core.windows.net/","blob":"https://clitest4slutm4qduocdiy7o.blob.core.windows.net/","queue":"https://clitest4slutm4qduocdiy7o.queue.core.windows.net/","table":"https://clitest4slutm4qduocdiy7o.table.core.windows.net/","file":"https://clitest4slutm4qduocdiy7o.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkqf4cu665yaejvrvcvhfklfoep7xw2qhgk7q5qkmosqpcdypz6aubtjovadrpefmu/providers/Microsoft.Storage/storageAccounts/clitest4ypv67tuvo34umfu5","name":"clitest4ypv67tuvo34umfu5","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-27T08:37:30.4318022Z","key2":"2021-09-27T08:37:30.4318022Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:37:30.4474578Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:37:30.4474578Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-27T08:37:30.3536782Z","primaryEndpoints":{"dfs":"https://clitest4ypv67tuvo34umfu5.dfs.core.windows.net/","web":"https://clitest4ypv67tuvo34umfu5.z3.web.core.windows.net/","blob":"https://clitest4ypv67tuvo34umfu5.blob.core.windows.net/","queue":"https://clitest4ypv67tuvo34umfu5.queue.core.windows.net/","table":"https://clitest4ypv67tuvo34umfu5.table.core.windows.net/","file":"https://clitest4ypv67tuvo34umfu5.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc5jqtmvrtl3o7vxoerxlozv7wigv64wbsa22tgbgkmtqqgw5r6zycdvmm6lsu2hgb/providers/Microsoft.Storage/storageAccounts/clitest63bx2k5whs46xb72f","name":"clitest63bx2k5whs46xb72f","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-29T22:30:48.3706890Z","key2":"2021-10-29T22:30:48.3706890Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:30:48.3706890Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:30:48.3706890Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-29T22:30:48.2925495Z","primaryEndpoints":{"dfs":"https://clitest63bx2k5whs46xb72f.dfs.core.windows.net/","web":"https://clitest63bx2k5whs46xb72f.z3.web.core.windows.net/","blob":"https://clitest63bx2k5whs46xb72f.blob.core.windows.net/","queue":"https://clitest63bx2k5whs46xb72f.queue.core.windows.net/","table":"https://clitest63bx2k5whs46xb72f.table.core.windows.net/","file":"https://clitest63bx2k5whs46xb72f.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgefj7prpkkfwowsohocdcgln4afkr36ayb7msfujq5xbxbhzxt6nl6226d6wpfd2v6/providers/Microsoft.Storage/storageAccounts/clitestajyrm6yrgbf4c5i2s","name":"clitestajyrm6yrgbf4c5i2s","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T05:36:26.5400357Z","key2":"2021-09-26T05:36:26.5400357Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:36:26.5400357Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:36:26.5400357Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:36:26.4619069Z","primaryEndpoints":{"dfs":"https://clitestajyrm6yrgbf4c5i2s.dfs.core.windows.net/","web":"https://clitestajyrm6yrgbf4c5i2s.z3.web.core.windows.net/","blob":"https://clitestajyrm6yrgbf4c5i2s.blob.core.windows.net/","queue":"https://clitestajyrm6yrgbf4c5i2s.queue.core.windows.net/","table":"https://clitestajyrm6yrgbf4c5i2s.table.core.windows.net/","file":"https://clitestajyrm6yrgbf4c5i2s.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglbpqpmgzjcfuaz4feleprn435rcjy72gfcclbzlno6zqjglg4vmjeekjfwp5ftczi/providers/Microsoft.Storage/storageAccounts/clitestbokalj4mocrwa4z32","name":"clitestbokalj4mocrwa4z32","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-29T22:30:16.8234389Z","key2":"2021-10-29T22:30:16.8234389Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:30:16.8234389Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:30:16.8234389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-29T22:30:16.7453107Z","primaryEndpoints":{"dfs":"https://clitestbokalj4mocrwa4z32.dfs.core.windows.net/","web":"https://clitestbokalj4mocrwa4z32.z3.web.core.windows.net/","blob":"https://clitestbokalj4mocrwa4z32.blob.core.windows.net/","queue":"https://clitestbokalj4mocrwa4z32.queue.core.windows.net/","table":"https://clitestbokalj4mocrwa4z32.table.core.windows.net/","file":"https://clitestbokalj4mocrwa4z32.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqqra7wllrqyeeka3jdtjjyjmqgvnwxpupwgn7gbi2vj2uiakni76ibediq2ngx2zs/providers/Microsoft.Storage/storageAccounts/clitestem4u2qtb7reiye6va","name":"clitestem4u2qtb7reiye6va","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T23:37:04.0767855Z","key2":"2021-10-22T23:37:04.0767855Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:37:04.0767855Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:37:04.0767855Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:37:04.0142815Z","primaryEndpoints":{"dfs":"https://clitestem4u2qtb7reiye6va.dfs.core.windows.net/","web":"https://clitestem4u2qtb7reiye6va.z3.web.core.windows.net/","blob":"https://clitestem4u2qtb7reiye6va.blob.core.windows.net/","queue":"https://clitestem4u2qtb7reiye6va.queue.core.windows.net/","table":"https://clitestem4u2qtb7reiye6va.table.core.windows.net/","file":"https://clitestem4u2qtb7reiye6va.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgorreyhcvnrewddhwjxfruu4jhexosk74hcq54o7pql6oiom4dhg4p45g6pwbrngfk/providers/Microsoft.Storage/storageAccounts/clitesterbttochhqmi5enzk","name":"clitesterbttochhqmi5enzk","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T15:56:16.9200018Z","key2":"2021-10-22T15:56:16.9200018Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:16.9200018Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:16.9200018Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T15:56:16.8575242Z","primaryEndpoints":{"dfs":"https://clitesterbttochhqmi5enzk.dfs.core.windows.net/","web":"https://clitesterbttochhqmi5enzk.z3.web.core.windows.net/","blob":"https://clitesterbttochhqmi5enzk.blob.core.windows.net/","queue":"https://clitesterbttochhqmi5enzk.queue.core.windows.net/","table":"https://clitesterbttochhqmi5enzk.table.core.windows.net/","file":"https://clitesterbttochhqmi5enzk.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzqoxctlppqseceswyeq36zau2eysrbugzmir6vxpsztoivt4atecrszzqgzpvjalj/providers/Microsoft.Storage/storageAccounts/clitestexazhooj6txsp4bif","name":"clitestexazhooj6txsp4bif","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:28:55.7862697Z","key2":"2021-09-26T06:28:55.7862697Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:28:55.8018954Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:28:55.8018954Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:28:55.7237634Z","primaryEndpoints":{"dfs":"https://clitestexazhooj6txsp4bif.dfs.core.windows.net/","web":"https://clitestexazhooj6txsp4bif.z3.web.core.windows.net/","blob":"https://clitestexazhooj6txsp4bif.blob.core.windows.net/","queue":"https://clitestexazhooj6txsp4bif.queue.core.windows.net/","table":"https://clitestexazhooj6txsp4bif.table.core.windows.net/","file":"https://clitestexazhooj6txsp4bif.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmwn5njjtr3wry7duhuccs6h5oxxiw2rhcfdlewmqw56fo3qehaoqulk5ktmyahglf/providers/Microsoft.Storage/storageAccounts/clitestfnjxc5idgmeluoxtm","name":"clitestfnjxc5idgmeluoxtm","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-27T08:40:43.7468930Z","key2":"2021-09-27T08:40:43.7468930Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:40:43.7625432Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:40:43.7625432Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-27T08:40:43.6688132Z","primaryEndpoints":{"dfs":"https://clitestfnjxc5idgmeluoxtm.dfs.core.windows.net/","web":"https://clitestfnjxc5idgmeluoxtm.z3.web.core.windows.net/","blob":"https://clitestfnjxc5idgmeluoxtm.blob.core.windows.net/","queue":"https://clitestfnjxc5idgmeluoxtm.queue.core.windows.net/","table":"https://clitestfnjxc5idgmeluoxtm.table.core.windows.net/","file":"https://clitestfnjxc5idgmeluoxtm.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4bazn4hnlcnsaasp63k6nvrlmtkyo7dqcjkyopsehticnihafl57ntorbz7ixqwos/providers/Microsoft.Storage/storageAccounts/clitestgnremsz2uxbgdy6uo","name":"clitestgnremsz2uxbgdy6uo","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-05T08:33:08.0149596Z","key2":"2021-11-05T08:33:08.0149596Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:33:08.0305829Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:33:08.0305829Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-05T08:33:07.9368092Z","primaryEndpoints":{"dfs":"https://clitestgnremsz2uxbgdy6uo.dfs.core.windows.net/","web":"https://clitestgnremsz2uxbgdy6uo.z3.web.core.windows.net/","blob":"https://clitestgnremsz2uxbgdy6uo.blob.core.windows.net/","queue":"https://clitestgnremsz2uxbgdy6uo.queue.core.windows.net/","table":"https://clitestgnremsz2uxbgdy6uo.table.core.windows.net/","file":"https://clitestgnremsz2uxbgdy6uo.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn2hrmou3vupc7hxv534r6ythn2qz6v45svfb666d75bigid4v562yvcrcu3zvopvd/providers/Microsoft.Storage/storageAccounts/clitesthn6lf7bmqfq4lihgr","name":"clitesthn6lf7bmqfq4lihgr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T23:36:25.4655609Z","key2":"2021-10-22T23:36:25.4655609Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:36:25.4655609Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:36:25.4655609Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:36:25.4186532Z","primaryEndpoints":{"dfs":"https://clitesthn6lf7bmqfq4lihgr.dfs.core.windows.net/","web":"https://clitesthn6lf7bmqfq4lihgr.z3.web.core.windows.net/","blob":"https://clitesthn6lf7bmqfq4lihgr.blob.core.windows.net/","queue":"https://clitesthn6lf7bmqfq4lihgr.queue.core.windows.net/","table":"https://clitesthn6lf7bmqfq4lihgr.table.core.windows.net/","file":"https://clitesthn6lf7bmqfq4lihgr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyyky3pdv7kfgca2zw6tt2uuyakcfh4mhe5jv652ywkhjplo2g3hkpg5l5vlzmscx/providers/Microsoft.Storage/storageAccounts/clitestlrazz3fr4p7ma2aqu","name":"clitestlrazz3fr4p7ma2aqu","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:26:22.0140081Z","key2":"2021-09-26T06:26:22.0140081Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:26:22.0140081Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:26:22.0140081Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:26:21.9514992Z","primaryEndpoints":{"dfs":"https://clitestlrazz3fr4p7ma2aqu.dfs.core.windows.net/","web":"https://clitestlrazz3fr4p7ma2aqu.z3.web.core.windows.net/","blob":"https://clitestlrazz3fr4p7ma2aqu.blob.core.windows.net/","queue":"https://clitestlrazz3fr4p7ma2aqu.queue.core.windows.net/","table":"https://clitestlrazz3fr4p7ma2aqu.table.core.windows.net/","file":"https://clitestlrazz3fr4p7ma2aqu.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgibc6w6pt2cu4nkppzr7rhgsrli5jhaumxaexydrvzpemxhixixcac5un3lkhugutn/providers/Microsoft.Storage/storageAccounts/clitestm3o7urdechvnvggxa","name":"clitestm3o7urdechvnvggxa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-04T22:04:25.7055241Z","key2":"2021-11-04T22:04:25.7055241Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:04:25.7055241Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:04:25.7055241Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-04T22:04:25.6274146Z","primaryEndpoints":{"dfs":"https://clitestm3o7urdechvnvggxa.dfs.core.windows.net/","web":"https://clitestm3o7urdechvnvggxa.z3.web.core.windows.net/","blob":"https://clitestm3o7urdechvnvggxa.blob.core.windows.net/","queue":"https://clitestm3o7urdechvnvggxa.queue.core.windows.net/","table":"https://clitestm3o7urdechvnvggxa.table.core.windows.net/","file":"https://clitestm3o7urdechvnvggxa.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgczn4zs5qjkhszwlrkz6fnvc3mysoovo6vsvis53flbw3gcbfqpwmfuwtqzw5pewbu/providers/Microsoft.Storage/storageAccounts/clitestmm22sas2jwf6b2ers","name":"clitestmm22sas2jwf6b2ers","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-04T22:05:15.5981807Z","key2":"2021-11-04T22:05:15.5981807Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:05:15.5981807Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:05:15.5981807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-04T22:05:15.5200800Z","primaryEndpoints":{"dfs":"https://clitestmm22sas2jwf6b2ers.dfs.core.windows.net/","web":"https://clitestmm22sas2jwf6b2ers.z3.web.core.windows.net/","blob":"https://clitestmm22sas2jwf6b2ers.blob.core.windows.net/","queue":"https://clitestmm22sas2jwf6b2ers.queue.core.windows.net/","table":"https://clitestmm22sas2jwf6b2ers.table.core.windows.net/","file":"https://clitestmm22sas2jwf6b2ers.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgihpamtetsioehvqhcaizytambbwjq2a4so6iz734ejm7u6prta4pxwcc2gyhhaxqf/providers/Microsoft.Storage/storageAccounts/clitestmyjybsngqmztsnzyt","name":"clitestmyjybsngqmztsnzyt","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T05:30:18.6096170Z","key2":"2021-09-26T05:30:18.6096170Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:30:18.6096170Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:30:18.6096170Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:30:18.5314899Z","primaryEndpoints":{"dfs":"https://clitestmyjybsngqmztsnzyt.dfs.core.windows.net/","web":"https://clitestmyjybsngqmztsnzyt.z3.web.core.windows.net/","blob":"https://clitestmyjybsngqmztsnzyt.blob.core.windows.net/","queue":"https://clitestmyjybsngqmztsnzyt.queue.core.windows.net/","table":"https://clitestmyjybsngqmztsnzyt.table.core.windows.net/","file":"https://clitestmyjybsngqmztsnzyt.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbksbwoy7iftsvok2gu7el6jq32a53l75d3amp4qff74lwqen6nypkv2vsy5qpvdx6/providers/Microsoft.Storage/storageAccounts/clitestnx46jh36sfhiun4zr","name":"clitestnx46jh36sfhiun4zr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:46:06.0337216Z","key2":"2021-09-26T06:46:06.0337216Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:46:06.0337216Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:46:06.0337216Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:46:05.9555808Z","primaryEndpoints":{"dfs":"https://clitestnx46jh36sfhiun4zr.dfs.core.windows.net/","web":"https://clitestnx46jh36sfhiun4zr.z3.web.core.windows.net/","blob":"https://clitestnx46jh36sfhiun4zr.blob.core.windows.net/","queue":"https://clitestnx46jh36sfhiun4zr.queue.core.windows.net/","table":"https://clitestnx46jh36sfhiun4zr.table.core.windows.net/","file":"https://clitestnx46jh36sfhiun4zr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg33fo62u6qo54y4oh6ubodzg5drtpqjvfeaxkl7eqcioetepluk6x6j2y26gadsnlb/providers/Microsoft.Storage/storageAccounts/clitestnyptbvai7mjrv4d36","name":"clitestnyptbvai7mjrv4d36","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:38:37.8872316Z","key2":"2021-09-26T06:38:37.8872316Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:38:37.8872316Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:38:37.8872316Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:38:37.8247073Z","primaryEndpoints":{"dfs":"https://clitestnyptbvai7mjrv4d36.dfs.core.windows.net/","web":"https://clitestnyptbvai7mjrv4d36.z3.web.core.windows.net/","blob":"https://clitestnyptbvai7mjrv4d36.blob.core.windows.net/","queue":"https://clitestnyptbvai7mjrv4d36.queue.core.windows.net/","table":"https://clitestnyptbvai7mjrv4d36.table.core.windows.net/","file":"https://clitestnyptbvai7mjrv4d36.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz5kpio6nxhll6ltpr5lf3p24xooufmmwyrk7tly3gjfj5vufntfmsdkla7o54pioa/providers/Microsoft.Storage/storageAccounts/clitestu5zychblljh7h4sbq","name":"clitestu5zychblljh7h4sbq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-01T19:37:27.6814745Z","key2":"2021-11-01T19:37:27.6814745Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:37:27.6814745Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:37:27.6814745Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-01T19:37:27.6033732Z","primaryEndpoints":{"dfs":"https://clitestu5zychblljh7h4sbq.dfs.core.windows.net/","web":"https://clitestu5zychblljh7h4sbq.z3.web.core.windows.net/","blob":"https://clitestu5zychblljh7h4sbq.blob.core.windows.net/","queue":"https://clitestu5zychblljh7h4sbq.queue.core.windows.net/","table":"https://clitestu5zychblljh7h4sbq.table.core.windows.net/","file":"https://clitestu5zychblljh7h4sbq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk2r4n3w2kq5eqbdmscwkh6ss3jxr6cjmu237f6ei6q5e6svdpfhq6y4ogqfkkyhof/providers/Microsoft.Storage/storageAccounts/clitestue6lbut2twc5n7mpo","name":"clitestue6lbut2twc5n7mpo","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-11T22:08:44.1147576Z","key2":"2021-11-11T22:08:44.1147576Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:08:44.1303296Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:08:44.1303296Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:08:44.0366031Z","primaryEndpoints":{"dfs":"https://clitestue6lbut2twc5n7mpo.dfs.core.windows.net/","web":"https://clitestue6lbut2twc5n7mpo.z3.web.core.windows.net/","blob":"https://clitestue6lbut2twc5n7mpo.blob.core.windows.net/","queue":"https://clitestue6lbut2twc5n7mpo.queue.core.windows.net/","table":"https://clitestue6lbut2twc5n7mpo.table.core.windows.net/","file":"https://clitestue6lbut2twc5n7mpo.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkkh2eiycmh36lbpz6ceh7v2igu55ldcqfqf2gkkkaw5z2wtn25oaqo34wakzal3em/providers/Microsoft.Storage/storageAccounts/clitesturqfulbf5h2yjtmxd","name":"clitesturqfulbf5h2yjtmxd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-18T23:18:54.1881027Z","key2":"2021-11-18T23:18:54.1881027Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:18:54.1881027Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:18:54.1881027Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:18:54.1099855Z","primaryEndpoints":{"dfs":"https://clitesturqfulbf5h2yjtmxd.dfs.core.windows.net/","web":"https://clitesturqfulbf5h2yjtmxd.z3.web.core.windows.net/","blob":"https://clitesturqfulbf5h2yjtmxd.blob.core.windows.net/","queue":"https://clitesturqfulbf5h2yjtmxd.queue.core.windows.net/","table":"https://clitesturqfulbf5h2yjtmxd.table.core.windows.net/","file":"https://clitesturqfulbf5h2yjtmxd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmqfhye7lux2fp7jf2f63xt6n57sdnfoszmxotiwxyiy7vx7qzk45pp3nactebmfqj/providers/Microsoft.Storage/storageAccounts/clitestvfxf46hn27hcogcfa","name":"clitestvfxf46hn27hcogcfa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-05T08:33:04.9679670Z","key2":"2021-11-05T08:33:04.9679670Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:33:04.9835769Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:33:04.9835769Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-05T08:33:04.8898629Z","primaryEndpoints":{"dfs":"https://clitestvfxf46hn27hcogcfa.dfs.core.windows.net/","web":"https://clitestvfxf46hn27hcogcfa.z3.web.core.windows.net/","blob":"https://clitestvfxf46hn27hcogcfa.blob.core.windows.net/","queue":"https://clitestvfxf46hn27hcogcfa.queue.core.windows.net/","table":"https://clitestvfxf46hn27hcogcfa.table.core.windows.net/","file":"https://clitestvfxf46hn27hcogcfa.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglqgc5xdku5ojvlcdmxmxwx4otzrvmtvwkizs74vqyuovzqgtxbocao3wxuey3ckyg/providers/Microsoft.Storage/storageAccounts/clitestvkt5uhqkknoz4z2ps","name":"clitestvkt5uhqkknoz4z2ps","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T15:56:12.2012021Z","key2":"2021-10-22T15:56:12.2012021Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:12.2012021Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:12.2012021Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T15:56:12.1387094Z","primaryEndpoints":{"dfs":"https://clitestvkt5uhqkknoz4z2ps.dfs.core.windows.net/","web":"https://clitestvkt5uhqkknoz4z2ps.z3.web.core.windows.net/","blob":"https://clitestvkt5uhqkknoz4z2ps.blob.core.windows.net/","queue":"https://clitestvkt5uhqkknoz4z2ps.queue.core.windows.net/","table":"https://clitestvkt5uhqkknoz4z2ps.table.core.windows.net/","file":"https://clitestvkt5uhqkknoz4z2ps.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk76ijui24h7q2foey6svr7yhnhb6tcuioxiiic7pto4b7aye52xazbtphpkn4igdg/providers/Microsoft.Storage/storageAccounts/clitestwii2xus2tgji433nh","name":"clitestwii2xus2tgji433nh","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-11T22:07:45.0812213Z","key2":"2021-11-11T22:07:45.0812213Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:45.0812213Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:45.0812213Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:07:45.0031142Z","primaryEndpoints":{"dfs":"https://clitestwii2xus2tgji433nh.dfs.core.windows.net/","web":"https://clitestwii2xus2tgji433nh.z3.web.core.windows.net/","blob":"https://clitestwii2xus2tgji433nh.blob.core.windows.net/","queue":"https://clitestwii2xus2tgji433nh.queue.core.windows.net/","table":"https://clitestwii2xus2tgji433nh.table.core.windows.net/","file":"https://clitestwii2xus2tgji433nh.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgug2zs2ll3cqv3r5gw6yql5lexqi72ktubc4ozqz6g62yykofs5s6dzfutvlzwdfzd/providers/Microsoft.Storage/storageAccounts/clitestyrqe5rlxui5rawuhk","name":"clitestyrqe5rlxui5rawuhk","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T05:51:29.8791272Z","key2":"2021-09-26T05:51:29.8791272Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:51:29.8791272Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:51:29.8791272Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:51:29.8009981Z","primaryEndpoints":{"dfs":"https://clitestyrqe5rlxui5rawuhk.dfs.core.windows.net/","web":"https://clitestyrqe5rlxui5rawuhk.z3.web.core.windows.net/","blob":"https://clitestyrqe5rlxui5rawuhk.blob.core.windows.net/","queue":"https://clitestyrqe5rlxui5rawuhk.queue.core.windows.net/","table":"https://clitestyrqe5rlxui5rawuhk.table.core.windows.net/","file":"https://clitestyrqe5rlxui5rawuhk.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap-east/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuapeast","name":"zhiyihuangsaeuapeast","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-24T06:56:08.6084736Z","key2":"2021-09-24T06:56:08.6084736Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T06:56:08.6084736Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T06:56:08.6084736Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-24T06:56:08.5303617Z","primaryEndpoints":{"dfs":"https://zhiyihuangsaeuapeast.dfs.core.windows.net/","web":"https://zhiyihuangsaeuapeast.z3.web.core.windows.net/","blob":"https://zhiyihuangsaeuapeast.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast.table.core.windows.net/","file":"https://zhiyihuangsaeuapeast.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhiyihuangsaeuapeast-secondary.dfs.core.windows.net/","web":"https://zhiyihuangsaeuapeast-secondary.z3.web.core.windows.net/","blob":"https://zhiyihuangsaeuapeast-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhtest","name":"zuhtest","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"identity":{"type":"ManagedServiceIdentity","userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.ManagedIdentity/userAssignedIdentities/zuhid"},"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-14T07:13:45.1503826Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-14T07:13:45.1503826Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Creating","creationTime":"2021-01-14T07:13:45.0603798Z","primaryEndpoints":{"dfs":"https://zuhtest.dfs.core.windows.net/","web":"https://zuhtest.z3.web.core.windows.net/","blob":"https://zuhtest.blob.core.windows.net/","queue":"https://zuhtest.queue.core.windows.net/","table":"https://zuhtest.table.core.windows.net/","file":"https://zuhtest.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhtest-secondary.dfs.core.windows.net/","web":"https://zuhtest-secondary.z3.web.core.windows.net/","blob":"https://zuhtest-secondary.blob.core.windows.net/","queue":"https://zuhtest-secondary.queue.core.windows.net/","table":"https://zuhtest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest47xrljy3nijo3qd5vzsdilpqy5gmhc6vhrxdt4iznh6uaopskftgp4scam2w7drpot4l/providers/Microsoft.Storage/storageAccounts/clitest23zhehg2ug7pzcmmt","name":"clitest23zhehg2ug7pzcmmt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T23:52:09.9267277Z","key2":"2021-10-22T23:52:09.9267277Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:52:09.9267277Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:52:09.9267277Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:52:09.8486094Z","primaryEndpoints":{"dfs":"https://clitest23zhehg2ug7pzcmmt.dfs.core.windows.net/","web":"https://clitest23zhehg2ug7pzcmmt.z2.web.core.windows.net/","blob":"https://clitest23zhehg2ug7pzcmmt.blob.core.windows.net/","queue":"https://clitest23zhehg2ug7pzcmmt.queue.core.windows.net/","table":"https://clitest23zhehg2ug7pzcmmt.table.core.windows.net/","file":"https://clitest23zhehg2ug7pzcmmt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestuh33sdgq6xqrgmv2evfqsj7s5elfu75j425duypsq3ykwiqywcsbk7k5hm2dn6dhx3ga/providers/Microsoft.Storage/storageAccounts/clitest2dpu5cejmyr6o6fy4","name":"clitest2dpu5cejmyr6o6fy4","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-13T01:03:47.8707679Z","key2":"2021-08-13T01:03:47.8707679Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-13T01:03:47.8707679Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-13T01:03:47.8707679Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-13T01:03:47.8082686Z","primaryEndpoints":{"dfs":"https://clitest2dpu5cejmyr6o6fy4.dfs.core.windows.net/","web":"https://clitest2dpu5cejmyr6o6fy4.z2.web.core.windows.net/","blob":"https://clitest2dpu5cejmyr6o6fy4.blob.core.windows.net/","queue":"https://clitest2dpu5cejmyr6o6fy4.queue.core.windows.net/","table":"https://clitest2dpu5cejmyr6o6fy4.table.core.windows.net/","file":"https://clitest2dpu5cejmyr6o6fy4.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrl6kiw7ux2j73xj2v7cbet4byjrmn5uenrcnz6qfu5oxpvxtkkik2djcxys4gcpfrgr4/providers/Microsoft.Storage/storageAccounts/clitest2hc2cek5kg4wbcqwa","name":"clitest2hc2cek5kg4wbcqwa","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-18T09:03:47.2900270Z","key2":"2021-06-18T09:03:47.2900270Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T09:03:47.2950283Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T09:03:47.2950283Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-18T09:03:47.2400033Z","primaryEndpoints":{"dfs":"https://clitest2hc2cek5kg4wbcqwa.dfs.core.windows.net/","web":"https://clitest2hc2cek5kg4wbcqwa.z2.web.core.windows.net/","blob":"https://clitest2hc2cek5kg4wbcqwa.blob.core.windows.net/","queue":"https://clitest2hc2cek5kg4wbcqwa.queue.core.windows.net/","table":"https://clitest2hc2cek5kg4wbcqwa.table.core.windows.net/","file":"https://clitest2hc2cek5kg4wbcqwa.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcwbyb7elcliee36ry67adfa656263s5nl2c67it2o2pjr3wrh5mwmg3ocygfxjou3vxa/providers/Microsoft.Storage/storageAccounts/clitest2wy5mqj7vog4cn65p","name":"clitest2wy5mqj7vog4cn65p","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T16:12:01.9361563Z","key2":"2021-10-22T16:12:01.9361563Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T16:12:01.9361563Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T16:12:01.9361563Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T16:12:01.8580265Z","primaryEndpoints":{"dfs":"https://clitest2wy5mqj7vog4cn65p.dfs.core.windows.net/","web":"https://clitest2wy5mqj7vog4cn65p.z2.web.core.windows.net/","blob":"https://clitest2wy5mqj7vog4cn65p.blob.core.windows.net/","queue":"https://clitest2wy5mqj7vog4cn65p.queue.core.windows.net/","table":"https://clitest2wy5mqj7vog4cn65p.table.core.windows.net/","file":"https://clitest2wy5mqj7vog4cn65p.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesto72ftnrt7hfn5ltlqnh34e5cjvdyfwj4ny5d7yebu4imldxsoizqp5cazyouoms7ev6j/providers/Microsoft.Storage/storageAccounts/clitest4suuy3hvssqi2u3px","name":"clitest4suuy3hvssqi2u3px","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-11T22:23:05.8954115Z","key2":"2021-11-11T22:23:05.8954115Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:23:05.9110345Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:23:05.9110345Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:23:05.8172663Z","primaryEndpoints":{"dfs":"https://clitest4suuy3hvssqi2u3px.dfs.core.windows.net/","web":"https://clitest4suuy3hvssqi2u3px.z2.web.core.windows.net/","blob":"https://clitest4suuy3hvssqi2u3px.blob.core.windows.net/","queue":"https://clitest4suuy3hvssqi2u3px.queue.core.windows.net/","table":"https://clitest4suuy3hvssqi2u3px.table.core.windows.net/","file":"https://clitest4suuy3hvssqi2u3px.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlg5ebdqcv52sflwjoqlwhicwckgl6uznufjdep6cezb52lt73nagcohr2yn5s2pjkddl/providers/Microsoft.Storage/storageAccounts/clitest6vxkrzgloyre3jqjs","name":"clitest6vxkrzgloyre3jqjs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-23T03:10:29.4846667Z","key2":"2021-07-23T03:10:29.4846667Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-23T03:10:29.5002574Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-23T03:10:29.5002574Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-23T03:10:29.4377939Z","primaryEndpoints":{"dfs":"https://clitest6vxkrzgloyre3jqjs.dfs.core.windows.net/","web":"https://clitest6vxkrzgloyre3jqjs.z2.web.core.windows.net/","blob":"https://clitest6vxkrzgloyre3jqjs.blob.core.windows.net/","queue":"https://clitest6vxkrzgloyre3jqjs.queue.core.windows.net/","table":"https://clitest6vxkrzgloyre3jqjs.table.core.windows.net/","file":"https://clitest6vxkrzgloyre3jqjs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestmrngm5xnqzkfc35bpac2frhloyp5bhqs3bkzmzzsk4uxhhc5g5bilsacnxbfmtzgwe2j/providers/Microsoft.Storage/storageAccounts/clitest7bnb7msut4cjgzpbr","name":"clitest7bnb7msut4cjgzpbr","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-29T22:46:56.7491572Z","key2":"2021-10-29T22:46:56.7491572Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:46:56.7491572Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:46:56.7491572Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-29T22:46:56.6866372Z","primaryEndpoints":{"dfs":"https://clitest7bnb7msut4cjgzpbr.dfs.core.windows.net/","web":"https://clitest7bnb7msut4cjgzpbr.z2.web.core.windows.net/","blob":"https://clitest7bnb7msut4cjgzpbr.blob.core.windows.net/","queue":"https://clitest7bnb7msut4cjgzpbr.queue.core.windows.net/","table":"https://clitest7bnb7msut4cjgzpbr.table.core.windows.net/","file":"https://clitest7bnb7msut4cjgzpbr.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfwybg5aqnlewkvelizobsdyy6zocpnnltod4k5d6l62rlz3wfkmdpz7fcw3xbvo45lad/providers/Microsoft.Storage/storageAccounts/clitestdk7kvmf5lss5lltse","name":"clitestdk7kvmf5lss5lltse","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-21T03:24:22.5335528Z","key2":"2021-06-21T03:24:22.5335528Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T03:24:22.5335528Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T03:24:22.5335528Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-21T03:24:22.4635745Z","primaryEndpoints":{"dfs":"https://clitestdk7kvmf5lss5lltse.dfs.core.windows.net/","web":"https://clitestdk7kvmf5lss5lltse.z2.web.core.windows.net/","blob":"https://clitestdk7kvmf5lss5lltse.blob.core.windows.net/","queue":"https://clitestdk7kvmf5lss5lltse.queue.core.windows.net/","table":"https://clitestdk7kvmf5lss5lltse.table.core.windows.net/","file":"https://clitestdk7kvmf5lss5lltse.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaplqr3c25xdddlwukirxixwo5byw5rkls3kr5fo66qoamflxrkjhxpt27enj7wmk2yuj/providers/Microsoft.Storage/storageAccounts/clitestfbytzu7syzfrmr7kf","name":"clitestfbytzu7syzfrmr7kf","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-04T22:22:45.3374456Z","key2":"2021-11-04T22:22:45.3374456Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:22:45.3374456Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:22:45.3374456Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-04T22:22:45.2593440Z","primaryEndpoints":{"dfs":"https://clitestfbytzu7syzfrmr7kf.dfs.core.windows.net/","web":"https://clitestfbytzu7syzfrmr7kf.z2.web.core.windows.net/","blob":"https://clitestfbytzu7syzfrmr7kf.blob.core.windows.net/","queue":"https://clitestfbytzu7syzfrmr7kf.queue.core.windows.net/","table":"https://clitestfbytzu7syzfrmr7kf.table.core.windows.net/","file":"https://clitestfbytzu7syzfrmr7kf.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkmydtxqqwqds5d67vdbrwtk32xdryjsxq6fp74nse75bdhdla7mh47b6myevefnapwyx/providers/Microsoft.Storage/storageAccounts/clitestgqwsejh46zuqlc5pm","name":"clitestgqwsejh46zuqlc5pm","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-06T05:27:12.7993484Z","key2":"2021-08-06T05:27:12.7993484Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-06T05:27:12.8149753Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-06T05:27:12.8149753Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-06T05:27:12.7368799Z","primaryEndpoints":{"dfs":"https://clitestgqwsejh46zuqlc5pm.dfs.core.windows.net/","web":"https://clitestgqwsejh46zuqlc5pm.z2.web.core.windows.net/","blob":"https://clitestgqwsejh46zuqlc5pm.blob.core.windows.net/","queue":"https://clitestgqwsejh46zuqlc5pm.queue.core.windows.net/","table":"https://clitestgqwsejh46zuqlc5pm.table.core.windows.net/","file":"https://clitestgqwsejh46zuqlc5pm.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestndsnnd5ibnsjkzl7w5mbaujjmelonc2xjmyrd325iiwno27u6sxcxkewjeox2x2wr633/providers/Microsoft.Storage/storageAccounts/clitestgz6nb4it72a36mdpt","name":"clitestgz6nb4it72a36mdpt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-20T02:02:00.4577106Z","key2":"2021-08-20T02:02:00.4577106Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-20T02:02:00.4577106Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-20T02:02:00.4577106Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-20T02:02:00.3952449Z","primaryEndpoints":{"dfs":"https://clitestgz6nb4it72a36mdpt.dfs.core.windows.net/","web":"https://clitestgz6nb4it72a36mdpt.z2.web.core.windows.net/","blob":"https://clitestgz6nb4it72a36mdpt.blob.core.windows.net/","queue":"https://clitestgz6nb4it72a36mdpt.queue.core.windows.net/","table":"https://clitestgz6nb4it72a36mdpt.table.core.windows.net/","file":"https://clitestgz6nb4it72a36mdpt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsc4q5ncei7qimmmmtqmedt4valwfif74bbu7mdfwqimzfzfkopwgrmua7p4rcsga53m4/providers/Microsoft.Storage/storageAccounts/clitestlssboc5vg5mdivn4h","name":"clitestlssboc5vg5mdivn4h","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-18T08:34:36.9887468Z","key2":"2021-06-18T08:34:36.9887468Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T08:34:36.9937445Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T08:34:36.9937445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-18T08:34:36.9237913Z","primaryEndpoints":{"dfs":"https://clitestlssboc5vg5mdivn4h.dfs.core.windows.net/","web":"https://clitestlssboc5vg5mdivn4h.z2.web.core.windows.net/","blob":"https://clitestlssboc5vg5mdivn4h.blob.core.windows.net/","queue":"https://clitestlssboc5vg5mdivn4h.queue.core.windows.net/","table":"https://clitestlssboc5vg5mdivn4h.table.core.windows.net/","file":"https://clitestlssboc5vg5mdivn4h.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5yatgcl7dfear3v3e5d5hrqbpo5bdotmwoq7auiuykmzx74is6rzhkib56ajwf5ghxrk/providers/Microsoft.Storage/storageAccounts/clitestlzfflnot5wnc3y4j3","name":"clitestlzfflnot5wnc3y4j3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-28T02:21:02.0736425Z","key2":"2021-09-28T02:21:02.0736425Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:21:02.0736425Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:21:02.0736425Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T02:21:02.0267640Z","primaryEndpoints":{"dfs":"https://clitestlzfflnot5wnc3y4j3.dfs.core.windows.net/","web":"https://clitestlzfflnot5wnc3y4j3.z2.web.core.windows.net/","blob":"https://clitestlzfflnot5wnc3y4j3.blob.core.windows.net/","queue":"https://clitestlzfflnot5wnc3y4j3.queue.core.windows.net/","table":"https://clitestlzfflnot5wnc3y4j3.table.core.windows.net/","file":"https://clitestlzfflnot5wnc3y4j3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestjkw7fpanpscpileddbqrrrkjrtb5xi47wmvttkiqwsqcuo3ldvzszwso3x4c5apy6m5o/providers/Microsoft.Storage/storageAccounts/clitestm6u3xawj3qsydpfam","name":"clitestm6u3xawj3qsydpfam","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T07:13:03.1496586Z","key2":"2021-09-07T07:13:03.1496586Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T07:13:03.1496586Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T07:13:03.1496586Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T07:13:03.0714932Z","primaryEndpoints":{"dfs":"https://clitestm6u3xawj3qsydpfam.dfs.core.windows.net/","web":"https://clitestm6u3xawj3qsydpfam.z2.web.core.windows.net/","blob":"https://clitestm6u3xawj3qsydpfam.blob.core.windows.net/","queue":"https://clitestm6u3xawj3qsydpfam.queue.core.windows.net/","table":"https://clitestm6u3xawj3qsydpfam.table.core.windows.net/","file":"https://clitestm6u3xawj3qsydpfam.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvabzmquoslc3mtf5h3qd7dglwx45me4yxyefaw4ktsf7fbc3bx2tl75tdn5eqbgd3atx/providers/Microsoft.Storage/storageAccounts/clitestq7ur4vdqkjvy2rdgj","name":"clitestq7ur4vdqkjvy2rdgj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-28T02:27:14.4071914Z","key2":"2021-09-28T02:27:14.4071914Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:27:14.4071914Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:27:14.4071914Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T02:27:14.3446978Z","primaryEndpoints":{"dfs":"https://clitestq7ur4vdqkjvy2rdgj.dfs.core.windows.net/","web":"https://clitestq7ur4vdqkjvy2rdgj.z2.web.core.windows.net/","blob":"https://clitestq7ur4vdqkjvy2rdgj.blob.core.windows.net/","queue":"https://clitestq7ur4vdqkjvy2rdgj.queue.core.windows.net/","table":"https://clitestq7ur4vdqkjvy2rdgj.table.core.windows.net/","file":"https://clitestq7ur4vdqkjvy2rdgj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestugd6g2jxyo5mu6uxhc4zea4ygi2iuubouzxmdyuz6srnvrbwlidbvuu4qdieuwg4xlsr/providers/Microsoft.Storage/storageAccounts/clitestqorauf75d5yqkhdhc","name":"clitestqorauf75d5yqkhdhc","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-03T02:52:09.6342752Z","key2":"2021-09-03T02:52:09.6342752Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T02:52:09.6342752Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T02:52:09.6342752Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-03T02:52:09.5561638Z","primaryEndpoints":{"dfs":"https://clitestqorauf75d5yqkhdhc.dfs.core.windows.net/","web":"https://clitestqorauf75d5yqkhdhc.z2.web.core.windows.net/","blob":"https://clitestqorauf75d5yqkhdhc.blob.core.windows.net/","queue":"https://clitestqorauf75d5yqkhdhc.queue.core.windows.net/","table":"https://clitestqorauf75d5yqkhdhc.table.core.windows.net/","file":"https://clitestqorauf75d5yqkhdhc.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestzbuh7m7bllna7xosjhxr5ppfs6tnukxctfm4ydkzmzvyt7tf2ru3yjmthwy6mqqp62yy/providers/Microsoft.Storage/storageAccounts/clitestrpsk56xwloumq6ngj","name":"clitestrpsk56xwloumq6ngj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-21T05:52:26.0729783Z","key2":"2021-06-21T05:52:26.0729783Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T05:52:26.0779697Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T05:52:26.0779697Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-21T05:52:26.0129686Z","primaryEndpoints":{"dfs":"https://clitestrpsk56xwloumq6ngj.dfs.core.windows.net/","web":"https://clitestrpsk56xwloumq6ngj.z2.web.core.windows.net/","blob":"https://clitestrpsk56xwloumq6ngj.blob.core.windows.net/","queue":"https://clitestrpsk56xwloumq6ngj.queue.core.windows.net/","table":"https://clitestrpsk56xwloumq6ngj.table.core.windows.net/","file":"https://clitestrpsk56xwloumq6ngj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest62jxvr4odko5gn5tjo4z7ypmirid6zm72g3ah6zg25qh5r5xve5fhikdcnjpxvsaikhl/providers/Microsoft.Storage/storageAccounts/clitestst2iwgltnfj4zoiva","name":"clitestst2iwgltnfj4zoiva","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-27T01:58:18.2723177Z","key2":"2021-08-27T01:58:18.2723177Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-27T01:58:18.2723177Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-27T01:58:18.2723177Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-27T01:58:18.2410749Z","primaryEndpoints":{"dfs":"https://clitestst2iwgltnfj4zoiva.dfs.core.windows.net/","web":"https://clitestst2iwgltnfj4zoiva.z2.web.core.windows.net/","blob":"https://clitestst2iwgltnfj4zoiva.blob.core.windows.net/","queue":"https://clitestst2iwgltnfj4zoiva.queue.core.windows.net/","table":"https://clitestst2iwgltnfj4zoiva.table.core.windows.net/","file":"https://clitestst2iwgltnfj4zoiva.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestxk2peoqt7nd76ktof7sub3mkkcldygtt36d3imnwjd5clletodypibd5uaglpdk44yjm/providers/Microsoft.Storage/storageAccounts/clitestu6whdalngwsksemjs","name":"clitestu6whdalngwsksemjs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-10T02:29:23.5697486Z","key2":"2021-09-10T02:29:23.5697486Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T02:29:23.5697486Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T02:29:23.5697486Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-10T02:29:23.5072536Z","primaryEndpoints":{"dfs":"https://clitestu6whdalngwsksemjs.dfs.core.windows.net/","web":"https://clitestu6whdalngwsksemjs.z2.web.core.windows.net/","blob":"https://clitestu6whdalngwsksemjs.blob.core.windows.net/","queue":"https://clitestu6whdalngwsksemjs.queue.core.windows.net/","table":"https://clitestu6whdalngwsksemjs.table.core.windows.net/","file":"https://clitestu6whdalngwsksemjs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlriqfcojv6aujusys633edrxi3tkric7e6cvk5wwgjmdg4736dv56w4lwzmdnq5tr3mq/providers/Microsoft.Storage/storageAccounts/clitestw6aumidrfwmoqkzvm","name":"clitestw6aumidrfwmoqkzvm","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-18T23:32:38.8527397Z","key2":"2021-11-18T23:32:38.8527397Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:32:38.8527397Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:32:38.8527397Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:32:38.7902807Z","primaryEndpoints":{"dfs":"https://clitestw6aumidrfwmoqkzvm.dfs.core.windows.net/","web":"https://clitestw6aumidrfwmoqkzvm.z2.web.core.windows.net/","blob":"https://clitestw6aumidrfwmoqkzvm.blob.core.windows.net/","queue":"https://clitestw6aumidrfwmoqkzvm.queue.core.windows.net/","table":"https://clitestw6aumidrfwmoqkzvm.table.core.windows.net/","file":"https://clitestw6aumidrfwmoqkzvm.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttlschpyugymorheodsulam7yhpwylijzpbmjr3phwwis4vj2rx5elxcjkb236fcnumx3/providers/Microsoft.Storage/storageAccounts/clitestwv22naweyfr4m5rga","name":"clitestwv22naweyfr4m5rga","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-01T19:54:26.9185866Z","key2":"2021-11-01T19:54:26.9185866Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:54:26.9185866Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:54:26.9185866Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-01T19:54:26.8717369Z","primaryEndpoints":{"dfs":"https://clitestwv22naweyfr4m5rga.dfs.core.windows.net/","web":"https://clitestwv22naweyfr4m5rga.z2.web.core.windows.net/","blob":"https://clitestwv22naweyfr4m5rga.blob.core.windows.net/","queue":"https://clitestwv22naweyfr4m5rga.queue.core.windows.net/","table":"https://clitestwv22naweyfr4m5rga.table.core.windows.net/","file":"https://clitestwv22naweyfr4m5rga.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesth52efeutldrxowe5cfayjvk4zhpypdmky6fyppzro5r3ldqu7dwf2ca6jf3lqm4eijf6/providers/Microsoft.Storage/storageAccounts/clitestx5fskzfbidzs4kqmu","name":"clitestx5fskzfbidzs4kqmu","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-05T08:48:16.0575682Z","key2":"2021-11-05T08:48:16.0575682Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:48:16.0575682Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:48:16.0575682Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-05T08:48:15.9794412Z","primaryEndpoints":{"dfs":"https://clitestx5fskzfbidzs4kqmu.dfs.core.windows.net/","web":"https://clitestx5fskzfbidzs4kqmu.z2.web.core.windows.net/","blob":"https://clitestx5fskzfbidzs4kqmu.blob.core.windows.net/","queue":"https://clitestx5fskzfbidzs4kqmu.queue.core.windows.net/","table":"https://clitestx5fskzfbidzs4kqmu.table.core.windows.net/","file":"https://clitestx5fskzfbidzs4kqmu.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlnzg2rscuyweetdgvywse35jkhd3s7gay3wnjzoyqojyq6i3iw42uycss45mj52zitnl/providers/Microsoft.Storage/storageAccounts/clitestzarcstbcgg3yqinfg","name":"clitestzarcstbcgg3yqinfg","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-30T02:23:46.1127669Z","key2":"2021-07-30T02:23:46.1127669Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-30T02:23:46.1127669Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-30T02:23:46.1127669Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-30T02:23:46.0658902Z","primaryEndpoints":{"dfs":"https://clitestzarcstbcgg3yqinfg.dfs.core.windows.net/","web":"https://clitestzarcstbcgg3yqinfg.z2.web.core.windows.net/","blob":"https://clitestzarcstbcgg3yqinfg.blob.core.windows.net/","queue":"https://clitestzarcstbcgg3yqinfg.queue.core.windows.net/","table":"https://clitestzarcstbcgg3yqinfg.table.core.windows.net/","file":"https://clitestzarcstbcgg3yqinfg.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrvgfrlua5ai2leiutip26a27qxs2lzedu3g6gjrqjzi3rna2yxcinlc5ioxhhfvnx5rv/providers/Microsoft.Storage/storageAccounts/versiongdbkjcemb56eyu3rj","name":"versiongdbkjcemb56eyu3rj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-18T23:17:17.2960150Z","key2":"2021-11-18T23:17:17.2960150Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:17.2960150Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:17.2960150Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:17:17.2335295Z","primaryEndpoints":{"dfs":"https://versiongdbkjcemb56eyu3rj.dfs.core.windows.net/","web":"https://versiongdbkjcemb56eyu3rj.z2.web.core.windows.net/","blob":"https://versiongdbkjcemb56eyu3rj.blob.core.windows.net/","queue":"https://versiongdbkjcemb56eyu3rj.queue.core.windows.net/","table":"https://versiongdbkjcemb56eyu3rj.table.core.windows.net/","file":"https://versiongdbkjcemb56eyu3rj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestnsw32miijgjmandsqepzbytqsxe2dbpfuh3t2d2u7saewxrnoilajjocllnjxt45ggjc/providers/Microsoft.Storage/storageAccounts/versionhf53xzmbt3fwu3kn3","name":"versionhf53xzmbt3fwu3kn3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:29:06.2474527Z","key2":"2021-09-07T02:29:06.2474527Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:29:06.2474527Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:29:06.2474527Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:29:06.1849281Z","primaryEndpoints":{"dfs":"https://versionhf53xzmbt3fwu3kn3.dfs.core.windows.net/","web":"https://versionhf53xzmbt3fwu3kn3.z2.web.core.windows.net/","blob":"https://versionhf53xzmbt3fwu3kn3.blob.core.windows.net/","queue":"https://versionhf53xzmbt3fwu3kn3.queue.core.windows.net/","table":"https://versionhf53xzmbt3fwu3kn3.table.core.windows.net/","file":"https://versionhf53xzmbt3fwu3kn3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyex6l2i6otx4eikzzr7rikdz4b6rezhqeg6mnzwvtof4vpxkcw34rd7hwpk7q5ltnrxp/providers/Microsoft.Storage/storageAccounts/versionncoq7gv5mbp4o2uf6","name":"versionncoq7gv5mbp4o2uf6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-15T06:47:03.1566686Z","key2":"2021-10-15T06:47:03.1566686Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T06:47:03.1723019Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T06:47:03.1723019Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T06:47:03.0785915Z","primaryEndpoints":{"dfs":"https://versionncoq7gv5mbp4o2uf6.dfs.core.windows.net/","web":"https://versionncoq7gv5mbp4o2uf6.z2.web.core.windows.net/","blob":"https://versionncoq7gv5mbp4o2uf6.blob.core.windows.net/","queue":"https://versionncoq7gv5mbp4o2uf6.queue.core.windows.net/","table":"https://versionncoq7gv5mbp4o2uf6.table.core.windows.net/","file":"https://versionncoq7gv5mbp4o2uf6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyxq5yt6z4or5ddvyvubtdjn73mslv25s4bqqme3ljmj6jsaagbmyn376m3cdex35tubw/providers/Microsoft.Storage/storageAccounts/versionqp3efyteboplomp5w","name":"versionqp3efyteboplomp5w","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:20:09.3003824Z","key2":"2021-09-07T02:20:09.3003824Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:20:09.3003824Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:20:09.3003824Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:20:09.2378807Z","primaryEndpoints":{"dfs":"https://versionqp3efyteboplomp5w.dfs.core.windows.net/","web":"https://versionqp3efyteboplomp5w.z2.web.core.windows.net/","blob":"https://versionqp3efyteboplomp5w.blob.core.windows.net/","queue":"https://versionqp3efyteboplomp5w.queue.core.windows.net/","table":"https://versionqp3efyteboplomp5w.table.core.windows.net/","file":"https://versionqp3efyteboplomp5w.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest27tntypkdnlo3adbzt7qqcx3detlxgtxnuxhaxdgobws4bjc26vshca2qezntlnmpuup/providers/Microsoft.Storage/storageAccounts/versionryihikjyurp5tntba","name":"versionryihikjyurp5tntba","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-11T22:07:42.2418545Z","key2":"2021-11-11T22:07:42.2418545Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:42.2418545Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:42.2418545Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:07:42.1637179Z","primaryEndpoints":{"dfs":"https://versionryihikjyurp5tntba.dfs.core.windows.net/","web":"https://versionryihikjyurp5tntba.z2.web.core.windows.net/","blob":"https://versionryihikjyurp5tntba.blob.core.windows.net/","queue":"https://versionryihikjyurp5tntba.queue.core.windows.net/","table":"https://versionryihikjyurp5tntba.table.core.windows.net/","file":"https://versionryihikjyurp5tntba.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesturbzqfflmkkupfwgtkutwvdy5nte5rec7neu6eyya4kahyepssopgq72mzxl54g7h2pt/providers/Microsoft.Storage/storageAccounts/versionscknbekpvmwrjeznt","name":"versionscknbekpvmwrjeznt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-28T02:39:44.7553582Z","key2":"2021-10-28T02:39:44.7553582Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T02:39:44.7553582Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T02:39:44.7553582Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T02:39:44.6772068Z","primaryEndpoints":{"dfs":"https://versionscknbekpvmwrjeznt.dfs.core.windows.net/","web":"https://versionscknbekpvmwrjeznt.z2.web.core.windows.net/","blob":"https://versionscknbekpvmwrjeznt.blob.core.windows.net/","queue":"https://versionscknbekpvmwrjeznt.queue.core.windows.net/","table":"https://versionscknbekpvmwrjeznt.table.core.windows.net/","file":"https://versionscknbekpvmwrjeznt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrhkyigtoloz2mqogvsddvmbtemvops4dw6kluaww553xqrbl5kwgnpuse5fdom2fq5bd/providers/Microsoft.Storage/storageAccounts/versionvsfin4nwuwcxndawj","name":"versionvsfin4nwuwcxndawj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:26:57.6350762Z","key2":"2021-09-07T02:26:57.6350762Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:26:57.6350762Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:26:57.6350762Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:26:57.5726321Z","primaryEndpoints":{"dfs":"https://versionvsfin4nwuwcxndawj.dfs.core.windows.net/","web":"https://versionvsfin4nwuwcxndawj.z2.web.core.windows.net/","blob":"https://versionvsfin4nwuwcxndawj.blob.core.windows.net/","queue":"https://versionvsfin4nwuwcxndawj.queue.core.windows.net/","table":"https://versionvsfin4nwuwcxndawj.table.core.windows.net/","file":"https://versionvsfin4nwuwcxndawj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyvbbewdobz5vnqkoyumrkqbdufktrisug2ukkkvnirbc6frn2hxuvpe7weosgtfc4spk/providers/Microsoft.Storage/storageAccounts/versionymg2k5haow6be3wlh","name":"versionymg2k5haow6be3wlh","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-08T05:20:27.5220722Z","key2":"2021-11-08T05:20:27.5220722Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-08T05:20:27.5220722Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-08T05:20:27.5220722Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-08T05:20:27.4439279Z","primaryEndpoints":{"dfs":"https://versionymg2k5haow6be3wlh.dfs.core.windows.net/","web":"https://versionymg2k5haow6be3wlh.z2.web.core.windows.net/","blob":"https://versionymg2k5haow6be3wlh.blob.core.windows.net/","queue":"https://versionymg2k5haow6be3wlh.queue.core.windows.net/","table":"https://versionymg2k5haow6be3wlh.table.core.windows.net/","file":"https://versionymg2k5haow6be3wlh.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkngvostxvfzwz7hb2pyqpst4ekovxl4qehicnbufjmoug5injclokanwouejm77muega/providers/Microsoft.Storage/storageAccounts/versionyrdifxty6izovwb6i","name":"versionyrdifxty6izovwb6i","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:23:07.0385168Z","key2":"2021-09-07T02:23:07.0385168Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:23:07.0385168Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:23:07.0385168Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:23:06.9760160Z","primaryEndpoints":{"dfs":"https://versionyrdifxty6izovwb6i.dfs.core.windows.net/","web":"https://versionyrdifxty6izovwb6i.z2.web.core.windows.net/","blob":"https://versionyrdifxty6izovwb6i.blob.core.windows.net/","queue":"https://versionyrdifxty6izovwb6i.queue.core.windows.net/","table":"https://versionyrdifxty6izovwb6i.table.core.windows.net/","file":"https://versionyrdifxty6izovwb6i.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssaeuap","name":"yssaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-06T07:56:33.4932788Z","key2":"2021-09-06T07:56:33.4932788Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-06T07:56:33.5088661Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-06T07:56:33.5088661Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-06T07:56:33.4151419Z","primaryEndpoints":{"dfs":"https://yssaeuap.dfs.core.windows.net/","web":"https://yssaeuap.z2.web.core.windows.net/","blob":"https://yssaeuap.blob.core.windows.net/","queue":"https://yssaeuap.queue.core.windows.net/","table":"https://yssaeuap.table.core.windows.net/","file":"https://yssaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuap","name":"zhiyihuangsaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true},"keyCreationTime":{"key1":"2021-09-24T05:54:33.0930905Z","key2":"2021-09-24T05:54:33.0930905Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T05:54:33.1087163Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T05:54:33.1087163Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-24T05:54:33.0305911Z","primaryEndpoints":{"dfs":"https://zhiyihuangsaeuap.dfs.core.windows.net/","web":"https://zhiyihuangsaeuap.z2.web.core.windows.net/","blob":"https://zhiyihuangsaeuap.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap.queue.core.windows.net/","table":"https://zhiyihuangsaeuap.table.core.windows.net/","file":"https://zhiyihuangsaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available","secondaryLocation":"eastus2euap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhiyihuangsaeuap-secondary.dfs.core.windows.net/","web":"https://zhiyihuangsaeuap-secondary.z2.web.core.windows.net/","blob":"https://zhiyihuangsaeuap-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuap-secondary.table.core.windows.net/"}}}]}' + headers: + cache-control: + - no-cache + content-length: + - '270766' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:07:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - daf1d796-2645-4438-9ec0-6400ba8ca655 + - 97b2a266-c7c3-4a99-a8df-ab8ed1892968 + - 8b4c2aeb-60a7-497b-b540-62cdd8f9ee49 + - 0ba0028c-80d3-4199-b770-ec6eff41ee87 + - 6d911ad8-f60f-4caf-b5ea-fabc9cf641ae + - 923b5a7d-2ed6-4301-b4a3-a7ace738efe3 + - cec1e783-ddfd-4d82-902a-0e82761f3c65 + - 22ad3ea6-bbaa-40e5-9997-cd2fb2b26c25 + - 0457272d-15d5-4cd5-952d-3a7df63ce9d1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account keys list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --account-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2021-06-01&$expand=kerb + response: + body: + string: '{"keys":[{"creationTime":"2021-11-24T08:06:33.4189055Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-24T08:06:33.4189055Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '380' + content-type: + - application/json + date: + - Wed, 24 Nov 2021 08:07:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.10; Windows 10) AZURECLI/2.30.0 + x-ms-date: + - Wed, 24 Nov 2021 08:07:05 GMT + x-ms-version: + - '2018-11-09' + method: PUT + uri: https://clitest000002.blob.core.windows.net/container?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Wed, 24 Nov 2021 08:07:06 GMT + etag: + - '"0x8D9AF21683CDF81"' + last-modified: + - Wed, 24 Nov 2021 08:07:06 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2018-11-09' + status: + code: 201 + message: Created +- request: + body: '{"properties": {"datasource": {"type": "Microsoft.Storage/Blob", "properties": + {"storageAccounts": [{"accountName": "clitest000002", "accountKey": "veryFakedStorageAccountKey=="}], + "container": "container", "pathPattern": "{date}/{time}", "dateFormat": "yyyy/MM/dd", + "timeFormat": "HH"}}, "serialization": {"type": "Csv", "properties": {"fieldDelimiter": + ",", "encoding": "UTF8"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics output create + Connection: + - keep-alive + Content-Length: + - '453' + Content-Type: + - application/json + ParameterSetName: + - -n -g --job-name --datasource --serialization + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/outputs/output?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/outputs/output","name":"output","type":"Microsoft.StreamAnalytics/streamingjobs/outputs","properties":{"datasource":{"type":"Microsoft.Storage/Blob","properties":{"blobPathPrefix":"{date}/{time}","storageAccounts":[{"accountName":"clitest000002"}],"container":"container","pathPattern":"{date}/{time}","dateFormat":"yyyy/MM/dd","timeFormat":"HH","authenticationMode":"ConnectionString"}},"serialization":{"type":"Csv","properties":{"fieldDelimiter":",","encoding":"UTF8"}}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '689' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:07:08 GMT + etag: + - b0092e66-0563-42bf-84c1-36ae40406265 + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"datasource": {"type": "Microsoft.Storage/Blob", "properties": + {"storageAccounts": [{"accountName": "clitest000002", "accountKey": "veryFakedStorageAccountKey=="}], + "container": "container", "pathPattern": "{date}/{time}", "dateFormat": "yyyy/MM/dd", + "timeFormat": "HH"}}, "serialization": {"type": "Csv", "properties": {"fieldDelimiter": + ",", "encoding": "UTF8"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics output test + Connection: + - keep-alive + Content-Length: + - '453' + Content-Type: + - application/json + ParameterSetName: + - -n -g --job-name --datasource --serialization + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/outputs/output/test?api-version=2020-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-store, no-cache + content-length: + - '0' + date: + - Wed, 24 Nov 2021 08:07:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/outputs/output/OperationResults/707fea88-fc23-4796-9d7b-af14700133f3?api-version=2020-03-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics output test + Connection: + - keep-alive + ParameterSetName: + - -n -g --job-name --datasource --serialization + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/outputs/output/OperationResults/707fea88-fc23-4796-9d7b-af14700133f3?api-version=2020-03-01 + response: + body: + string: '{"status":"TestSucceeded","error":null}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '39' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:07:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics output list + Connection: + - keep-alive + ParameterSetName: + - -g --job-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/outputs?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/outputs/output","name":"output","type":"Microsoft.StreamAnalytics/streamingjobs/outputs","properties":{"datasource":{"type":"Microsoft.Storage/Blob","properties":{"blobPathPrefix":"{date}/{time}","storageAccounts":[{"accountName":"clitest000002"}],"container":"container","pathPattern":"{date}/{time}","dateFormat":"yyyy/MM/dd","timeFormat":"HH","authenticationMode":"ConnectionString"}},"serialization":{"type":"Csv","properties":{"fieldDelimiter":",","encoding":"UTF8"}},"etag":"b0092e66-0563-42bf-84c1-36ae40406265"}}],"nextLink":null}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '763' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:07:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"datasource": {"type": "Microsoft.Storage/Blob", "properties": + {"storageAccounts": [{"accountName": "clitest000002", "accountKey": "veryFakedStorageAccountKey=="}], + "container": "container", "pathPattern": "{date}/{time}", "dateFormat": "MM/dd/yyyy", + "timeFormat": "HH"}}, "serialization": {"type": "Csv", "properties": {"fieldDelimiter": + ",", "encoding": "UTF8"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics output update + Connection: + - keep-alive + Content-Length: + - '453' + Content-Type: + - application/json + ParameterSetName: + - -n -g --job-name --datasource --serialization + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/outputs/output?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/outputs/output","name":"output","type":"Microsoft.StreamAnalytics/streamingjobs/outputs","properties":{"datasource":{"type":"Microsoft.Storage/Blob","properties":{"blobPathPrefix":"{date}/{time}","storageAccounts":[{"accountName":"clitest000002"}],"container":"container","pathPattern":"{date}/{time}","dateFormat":"MM/dd/yyyy","timeFormat":"HH","authenticationMode":"ConnectionString"}},"serialization":{"type":"Csv","properties":{"fieldDelimiter":",","encoding":"UTF8"}}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '689' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:07:23 GMT + etag: + - 1f5eb187-1953-45b0-9853-cf90a40e1b67 + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics output show + Connection: + - keep-alive + ParameterSetName: + - -n -g --job-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/outputs/output?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/outputs/output","name":"output","type":"Microsoft.StreamAnalytics/streamingjobs/outputs","properties":{"datasource":{"type":"Microsoft.Storage/Blob","properties":{"blobPathPrefix":"{date}/{time}","storageAccounts":[{"accountName":"clitest000002"}],"container":"container","pathPattern":"{date}/{time}","dateFormat":"MM/dd/yyyy","timeFormat":"HH","authenticationMode":"ConnectionString"}},"serialization":{"type":"Csv","properties":{"fieldDelimiter":",","encoding":"UTF8"}}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '689' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:07:23 GMT + etag: + - 1f5eb187-1953-45b0-9853-cf90a40e1b67 + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics output delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --job-name --yes + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/outputs/output?api-version=2020-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-store, no-cache + content-length: + - '0' + content-type: + - application/json + date: + - Wed, 24 Nov 2021 08:07:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_stream_analytics.yaml b/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_stream_analytics.yaml deleted file mode 100644 index 4325c88fb57..00000000000 --- a/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_stream_analytics.yaml +++ /dev/null @@ -1,2504 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - unknown - Connection: - - keep-alive - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East - Asia","longitude":"114.188","latitude":"22.267"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia","name":"southeastasia","displayName":"Southeast - Asia","longitude":"103.833","latitude":"1.283"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus","name":"centralus","displayName":"Central - US","longitude":"-93.6208","latitude":"41.5908"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus","name":"eastus","displayName":"East - US","longitude":"-79.8164","latitude":"37.3719"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2","name":"eastus2","displayName":"East - US 2","longitude":"-78.3889","latitude":"36.6681"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus","name":"westus","displayName":"West - US","longitude":"-122.417","latitude":"37.783"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus","name":"northcentralus","displayName":"North - Central US","longitude":"-87.6278","latitude":"41.8819"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus","name":"southcentralus","displayName":"South - Central US","longitude":"-98.5","latitude":"29.4167"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope","name":"northeurope","displayName":"North - Europe","longitude":"-6.2597","latitude":"53.3478"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope","name":"westeurope","displayName":"West - Europe","longitude":"4.9","latitude":"52.3667"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest","name":"japanwest","displayName":"Japan - West","longitude":"135.5022","latitude":"34.6939"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast","name":"japaneast","displayName":"Japan - East","longitude":"139.77","latitude":"35.68"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth","name":"brazilsouth","displayName":"Brazil - South","longitude":"-46.633","latitude":"-23.55"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast","name":"australiaeast","displayName":"Australia - East","longitude":"151.2094","latitude":"-33.86"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast","name":"australiasoutheast","displayName":"Australia - Southeast","longitude":"144.9631","latitude":"-37.8136"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia","name":"southindia","displayName":"South - India","longitude":"80.1636","latitude":"12.9822"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia","name":"centralindia","displayName":"Central - India","longitude":"73.9197","latitude":"18.5822"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westindia","name":"westindia","displayName":"West - India","longitude":"72.868","latitude":"19.088"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral","name":"canadacentral","displayName":"Canada - Central","longitude":"-79.383","latitude":"43.653"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast","name":"canadaeast","displayName":"Canada - East","longitude":"-71.217","latitude":"46.817"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth","name":"uksouth","displayName":"UK - South","longitude":"-0.799","latitude":"50.941"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest","name":"ukwest","displayName":"UK - West","longitude":"-3.084","latitude":"53.427"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus","name":"westcentralus","displayName":"West - Central US","longitude":"-110.234","latitude":"40.890"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2","name":"westus2","displayName":"West - US 2","longitude":"-119.852","latitude":"47.233"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral","name":"koreacentral","displayName":"Korea - Central","longitude":"126.9780","latitude":"37.5665"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth","name":"koreasouth","displayName":"Korea - South","longitude":"129.0756","latitude":"35.1796"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral","name":"francecentral","displayName":"France - Central","longitude":"2.3730","latitude":"46.3772"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth","name":"francesouth","displayName":"France - South","longitude":"2.1972","latitude":"43.8345"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral","name":"australiacentral","displayName":"Australia - Central","longitude":"149.1244","latitude":"-35.3075"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2","name":"australiacentral2","displayName":"Australia - Central 2","longitude":"149.1244","latitude":"-35.3075"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral","name":"uaecentral","displayName":"UAE - Central","longitude":"54.366669","latitude":"24.466667"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth","name":"uaenorth","displayName":"UAE - North","longitude":"55.316666","latitude":"25.266666"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth","name":"southafricanorth","displayName":"South - Africa North","longitude":"28.218370","latitude":"-25.731340"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest","name":"southafricawest","displayName":"South - Africa West","longitude":"18.843266","latitude":"-34.075691"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth","name":"switzerlandnorth","displayName":"Switzerland - North","longitude":"8.564572","latitude":"47.451542"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest","name":"switzerlandwest","displayName":"Switzerland - West","longitude":"6.143158","latitude":"46.204391"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth","name":"germanynorth","displayName":"Germany - North","longitude":"8.806422","latitude":"53.073635"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral","name":"germanywestcentral","displayName":"Germany - West Central","longitude":"8.682127","latitude":"50.110924"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest","name":"norwaywest","displayName":"Norway - West","longitude":"5.733107","latitude":"58.969975"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast","name":"norwayeast","displayName":"Norway - East","longitude":"10.752245","latitude":"59.913868"}]}' - headers: - cache-control: - - no-cache - content-length: - - '7129' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:05:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "properties": {"sku": {"name": "Standard"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics job create - Connection: - - keep-alive - Content-Length: - - '67' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --resource-group --name --location --output-error-policy --events-outoforder-policy - --events-outoforder-max-delay --events-late-arrival-max-delay --data-locale - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job?api-version=2016-03-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job","name":"test_job","type":"Microsoft.StreamAnalytics/streamingjobs","location":"West - US","properties":{"sku":{"name":"Standard"},"jobId":"3b72400b-af03-40d7-a756-c5c3909eaa59","provisioningState":"Succeeded","jobState":"Created","outputErrorPolicy":"Stop","eventsLateArrivalMaxDelayInSeconds":5,"dataLocale":"en-US","createdDate":"2020-03-16T09:05:16.23Z","compatibilityLevel":"1.0","package":null,"jobStorageAccount":null,"inputs":[],"functions":[],"outputs":[],"subnetResourceId":null}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '697' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:05:16 GMT - etag: - - 89c54fce-03b8-4543-88a4-465aaf4c0d9a - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics job update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --events-outoforder-max-delay --events-late-arrival-max-delay - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job?api-version=2016-03-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job","name":"test_job","type":"Microsoft.StreamAnalytics/streamingjobs","location":"West - US","properties":{"sku":{"name":"Standard"},"jobId":"3b72400b-af03-40d7-a756-c5c3909eaa59","provisioningState":"Succeeded","jobState":"Created","outputErrorPolicy":"Stop","eventsLateArrivalMaxDelayInSeconds":5,"dataLocale":"en-US","createdDate":"2020-03-16T09:05:16.23Z","compatibilityLevel":"1.0","package":null,"jobStorageAccount":null,"subnetResourceId":null}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '657' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:05:19 GMT - etag: - - 89c54fce-03b8-4543-88a4-465aaf4c0d9a - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"location": "West US", "properties": {"sku": {"name": "Standard"}, "outputErrorPolicy": - "Stop", "eventsOutOfOrderMaxDelayInSeconds": 21, "eventsLateArrivalMaxDelayInSeconds": - 13, "dataLocale": "en-US", "compatibilityLevel": "1.0"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics job update - Connection: - - keep-alive - Content-Length: - - '232' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --resource-group --name --events-outoforder-max-delay --events-late-arrival-max-delay - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job?api-version=2016-03-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job","name":"test_job","type":"Microsoft.StreamAnalytics/streamingjobs","location":"West - US","properties":{"sku":{"name":"Standard"},"jobId":"3b72400b-af03-40d7-a756-c5c3909eaa59","provisioningState":"Succeeded","jobState":"Created","outputErrorPolicy":"Stop","eventsOutOfOrderMaxDelayInSeconds":21,"eventsLateArrivalMaxDelayInSeconds":13,"dataLocale":"en-US","createdDate":"2020-03-16T09:05:16.23Z","compatibilityLevel":"1.0","package":null,"jobStorageAccount":null,"inputs":[],"functions":[],"outputs":[],"subnetResourceId":null}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '737' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:05:19 GMT - etag: - - 63b01867-83d4-4bbb-9758-663c35f4586d - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics job list - Connection: - - keep-alive - ParameterSetName: - - --resource-group - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs?api-version=2016-03-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job","name":"test_job","type":"Microsoft.StreamAnalytics/streamingjobs","location":"West - US","properties":{"sku":{"name":"Standard"},"jobId":"3b72400b-af03-40d7-a756-c5c3909eaa59","provisioningState":"Succeeded","jobState":"Created","outputErrorPolicy":"Stop","eventsOutOfOrderMaxDelayInSeconds":21,"eventsLateArrivalMaxDelayInSeconds":13,"dataLocale":"en-US","createdDate":"2020-03-16T09:05:16.23Z","compatibilityLevel":"1.0","package":null,"jobStorageAccount":null,"etag":"63b01867-83d4-4bbb-9758-663c35f4586d","subnetResourceId":null}}],"nextLink":null}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '771' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:05:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics job show - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job?api-version=2016-03-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job","name":"test_job","type":"Microsoft.StreamAnalytics/streamingjobs","location":"West - US","properties":{"sku":{"name":"Standard"},"jobId":"3b72400b-af03-40d7-a756-c5c3909eaa59","provisioningState":"Succeeded","jobState":"Created","outputErrorPolicy":"Stop","eventsOutOfOrderMaxDelayInSeconds":21,"eventsLateArrivalMaxDelayInSeconds":13,"dataLocale":"en-US","createdDate":"2020-03-16T09:05:16.23Z","compatibilityLevel":"1.0","package":null,"jobStorageAccount":null,"subnetResourceId":null}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '697' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:05:24 GMT - etag: - - 63b01867-83d4-4bbb-9758-663c35f4586d - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"streamingUnits": 12, "query": "SELECT * INTO output FROM - input"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics transformation create - Connection: - - keep-alive - Content-Length: - - '82' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --resource-group --job-name --name --streaming-units --transformation-query - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/transformations/transformation?api-version=2016-03-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/transformations/transformation","name":"transformation","type":"Microsoft.StreamAnalytics/streamingjobs/transformations","properties":{"streamingUnits":12,"query":"SELECT - * INTO output FROM input"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '407' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:05:25 GMT - etag: - - 1de3c3f9-140f-476f-b462-7129c5d12764 - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics transformation show - Connection: - - keep-alive - ParameterSetName: - - --resource-group --job-name --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/transformations/transformation?api-version=2016-03-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/transformations/transformation","name":"transformation","type":"Microsoft.StreamAnalytics/streamingjobs/transformations","properties":{"streamingUnits":12,"query":"SELECT - * INTO output FROM input"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '407' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:05:26 GMT - etag: - - 1de3c3f9-140f-476f-b462-7129c5d12764 - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics transformation update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --job-name --name --streaming-units - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/transformations/transformation?api-version=2016-03-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/transformations/transformation","name":"transformation","type":"Microsoft.StreamAnalytics/streamingjobs/transformations","properties":{"streamingUnits":12,"query":"SELECT - * INTO output FROM input"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '407' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:05:27 GMT - etag: - - 1de3c3f9-140f-476f-b462-7129c5d12764 - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"name": "transformation", "properties": {"streamingUnits": 6, "query": - "SELECT * INTO output FROM input"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics transformation update - Connection: - - keep-alive - Content-Length: - - '107' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --resource-group --job-name --name --streaming-units - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/transformations/transformation?api-version=2016-03-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/transformations/transformation","name":"transformation","type":"Microsoft.StreamAnalytics/streamingjobs/transformations","properties":{"streamingUnits":6,"query":"SELECT - * INTO output FROM input"}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '406' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:05:28 GMT - etag: - - 6dd2db34-08b5-439c-94f3-e0272b950b43 - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account keys list - Connection: - - keep-alive - ParameterSetName: - - --account-name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-storage/8.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01 - response: - body: - string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-sub-resource-group6njop4jabua7ovlidl33nudwy5b5cbfd/providers/Microsoft.Storage/storageAccounts/armbuilddemo123","name":"armbuilddemo123","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T05:11:04.7484828Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T05:11:04.7484828Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-16T05:11:04.6703549Z","primaryEndpoints":{"blob":"https://armbuilddemo123.blob.core.windows.net/","queue":"https://armbuilddemo123.queue.core.windows.net/","table":"https://armbuilddemo123.table.core.windows.net/","file":"https://armbuilddemo123.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-sub-resource-groupylzlw2oqyfe7oro5z5p3fnlagkgcj4de/providers/Microsoft.Storage/storageAccounts/armbuilddemo18211","name":"armbuilddemo18211","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T04:54:54.6783704Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T04:54:54.6783704Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-16T04:54:54.6002446Z","primaryEndpoints":{"blob":"https://armbuilddemo18211.blob.core.windows.net/","queue":"https://armbuilddemo18211.queue.core.windows.net/","table":"https://armbuilddemo18211.table.core.windows.net/","file":"https://armbuilddemo18211.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/azureclitestrgdiag180","name":"azureclitestrgdiag180","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T03:44:58.6379144Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T03:44:58.6379144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T03:44:58.5910120Z","primaryEndpoints":{"blob":"https://azureclitestrgdiag180.blob.core.windows.net/","queue":"https://azureclitestrgdiag180.queue.core.windows.net/","table":"https://azureclitestrgdiag180.table.core.windows.net/","file":"https://azureclitestrgdiag180.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-core-poc/providers/Microsoft.Storage/storageAccounts/azurecorepoc","name":"azurecorepoc","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-26T02:38:58.8233588Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-26T02:38:58.8233588Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-26T02:38:58.7452329Z","primaryEndpoints":{"dfs":"https://azurecorepoc.dfs.core.windows.net/","web":"https://azurecorepoc.z13.web.core.windows.net/","blob":"https://azurecorepoc.blob.core.windows.net/","queue":"https://azurecorepoc.queue.core.windows.net/","table":"https://azurecorepoc.table.core.windows.net/","file":"https://azurecorepoc.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azurecorepoc-secondary.dfs.core.windows.net/","web":"https://azurecorepoc-secondary.z13.web.core.windows.net/","blob":"https://azurecorepoc-secondary.blob.core.windows.net/","queue":"https://azurecorepoc-secondary.queue.core.windows.net/","table":"https://azurecorepoc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hpc_cachea3xuh6evfb6vydzyo56ftee57ao2egmriozkpraa2nolutrwhzwxhmcdx/providers/Microsoft.Storage/storageAccounts/clihnxjb4a4zdrnre7ats7fy","name":"clihnxjb4a4zdrnre7ats7fy","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T07:38:13.7969304Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T07:38:13.7969304Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-16T07:38:13.7188052Z","primaryEndpoints":{"dfs":"https://clihnxjb4a4zdrnre7ats7fy.dfs.core.windows.net/","web":"https://clihnxjb4a4zdrnre7ats7fy.z13.web.core.windows.net/","blob":"https://clihnxjb4a4zdrnre7ats7fy.blob.core.windows.net/","queue":"https://clihnxjb4a4zdrnre7ats7fy.queue.core.windows.net/","table":"https://clihnxjb4a4zdrnre7ats7fy.table.core.windows.net/","file":"https://clihnxjb4a4zdrnre7ats7fy.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu-test-rg/providers/Microsoft.Storage/storageAccounts/createsawithazurecore","name":"createsawithazurecore","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T09:00:56.7928171Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T09:00:56.7928171Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-16T09:00:56.7144514Z","primaryEndpoints":{"dfs":"https://createsawithazurecore.dfs.core.windows.net/","web":"https://createsawithazurecore.z13.web.core.windows.net/","blob":"https://createsawithazurecore.blob.core.windows.net/","queue":"https://createsawithazurecore.queue.core.windows.net/","table":"https://createsawithazurecore.table.core.windows.net/","file":"https://createsawithazurecore.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://createsawithazurecore-secondary.dfs.core.windows.net/","web":"https://createsawithazurecore-secondary.z13.web.core.windows.net/","blob":"https://createsawithazurecore-secondary.blob.core.windows.net/","queue":"https://createsawithazurecore-secondary.queue.core.windows.net/","table":"https://createsawithazurecore-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwendev","name":"qianwendev","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Network/virtualNetworks/QIAN/subnets/default","action":"Allow","state":"Succeeded"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Network/virtualNetworks/qianwendev/subnets/default","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"23.45.1.0/24","action":"Allow"},{"value":"23.45.1.1/24","action":"Allow"}],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T03:29:28.0084761Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T03:29:28.0084761Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-12T03:29:27.9459854Z","primaryEndpoints":{"dfs":"https://qianwendev.dfs.core.windows.net/","web":"https://qianwendev.z13.web.core.windows.net/","blob":"https://qianwendev.blob.core.windows.net/","queue":"https://qianwendev.queue.core.windows.net/","table":"https://qianwendev.table.core.windows.net/","file":"https://qianwendev.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qianwendev-secondary.dfs.core.windows.net/","web":"https://qianwendev-secondary.z13.web.core.windows.net/","blob":"https://qianwendev-secondary.blob.core.windows.net/","queue":"https://qianwendev-secondary.queue.core.windows.net/","table":"https://qianwendev-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwenhpctarget","name":"qianwenhpctarget","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-06T07:09:20.3073299Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-06T07:09:20.3073299Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-06T07:09:20.2291899Z","primaryEndpoints":{"dfs":"https://qianwenhpctarget.dfs.core.windows.net/","web":"https://qianwenhpctarget.z13.web.core.windows.net/","blob":"https://qianwenhpctarget.blob.core.windows.net/","queue":"https://qianwenhpctarget.queue.core.windows.net/","table":"https://qianwenhpctarget.table.core.windows.net/","file":"https://qianwenhpctarget.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qianwenhpctarget-secondary.dfs.core.windows.net/","web":"https://qianwenhpctarget-secondary.z13.web.core.windows.net/","blob":"https://qianwenhpctarget-secondary.blob.core.windows.net/","queue":"https://qianwenhpctarget-secondary.queue.core.windows.net/","table":"https://qianwenhpctarget-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/storeayniadjso4lay","name":"storeayniadjso4lay","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-14T15:40:43.7851387Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-14T15:40:43.7851387Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-14T15:40:43.7070117Z","primaryEndpoints":{"dfs":"https://storeayniadjso4lay.dfs.core.windows.net/","web":"https://storeayniadjso4lay.z13.web.core.windows.net/","blob":"https://storeayniadjso4lay.blob.core.windows.net/","queue":"https://storeayniadjso4lay.queue.core.windows.net/","table":"https://storeayniadjso4lay.table.core.windows.net/","file":"https://storeayniadjso4lay.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/azhoxingtest9851","name":"azhoxingtest9851","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"6e279161-d008-42b7-90a1-6801fc4bc4ca"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-21T05:43:15.2811036Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-21T05:43:15.2811036Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-21T05:43:15.2029670Z","primaryEndpoints":{"dfs":"https://azhoxingtest9851.dfs.core.windows.net/","web":"https://azhoxingtest9851.z22.web.core.windows.net/","blob":"https://azhoxingtest9851.blob.core.windows.net/","queue":"https://azhoxingtest9851.queue.core.windows.net/","table":"https://azhoxingtest9851.table.core.windows.net/","file":"https://azhoxingtest9851.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/azureclitestrgdiag","name":"azureclitestrgdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T02:54:26.8971309Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T02:54:26.8971309Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T02:54:26.8502755Z","primaryEndpoints":{"blob":"https://azureclitestrgdiag.blob.core.windows.net/","queue":"https://azureclitestrgdiag.queue.core.windows.net/","table":"https://azureclitestrgdiag.table.core.windows.net/","file":"https://azureclitestrgdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxoe2qtcqlnxonqpub522jgmpzgeegwhowl2qo6xqgfwtqcd3jzicz5yraawi/providers/Microsoft.Storage/storageAccounts/clitest6yrafi3cntx2cngw3","name":"clitest6yrafi3cntx2cngw3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-06T14:00:05.4412024Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-06T14:00:05.4412024Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-06T14:00:05.3786989Z","primaryEndpoints":{"blob":"https://clitest6yrafi3cntx2cngw3.blob.core.windows.net/","queue":"https://clitest6yrafi3cntx2cngw3.queue.core.windows.net/","table":"https://clitest6yrafi3cntx2cngw3.table.core.windows.net/","file":"https://clitest6yrafi3cntx2cngw3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxn5n2vkeyewiwob4e7e6nqiblkvvgc5qorevejhsntblvdlc2t373rrvy45p/providers/Microsoft.Storage/storageAccounts/clitest75g6r5uwkj7ker7wu","name":"clitest75g6r5uwkj7ker7wu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T06:35:53.9029562Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T06:35:53.9029562Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-03T06:35:53.8248647Z","primaryEndpoints":{"blob":"https://clitest75g6r5uwkj7ker7wu.blob.core.windows.net/","queue":"https://clitest75g6r5uwkj7ker7wu.queue.core.windows.net/","table":"https://clitest75g6r5uwkj7ker7wu.table.core.windows.net/","file":"https://clitest75g6r5uwkj7ker7wu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databox5gpbe2knrizxsitmvje3fbdl44tf6cvpfqbpvsyicxmupsbyhmlcrg4wesk/providers/Microsoft.Storage/storageAccounts/clitest7b5n3o4aahl5rafju","name":"clitest7b5n3o4aahl5rafju","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T08:27:23.1140038Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T08:27:23.1140038Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-03T08:27:23.0514944Z","primaryEndpoints":{"blob":"https://clitest7b5n3o4aahl5rafju.blob.core.windows.net/","queue":"https://clitest7b5n3o4aahl5rafju.queue.core.windows.net/","table":"https://clitest7b5n3o4aahl5rafju.table.core.windows.net/","file":"https://clitest7b5n3o4aahl5rafju.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxlekg7y4dtg2pnsaueisdkyqi5mnvmlwxto2cpu3kv7snll4uc37q2rm4wme/providers/Microsoft.Storage/storageAccounts/clitestcu3wv45lektdc3whs","name":"clitestcu3wv45lektdc3whs","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T08:35:04.7531702Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T08:35:04.7531702Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-03T08:35:04.6750427Z","primaryEndpoints":{"blob":"https://clitestcu3wv45lektdc3whs.blob.core.windows.net/","queue":"https://clitestcu3wv45lektdc3whs.queue.core.windows.net/","table":"https://clitestcu3wv45lektdc3whs.table.core.windows.net/","file":"https://clitestcu3wv45lektdc3whs.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxeg3csudujzrh2zcvbjytg6gvlkp6sjfcozveffblaqhrzhsslvpr54lg7n2/providers/Microsoft.Storage/storageAccounts/clitestgdfhjpgc2wgbrddlq","name":"clitestgdfhjpgc2wgbrddlq","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T06:28:55.9105364Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T06:28:55.9105364Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-03T06:28:55.8480330Z","primaryEndpoints":{"blob":"https://clitestgdfhjpgc2wgbrddlq.blob.core.windows.net/","queue":"https://clitestgdfhjpgc2wgbrddlq.queue.core.windows.net/","table":"https://clitestgdfhjpgc2wgbrddlq.table.core.windows.net/","file":"https://clitestgdfhjpgc2wgbrddlq.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxoe2qtcqlnxonqpub522jgmpzgeegwhowl2qo6xqgfwtqcd3jzicz5yraawi/providers/Microsoft.Storage/storageAccounts/clitestl6h6fa53d2gbmohn3","name":"clitestl6h6fa53d2gbmohn3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-06T13:59:30.5816034Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-06T13:59:30.5816034Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-06T13:59:30.5034613Z","primaryEndpoints":{"blob":"https://clitestl6h6fa53d2gbmohn3.blob.core.windows.net/","queue":"https://clitestl6h6fa53d2gbmohn3.queue.core.windows.net/","table":"https://clitestl6h6fa53d2gbmohn3.table.core.windows.net/","file":"https://clitestl6h6fa53d2gbmohn3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxfgdxtb5b3moqarfyogd7fcognbrlsihjlj3acnscrixetycujoejzzalyi3/providers/Microsoft.Storage/storageAccounts/clitestldg5uo7ika27utek4","name":"clitestldg5uo7ika27utek4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T08:59:48.7196866Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T08:59:48.7196866Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-03T08:59:48.6728325Z","primaryEndpoints":{"blob":"https://clitestldg5uo7ika27utek4.blob.core.windows.net/","queue":"https://clitestldg5uo7ika27utek4.queue.core.windows.net/","table":"https://clitestldg5uo7ika27utek4.table.core.windows.net/","file":"https://clitestldg5uo7ika27utek4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T09:04:50.7723792Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T09:04:50.7723792Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-16T09:04:50.6942097Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databox52yrfbe7molrqhwdubnr2jcijd22xsz3hgcg3btf3sza5boeklwgzzq5sfn/providers/Microsoft.Storage/storageAccounts/clitestm7nikx6sld4npo42d","name":"clitestm7nikx6sld4npo42d","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-06T14:20:54.5597796Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-06T14:20:54.5597796Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-06T14:20:54.4972558Z","primaryEndpoints":{"blob":"https://clitestm7nikx6sld4npo42d.blob.core.windows.net/","queue":"https://clitestm7nikx6sld4npo42d.queue.core.windows.net/","table":"https://clitestm7nikx6sld4npo42d.table.core.windows.net/","file":"https://clitestm7nikx6sld4npo42d.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxrg2slunrj5vx5aydveu66wkj6rh3ildamkumi4zojpcf6f4vastgfp4v3rw/providers/Microsoft.Storage/storageAccounts/clitestmap7c2xyjf3gsd7yg","name":"clitestmap7c2xyjf3gsd7yg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T09:10:56.7318732Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T09:10:56.7318732Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-03T09:10:56.6381622Z","primaryEndpoints":{"blob":"https://clitestmap7c2xyjf3gsd7yg.blob.core.windows.net/","queue":"https://clitestmap7c2xyjf3gsd7yg.queue.core.windows.net/","table":"https://clitestmap7c2xyjf3gsd7yg.table.core.windows.net/","file":"https://clitestmap7c2xyjf3gsd7yg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxu7woflo47pjem4rfw2djuvafywtfnprfpduospdfotkqkudaylsua3ybqpa/providers/Microsoft.Storage/storageAccounts/clitestnxsheqf5s5rcht46h","name":"clitestnxsheqf5s5rcht46h","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T06:40:27.7931436Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T06:40:27.7931436Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-03T06:40:27.7305929Z","primaryEndpoints":{"blob":"https://clitestnxsheqf5s5rcht46h.blob.core.windows.net/","queue":"https://clitestnxsheqf5s5rcht46h.queue.core.windows.net/","table":"https://clitestnxsheqf5s5rcht46h.table.core.windows.net/","file":"https://clitestnxsheqf5s5rcht46h.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databox52yrfbe7molrqhwdubnr2jcijd22xsz3hgcg3btf3sza5boeklwgzzq5sfn/providers/Microsoft.Storage/storageAccounts/clitestqsel4b35pkfyubvyx","name":"clitestqsel4b35pkfyubvyx","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-06T14:20:08.8041709Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-06T14:20:08.8041709Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-06T14:20:08.7417121Z","primaryEndpoints":{"blob":"https://clitestqsel4b35pkfyubvyx.blob.core.windows.net/","queue":"https://clitestqsel4b35pkfyubvyx.queue.core.windows.net/","table":"https://clitestqsel4b35pkfyubvyx.table.core.windows.net/","file":"https://clitestqsel4b35pkfyubvyx.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxam64dpcskfsb23dkj6zbvxysimh24e3upfdsdmuxbdl2j25ckz2uz5lht5y/providers/Microsoft.Storage/storageAccounts/clitesty2xsxbbcego73beie","name":"clitesty2xsxbbcego73beie","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T05:23:45.1933083Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T05:23:45.1933083Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-03T05:23:45.1308322Z","primaryEndpoints":{"blob":"https://clitesty2xsxbbcego73beie.blob.core.windows.net/","queue":"https://clitesty2xsxbbcego73beie.queue.core.windows.net/","table":"https://clitesty2xsxbbcego73beie.table.core.windows.net/","file":"https://clitesty2xsxbbcego73beie.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-core-poc/providers/Microsoft.Storage/storageAccounts/sfsafsaf","name":"sfsafsaf","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-12T10:01:37.0551963Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-12T10:01:37.0551963Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-12T10:01:36.9614761Z","primaryEndpoints":{"dfs":"https://sfsafsaf.dfs.core.windows.net/","web":"https://sfsafsaf.z22.web.core.windows.net/","blob":"https://sfsafsaf.blob.core.windows.net/","queue":"https://sfsafsaf.queue.core.windows.net/","table":"https://sfsafsaf.table.core.windows.net/","file":"https://sfsafsaf.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"identity":{"principalId":"2a730f61-76ac-426b-a91d-4b130208ba0d","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ygmanual3/providers/Microsoft.Storage/storageAccounts/ygmanual3","name":"ygmanual3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-05T18:34:38.5168098Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-05T18:34:38.5168098Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-05T18:34:38.4543411Z","primaryEndpoints":{"dfs":"https://ygmanual3.dfs.core.windows.net/","web":"https://ygmanual3.z22.web.core.windows.net/","blob":"https://ygmanual3.blob.core.windows.net/","queue":"https://ygmanual3.queue.core.windows.net/","table":"https://ygmanual3.table.core.windows.net/","file":"https://ygmanual3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ygmanual3-secondary.dfs.core.windows.net/","web":"https://ygmanual3-secondary.z22.web.core.windows.net/","blob":"https://ygmanual3-secondary.blob.core.windows.net/","queue":"https://ygmanual3-secondary.queue.core.windows.net/","table":"https://ygmanual3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu-test-rg-westus/providers/Microsoft.Storage/storageAccounts/yutestdbsawestus","name":"yutestdbsawestus","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-25T11:11:24.7554090Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-25T11:11:24.7554090Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-25T11:11:24.6772540Z","primaryEndpoints":{"dfs":"https://yutestdbsawestus.dfs.core.windows.net/","web":"https://yutestdbsawestus.z22.web.core.windows.net/","blob":"https://yutestdbsawestus.blob.core.windows.net/","queue":"https://yutestdbsawestus.queue.core.windows.net/","table":"https://yutestdbsawestus.table.core.windows.net/","file":"https://yutestdbsawestus.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yutestdbsawestus-secondary.dfs.core.windows.net/","web":"https://yutestdbsawestus-secondary.z22.web.core.windows.net/","blob":"https://yutestdbsawestus-secondary.blob.core.windows.net/","queue":"https://yutestdbsawestus-secondary.queue.core.windows.net/","table":"https://yutestdbsawestus-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu-test-rg-westus/providers/Microsoft.Storage/storageAccounts/yutestlro","name":"yutestlro","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-28T07:50:15.1386919Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-28T07:50:15.1386919Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-28T07:50:15.0762161Z","primaryEndpoints":{"blob":"https://yutestlro.blob.core.windows.net/","queue":"https://yutestlro.queue.core.windows.net/","table":"https://yutestlro.table.core.windows.net/","file":"https://yutestlro.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://yutestlro-secondary.blob.core.windows.net/","queue":"https://yutestlro-secondary.queue.core.windows.net/","table":"https://yutestlro-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/zhoxingtest2","name":"zhoxingtest2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T03:09:41.7587583Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T03:09:41.7587583Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-03T03:09:41.6962163Z","primaryEndpoints":{"dfs":"https://zhoxingtest2.dfs.core.windows.net/","web":"https://zhoxingtest2.z22.web.core.windows.net/","blob":"https://zhoxingtest2.blob.core.windows.net/","queue":"https://zhoxingtest2.queue.core.windows.net/","table":"https://zhoxingtest2.table.core.windows.net/","file":"https://zhoxingtest2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhoxingtest2-secondary.dfs.core.windows.net/","web":"https://zhoxingtest2-secondary.z22.web.core.windows.net/","blob":"https://zhoxingtest2-secondary.blob.core.windows.net/","queue":"https://zhoxingtest2-secondary.queue.core.windows.net/","table":"https://zhoxingtest2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/databricks-rg-my-standard-space-fez3hbt1bsvmr/providers/Microsoft.Storage/storageAccounts/dbstoragefez3hbt1bsvmr","name":"dbstoragefez3hbt1bsvmr","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{"application":"databricks","databricks-environment":"true"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T03:14:00.7822307Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T03:14:00.7822307Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-16T03:14:00.7197710Z","primaryEndpoints":{"dfs":"https://dbstoragefez3hbt1bsvmr.dfs.core.windows.net/","blob":"https://dbstoragefez3hbt1bsvmr.blob.core.windows.net/","table":"https://dbstoragefez3hbt1bsvmr.table.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available","secondaryLocation":"southeastasia","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengws1storage296335f3c7","name":"fengws1storage296335f3c7","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-14T14:41:02.2224956Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-14T14:41:02.2224956Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-14T14:41:02.1600089Z","primaryEndpoints":{"dfs":"https://fengws1storage296335f3c7.dfs.core.windows.net/","web":"https://fengws1storage296335f3c7.z7.web.core.windows.net/","blob":"https://fengws1storage296335f3c7.blob.core.windows.net/","queue":"https://fengws1storage296335f3c7.queue.core.windows.net/","table":"https://fengws1storage296335f3c7.table.core.windows.net/","file":"https://fengws1storage296335f3c7.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.Storage/storageAccounts/clitestu3p7a7ib4n4y7gt4m","name":"clitestu3p7a7ib4n4y7gt4m","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T01:51:53.0189478Z","primaryEndpoints":{"blob":"https://clitestu3p7a7ib4n4y7gt4m.blob.core.windows.net/","queue":"https://clitestu3p7a7ib4n4y7gt4m.queue.core.windows.net/","table":"https://clitestu3p7a7ib4n4y7gt4m.table.core.windows.net/","file":"https://clitestu3p7a7ib4n4y7gt4m.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/jlcsst","name":"jlcsst","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-02T07:15:45.8047726Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-02T07:15:45.8047726Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-02T07:15:45.7422455Z","primaryEndpoints":{"dfs":"https://jlcsst.dfs.core.windows.net/","web":"https://jlcsst.z23.web.core.windows.net/","blob":"https://jlcsst.blob.core.windows.net/","queue":"https://jlcsst.queue.core.windows.net/","table":"https://jlcsst.table.core.windows.net/","file":"https://jlcsst.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlvm2rg/providers/Microsoft.Storage/storageAccounts/jlvm2rgdiag","name":"jlvm2rgdiag","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T04:41:48.6974827Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T04:41:48.6974827Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-03T04:41:48.6505931Z","primaryEndpoints":{"blob":"https://jlvm2rgdiag.blob.core.windows.net/","queue":"https://jlvm2rgdiag.queue.core.windows.net/","table":"https://jlvm2rgdiag.table.core.windows.net/","file":"https://jlvm2rgdiag.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag","name":"qianwensdiag","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T07:17:09.1138103Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-04T07:17:09.1138103Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-04T07:17:09.0514178Z","primaryEndpoints":{"blob":"https://qianwensdiag.blob.core.windows.net/","queue":"https://qianwensdiag.queue.core.windows.net/","table":"https://qianwensdiag.table.core.windows.net/","file":"https://qianwensdiag.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.Storage/storageAccounts/yeming","name":"yeming","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-04T06:41:07.4012554Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-04T06:41:07.4012554Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-04T06:41:07.3699884Z","primaryEndpoints":{"dfs":"https://yeming.dfs.core.windows.net/","web":"https://yeming.z23.web.core.windows.net/","blob":"https://yeming.blob.core.windows.net/","queue":"https://yeming.queue.core.windows.net/","table":"https://yeming.table.core.windows.net/","file":"https://yeming.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available","secondaryLocation":"eastasia","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yeming-secondary.dfs.core.windows.net/","web":"https://yeming-secondary.z23.web.core.windows.net/","blob":"https://yeming-secondary.blob.core.windows.net/","queue":"https://yeming-secondary.queue.core.windows.net/","table":"https://yeming-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/azureclitestrgdiag748","name":"azureclitestrgdiag748","type":"Microsoft.Storage/storageAccounts","location":"japaneast","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-01T05:17:58.5405622Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-01T05:17:58.5405622Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-01T05:17:58.4936629Z","primaryEndpoints":{"blob":"https://azureclitestrgdiag748.blob.core.windows.net/","queue":"https://azureclitestrgdiag748.queue.core.windows.net/","table":"https://azureclitestrgdiag748.table.core.windows.net/","file":"https://azureclitestrgdiag748.file.core.windows.net/"},"primaryLocation":"japaneast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.Storage/storageAccounts/bimrgdiag","name":"bimrgdiag","type":"Microsoft.Storage/storageAccounts","location":"japaneast","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T15:04:32.1018377Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-12T15:04:32.1018377Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-12T15:04:32.0706109Z","primaryEndpoints":{"blob":"https://bimrgdiag.blob.core.windows.net/","queue":"https://bimrgdiag.queue.core.windows.net/","table":"https://bimrgdiag.table.core.windows.net/","file":"https://bimrgdiag.file.core.windows.net/"},"primaryLocation":"japaneast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengclirgdiag","name":"fengclirgdiag","type":"Microsoft.Storage/storageAccounts","location":"japaneast","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-01T07:10:20.0599535Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-01T07:10:20.0599535Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-01T07:10:19.9974827Z","primaryEndpoints":{"blob":"https://fengclirgdiag.blob.core.windows.net/","queue":"https://fengclirgdiag.queue.core.windows.net/","table":"https://fengclirgdiag.table.core.windows.net/","file":"https://fengclirgdiag.file.core.windows.net/"},"primaryLocation":"japaneast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/store6472qnxl3vv5o","name":"store6472qnxl3vv5o","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"project":"Digital - Platform","env":"CI"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-27T08:24:34.7235260Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-27T08:24:34.7235260Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-27T08:24:34.6453999Z","primaryEndpoints":{"blob":"https://store6472qnxl3vv5o.blob.core.windows.net/","queue":"https://store6472qnxl3vv5o.queue.core.windows.net/","table":"https://store6472qnxl3vv5o.table.core.windows.net/","file":"https://store6472qnxl3vv5o.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/extmigrate","name":"extmigrate","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T08:26:10.6796218Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-16T08:26:10.5858998Z","primaryEndpoints":{"blob":"https://extmigrate.blob.core.windows.net/","queue":"https://extmigrate.queue.core.windows.net/","table":"https://extmigrate.table.core.windows.net/","file":"https://extmigrate.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://extmigrate-secondary.blob.core.windows.net/","queue":"https://extmigrate-secondary.queue.core.windows.net/","table":"https://extmigrate-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengclitest","name":"fengclitest","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-09T05:03:17.9861949Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-09T05:03:17.9861949Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-09T05:03:17.8924377Z","primaryEndpoints":{"blob":"https://fengclitest.blob.core.windows.net/","queue":"https://fengclitest.queue.core.windows.net/","table":"https://fengclitest.table.core.windows.net/","file":"https://fengclitest.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://fengclitest-secondary.blob.core.windows.net/","queue":"https://fengclitest-secondary.queue.core.windows.net/","table":"https://fengclitest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"dfs":"https://fengsa.dfs.core.windows.net/","web":"https://fengsa.z19.web.core.windows.net/","blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengsa-secondary.dfs.core.windows.net/","web":"https://fengsa-secondary.z19.web.core.windows.net/","blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.Storage/storageAccounts/storageaccountzhoxib2a8","name":"storageaccountzhoxib2a8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-25T06:54:03.9825980Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-25T06:54:03.9825980Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-02-25T06:54:03.9044955Z","primaryEndpoints":{"blob":"https://storageaccountzhoxib2a8.blob.core.windows.net/","queue":"https://storageaccountzhoxib2a8.queue.core.windows.net/","table":"https://storageaccountzhoxib2a8.table.core.windows.net/","file":"https://storageaccountzhoxib2a8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:07:42.1277444Z","primaryEndpoints":{"dfs":"https://storagesfrepro1.dfs.core.windows.net/","web":"https://storagesfrepro1.z19.web.core.windows.net/","blob":"https://storagesfrepro1.blob.core.windows.net/","queue":"https://storagesfrepro1.queue.core.windows.net/","table":"https://storagesfrepro1.table.core.windows.net/","file":"https://storagesfrepro1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro1-secondary.dfs.core.windows.net/","web":"https://storagesfrepro1-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro1-secondary.blob.core.windows.net/","queue":"https://storagesfrepro1-secondary.queue.core.windows.net/","table":"https://storagesfrepro1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro10","name":"storagesfrepro10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:00.7815921Z","primaryEndpoints":{"dfs":"https://storagesfrepro10.dfs.core.windows.net/","web":"https://storagesfrepro10.z19.web.core.windows.net/","blob":"https://storagesfrepro10.blob.core.windows.net/","queue":"https://storagesfrepro10.queue.core.windows.net/","table":"https://storagesfrepro10.table.core.windows.net/","file":"https://storagesfrepro10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro10-secondary.dfs.core.windows.net/","web":"https://storagesfrepro10-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro10-secondary.blob.core.windows.net/","queue":"https://storagesfrepro10-secondary.queue.core.windows.net/","table":"https://storagesfrepro10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro11","name":"storagesfrepro11","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:28.8609347Z","primaryEndpoints":{"dfs":"https://storagesfrepro11.dfs.core.windows.net/","web":"https://storagesfrepro11.z19.web.core.windows.net/","blob":"https://storagesfrepro11.blob.core.windows.net/","queue":"https://storagesfrepro11.queue.core.windows.net/","table":"https://storagesfrepro11.table.core.windows.net/","file":"https://storagesfrepro11.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro11-secondary.dfs.core.windows.net/","web":"https://storagesfrepro11-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro11-secondary.blob.core.windows.net/","queue":"https://storagesfrepro11-secondary.queue.core.windows.net/","table":"https://storagesfrepro11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro12","name":"storagesfrepro12","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:15:15.5848345Z","primaryEndpoints":{"dfs":"https://storagesfrepro12.dfs.core.windows.net/","web":"https://storagesfrepro12.z19.web.core.windows.net/","blob":"https://storagesfrepro12.blob.core.windows.net/","queue":"https://storagesfrepro12.queue.core.windows.net/","table":"https://storagesfrepro12.table.core.windows.net/","file":"https://storagesfrepro12.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro12-secondary.dfs.core.windows.net/","web":"https://storagesfrepro12-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro12-secondary.blob.core.windows.net/","queue":"https://storagesfrepro12-secondary.queue.core.windows.net/","table":"https://storagesfrepro12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro13","name":"storagesfrepro13","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:16:55.6671828Z","primaryEndpoints":{"dfs":"https://storagesfrepro13.dfs.core.windows.net/","web":"https://storagesfrepro13.z19.web.core.windows.net/","blob":"https://storagesfrepro13.blob.core.windows.net/","queue":"https://storagesfrepro13.queue.core.windows.net/","table":"https://storagesfrepro13.table.core.windows.net/","file":"https://storagesfrepro13.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro13-secondary.dfs.core.windows.net/","web":"https://storagesfrepro13-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro13-secondary.blob.core.windows.net/","queue":"https://storagesfrepro13-secondary.queue.core.windows.net/","table":"https://storagesfrepro13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro14","name":"storagesfrepro14","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:17:40.6880204Z","primaryEndpoints":{"dfs":"https://storagesfrepro14.dfs.core.windows.net/","web":"https://storagesfrepro14.z19.web.core.windows.net/","blob":"https://storagesfrepro14.blob.core.windows.net/","queue":"https://storagesfrepro14.queue.core.windows.net/","table":"https://storagesfrepro14.table.core.windows.net/","file":"https://storagesfrepro14.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro14-secondary.dfs.core.windows.net/","web":"https://storagesfrepro14-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro14-secondary.blob.core.windows.net/","queue":"https://storagesfrepro14-secondary.queue.core.windows.net/","table":"https://storagesfrepro14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro15","name":"storagesfrepro15","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:18:52.0718543Z","primaryEndpoints":{"dfs":"https://storagesfrepro15.dfs.core.windows.net/","web":"https://storagesfrepro15.z19.web.core.windows.net/","blob":"https://storagesfrepro15.blob.core.windows.net/","queue":"https://storagesfrepro15.queue.core.windows.net/","table":"https://storagesfrepro15.table.core.windows.net/","file":"https://storagesfrepro15.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro15-secondary.dfs.core.windows.net/","web":"https://storagesfrepro15-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro15-secondary.blob.core.windows.net/","queue":"https://storagesfrepro15-secondary.queue.core.windows.net/","table":"https://storagesfrepro15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro16","name":"storagesfrepro16","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:19:33.0770034Z","primaryEndpoints":{"dfs":"https://storagesfrepro16.dfs.core.windows.net/","web":"https://storagesfrepro16.z19.web.core.windows.net/","blob":"https://storagesfrepro16.blob.core.windows.net/","queue":"https://storagesfrepro16.queue.core.windows.net/","table":"https://storagesfrepro16.table.core.windows.net/","file":"https://storagesfrepro16.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro16-secondary.dfs.core.windows.net/","web":"https://storagesfrepro16-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro16-secondary.blob.core.windows.net/","queue":"https://storagesfrepro16-secondary.queue.core.windows.net/","table":"https://storagesfrepro16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro17","name":"storagesfrepro17","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:23.4771469Z","primaryEndpoints":{"dfs":"https://storagesfrepro17.dfs.core.windows.net/","web":"https://storagesfrepro17.z19.web.core.windows.net/","blob":"https://storagesfrepro17.blob.core.windows.net/","queue":"https://storagesfrepro17.queue.core.windows.net/","table":"https://storagesfrepro17.table.core.windows.net/","file":"https://storagesfrepro17.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro17-secondary.dfs.core.windows.net/","web":"https://storagesfrepro17-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro17-secondary.blob.core.windows.net/","queue":"https://storagesfrepro17-secondary.queue.core.windows.net/","table":"https://storagesfrepro17-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro18","name":"storagesfrepro18","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:53.7383176Z","primaryEndpoints":{"dfs":"https://storagesfrepro18.dfs.core.windows.net/","web":"https://storagesfrepro18.z19.web.core.windows.net/","blob":"https://storagesfrepro18.blob.core.windows.net/","queue":"https://storagesfrepro18.queue.core.windows.net/","table":"https://storagesfrepro18.table.core.windows.net/","file":"https://storagesfrepro18.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro18-secondary.dfs.core.windows.net/","web":"https://storagesfrepro18-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro18-secondary.blob.core.windows.net/","queue":"https://storagesfrepro18-secondary.queue.core.windows.net/","table":"https://storagesfrepro18-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro19","name":"storagesfrepro19","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:05:26.2556326Z","primaryEndpoints":{"dfs":"https://storagesfrepro19.dfs.core.windows.net/","web":"https://storagesfrepro19.z19.web.core.windows.net/","blob":"https://storagesfrepro19.blob.core.windows.net/","queue":"https://storagesfrepro19.queue.core.windows.net/","table":"https://storagesfrepro19.table.core.windows.net/","file":"https://storagesfrepro19.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro19-secondary.dfs.core.windows.net/","web":"https://storagesfrepro19-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro19-secondary.blob.core.windows.net/","queue":"https://storagesfrepro19-secondary.queue.core.windows.net/","table":"https://storagesfrepro19-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro2","name":"storagesfrepro2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:08:45.7717196Z","primaryEndpoints":{"dfs":"https://storagesfrepro2.dfs.core.windows.net/","web":"https://storagesfrepro2.z19.web.core.windows.net/","blob":"https://storagesfrepro2.blob.core.windows.net/","queue":"https://storagesfrepro2.queue.core.windows.net/","table":"https://storagesfrepro2.table.core.windows.net/","file":"https://storagesfrepro2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro2-secondary.dfs.core.windows.net/","web":"https://storagesfrepro2-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro2-secondary.blob.core.windows.net/","queue":"https://storagesfrepro2-secondary.queue.core.windows.net/","table":"https://storagesfrepro2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro20","name":"storagesfrepro20","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:07.3358422Z","primaryEndpoints":{"dfs":"https://storagesfrepro20.dfs.core.windows.net/","web":"https://storagesfrepro20.z19.web.core.windows.net/","blob":"https://storagesfrepro20.blob.core.windows.net/","queue":"https://storagesfrepro20.queue.core.windows.net/","table":"https://storagesfrepro20.table.core.windows.net/","file":"https://storagesfrepro20.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro20-secondary.dfs.core.windows.net/","web":"https://storagesfrepro20-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro20-secondary.blob.core.windows.net/","queue":"https://storagesfrepro20-secondary.queue.core.windows.net/","table":"https://storagesfrepro20-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro21","name":"storagesfrepro21","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:37.3686460Z","primaryEndpoints":{"dfs":"https://storagesfrepro21.dfs.core.windows.net/","web":"https://storagesfrepro21.z19.web.core.windows.net/","blob":"https://storagesfrepro21.blob.core.windows.net/","queue":"https://storagesfrepro21.queue.core.windows.net/","table":"https://storagesfrepro21.table.core.windows.net/","file":"https://storagesfrepro21.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro21-secondary.dfs.core.windows.net/","web":"https://storagesfrepro21-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro21-secondary.blob.core.windows.net/","queue":"https://storagesfrepro21-secondary.queue.core.windows.net/","table":"https://storagesfrepro21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro22","name":"storagesfrepro22","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:59.7201581Z","primaryEndpoints":{"dfs":"https://storagesfrepro22.dfs.core.windows.net/","web":"https://storagesfrepro22.z19.web.core.windows.net/","blob":"https://storagesfrepro22.blob.core.windows.net/","queue":"https://storagesfrepro22.queue.core.windows.net/","table":"https://storagesfrepro22.table.core.windows.net/","file":"https://storagesfrepro22.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro22-secondary.dfs.core.windows.net/","web":"https://storagesfrepro22-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro22-secondary.blob.core.windows.net/","queue":"https://storagesfrepro22-secondary.queue.core.windows.net/","table":"https://storagesfrepro22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro23","name":"storagesfrepro23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:29.0065050Z","primaryEndpoints":{"dfs":"https://storagesfrepro23.dfs.core.windows.net/","web":"https://storagesfrepro23.z19.web.core.windows.net/","blob":"https://storagesfrepro23.blob.core.windows.net/","queue":"https://storagesfrepro23.queue.core.windows.net/","table":"https://storagesfrepro23.table.core.windows.net/","file":"https://storagesfrepro23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro23-secondary.dfs.core.windows.net/","web":"https://storagesfrepro23-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro23-secondary.blob.core.windows.net/","queue":"https://storagesfrepro23-secondary.queue.core.windows.net/","table":"https://storagesfrepro23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro24","name":"storagesfrepro24","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:53.1565651Z","primaryEndpoints":{"dfs":"https://storagesfrepro24.dfs.core.windows.net/","web":"https://storagesfrepro24.z19.web.core.windows.net/","blob":"https://storagesfrepro24.blob.core.windows.net/","queue":"https://storagesfrepro24.queue.core.windows.net/","table":"https://storagesfrepro24.table.core.windows.net/","file":"https://storagesfrepro24.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro24-secondary.dfs.core.windows.net/","web":"https://storagesfrepro24-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro24-secondary.blob.core.windows.net/","queue":"https://storagesfrepro24-secondary.queue.core.windows.net/","table":"https://storagesfrepro24-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro25","name":"storagesfrepro25","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:08:18.6338258Z","primaryEndpoints":{"dfs":"https://storagesfrepro25.dfs.core.windows.net/","web":"https://storagesfrepro25.z19.web.core.windows.net/","blob":"https://storagesfrepro25.blob.core.windows.net/","queue":"https://storagesfrepro25.queue.core.windows.net/","table":"https://storagesfrepro25.table.core.windows.net/","file":"https://storagesfrepro25.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro25-secondary.dfs.core.windows.net/","web":"https://storagesfrepro25-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro25-secondary.blob.core.windows.net/","queue":"https://storagesfrepro25-secondary.queue.core.windows.net/","table":"https://storagesfrepro25-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro3","name":"storagesfrepro3","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:19.3510997Z","primaryEndpoints":{"dfs":"https://storagesfrepro3.dfs.core.windows.net/","web":"https://storagesfrepro3.z19.web.core.windows.net/","blob":"https://storagesfrepro3.blob.core.windows.net/","queue":"https://storagesfrepro3.queue.core.windows.net/","table":"https://storagesfrepro3.table.core.windows.net/","file":"https://storagesfrepro3.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro3-secondary.dfs.core.windows.net/","web":"https://storagesfrepro3-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro3-secondary.blob.core.windows.net/","queue":"https://storagesfrepro3-secondary.queue.core.windows.net/","table":"https://storagesfrepro3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro4","name":"storagesfrepro4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:54.8993063Z","primaryEndpoints":{"dfs":"https://storagesfrepro4.dfs.core.windows.net/","web":"https://storagesfrepro4.z19.web.core.windows.net/","blob":"https://storagesfrepro4.blob.core.windows.net/","queue":"https://storagesfrepro4.queue.core.windows.net/","table":"https://storagesfrepro4.table.core.windows.net/","file":"https://storagesfrepro4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro4-secondary.dfs.core.windows.net/","web":"https://storagesfrepro4-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro4-secondary.blob.core.windows.net/","queue":"https://storagesfrepro4-secondary.queue.core.windows.net/","table":"https://storagesfrepro4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro5","name":"storagesfrepro5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:10:48.0177273Z","primaryEndpoints":{"dfs":"https://storagesfrepro5.dfs.core.windows.net/","web":"https://storagesfrepro5.z19.web.core.windows.net/","blob":"https://storagesfrepro5.blob.core.windows.net/","queue":"https://storagesfrepro5.queue.core.windows.net/","table":"https://storagesfrepro5.table.core.windows.net/","file":"https://storagesfrepro5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro5-secondary.dfs.core.windows.net/","web":"https://storagesfrepro5-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro5-secondary.blob.core.windows.net/","queue":"https://storagesfrepro5-secondary.queue.core.windows.net/","table":"https://storagesfrepro5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro6","name":"storagesfrepro6","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:11:27.9331594Z","primaryEndpoints":{"dfs":"https://storagesfrepro6.dfs.core.windows.net/","web":"https://storagesfrepro6.z19.web.core.windows.net/","blob":"https://storagesfrepro6.blob.core.windows.net/","queue":"https://storagesfrepro6.queue.core.windows.net/","table":"https://storagesfrepro6.table.core.windows.net/","file":"https://storagesfrepro6.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro6-secondary.dfs.core.windows.net/","web":"https://storagesfrepro6-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro6-secondary.blob.core.windows.net/","queue":"https://storagesfrepro6-secondary.queue.core.windows.net/","table":"https://storagesfrepro6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro7","name":"storagesfrepro7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:08.6824637Z","primaryEndpoints":{"dfs":"https://storagesfrepro7.dfs.core.windows.net/","web":"https://storagesfrepro7.z19.web.core.windows.net/","blob":"https://storagesfrepro7.blob.core.windows.net/","queue":"https://storagesfrepro7.queue.core.windows.net/","table":"https://storagesfrepro7.table.core.windows.net/","file":"https://storagesfrepro7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro7-secondary.dfs.core.windows.net/","web":"https://storagesfrepro7-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro7-secondary.blob.core.windows.net/","queue":"https://storagesfrepro7-secondary.queue.core.windows.net/","table":"https://storagesfrepro7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro8","name":"storagesfrepro8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:39.4283923Z","primaryEndpoints":{"dfs":"https://storagesfrepro8.dfs.core.windows.net/","web":"https://storagesfrepro8.z19.web.core.windows.net/","blob":"https://storagesfrepro8.blob.core.windows.net/","queue":"https://storagesfrepro8.queue.core.windows.net/","table":"https://storagesfrepro8.table.core.windows.net/","file":"https://storagesfrepro8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro8-secondary.dfs.core.windows.net/","web":"https://storagesfrepro8-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro8-secondary.blob.core.windows.net/","queue":"https://storagesfrepro8-secondary.queue.core.windows.net/","table":"https://storagesfrepro8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro9","name":"storagesfrepro9","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:13:18.0691096Z","primaryEndpoints":{"dfs":"https://storagesfrepro9.dfs.core.windows.net/","web":"https://storagesfrepro9.z19.web.core.windows.net/","blob":"https://storagesfrepro9.blob.core.windows.net/","queue":"https://storagesfrepro9.queue.core.windows.net/","table":"https://storagesfrepro9.table.core.windows.net/","file":"https://storagesfrepro9.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro9-secondary.dfs.core.windows.net/","web":"https://storagesfrepro9-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro9-secondary.blob.core.windows.net/","queue":"https://storagesfrepro9-secondary.queue.core.windows.net/","table":"https://storagesfrepro9-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuhcentral/providers/Microsoft.Storage/storageAccounts/zuhstorage","name":"zuhstorage","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"ServiceName":"TAGVALUE"},"properties":{"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuhcentral/providers/Microsoft.Storage/storageAccounts/zuhstorage/privateEndpointConnections/zuhstorage.5ae41b56-a372-4111-b6d8-9ce4364fd8f4","name":"zuhstorage.5ae41b56-a372-4111-b6d8-9ce4364fd8f4","type":"Microsoft.Storage/storageAccounts/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuhcentral/providers/Microsoft.Network/privateEndpoints/zuhPE"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"","actionRequired":"None"}}}],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-02T06:04:55.7104787Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-02T06:04:55.7104787Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-02T06:04:55.6167450Z","primaryEndpoints":{"dfs":"https://zuhstorage.dfs.core.windows.net/","web":"https://zuhstorage.z19.web.core.windows.net/","blob":"https://zuhstorage.blob.core.windows.net/","queue":"https://zuhstorage.queue.core.windows.net/","table":"https://zuhstorage.table.core.windows.net/","file":"https://zuhstorage.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhstorage-secondary.dfs.core.windows.net/","web":"https://zuhstorage-secondary.z19.web.core.windows.net/","blob":"https://zuhstorage-secondary.blob.core.windows.net/","queue":"https://zuhstorage-secondary.queue.core.windows.net/","table":"https://zuhstorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengwsstorage28dfde17cb1","name":"fengwsstorage28dfde17cb1","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-07T04:11:42.2482670Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-07T04:11:42.2482670Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-07T04:11:42.1857797Z","primaryEndpoints":{"dfs":"https://fengwsstorage28dfde17cb1.dfs.core.windows.net/","web":"https://fengwsstorage28dfde17cb1.z5.web.core.windows.net/","blob":"https://fengwsstorage28dfde17cb1.blob.core.windows.net/","queue":"https://fengwsstorage28dfde17cb1.queue.core.windows.net/","table":"https://fengwsstorage28dfde17cb1.table.core.windows.net/","file":"https://fengwsstorage28dfde17cb1.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.Storage/storageAccounts/bimstorageacc","name":"bimstorageacc","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T07:20:55.2327590Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-03T07:20:55.2327590Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-03T07:20:55.1858389Z","primaryEndpoints":{"dfs":"https://bimstorageacc.dfs.core.windows.net/","web":"https://bimstorageacc.z4.web.core.windows.net/","blob":"https://bimstorageacc.blob.core.windows.net/","queue":"https://bimstorageacc.queue.core.windows.net/","table":"https://bimstorageacc.table.core.windows.net/","file":"https://bimstorageacc.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available","secondaryLocation":"westus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://bimstorageacc-secondary.dfs.core.windows.net/","web":"https://bimstorageacc-secondary.z4.web.core.windows.net/","blob":"https://bimstorageacc-secondary.blob.core.windows.net/","queue":"https://bimstorageacc-secondary.queue.core.windows.net/","table":"https://bimstorageacc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu-test-rg-westus/providers/Microsoft.Storage/storageAccounts/sfsfsfsssf","name":"sfsfsfsssf","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-05T07:16:53.7141799Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-05T07:16:53.7141799Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-05T07:16:53.6829148Z","primaryEndpoints":{"blob":"https://sfsfsfsssf.blob.core.windows.net/","queue":"https://sfsfsfsssf.queue.core.windows.net/","table":"https://sfsfsfsssf.table.core.windows.net/","file":"https://sfsfsfsssf.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu-test-rg-westus/providers/Microsoft.Storage/storageAccounts/stststeset","name":"stststeset","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-05T07:13:11.0482184Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-05T07:13:11.0482184Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-05T07:13:10.9856962Z","primaryEndpoints":{"dfs":"https://stststeset.dfs.core.windows.net/","web":"https://stststeset.z4.web.core.windows.net/","blob":"https://stststeset.blob.core.windows.net/","queue":"https://stststeset.queue.core.windows.net/","table":"https://stststeset.table.core.windows.net/","file":"https://stststeset.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu-test-rg-westus/providers/Microsoft.Storage/storageAccounts/yusawcu","name":"yusawcu","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-26T09:39:00.0292799Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-02-26T09:39:00.0292799Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-02-26T09:38:59.9667703Z","primaryEndpoints":{"dfs":"https://yusawcu.dfs.core.windows.net/","web":"https://yusawcu.z4.web.core.windows.net/","blob":"https://yusawcu.blob.core.windows.net/","queue":"https://yusawcu.queue.core.windows.net/","table":"https://yusawcu.table.core.windows.net/","file":"https://yusawcu.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available","secondaryLocation":"westus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yusawcu-secondary.dfs.core.windows.net/","web":"https://yusawcu-secondary.z4.web.core.windows.net/","blob":"https://yusawcu-secondary.blob.core.windows.net/","queue":"https://yusawcu-secondary.queue.core.windows.net/","table":"https://yusawcu-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhlrs","name":"zuhlrs","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T06:53:42.9009365Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-16T06:53:42.9009365Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-03-16T06:53:42.8540310Z","primaryEndpoints":{"dfs":"https://zuhlrs.dfs.core.windows.net/","web":"https://zuhlrs.z3.web.core.windows.net/","blob":"https://zuhlrs.blob.core.windows.net/","queue":"https://zuhlrs.queue.core.windows.net/","table":"https://zuhlrs.table.core.windows.net/","file":"https://zuhlrs.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '111415' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:05:30 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - 6f32caef-3076-429f-80a4-1f5bdadd7131 - - 1ab42908-e666-4e67-88b9-486eb923df00 - - 44ab966d-01b1-4786-99a1-7d3deded1f21 - - e8a27afd-1abe-4552-8ae1-fb05b1f07bb3 - - c157442e-f87f-4cc9-a80a-ecb7b2a97337 - - c19493a0-c005-4c87-bd82-1c9c4208e7d8 - - 71790948-b7c2-4354-8d9f-2b4fef558456 - - 993ba224-37af-4cb9-ac55-74e8e25b0f16 - - 0778f5b4-0099-4174-873a-938b91187a68 - - 3ca46d1a-8b13-468c-8a5c-253b914d2316 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account keys list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --account-name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-storage/8.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-06-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Mon, 16 Mar 2020 09:05:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.2; Windows 10) AZURECLI/2.2.0 - x-ms-date: - - Mon, 16 Mar 2020 09:05:31 GMT - x-ms-version: - - '2018-11-09' - method: PUT - uri: https://clitest000002.blob.core.windows.net/blob?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Mon, 16 Mar 2020 09:05:33 GMT - etag: - - '"0x8D7C9892FAA0968"' - last-modified: - - Mon, 16 Mar 2020 09:05:34 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2018-11-09' - status: - code: 201 - message: Created -- request: - body: 'b''{"properties": {"serialization": {"type": "Csv", "properties": {"fieldDelimiter": - ",", "encoding": "UTF8"}}, "type": "Stream", "datasource": {"type": "Microsoft.Storage/Blob", - "properties": {"storageAccounts": [{"accountName": "clitest000002", "accountKey": - "veryFakedStorageAccountKey=="}], "container": "blob", "pathPattern": "{date}/{time}", - "dateFormat": "yyyy/MM/dd", "timeFormat": "HH", "sourcePartitionCount": 1}}}}''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics input create - Connection: - - keep-alive - Content-Length: - - '493' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --resource-group --job-name --name --type --datasource --serialization - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/inputs/input?api-version=2016-03-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/inputs/input","name":"input","type":"Microsoft.StreamAnalytics/streamingjobs/inputs","properties":{"type":"Stream","datasource":{"type":"Microsoft.Storage/Blob","properties":{"sourcePartitionCount":1,"storageAccounts":[{"accountName":"clitest000002"}],"container":"blob","pathPattern":"{date}/{time}","dateFormat":"yyyy/MM/dd","timeFormat":"HH","authenticationMode":"ConnectionString"}},"compression":{"type":"None"},"serialization":{"type":"Csv","properties":{"fieldDelimiter":",","encoding":"UTF8"}}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '723' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:05:34 GMT - etag: - - 2403781e-57c3-420c-956e-04de5d0e3791 - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics input list - Connection: - - keep-alive - ParameterSetName: - - --resource-group --job-name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/inputs?api-version=2016-03-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/inputs/input","name":"input","type":"Microsoft.StreamAnalytics/streamingjobs/inputs","properties":{"type":"Stream","datasource":{"type":"Microsoft.Storage/Blob","properties":{"sourcePartitionCount":1,"storageAccounts":[{"accountName":"clitest000002"}],"container":"blob","pathPattern":"{date}/{time}","dateFormat":"yyyy/MM/dd","timeFormat":"HH","authenticationMode":"ConnectionString"}},"compression":{"type":"None"},"serialization":{"type":"Csv","properties":{"fieldDelimiter":",","encoding":"UTF8"}},"etag":"2403781e-57c3-420c-956e-04de5d0e3791"}}],"nextLink":null}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '797' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:05:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics input show - Connection: - - keep-alive - ParameterSetName: - - --resource-group --job-name --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/inputs/input?api-version=2016-03-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/inputs/input","name":"input","type":"Microsoft.StreamAnalytics/streamingjobs/inputs","properties":{"type":"Stream","datasource":{"type":"Microsoft.Storage/Blob","properties":{"sourcePartitionCount":1,"storageAccounts":[{"accountName":"clitest000002"}],"container":"blob","pathPattern":"{date}/{time}","dateFormat":"yyyy/MM/dd","timeFormat":"HH","authenticationMode":"ConnectionString"}},"compression":{"type":"None"},"serialization":{"type":"Csv","properties":{"fieldDelimiter":",","encoding":"UTF8"}}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '723' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:05:38 GMT - etag: - - 2403781e-57c3-420c-956e-04de5d0e3791 - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics input test - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --resource-group --job-name --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/inputs/input/test?api-version=2016-03-01 - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - content-length: - - '0' - content-type: - - application/json - date: - - Mon, 16 Mar 2020 09:05:40 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/inputs/input/OperationResults/7459ec8a-b898-492d-8fd2-f94d04175ec7?api-version=2016-03-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics input test - Connection: - - keep-alive - ParameterSetName: - - --resource-group --job-name --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/inputs/input/OperationResults/7459ec8a-b898-492d-8fd2-f94d04175ec7?api-version=2016-03-01 - response: - body: - string: '{"status":"TestSucceeded","error":null}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '39' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:05:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: 'b''{"properties": {"datasource": {"type": "Microsoft.Storage/Blob", "properties": - {"storageAccounts": [{"accountName": "clitest000002", "accountKey": "veryFakedStorageAccountKey=="}], - "container": "blob", "pathPattern": "/output/{date}/{time}", "dateFormat": "yyyy/MM/dd", - "timeFormat": "HH"}}, "serialization": {"type": "Json", "properties": {"encoding": - "UTF8", "format": "LineSeparated"}}}}''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics output create - Connection: - - keep-alive - Content-Length: - - '461' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --resource-group --job-name --name --datasource --serialization - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/outputs/output?api-version=2016-03-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/outputs/output","name":"output","type":"Microsoft.StreamAnalytics/streamingjobs/outputs","properties":{"datasource":{"type":"Microsoft.Storage/Blob","properties":{"blobPathPrefix":"/output/{date}/{time}","storageAccounts":[{"accountName":"clitest000002"}],"container":"blob","pathPattern":"/output/{date}/{time}","dateFormat":"yyyy/MM/dd","timeFormat":"HH","authenticationMode":"ConnectionString"}},"serialization":{"type":"Json","properties":{"encoding":"UTF8","format":"LineSeparated"}}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '710' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:05:54 GMT - etag: - - 7bf2e372-d6e0-44fb-8d85-7833d555edb6 - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics output list - Connection: - - keep-alive - ParameterSetName: - - --resource-group --job-name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/outputs?api-version=2016-03-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/outputs/output","name":"output","type":"Microsoft.StreamAnalytics/streamingjobs/outputs","properties":{"datasource":{"type":"Microsoft.Storage/Blob","properties":{"blobPathPrefix":"/output/{date}/{time}","storageAccounts":[{"accountName":"clitest000002"}],"container":"blob","pathPattern":"/output/{date}/{time}","dateFormat":"yyyy/MM/dd","timeFormat":"HH","authenticationMode":"ConnectionString"}},"serialization":{"type":"Json","properties":{"encoding":"UTF8","format":"LineSeparated"}},"etag":"7bf2e372-d6e0-44fb-8d85-7833d555edb6"}}],"nextLink":null}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '784' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:05:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics output show - Connection: - - keep-alive - ParameterSetName: - - --resource-group --job-name --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/outputs/output?api-version=2016-03-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/outputs/output","name":"output","type":"Microsoft.StreamAnalytics/streamingjobs/outputs","properties":{"datasource":{"type":"Microsoft.Storage/Blob","properties":{"blobPathPrefix":"/output/{date}/{time}","storageAccounts":[{"accountName":"clitest000002"}],"container":"blob","pathPattern":"/output/{date}/{time}","dateFormat":"yyyy/MM/dd","timeFormat":"HH","authenticationMode":"ConnectionString"}},"serialization":{"type":"Json","properties":{"encoding":"UTF8","format":"LineSeparated"}}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '710' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:05:56 GMT - etag: - - 7bf2e372-d6e0-44fb-8d85-7833d555edb6 - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics output test - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --resource-group --job-name --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/outputs/output/test?api-version=2016-03-01 - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - content-length: - - '0' - content-type: - - application/json - date: - - Mon, 16 Mar 2020 09:05:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/outputs/output/OperationResults/c26ea86e-497e-49d0-809e-882182c46f83?api-version=2016-03-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics output test - Connection: - - keep-alive - ParameterSetName: - - --resource-group --job-name --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/outputs/output/OperationResults/c26ea86e-497e-49d0-809e-882182c46f83?api-version=2016-03-01 - response: - body: - string: '{"status":"TestSucceeded","error":null}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '39' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:06:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"outputStartMode": "JobStartTime"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics job start - Connection: - - keep-alive - Content-Length: - - '35' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --resource-group --name --output-start-mode - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/start?api-version=2016-03-01 - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - content-length: - - '0' - content-type: - - application/json - date: - - Mon, 16 Mar 2020 09:06:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/OperationResults/00e40139-cd3c-4a7e-bdb5-17f1e46af7f1?api-version=2016-03-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics job start - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --output-start-mode - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/OperationResults/00e40139-cd3c-4a7e-bdb5-17f1e46af7f1?api-version=2016-03-01 - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - content-length: - - '0' - content-type: - - application/json - date: - - Mon, 16 Mar 2020 09:06:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/OperationResults/00e40139-cd3c-4a7e-bdb5-17f1e46af7f1?api-version=2016-03-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics job start - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --output-start-mode - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/OperationResults/00e40139-cd3c-4a7e-bdb5-17f1e46af7f1?api-version=2016-03-01 - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - content-length: - - '0' - content-type: - - application/json - date: - - Mon, 16 Mar 2020 09:06:32 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/OperationResults/00e40139-cd3c-4a7e-bdb5-17f1e46af7f1?api-version=2016-03-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics job start - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --output-start-mode - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/OperationResults/00e40139-cd3c-4a7e-bdb5-17f1e46af7f1?api-version=2016-03-01 - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - content-length: - - '0' - content-type: - - application/json - date: - - Mon, 16 Mar 2020 09:06:42 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/OperationResults/00e40139-cd3c-4a7e-bdb5-17f1e46af7f1?api-version=2016-03-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics job start - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --output-start-mode - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/OperationResults/00e40139-cd3c-4a7e-bdb5-17f1e46af7f1?api-version=2016-03-01 - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - content-length: - - '0' - content-type: - - application/json - date: - - Mon, 16 Mar 2020 09:06:52 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/OperationResults/00e40139-cd3c-4a7e-bdb5-17f1e46af7f1?api-version=2016-03-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics job start - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --output-start-mode - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/OperationResults/00e40139-cd3c-4a7e-bdb5-17f1e46af7f1?api-version=2016-03-01 - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - content-length: - - '0' - content-type: - - application/json - date: - - Mon, 16 Mar 2020 09:07:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/OperationResults/00e40139-cd3c-4a7e-bdb5-17f1e46af7f1?api-version=2016-03-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics job start - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --output-start-mode - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/OperationResults/00e40139-cd3c-4a7e-bdb5-17f1e46af7f1?api-version=2016-03-01 - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - content-length: - - '0' - content-type: - - application/json - date: - - Mon, 16 Mar 2020 09:07:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics job stop - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --resource-group --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/stop?api-version=2016-03-01 - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - content-length: - - '0' - content-type: - - application/json - date: - - Mon, 16 Mar 2020 09:07:16 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/OperationResults/98fe531c-17a8-4e85-9117-36d81db46acf?api-version=2016-03-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics job stop - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/OperationResults/98fe531c-17a8-4e85-9117-36d81db46acf?api-version=2016-03-01 - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - content-length: - - '0' - content-type: - - application/json - date: - - Mon, 16 Mar 2020 09:07:27 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/OperationResults/98fe531c-17a8-4e85-9117-36d81db46acf?api-version=2016-03-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics job stop - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/OperationResults/98fe531c-17a8-4e85-9117-36d81db46acf?api-version=2016-03-01 - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - content-length: - - '0' - content-type: - - application/json - date: - - Mon, 16 Mar 2020 09:07:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/OperationResults/98fe531c-17a8-4e85-9117-36d81db46acf?api-version=2016-03-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics job stop - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/OperationResults/98fe531c-17a8-4e85-9117-36d81db46acf?api-version=2016-03-01 - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - content-length: - - '0' - content-type: - - application/json - date: - - Mon, 16 Mar 2020 09:07:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"type": "Scalar", "properties": {"inputs": [{"dataType": - "Any"}], "output": {"dataType": "Any"}, "binding": {"type": "Microsoft.StreamAnalytics/JavascriptUdf", - "properties": {"script": "function (x, y) { return x + y; }"}}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics function create - Connection: - - keep-alive - Content-Length: - - '241' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --resource-group --job-name --name --inputs --function-output --binding - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/functions/function?api-version=2016-03-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/functions/function","name":"function","type":"Microsoft.StreamAnalytics/streamingjobs/functions","properties":{"type":"Scalar","properties":{"inputs":[{"dataType":"Any","isConfigurationParameter":null}],"output":{"dataType":"Any"},"binding":{"type":"Microsoft.StreamAnalytics/JavascriptUdf","properties":{"script":"function - (x, y) { return x + y; }"}}}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '563' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:07:50 GMT - etag: - - 9eade8c1-2a7e-45d3-8e4b-de968f273e06 - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics function list - Connection: - - keep-alive - ParameterSetName: - - --resource-group --job-name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/functions?api-version=2016-03-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/functions/function","name":"function","type":"Microsoft.StreamAnalytics/streamingjobs/functions","properties":{"type":"Scalar","properties":{"inputs":[{"dataType":"Any","isConfigurationParameter":null}],"output":{"dataType":"Any"},"binding":{"type":"Microsoft.StreamAnalytics/JavascriptUdf","properties":{"script":"function - (x, y) { return x + y; }"}}},"etag":"9eade8c1-2a7e-45d3-8e4b-de968f273e06"}}],"nextLink":null}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '637' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:07:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics function show - Connection: - - keep-alive - ParameterSetName: - - --resource-group --job-name --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/functions/function?api-version=2016-03-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/functions/function","name":"function","type":"Microsoft.StreamAnalytics/streamingjobs/functions","properties":{"type":"Scalar","properties":{"inputs":[{"dataType":"Any","isConfigurationParameter":null}],"output":{"dataType":"Any"},"binding":{"type":"Microsoft.StreamAnalytics/JavascriptUdf","properties":{"script":"function - (x, y) { return x + y; }"}}}}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '563' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:07:53 GMT - etag: - - 9eade8c1-2a7e-45d3-8e4b-de968f273e06 - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics function test - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --resource-group --job-name --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/functions/function/test?api-version=2016-03-01 - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - content-length: - - '0' - content-type: - - application/json - date: - - Mon, 16 Mar 2020 09:07:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/functions/function/OperationResults/af32af10-08f3-4dc0-b6b7-5ab085a3d4df?api-version=2016-03-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics function test - Connection: - - keep-alive - ParameterSetName: - - --resource-group --job-name --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/functions/function/OperationResults/af32af10-08f3-4dc0-b6b7-5ab085a3d4df?api-version=2016-03-01 - response: - body: - string: '{"status":"TestFailed","error":{"code":"BadRequest","message":"Test - operation is not supported for function type: Microsoft.StreamAnalytics/JavascriptUdf","details":null}}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '171' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:08:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics function delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --resource-group --job-name --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/functions/function?api-version=2016-03-01 - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - content-length: - - '0' - content-type: - - application/json - date: - - Mon, 16 Mar 2020 09:08:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics output delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --resource-group --job-name --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/outputs/output?api-version=2016-03-01 - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - content-length: - - '0' - content-type: - - application/json - date: - - Mon, 16 Mar 2020 09:08:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics input delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --resource-group --job-name --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job/inputs/input?api-version=2016-03-01 - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - content-length: - - '0' - content-type: - - application/json - date: - - Mon, 16 Mar 2020 09:08:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics job delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --resource-group --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics000001/providers/Microsoft.StreamAnalytics/streamingjobs/test_job?api-version=2016-03-01 - response: - body: - string: '' - headers: - cache-control: - - no-store, no-cache - content-length: - - '0' - content-type: - - application/json - date: - - Mon, 16 Mar 2020 09:08:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics job delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-06-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia","name":"eastasia","displayName":"East - Asia","longitude":"114.188","latitude":"22.267"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia","name":"southeastasia","displayName":"Southeast - Asia","longitude":"103.833","latitude":"1.283"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus","name":"centralus","displayName":"Central - US","longitude":"-93.6208","latitude":"41.5908"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus","name":"eastus","displayName":"East - US","longitude":"-79.8164","latitude":"37.3719"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2","name":"eastus2","displayName":"East - US 2","longitude":"-78.3889","latitude":"36.6681"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus","name":"westus","displayName":"West - US","longitude":"-122.417","latitude":"37.783"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus","name":"northcentralus","displayName":"North - Central US","longitude":"-87.6278","latitude":"41.8819"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus","name":"southcentralus","displayName":"South - Central US","longitude":"-98.5","latitude":"29.4167"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope","name":"northeurope","displayName":"North - Europe","longitude":"-6.2597","latitude":"53.3478"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope","name":"westeurope","displayName":"West - Europe","longitude":"4.9","latitude":"52.3667"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest","name":"japanwest","displayName":"Japan - West","longitude":"135.5022","latitude":"34.6939"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast","name":"japaneast","displayName":"Japan - East","longitude":"139.77","latitude":"35.68"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth","name":"brazilsouth","displayName":"Brazil - South","longitude":"-46.633","latitude":"-23.55"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast","name":"australiaeast","displayName":"Australia - East","longitude":"151.2094","latitude":"-33.86"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast","name":"australiasoutheast","displayName":"Australia - Southeast","longitude":"144.9631","latitude":"-37.8136"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia","name":"southindia","displayName":"South - India","longitude":"80.1636","latitude":"12.9822"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia","name":"centralindia","displayName":"Central - India","longitude":"73.9197","latitude":"18.5822"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westindia","name":"westindia","displayName":"West - India","longitude":"72.868","latitude":"19.088"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral","name":"canadacentral","displayName":"Canada - Central","longitude":"-79.383","latitude":"43.653"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast","name":"canadaeast","displayName":"Canada - East","longitude":"-71.217","latitude":"46.817"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth","name":"uksouth","displayName":"UK - South","longitude":"-0.799","latitude":"50.941"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest","name":"ukwest","displayName":"UK - West","longitude":"-3.084","latitude":"53.427"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus","name":"westcentralus","displayName":"West - Central US","longitude":"-110.234","latitude":"40.890"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2","name":"westus2","displayName":"West - US 2","longitude":"-119.852","latitude":"47.233"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral","name":"koreacentral","displayName":"Korea - Central","longitude":"126.9780","latitude":"37.5665"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth","name":"koreasouth","displayName":"Korea - South","longitude":"129.0756","latitude":"35.1796"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral","name":"francecentral","displayName":"France - Central","longitude":"2.3730","latitude":"46.3772"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth","name":"francesouth","displayName":"France - South","longitude":"2.1972","latitude":"43.8345"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral","name":"australiacentral","displayName":"Australia - Central","longitude":"149.1244","latitude":"-35.3075"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2","name":"australiacentral2","displayName":"Australia - Central 2","longitude":"149.1244","latitude":"-35.3075"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral","name":"uaecentral","displayName":"UAE - Central","longitude":"54.366669","latitude":"24.466667"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth","name":"uaenorth","displayName":"UAE - North","longitude":"55.316666","latitude":"25.266666"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth","name":"southafricanorth","displayName":"South - Africa North","longitude":"28.218370","latitude":"-25.731340"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest","name":"southafricawest","displayName":"South - Africa West","longitude":"18.843266","latitude":"-34.075691"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth","name":"switzerlandnorth","displayName":"Switzerland - North","longitude":"8.564572","latitude":"47.451542"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest","name":"switzerlandwest","displayName":"Switzerland - West","longitude":"6.143158","latitude":"46.204391"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth","name":"germanynorth","displayName":"Germany - North","longitude":"8.806422","latitude":"53.073635"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral","name":"germanywestcentral","displayName":"Germany - West Central","longitude":"8.682127","latitude":"50.110924"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest","name":"norwaywest","displayName":"Norway - West","longitude":"5.733107","latitude":"58.969975"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast","name":"norwayeast","displayName":"Norway - East","longitude":"10.752245","latitude":"59.913868"}]}' - headers: - cache-control: - - no-cache - content-length: - - '7129' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:08:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - stream-analytics quota show - Connection: - - keep-alive - ParameterSetName: - - --location - User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-streamanalytics/1.0.0 Azure-SDK-For-Python AZURECLI/2.2.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StreamAnalytics/locations/westus/quotas?api-version=2016-03-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StreamAnalytics/locations/westus/quotas/StreamingUnits","name":"StreamingUnits","type":"Microsoft.StreamAnalytics/quotas","properties":{"maxCount":500,"currentCount":0}}]}' - headers: - cache-control: - - no-store, no-cache - content-length: - - '260' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 16 Mar 2020 09:08:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnetmvc-version: - - '5.0' - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -version: 1 diff --git a/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_subscription_inspect.yaml b/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_subscription_inspect.yaml new file mode 100644 index 00000000000..370d85c4ed7 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_subscription_inspect.yaml @@ -0,0 +1,52 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics subscription inspect + Connection: + - keep-alive + ParameterSetName: + - -l + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StreamAnalytics/locations/westus/quotas?api-version=2020-03-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StreamAnalytics/locations/westus/quotas/StreamingUnits","name":"StreamingUnits","type":"Microsoft.StreamAnalytics/quotas","properties":{"maxCount":500,"currentCount":0}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.StreamAnalytics/locations/westus/quotas/StreamingClusters","name":"StreamingClusters","type":"Microsoft.StreamAnalytics/quotas","properties":{"maxCount":5,"currentCount":0}}]}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '513' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_transformation_crud.yaml b/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_transformation_crud.yaml new file mode 100644 index 00000000000..bb0a10a85a5 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/tests/latest/recordings/test_transformation_crud.yaml @@ -0,0 +1,280 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job create + Connection: + - keep-alive + ParameterSetName: + - -n -g --data-locale --output-error-policy --out-of-order-policy --order-max-delay + --arrival-max-delay + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001","name":"cli_test_stream_analytics_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-24T08:06:10Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"sku": {"name": "Standard"}, "eventsOutOfOrderPolicy": + "Drop", "outputErrorPolicy": "Drop", "eventsOutOfOrderMaxDelayInSeconds": 0, + "eventsLateArrivalMaxDelayInSeconds": 5, "dataLocale": "en-US"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics job create + Connection: + - keep-alive + Content-Length: + - '234' + Content-Type: + - application/json + ParameterSetName: + - -n -g --data-locale --output-error-policy --out-of-order-policy --order-max-delay + --arrival-max-delay + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job","name":"job","type":"Microsoft.StreamAnalytics/streamingjobs","location":"West + US","properties":{"sku":{"name":"Standard"},"jobId":"bf8edc20-f43d-45a3-8070-39b4f4bbdee8","provisioningState":"Succeeded","jobState":"Created","eventsOutOfOrderPolicy":"Drop","outputErrorPolicy":"Drop","eventsOutOfOrderMaxDelayInSeconds":0,"eventsLateArrivalMaxDelayInSeconds":5,"dataLocale":"en-US","createdDate":"2021-11-24T08:06:19.923Z","compatibilityLevel":"1.0","package":null,"jobStorageAccount":null,"contentStoragePolicy":"SystemAccount","inputs":[],"functions":[],"outputs":[],"jobType":"Cloud","subnetResourceId":null,"cluster":null}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '830' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:20 GMT + etag: + - 9fdbae44-87ac-408b-b50a-bad068a05b26 + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"streamingUnits": 6, "query": "SELECT * INTO output FROM + input"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics transformation create + Connection: + - keep-alive + Content-Length: + - '81' + Content-Type: + - application/json + ParameterSetName: + - -n -g --job-name --saql --streaming-units + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/transformations/transformation?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/transformations/transformation","name":"transformation","type":"Microsoft.StreamAnalytics/streamingjobs/transformations","properties":{"streamingUnits":6,"query":"SELECT + * INTO output FROM input"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '401' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:22 GMT + etag: + - 7c430000-c392-4cbd-9a73-6c179a94cd99 + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"streamingUnits": 3, "query": "SELECT * INTO output FROM + input"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics transformation update + Connection: + - keep-alive + Content-Length: + - '81' + Content-Type: + - application/json + ParameterSetName: + - -n -g --job-name --saql --streaming-units + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/transformations/transformation?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/transformations/transformation","name":"transformation","type":"Microsoft.StreamAnalytics/streamingjobs/transformations","properties":{"streamingUnits":3,"query":"SELECT + * INTO output FROM input"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '401' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:24 GMT + etag: + - 25c47eda-409b-4fde-a14a-9839ed180bde + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - stream-analytics transformation show + Connection: + - keep-alive + ParameterSetName: + - -n -g --job-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-streamanalytics/1.0.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/transformations/transformation?api-version=2020-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_stream_analytics_000001/providers/Microsoft.StreamAnalytics/streamingjobs/job/transformations/transformation","name":"transformation","type":"Microsoft.StreamAnalytics/streamingjobs/transformations","properties":{"streamingUnits":3,"query":"SELECT + * INTO output FROM input"}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '401' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Nov 2021 08:06:25 GMT + etag: + - 25c47eda-409b-4fde-a14a-9839ed180bde + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnetmvc-version: + - '5.0' + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/stream-analytics/azext_stream_analytics/tests/latest/test_stream_analytics_commands.py b/src/stream-analytics/azext_stream_analytics/tests/latest/test_stream_analytics_commands.py new file mode 100644 index 00000000000..c6d335a9e80 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/tests/latest/test_stream_analytics_commands.py @@ -0,0 +1,460 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +# pylint: disable=line-too-long +# pylint: disable=too-many-lines + +import json + +from azure.cli.testsdk import ( + ResourceGroupPreparer, + ScenarioTest, + StorageAccountPreparer +) +from azure.cli.testsdk.scenario_tests import AllowLargeResponse + + +class StreamAnalyticsClientTest(ScenarioTest): + @ResourceGroupPreparer(name_prefix="cli_test_stream_analytics_", location="westus") + def test_job_crud(self): + self.kwargs.update({ + "job_name": "job", + "locale": "en-US" + }) + # create a streaming job + self.cmd( + "stream-analytics job create -n {job_name} -g {rg} \ + --data-locale {locale} \ + --output-error-policy Drop --out-of-order-policy Drop \ + --order-max-delay 0 --arrival-max-delay 5", + checks=[ + self.check("name", "{job_name}"), + self.check("type", "Microsoft.StreamAnalytics/streamingjobs") + ] + ) + # retrieve/update a streaming job + self.cmd( + "stream-analytics job list -g {rg}", + checks=[ + self.check("length(@)", 1), + self.check("@[0].name", "{job_name}") + ] + ) + self.cmd( + "stream-analytics job update -n {job_name} -g {rg} \ + --order-max-delay 10 --arrival-max-delay 29" + ) + self.cmd( + "stream-analytics job show -n {job_name} -g {rg}", + checks=[ + self.check("eventsOutOfOrderMaxDelayInSeconds", 10), + self.check("eventsLateArrivalMaxDelayInSeconds", 29) + ] + ) + # delete a streaming job + self.cmd("stream-analytics job delete -n {job_name} -g {rg} --yes") + + @ResourceGroupPreparer(name_prefix="cli_test_stream_analytics_", location="westus") + def test_transformation_crud(self): + self.kwargs.update({ + "job_name": "job", + "transformation_name": "transformation", + "input_name": "input", + "output_name": "output", + "locale": "en-US" + }) + # create a streaming job + self.cmd( + "stream-analytics job create -n {job_name} -g {rg} \ + --data-locale {locale} \ + --output-error-policy Drop --out-of-order-policy Drop \ + --order-max-delay 0 --arrival-max-delay 5" + ) + # create a transformation + self.kwargs["saql"] = f"SELECT * INTO {self.kwargs['output_name']} FROM {self.kwargs['input_name']}" + self.cmd( + "stream-analytics transformation create -n {transformation_name} -g {rg} \ + --job-name {job_name} \ + --saql '{saql}' --streaming-units 6", + checks=[ + self.check("name", "{transformation_name}"), + self.check("type", "Microsoft.StreamAnalytics/streamingjobs/transformations") + ] + ) + # retrieve/update a transformation + self.cmd( + "stream-analytics transformation update -n {transformation_name} -g {rg} \ + --job-name {job_name} --saql '{saql}' --streaming-units 3" + ) + self.cmd( + "stream-analytics transformation show -n {transformation_name} -g {rg} --job-name {job_name}", + checks=[ + self.check("name", "{transformation_name}"), + self.check("streamingUnits", 3) + ] + ) + + @AllowLargeResponse() + @ResourceGroupPreparer(name_prefix="cli_test_stream_analytics_", location="westus") + @StorageAccountPreparer(parameter_name="storage_account") + def test_input_crud(self, storage_account): + self.kwargs.update({ + "job_name": "job", + "input_name": "input", + "locale": "en-US", + "account": storage_account, + "container": "container" + }) + # create a streaming job + self.cmd( + "stream-analytics job create -n {job_name} -g {rg} \ + --data-locale {locale} \ + --output-error-policy Drop --out-of-order-policy Drop \ + --order-max-delay 0 --arrival-max-delay 5" + ) + # prepare storage account + self.kwargs["key"] = self.cmd( + "storage account keys list --account-name {account}" + ).get_output_in_json()[0]["value"] + self.cmd( + "storage container create -n {container} \ + --account-name {account} --account-key {key}" + ) + # create/test an input + props = { + "type": "Reference", + "datasource": { + "type": "Microsoft.Storage/Blob", + "properties": { + "container": self.kwargs["container"], + "dateFormat": "yyyy/MM/dd", + "pathPattern": "{date}/{time}", + "storageAccounts": [{ + "accountName": self.kwargs["account"], + "accountKey": self.kwargs["key"] + }], + "timeFormat": "HH" + } + }, + "serialization": { + "type": "Csv", + "properties": { + "encoding": "UTF8", + "fieldDelimiter": "," + } + } + } + self.kwargs["properties"] = json.dumps(props) + self.cmd( + "stream-analytics input create -n {input_name} -g {rg} \ + --job-name {job_name} \ + --properties '{properties}'", + checks=[ + self.check("name", "{input_name}"), + self.check("type", "Microsoft.StreamAnalytics/streamingjobs/inputs") + ] + ) + self.cmd( + "stream-analytics input test -n {input_name} -g {rg} \ + --job-name {job_name} \ + --properties '{properties}'", + checks=[ + self.check("status", "TestSucceeded") + ] + ) + # retrieve/update an input + self.cmd( + "stream-analytics input list -g {rg} --job-name {job_name}", + checks=[ + self.check("length(@)", 1), + self.check("@[0].name", "{input_name}") + ] + ) + props["datasource"]["properties"]["dateFormat"] = "MM/dd/yyyy" + self.kwargs["properties"] = json.dumps(props) + self.cmd( + "stream-analytics input update -n {input_name} -g {rg} \ + --job-name {job_name} --properties '{properties}'" + ) + self.cmd( + "stream-analytics input show -n {input_name} -g {rg} --job-name {job_name}", + checks=[ + self.check("name", "{input_name}"), + self.check("properties.datasource.dateFormat", "MM/dd/yyyy") + ] + ) + # delete an input + self.cmd("stream-analytics input delete -n {input_name} -g {rg} --job-name {job_name} --yes") + + @AllowLargeResponse() + @ResourceGroupPreparer(name_prefix="cli_test_stream_analytics_", location="westus") + @StorageAccountPreparer(parameter_name="storage_account") + def test_output_crud(self, storage_account): + self.kwargs.update({ + "job_name": "job", + "output_name": "output", + "locale": "en-US", + "account": storage_account, + "container": "container" + }) + # create a streaming job + self.cmd( + "stream-analytics job create -n {job_name} -g {rg} \ + --data-locale {locale} \ + --output-error-policy Drop --out-of-order-policy Drop \ + --order-max-delay 0 --arrival-max-delay 5" + ) + # prepare storage account + self.kwargs["key"] = self.cmd( + "storage account keys list --account-name {account}" + ).get_output_in_json()[0]["value"] + self.cmd( + "storage container create -n {container} \ + --account-name {account} --account-key {key}" + ) + # create/test an output + datasource_props = { + "type": "Microsoft.Storage/Blob", + "properties": { + "storageAccounts": [{ + "accountName": self.kwargs["account"], + "accountKey": self.kwargs["key"] + }], + "container": self.kwargs["container"], + "pathPattern": "{date}/{time}", + "dateFormat": "yyyy/MM/dd", + "timeFormat": "HH" + } + } + serialization_props = { + "type": "Csv", + "properties": { + "fieldDelimiter": ",", + "encoding": "UTF8" + } + } + self.kwargs["datasource"] = json.dumps(datasource_props) + self.kwargs["serialization"] = json.dumps(serialization_props) + self.cmd( + "stream-analytics output create -n {output_name} -g {rg} \ + --job-name {job_name} \ + --datasource '{datasource}' --serialization '{serialization}'", + checks=[ + self.check("name", "{output_name}"), + self.check("type", "Microsoft.StreamAnalytics/streamingjobs/outputs") + ] + ) + self.cmd( + "stream-analytics output test -n {output_name} -g {rg} \ + --job-name {job_name} \ + --datasource '{datasource}' --serialization '{serialization}'", + checks=[ + self.check("status", "TestSucceeded") + ] + ) + # retrieve/update an output + self.cmd( + "stream-analytics output list -g {rg} --job-name {job_name}", + checks=[ + self.check("length(@)", 1), + self.check("@[0].name", "{output_name}") + ] + ) + datasource_props["properties"]["dateFormat"] = "MM/dd/yyyy" + self.kwargs["datasource"] = json.dumps(datasource_props) + self.cmd( + "stream-analytics output update -n {output_name} -g {rg} \ + --job-name {job_name} \ + --datasource '{datasource}' --serialization '{serialization}'" + ) + self.cmd( + "stream-analytics output show -n {output_name} -g {rg} --job-name {job_name}", + checks=[ + self.check("name", "{output_name}"), + self.check("datasource.dateFormat", "MM/dd/yyyy") + ] + ) + # delete an output + self.cmd("stream-analytics output delete -n {output_name} -g {rg} --job-name {job_name} --yes") + + @AllowLargeResponse() + @ResourceGroupPreparer(name_prefix="cli_test_stream_analytics_", location="westus") + @StorageAccountPreparer(parameter_name="storage_account") + def test_job_scale(self, storage_account): + self.kwargs.update({ + "job_name": "job", + "transformation_name": "transformation", + "input_name": "input", + "output_name": "output", + "locale": "en-US", + "account": storage_account, + "container": "container" + }) + # create a streaming job + self.cmd( + "stream-analytics job create -n {job_name} -g {rg} \ + --data-locale {locale} \ + --output-error-policy Drop --out-of-order-policy Drop \ + --order-max-delay 0 --arrival-max-delay 5" + ) + # create a transformation + self.kwargs["saql"] = f"SELECT * INTO {self.kwargs['output_name']} FROM {self.kwargs['input_name']}" + self.cmd( + "stream-analytics transformation create -n {transformation_name} -g {rg} \ + --job-name {job_name} \ + --saql '{saql}' --streaming-units 6" + ) + # prepare storage account + self.kwargs["key"] = self.cmd( + "storage account keys list --account-name {account}" + ).get_output_in_json()[0]["value"] + self.cmd( + "storage container create -n {container} \ + --account-name {account} --account-key {key}" + ) + # create an input + self.kwargs["properties"] = json.dumps({ + "type": "Stream", + "datasource": { + "type": "Microsoft.Storage/Blob", + "properties": { + "storageAccounts": [{ + "accountName": self.kwargs["account"], + "accountKey": self.kwargs["key"] + }], + "container": self.kwargs["container"], + "pathPattern": "{date}/{time}", + "dateFormat": "MM/dd/yyyy", + "timeFormat": "HH", + "sourcePartitionCount": 16 + } + }, + "serialization": { + "type": "Csv", + "properties": { + "fieldDelimiter": ",", + "encoding": "UTF8" + } + } + }) + self.cmd( + "stream-analytics input create -n {input_name} -g {rg} \ + --job-name {job_name} --properties '{properties}'" + ) + # create an output + self.kwargs["datasource"] = json.dumps({ + "type": "Microsoft.Storage/Blob", + "properties": { + "storageAccounts": [{ + "accountName": self.kwargs["account"], + "accountKey": self.kwargs["key"] + }], + "container": self.kwargs["container"], + "pathPattern": "{date}/{time}", + "dateFormat": "yyyy/MM/dd", + "timeFormat": "HH" + } + }) + self.kwargs["serialization"] = json.dumps({ + "type": "Csv", + "properties": { + "fieldDelimiter": ",", + "encoding": "UTF8" + } + }) + self.cmd( + "stream-analytics output create -n {output_name} -g {rg} \ + --job-name {job_name} \ + --datasource '{datasource}' --serialization '{serialization}'" + ) + # start/stop a running job + self.cmd("stream-analytics job start -n {job_name} -g {rg} --output-start-mode JobStartTime") + self.cmd("stream-analytics job stop -n {job_name} -g {rg}") + + @ResourceGroupPreparer(name_prefix="cli_test_stream_analytics_", location="westus") + def test_function_crud(self): + self.kwargs.update({ + "job_name": "job", + "function_name": "function", + "workspace_name": "workspace", + "locale": "en-US" + }) + # create a streaming job + self.cmd( + "stream-analytics job create -n {job_name} -g {rg} \ + --data-locale {locale} \ + --output-error-policy Drop --out-of-order-policy Drop \ + --order-max-delay 0 --arrival-max-delay 5" + ) + # create/test a function + props = { + "type": "Scalar", + "properties": { + "inputs": [{ + "dataType": "Any" + }], + "output": { + "dataType": "Any" + }, + "binding": { + "type": "Microsoft.StreamAnalytics/JavascriptUdf", + "properties": { + "script": "function (a, b) { return a + b; }" + } + } + } + } + self.kwargs["props"] = json.dumps(props) + self.cmd( + "stream-analytics function create -n {function_name} -g {rg} \ + --job-name {job_name} --properties '{props}'", + checks=[ + self.check("name", "{function_name}"), + self.check("type", "Microsoft.StreamAnalytics/streamingjobs/functions") + ] + ) + self.cmd( + "stream-analytics function test -n {function_name} -g {rg} \ + --job-name {job_name} --properties '{props}'", + checks=[ + self.check("status", "TestFailed") + ] + ) + # retrieve/update a function + self.cmd( + "stream-analytics function list -g {rg} --job-name {job_name}", + checks=[ + self.check("length(@)", 1), + self.check("@[0].name", "{function_name}") + ] + ) + props["properties"]["binding"]["properties"]["script"] = "function (a, b) { return a * b; }" + self.kwargs["props"] = json.dumps(props) + self.cmd( + "stream-analytics function update -n {function_name} -g {rg} \ + --job-name {job_name} --properties '{props}'" + ) + self.cmd( + "stream-analytics function show -n {function_name} -g {rg} --job-name {job_name}", + checks=[ + self.check("name", "{function_name}"), + self.check("properties.binding.script", "function (a, b) {{ return a * b; }}") + ] + ) + # delete a function + self.cmd("stream-analytics job delete -n {function_name} -g {rg} --job-name {job_name} --yes") + + @ResourceGroupPreparer(name_prefix="cli_test_stream_analytics_") + def test_subscription_inspect(self): + self.kwargs.update({ + "location": "westus" + }) + self.cmd( + "stream-analytics subscription inspect -l {location}", + checks=[ + self.check("length(value)", 2), + self.check("value[0].type", "Microsoft.StreamAnalytics/quotas") + ] + ) diff --git a/src/stream-analytics/azext_stream_analytics/tests/latest/test_stream_analytics_scenario.py b/src/stream-analytics/azext_stream_analytics/tests/latest/test_stream_analytics_scenario.py deleted file mode 100644 index ab560811fa9..00000000000 --- a/src/stream-analytics/azext_stream_analytics/tests/latest/test_stream_analytics_scenario.py +++ /dev/null @@ -1,229 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -import os -import unittest -import json - -from azure_devtools.scenario_tests import AllowLargeResponse -from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, StorageAccountPreparer) - - -TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) - - -class StreamAnalyticsScenarioTest(ScenarioTest): - - @ResourceGroupPreparer(name_prefix='cli_test_stream_analytics') - @StorageAccountPreparer(parameter_name='storage_account') - def test_stream_analytics(self, resource_group, storage_account): - - self.kwargs.update({ - 'job_name': 'test_job', - 'input_name': 'input', - 'output_name': 'output', - 'transformation_name': 'transformation', - 'function_name': 'function', - 'storage_account': storage_account, - 'blob_name': 'blob' - }) - - self.cmd('stream-analytics job create ' - '--resource-group {rg} ' - '--name {job_name} ' - '--location "West US" ' - '--output-error-policy "Drop" ' - '--events-outoforder-policy "Drop" ' - '--events-outoforder-max-delay "0" ' - '--events-late-arrival-max-delay "5" ' - '--data-locale "en-US" ', - checks=[self.check('name', '{job_name}')]) - self.cmd('stream-analytics job update ' - '--resource-group {rg} ' - '--name {job_name} ' - '--events-outoforder-max-delay 21 ' - '--events-late-arrival-max-delay 13', - checks=[self.check('eventsOutOfOrderMaxDelayInSeconds', 21), - self.check('eventsLateArrivalMaxDelayInSeconds', 13)]) - self.cmd('stream-analytics job list ' - '--resource-group {rg}', - checks=[self.check('length([])', 1)]) - self.cmd('stream-analytics job show ' - '--resource-group {rg} ' - '--name {job_name}', - checks=[self.check('name', '{job_name}')]) - - self.kwargs['transformation_query'] = 'SELECT * INTO {} FROM {}'.format( - self.kwargs['output_name'], self.kwargs['input_name']) - self.cmd('stream-analytics transformation create ' - '--resource-group {rg} ' - '--job-name {job_name} ' - '--name {transformation_name} ' - '--streaming-units 12 ' - '--transformation-query "{transformation_query}"', - checks=[self.check('name', '{transformation_name}')]) - self.cmd('stream-analytics transformation show ' - '--resource-group {rg} ' - '--job-name {job_name} ' - '--name {transformation_name}', - checks=[self.check('name', '{transformation_name}')]) - self.cmd('stream-analytics transformation update ' - '--resource-group {rg} ' - '--job-name {job_name} ' - '--name {transformation_name} ' - '--streaming-units 6', - checks=[self.check('streamingUnits', 6)]) - - # Prepare storage - self.kwargs['account_key'] = \ - self.cmd('storage account keys list --account-name {storage_account}').get_output_in_json()[0]['value'] - self.cmd('storage container create --name {blob_name} --account-name {storage_account} ' - '--account-key {account_key}') - - self.kwargs['input_datasource'] = json.dumps({ - "container": self.kwargs['blob_name'], - "dateFormat": "yyyy/MM/dd", - "pathPattern": "{date}/{time}", - "sourcePartitionCount": 1, - "storageAccounts": [ - { - "accountKey": self.kwargs['account_key'], - "accountName": self.kwargs['storage_account'] - } - ], - "timeFormat": "HH", - "type": "Microsoft.Storage/Blob" - }) - self.kwargs['input_serialization'] = json.dumps({ - "encoding": "UTF8", - "fieldDelimiter": ",", - "type": "Csv" - }) - self.cmd('stream-analytics input create ' - '--resource-group {rg} ' - '--job-name {job_name} ' - '--name {input_name} ' - '--type Stream ' - "--datasource '{input_datasource}' " - "--serialization '{input_serialization}'") - self.cmd('stream-analytics input list ' - '--resource-group {rg} ' - '--job-name {job_name}', - checks=[self.check('length([])', 1)]) - self.cmd('stream-analytics input show ' - '--resource-group {rg} ' - '--job-name {job_name} ' - '--name {input_name}', - checks=[self.check('name', '{input_name}')]) - self.cmd('stream-analytics input test ' - '--resource-group {rg} ' - '--job-name {job_name} ' - '--name {input_name}') - - self.kwargs['output_datasource'] = json.dumps({ - "container": self.kwargs['blob_name'], - "dateFormat": "yyyy/MM/dd", - "pathPattern": "/output/{date}/{time}", - "storageAccounts": [ - { - "accountKey": self.kwargs['account_key'], - "accountName": self.kwargs['storage_account'] - } - ], - "timeFormat": "HH", - "type": "Microsoft.Storage/Blob" - }) - self.kwargs['output_serialization'] = json.dumps({ - "encoding": "UTF8", - "format": "LineSeparated", - "type": "Json" - }) - - self.cmd('stream-analytics output create ' - '--resource-group {rg} ' - '--job-name {job_name} ' - '--name {output_name} ' - "--datasource '{output_datasource}' " - "--serialization '{output_serialization}'") - self.cmd('stream-analytics output list ' - '--resource-group {rg} ' - '--job-name {job_name}', - checks=[self.check('length([])', 1)]) - self.cmd('stream-analytics output show ' - '--resource-group {rg} ' - '--job-name {job_name} ' - '--name {output_name}', - checks=[self.check('name', '{output_name}')]) - self.cmd('stream-analytics output test ' - '--resource-group {rg} ' - '--job-name {job_name} ' - '--name {output_name}') - - self.cmd('stream-analytics job start ' - '--resource-group {rg} ' - '--name {job_name} ' - '--output-start-mode JobStartTime') - - self.cmd('stream-analytics job stop ' - '--resource-group {rg} ' - '--name {job_name}') - - self.kwargs['inputs'] = json.dumps([ - { - 'dataType': 'Any' - } - ]) - self.kwargs['function_output'] = json.dumps({ - "dataType": "Any" - }) - self.kwargs['binding'] = json.dumps({ - "type": "Microsoft.StreamAnalytics/JavascriptUdf", - "properties": { - "script": "function (x, y) { return x + y; }" - } - }) - self.cmd('stream-analytics function create ' - '--resource-group {rg} ' - '--job-name {job_name} ' - '--name {function_name} ' - "--inputs '{inputs}' " - "--function-output '{function_output}' " - "--binding '{binding}'", - checks=[self.check('name', '{function_name}')]) - self.cmd('stream-analytics function list ' - '--resource-group {rg} ' - '--job-name {job_name}', - checks=[self.check('length([])', 1)]) - self.cmd('stream-analytics function show ' - '--resource-group {rg} ' - '--job-name {job_name} ' - '--name {function_name}', - checks=[self.check('name', '{function_name}')]) - self.cmd('stream-analytics function test ' - '--resource-group {rg} ' - '--job-name {job_name} ' - '--name {function_name}') - - self.cmd('stream-analytics function delete ' - '--resource-group {rg} ' - '--job-name {job_name} ' - '--name {function_name}') - - self.cmd('stream-analytics output delete ' - '--resource-group {rg} ' - '--job-name {job_name} ' - '--name {output_name}') - - self.cmd('stream-analytics input delete ' - '--resource-group {rg} ' - '--job-name {job_name} ' - '--name {input_name}') - - self.cmd('stream-analytics job delete ' - '--resource-group {rg} ' - '--name {job_name}') - - self.cmd('stream-analytics quota show ' - '--location "West US"') diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/__init__.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/__init__.py index a5b81f3bde4..c9cfdc73e77 100644 --- a/src/stream-analytics/azext_stream_analytics/vendored_sdks/__init__.py +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/__init__.py @@ -1,6 +1,12 @@ -# -------------------------------------------------------------------------------------------- +# coding=utf-8 +# -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- -__import__('pkg_resources').declare_namespace(__name__) +__path__ = __import__('pkgutil').extend_path(__path__, __name__) diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/__init__.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/__init__.py index 48fbd704635..83390f96aa8 100644 --- a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/__init__.py +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/__init__.py @@ -1,19 +1,19 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from ._configuration import StreamAnalyticsManagementClientConfiguration from ._stream_analytics_management_client import StreamAnalyticsManagementClient -__all__ = ['StreamAnalyticsManagementClient', 'StreamAnalyticsManagementClientConfiguration'] - -from .version import VERSION +from ._version import VERSION __version__ = VERSION +__all__ = ['StreamAnalyticsManagementClient'] +try: + from ._patch import patch_sdk # type: ignore + patch_sdk() +except ImportError: + pass diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/_configuration.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/_configuration.py index 59843913a6a..725ad429320 100644 --- a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/_configuration.py +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/_configuration.py @@ -1,50 +1,71 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from msrestazure import AzureConfiguration -from .version import VERSION +from typing import TYPE_CHECKING +from azure.core.configuration import Configuration +from azure.core.pipeline import policies +from azure.mgmt.core.policies import ARMHttpLoggingPolicy + +from ._version import VERSION + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any + + from azure.core.credentials import TokenCredential + + +class StreamAnalyticsManagementClientConfiguration(Configuration): + """Configuration for StreamAnalyticsManagementClient. -class StreamAnalyticsManagementClientConfiguration(AzureConfiguration): - """Configuration for StreamAnalyticsManagementClient Note that all parameters used to create this instance are saved as instance attributes. - :param credentials: Credentials needed for the client to connect to Azure. - :type credentials: :mod:`A msrestazure Credentials - object` - :param subscription_id: GUID which uniquely identify Microsoft Azure - subscription. The subscription ID forms part of the URI for every service - call. + :param credential: Credential needed for the client to connect to Azure. + :type credential: ~azure.core.credentials.TokenCredential + :param subscription_id: The ID of the target subscription. :type subscription_id: str - :param str base_url: Service URL """ def __init__( - self, credentials, subscription_id, base_url=None): - - if credentials is None: - raise ValueError("Parameter 'credentials' must not be None.") + self, + credential, # type: "TokenCredential" + subscription_id, # type: str + **kwargs # type: Any + ): + # type: (...) -> None + if credential is None: + raise ValueError("Parameter 'credential' must not be None.") if subscription_id is None: raise ValueError("Parameter 'subscription_id' must not be None.") - if not base_url: - base_url = 'https://management.azure.com' - - super(StreamAnalyticsManagementClientConfiguration, self).__init__(base_url) - - # Starting Autorest.Python 4.0.64, make connection pool activated by default - self.keep_alive = True + super(StreamAnalyticsManagementClientConfiguration, self).__init__(**kwargs) - self.add_user_agent('azure-mgmt-streamanalytics/{}'.format(VERSION)) - self.add_user_agent('Azure-SDK-For-Python') - - self.credentials = credentials + self.credential = credential self.subscription_id = subscription_id + self.api_version = "2020-03-01" + self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) + kwargs.setdefault('sdk_moniker', 'mgmt-streamanalytics/{}'.format(VERSION)) + self._configure(**kwargs) + + def _configure( + self, + **kwargs # type: Any + ): + # type: (...) -> None + self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs) + self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs) + self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs) + self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs) + self.http_logging_policy = kwargs.get('http_logging_policy') or ARMHttpLoggingPolicy(**kwargs) + self.retry_policy = kwargs.get('retry_policy') or policies.RetryPolicy(**kwargs) + self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs) + self.redirect_policy = kwargs.get('redirect_policy') or policies.RedirectPolicy(**kwargs) + self.authentication_policy = kwargs.get('authentication_policy') + if self.credential and not self.authentication_policy: + self.authentication_policy = policies.BearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs) diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/_stream_analytics_management_client.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/_stream_analytics_management_client.py index ce5fc30b719..22203e24176 100644 --- a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/_stream_analytics_management_client.py +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/_stream_analytics_management_client.py @@ -1,16 +1,21 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from msrest.service_client import SDKClient -from msrest import Serializer, Deserializer +from typing import TYPE_CHECKING + +from azure.mgmt.core import ARMPipelineClient +from msrest import Deserializer, Serializer + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Optional + + from azure.core.credentials import TokenCredential from ._configuration import StreamAnalyticsManagementClientConfiguration from .operations import Operations @@ -23,59 +28,73 @@ from . import models -class StreamAnalyticsManagementClient(SDKClient): - """Stream Analytics Client - - :ivar config: Configuration for client. - :vartype config: StreamAnalyticsManagementClientConfiguration +class StreamAnalyticsManagementClient(object): + """Stream Analytics Client. :ivar operations: Operations operations - :vartype operations: azure.mgmt.streamanalytics.operations.Operations - :ivar streaming_jobs: StreamingJobs operations - :vartype streaming_jobs: azure.mgmt.streamanalytics.operations.StreamingJobsOperations - :ivar inputs: Inputs operations - :vartype inputs: azure.mgmt.streamanalytics.operations.InputsOperations - :ivar outputs: Outputs operations - :vartype outputs: azure.mgmt.streamanalytics.operations.OutputsOperations - :ivar transformations: Transformations operations - :vartype transformations: azure.mgmt.streamanalytics.operations.TransformationsOperations - :ivar functions: Functions operations - :vartype functions: azure.mgmt.streamanalytics.operations.FunctionsOperations - :ivar subscriptions: Subscriptions operations - :vartype subscriptions: azure.mgmt.streamanalytics.operations.SubscriptionsOperations - - :param credentials: Credentials needed for the client to connect to Azure. - :type credentials: :mod:`A msrestazure Credentials - object` - :param subscription_id: GUID which uniquely identify Microsoft Azure - subscription. The subscription ID forms part of the URI for every service - call. + :vartype operations: stream_analytics_management_client.operations.Operations + :ivar streaming_jobs: StreamingJobsOperations operations + :vartype streaming_jobs: stream_analytics_management_client.operations.StreamingJobsOperations + :ivar inputs: InputsOperations operations + :vartype inputs: stream_analytics_management_client.operations.InputsOperations + :ivar outputs: OutputsOperations operations + :vartype outputs: stream_analytics_management_client.operations.OutputsOperations + :ivar transformations: TransformationsOperations operations + :vartype transformations: stream_analytics_management_client.operations.TransformationsOperations + :ivar functions: FunctionsOperations operations + :vartype functions: stream_analytics_management_client.operations.FunctionsOperations + :ivar subscriptions: SubscriptionsOperations operations + :vartype subscriptions: stream_analytics_management_client.operations.SubscriptionsOperations + :param credential: Credential needed for the client to connect to Azure. + :type credential: ~azure.core.credentials.TokenCredential + :param subscription_id: The ID of the target subscription. :type subscription_id: str :param str base_url: Service URL + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. """ def __init__( - self, credentials, subscription_id, base_url=None): - - self.config = StreamAnalyticsManagementClientConfiguration(credentials, subscription_id, base_url) - super(StreamAnalyticsManagementClient, self).__init__(self.config.credentials, self.config) + self, + credential, # type: "TokenCredential" + subscription_id, # type: str + base_url=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> None + if not base_url: + base_url = 'https://management.azure.com' + self._config = StreamAnalyticsManagementClientConfiguration(credential, subscription_id, **kwargs) + self._client = ARMPipelineClient(base_url=base_url, config=self._config, **kwargs) client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} - self.api_version = '2016-03-01' self._serialize = Serializer(client_models) + self._serialize.client_side_validation = False self._deserialize = Deserializer(client_models) self.operations = Operations( - self._client, self.config, self._serialize, self._deserialize) + self._client, self._config, self._serialize, self._deserialize) self.streaming_jobs = StreamingJobsOperations( - self._client, self.config, self._serialize, self._deserialize) + self._client, self._config, self._serialize, self._deserialize) self.inputs = InputsOperations( - self._client, self.config, self._serialize, self._deserialize) + self._client, self._config, self._serialize, self._deserialize) self.outputs = OutputsOperations( - self._client, self.config, self._serialize, self._deserialize) + self._client, self._config, self._serialize, self._deserialize) self.transformations = TransformationsOperations( - self._client, self.config, self._serialize, self._deserialize) + self._client, self._config, self._serialize, self._deserialize) self.functions = FunctionsOperations( - self._client, self.config, self._serialize, self._deserialize) + self._client, self._config, self._serialize, self._deserialize) self.subscriptions = SubscriptionsOperations( - self._client, self.config, self._serialize, self._deserialize) + self._client, self._config, self._serialize, self._deserialize) + + def close(self): + # type: () -> None + self._client.close() + + def __enter__(self): + # type: () -> StreamAnalyticsManagementClient + self._client.__enter__() + return self + + def __exit__(self, *exc_details): + # type: (Any) -> None + self._client.__exit__(*exc_details) diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/_version.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/_version.py new file mode 100644 index 00000000000..e5754a47ce6 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/_version.py @@ -0,0 +1,9 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +VERSION = "1.0.0b1" diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/__init__.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/__init__.py new file mode 100644 index 00000000000..372ab5c830f --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/__init__.py @@ -0,0 +1,10 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._stream_analytics_management_client import StreamAnalyticsManagementClient +__all__ = ['StreamAnalyticsManagementClient'] diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/_configuration.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/_configuration.py new file mode 100644 index 00000000000..e035713008c --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/_configuration.py @@ -0,0 +1,67 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from typing import Any, TYPE_CHECKING + +from azure.core.configuration import Configuration +from azure.core.pipeline import policies +from azure.mgmt.core.policies import ARMHttpLoggingPolicy + +from .._version import VERSION + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from azure.core.credentials_async import AsyncTokenCredential + + +class StreamAnalyticsManagementClientConfiguration(Configuration): + """Configuration for StreamAnalyticsManagementClient. + + Note that all parameters used to create this instance are saved as instance + attributes. + + :param credential: Credential needed for the client to connect to Azure. + :type credential: ~azure.core.credentials_async.AsyncTokenCredential + :param subscription_id: The ID of the target subscription. + :type subscription_id: str + """ + + def __init__( + self, + credential: "AsyncTokenCredential", + subscription_id: str, + **kwargs: Any + ) -> None: + if credential is None: + raise ValueError("Parameter 'credential' must not be None.") + if subscription_id is None: + raise ValueError("Parameter 'subscription_id' must not be None.") + super(StreamAnalyticsManagementClientConfiguration, self).__init__(**kwargs) + + self.credential = credential + self.subscription_id = subscription_id + self.api_version = "2020-03-01" + self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) + kwargs.setdefault('sdk_moniker', 'mgmt-streamanalytics/{}'.format(VERSION)) + self._configure(**kwargs) + + def _configure( + self, + **kwargs: Any + ) -> None: + self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs) + self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs) + self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs) + self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs) + self.http_logging_policy = kwargs.get('http_logging_policy') or ARMHttpLoggingPolicy(**kwargs) + self.retry_policy = kwargs.get('retry_policy') or policies.AsyncRetryPolicy(**kwargs) + self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs) + self.redirect_policy = kwargs.get('redirect_policy') or policies.AsyncRedirectPolicy(**kwargs) + self.authentication_policy = kwargs.get('authentication_policy') + if self.credential and not self.authentication_policy: + self.authentication_policy = policies.AsyncBearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs) diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/_stream_analytics_management_client.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/_stream_analytics_management_client.py new file mode 100644 index 00000000000..8b75bccb9d1 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/_stream_analytics_management_client.py @@ -0,0 +1,94 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from typing import Any, Optional, TYPE_CHECKING + +from azure.mgmt.core import AsyncARMPipelineClient +from msrest import Deserializer, Serializer + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from azure.core.credentials_async import AsyncTokenCredential + +from ._configuration import StreamAnalyticsManagementClientConfiguration +from .operations import Operations +from .operations import StreamingJobsOperations +from .operations import InputsOperations +from .operations import OutputsOperations +from .operations import TransformationsOperations +from .operations import FunctionsOperations +from .operations import SubscriptionsOperations +from .. import models + + +class StreamAnalyticsManagementClient(object): + """Stream Analytics Client. + + :ivar operations: Operations operations + :vartype operations: stream_analytics_management_client.aio.operations.Operations + :ivar streaming_jobs: StreamingJobsOperations operations + :vartype streaming_jobs: stream_analytics_management_client.aio.operations.StreamingJobsOperations + :ivar inputs: InputsOperations operations + :vartype inputs: stream_analytics_management_client.aio.operations.InputsOperations + :ivar outputs: OutputsOperations operations + :vartype outputs: stream_analytics_management_client.aio.operations.OutputsOperations + :ivar transformations: TransformationsOperations operations + :vartype transformations: stream_analytics_management_client.aio.operations.TransformationsOperations + :ivar functions: FunctionsOperations operations + :vartype functions: stream_analytics_management_client.aio.operations.FunctionsOperations + :ivar subscriptions: SubscriptionsOperations operations + :vartype subscriptions: stream_analytics_management_client.aio.operations.SubscriptionsOperations + :param credential: Credential needed for the client to connect to Azure. + :type credential: ~azure.core.credentials_async.AsyncTokenCredential + :param subscription_id: The ID of the target subscription. + :type subscription_id: str + :param str base_url: Service URL + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + """ + + def __init__( + self, + credential: "AsyncTokenCredential", + subscription_id: str, + base_url: Optional[str] = None, + **kwargs: Any + ) -> None: + if not base_url: + base_url = 'https://management.azure.com' + self._config = StreamAnalyticsManagementClientConfiguration(credential, subscription_id, **kwargs) + self._client = AsyncARMPipelineClient(base_url=base_url, config=self._config, **kwargs) + + client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} + self._serialize = Serializer(client_models) + self._serialize.client_side_validation = False + self._deserialize = Deserializer(client_models) + + self.operations = Operations( + self._client, self._config, self._serialize, self._deserialize) + self.streaming_jobs = StreamingJobsOperations( + self._client, self._config, self._serialize, self._deserialize) + self.inputs = InputsOperations( + self._client, self._config, self._serialize, self._deserialize) + self.outputs = OutputsOperations( + self._client, self._config, self._serialize, self._deserialize) + self.transformations = TransformationsOperations( + self._client, self._config, self._serialize, self._deserialize) + self.functions = FunctionsOperations( + self._client, self._config, self._serialize, self._deserialize) + self.subscriptions = SubscriptionsOperations( + self._client, self._config, self._serialize, self._deserialize) + + async def close(self) -> None: + await self._client.close() + + async def __aenter__(self) -> "StreamAnalyticsManagementClient": + await self._client.__aenter__() + return self + + async def __aexit__(self, *exc_details) -> None: + await self._client.__aexit__(*exc_details) diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/__init__.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/__init__.py new file mode 100644 index 00000000000..a034ccf2de4 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/__init__.py @@ -0,0 +1,25 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from ._operations import Operations +from ._streaming_jobs_operations import StreamingJobsOperations +from ._inputs_operations import InputsOperations +from ._outputs_operations import OutputsOperations +from ._transformations_operations import TransformationsOperations +from ._functions_operations import FunctionsOperations +from ._subscriptions_operations import SubscriptionsOperations + +__all__ = [ + 'Operations', + 'StreamingJobsOperations', + 'InputsOperations', + 'OutputsOperations', + 'TransformationsOperations', + 'FunctionsOperations', + 'SubscriptionsOperations', +] diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/_functions_operations.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/_functions_operations.py new file mode 100644 index 00000000000..c171aca171e --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/_functions_operations.py @@ -0,0 +1,646 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar, Union +import warnings + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling + +from ... import models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class FunctionsOperations: + """FunctionsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~stream_analytics_management_client.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def create_or_replace( + self, + resource_group_name: str, + job_name: str, + function_name: str, + function: "models.Function", + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + **kwargs + ) -> "models.Function": + """Creates a function or replaces an already existing function under an existing streaming job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param function_name: The name of the function. + :type function_name: str + :param function: The definition of the function that will be used to create a new function or + replace the existing one under the streaming job. + :type function: ~stream_analytics_management_client.models.Function + :param if_match: The ETag of the function. Omit this value to always overwrite the current + function. Specify the last-seen ETag value to prevent accidentally overwriting concurrent + changes. + :type if_match: str + :param if_none_match: Set to '*' to allow a new function to be created, but to prevent updating + an existing function. Other values will result in a 412 Pre-condition Failed response. + :type if_none_match: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Function, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Function + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Function"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self.create_or_replace.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'functionName': self._serialize.url("function_name", function_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + if if_match is not None: + header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') + if if_none_match is not None: + header_parameters['If-None-Match'] = self._serialize.header("if_none_match", if_none_match, 'str') + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(function, 'Function') + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 200: + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Function', pipeline_response) + + if response.status_code == 201: + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Function', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + create_or_replace.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}'} # type: ignore + + async def update( + self, + resource_group_name: str, + job_name: str, + function_name: str, + function: "models.Function", + if_match: Optional[str] = None, + **kwargs + ) -> "models.Function": + """Updates an existing function under an existing streaming job. This can be used to partially + update (ie. update one or two properties) a function without affecting the rest the job or + function definition. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param function_name: The name of the function. + :type function_name: str + :param function: A function object. The properties specified here will overwrite the + corresponding properties in the existing function (ie. Those properties will be updated). Any + properties that are set to null here will mean that the corresponding property in the existing + function will remain the same and not change as a result of this PATCH operation. + :type function: ~stream_analytics_management_client.models.Function + :param if_match: The ETag of the function. Omit this value to always overwrite the current + function. Specify the last-seen ETag value to prevent accidentally overwriting concurrent + changes. + :type if_match: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Function, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Function + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Function"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self.update.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'functionName': self._serialize.url("function_name", function_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + if if_match is not None: + header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(function, 'Function') + body_content_kwargs['content'] = body_content + request = self._client.patch(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Function', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + update.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}'} # type: ignore + + async def delete( + self, + resource_group_name: str, + job_name: str, + function_name: str, + **kwargs + ) -> None: + """Deletes a function from the streaming job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param function_name: The name of the function. + :type function_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: None, or the result of cls(response) + :rtype: None + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + + # Construct URL + url = self.delete.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'functionName': self._serialize.url("function_name", function_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.delete(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}'} # type: ignore + + async def get( + self, + resource_group_name: str, + job_name: str, + function_name: str, + **kwargs + ) -> "models.Function": + """Gets details about the specified function. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param function_name: The name of the function. + :type function_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Function, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Function + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Function"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'functionName': self._serialize.url("function_name", function_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Function', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}'} # type: ignore + + def list_by_streaming_job( + self, + resource_group_name: str, + job_name: str, + select: Optional[str] = None, + **kwargs + ) -> AsyncIterable["models.FunctionListResult"]: + """Lists all of the functions under the specified streaming job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param select: The $select OData query parameter. This is a comma-separated list of structural + properties to include in the response, or "\ *" to include all properties. By default, all + properties are returned except diagnostics. Currently only accepts '*\ ' as a valid value. + :type select: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either FunctionListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~stream_analytics_management_client.models.FunctionListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.FunctionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_by_streaming_job.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + if select is not None: + query_parameters['$select'] = self._serialize.query("select", select, 'str') + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('FunctionListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + error = self._deserialize(models.Error, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_streaming_job.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions'} # type: ignore + + async def _test_initial( + self, + resource_group_name: str, + job_name: str, + function_name: str, + function: Optional["models.Function"] = None, + **kwargs + ) -> Optional["models.ResourceTestStatus"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["models.ResourceTestStatus"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._test_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'functionName': self._serialize.url("function_name", function_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if function is not None: + body_content = self._serialize.body(function, 'Function') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ResourceTestStatus', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _test_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}/test'} # type: ignore + + async def begin_test( + self, + resource_group_name: str, + job_name: str, + function_name: str, + function: Optional["models.Function"] = None, + **kwargs + ) -> AsyncLROPoller["models.ResourceTestStatus"]: + """Tests if the information provided for a function is valid. This can range from testing the + connection to the underlying web service behind the function or making sure the function code + provided is syntactically correct. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param function_name: The name of the function. + :type function_name: str + :param function: If the function specified does not already exist, this parameter must contain + the full function definition intended to be tested. If the function specified already exists, + this parameter can be left null to test the existing function as is or if specified, the + properties specified will overwrite the corresponding properties in the existing function + (exactly like a PATCH operation) and the resulting function will be tested. + :type function: ~stream_analytics_management_client.models.Function + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ResourceTestStatus or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~stream_analytics_management_client.models.ResourceTestStatus] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["models.ResourceTestStatus"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._test_initial( + resource_group_name=resource_group_name, + job_name=job_name, + function_name=function_name, + function=function, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('ResourceTestStatus', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'functionName': self._serialize.url("function_name", function_name, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_test.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}/test'} # type: ignore + + async def retrieve_default_definition( + self, + resource_group_name: str, + job_name: str, + function_name: str, + function_retrieve_default_definition_parameters: Optional["models.FunctionRetrieveDefaultDefinitionParameters"] = None, + **kwargs + ) -> "models.Function": + """Retrieves the default definition of a function based on the parameters specified. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param function_name: The name of the function. + :type function_name: str + :param function_retrieve_default_definition_parameters: Parameters used to specify the type of + function to retrieve the default definition for. + :type function_retrieve_default_definition_parameters: ~stream_analytics_management_client.models.FunctionRetrieveDefaultDefinitionParameters + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Function, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Function + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Function"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self.retrieve_default_definition.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'functionName': self._serialize.url("function_name", function_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if function_retrieve_default_definition_parameters is not None: + body_content = self._serialize.body(function_retrieve_default_definition_parameters, 'FunctionRetrieveDefaultDefinitionParameters') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('Function', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + retrieve_default_definition.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}/retrieveDefaultDefinition'} # type: ignore diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/_inputs_operations.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/_inputs_operations.py new file mode 100644 index 00000000000..80f2a42c93c --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/_inputs_operations.py @@ -0,0 +1,568 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar, Union +import warnings + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling + +from ... import models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class InputsOperations: + """InputsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~stream_analytics_management_client.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def create_or_replace( + self, + resource_group_name: str, + job_name: str, + input_name: str, + input: "models.Input", + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + **kwargs + ) -> "models.Input": + """Creates an input or replaces an already existing input under an existing streaming job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param input_name: The name of the input. + :type input_name: str + :param input: The definition of the input that will be used to create a new input or replace + the existing one under the streaming job. + :type input: ~stream_analytics_management_client.models.Input + :param if_match: The ETag of the input. Omit this value to always overwrite the current input. + Specify the last-seen ETag value to prevent accidentally overwriting concurrent changes. + :type if_match: str + :param if_none_match: Set to '*' to allow a new input to be created, but to prevent updating an + existing input. Other values will result in a 412 Pre-condition Failed response. + :type if_none_match: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Input, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Input + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Input"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self.create_or_replace.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'inputName': self._serialize.url("input_name", input_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + if if_match is not None: + header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') + if if_none_match is not None: + header_parameters['If-None-Match'] = self._serialize.header("if_none_match", if_none_match, 'str') + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(input, 'Input') + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 200: + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Input', pipeline_response) + + if response.status_code == 201: + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Input', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + create_or_replace.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/inputs/{inputName}'} # type: ignore + + async def update( + self, + resource_group_name: str, + job_name: str, + input_name: str, + input: "models.Input", + if_match: Optional[str] = None, + **kwargs + ) -> "models.Input": + """Updates an existing input under an existing streaming job. This can be used to partially update + (ie. update one or two properties) an input without affecting the rest the job or input + definition. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param input_name: The name of the input. + :type input_name: str + :param input: An Input object. The properties specified here will overwrite the corresponding + properties in the existing input (ie. Those properties will be updated). Any properties that + are set to null here will mean that the corresponding property in the existing input will + remain the same and not change as a result of this PATCH operation. + :type input: ~stream_analytics_management_client.models.Input + :param if_match: The ETag of the input. Omit this value to always overwrite the current input. + Specify the last-seen ETag value to prevent accidentally overwriting concurrent changes. + :type if_match: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Input, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Input + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Input"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self.update.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'inputName': self._serialize.url("input_name", input_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + if if_match is not None: + header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(input, 'Input') + body_content_kwargs['content'] = body_content + request = self._client.patch(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Input', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + update.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/inputs/{inputName}'} # type: ignore + + async def delete( + self, + resource_group_name: str, + job_name: str, + input_name: str, + **kwargs + ) -> None: + """Deletes an input from the streaming job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param input_name: The name of the input. + :type input_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: None, or the result of cls(response) + :rtype: None + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + + # Construct URL + url = self.delete.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'inputName': self._serialize.url("input_name", input_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.delete(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/inputs/{inputName}'} # type: ignore + + async def get( + self, + resource_group_name: str, + job_name: str, + input_name: str, + **kwargs + ) -> "models.Input": + """Gets details about the specified input. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param input_name: The name of the input. + :type input_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Input, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Input + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Input"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'inputName': self._serialize.url("input_name", input_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Input', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/inputs/{inputName}'} # type: ignore + + def list_by_streaming_job( + self, + resource_group_name: str, + job_name: str, + select: Optional[str] = None, + **kwargs + ) -> AsyncIterable["models.InputListResult"]: + """Lists all of the inputs under the specified streaming job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param select: The $select OData query parameter. This is a comma-separated list of structural + properties to include in the response, or "\ *" to include all properties. By default, all + properties are returned except diagnostics. Currently only accepts '*\ ' as a valid value. + :type select: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either InputListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~stream_analytics_management_client.models.InputListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.InputListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_by_streaming_job.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + if select is not None: + query_parameters['$select'] = self._serialize.query("select", select, 'str') + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('InputListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + error = self._deserialize(models.Error, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_streaming_job.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/inputs'} # type: ignore + + async def _test_initial( + self, + resource_group_name: str, + job_name: str, + input_name: str, + input: Optional["models.Input"] = None, + **kwargs + ) -> Optional["models.ResourceTestStatus"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["models.ResourceTestStatus"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._test_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'inputName': self._serialize.url("input_name", input_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if input is not None: + body_content = self._serialize.body(input, 'Input') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ResourceTestStatus', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _test_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/inputs/{inputName}/test'} # type: ignore + + async def begin_test( + self, + resource_group_name: str, + job_name: str, + input_name: str, + input: Optional["models.Input"] = None, + **kwargs + ) -> AsyncLROPoller["models.ResourceTestStatus"]: + """Tests whether an input’s datasource is reachable and usable by the Azure Stream Analytics + service. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param input_name: The name of the input. + :type input_name: str + :param input: If the input specified does not already exist, this parameter must contain the + full input definition intended to be tested. If the input specified already exists, this + parameter can be left null to test the existing input as is or if specified, the properties + specified will overwrite the corresponding properties in the existing input (exactly like a + PATCH operation) and the resulting input will be tested. + :type input: ~stream_analytics_management_client.models.Input + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ResourceTestStatus or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~stream_analytics_management_client.models.ResourceTestStatus] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["models.ResourceTestStatus"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._test_initial( + resource_group_name=resource_group_name, + job_name=job_name, + input_name=input_name, + input=input, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('ResourceTestStatus', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'inputName': self._serialize.url("input_name", input_name, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_test.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/inputs/{inputName}/test'} # type: ignore diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/_operations.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/_operations.py new file mode 100644 index 00000000000..28fab6611a2 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/_operations.py @@ -0,0 +1,105 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar +import warnings + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class Operations: + """Operations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~stream_analytics_management_client.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def list( + self, + **kwargs + ) -> AsyncIterable["models.OperationListResult"]: + """Lists all of the available Stream Analytics related operations. + + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either OperationListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~stream_analytics_management_client.models.OperationListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.OperationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list.metadata['url'] # type: ignore + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('OperationListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + error = self._deserialize(models.Error, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/providers/Microsoft.StreamAnalytics/operations'} # type: ignore diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/_outputs_operations.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/_outputs_operations.py new file mode 100644 index 00000000000..ab8be2eb204 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/_outputs_operations.py @@ -0,0 +1,570 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar, Union +import warnings + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling + +from ... import models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class OutputsOperations: + """OutputsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~stream_analytics_management_client.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def create_or_replace( + self, + resource_group_name: str, + job_name: str, + output_name: str, + output: "models.Output", + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + **kwargs + ) -> "models.Output": + """Creates an output or replaces an already existing output under an existing streaming job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param output_name: The name of the output. + :type output_name: str + :param output: The definition of the output that will be used to create a new output or replace + the existing one under the streaming job. + :type output: ~stream_analytics_management_client.models.Output + :param if_match: The ETag of the output. Omit this value to always overwrite the current + output. Specify the last-seen ETag value to prevent accidentally overwriting concurrent + changes. + :type if_match: str + :param if_none_match: Set to '*' to allow a new output to be created, but to prevent updating + an existing output. Other values will result in a 412 Pre-condition Failed response. + :type if_none_match: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Output, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Output + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Output"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self.create_or_replace.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'outputName': self._serialize.url("output_name", output_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + if if_match is not None: + header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') + if if_none_match is not None: + header_parameters['If-None-Match'] = self._serialize.header("if_none_match", if_none_match, 'str') + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(output, 'Output') + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 200: + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Output', pipeline_response) + + if response.status_code == 201: + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Output', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + create_or_replace.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/outputs/{outputName}'} # type: ignore + + async def update( + self, + resource_group_name: str, + job_name: str, + output_name: str, + output: "models.Output", + if_match: Optional[str] = None, + **kwargs + ) -> "models.Output": + """Updates an existing output under an existing streaming job. This can be used to partially + update (ie. update one or two properties) an output without affecting the rest the job or + output definition. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param output_name: The name of the output. + :type output_name: str + :param output: An Output object. The properties specified here will overwrite the corresponding + properties in the existing output (ie. Those properties will be updated). Any properties that + are set to null here will mean that the corresponding property in the existing output will + remain the same and not change as a result of this PATCH operation. + :type output: ~stream_analytics_management_client.models.Output + :param if_match: The ETag of the output. Omit this value to always overwrite the current + output. Specify the last-seen ETag value to prevent accidentally overwriting concurrent + changes. + :type if_match: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Output, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Output + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Output"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self.update.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'outputName': self._serialize.url("output_name", output_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + if if_match is not None: + header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(output, 'Output') + body_content_kwargs['content'] = body_content + request = self._client.patch(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Output', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + update.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/outputs/{outputName}'} # type: ignore + + async def delete( + self, + resource_group_name: str, + job_name: str, + output_name: str, + **kwargs + ) -> None: + """Deletes an output from the streaming job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param output_name: The name of the output. + :type output_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: None, or the result of cls(response) + :rtype: None + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + + # Construct URL + url = self.delete.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'outputName': self._serialize.url("output_name", output_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.delete(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/outputs/{outputName}'} # type: ignore + + async def get( + self, + resource_group_name: str, + job_name: str, + output_name: str, + **kwargs + ) -> "models.Output": + """Gets details about the specified output. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param output_name: The name of the output. + :type output_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Output, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Output + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Output"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'outputName': self._serialize.url("output_name", output_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Output', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/outputs/{outputName}'} # type: ignore + + def list_by_streaming_job( + self, + resource_group_name: str, + job_name: str, + select: Optional[str] = None, + **kwargs + ) -> AsyncIterable["models.OutputListResult"]: + """Lists all of the outputs under the specified streaming job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param select: The $select OData query parameter. This is a comma-separated list of structural + properties to include in the response, or "\ *" to include all properties. By default, all + properties are returned except diagnostics. Currently only accepts '*\ ' as a valid value. + :type select: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either OutputListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~stream_analytics_management_client.models.OutputListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.OutputListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_by_streaming_job.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + if select is not None: + query_parameters['$select'] = self._serialize.query("select", select, 'str') + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('OutputListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + error = self._deserialize(models.Error, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_streaming_job.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/outputs'} # type: ignore + + async def _test_initial( + self, + resource_group_name: str, + job_name: str, + output_name: str, + output: Optional["models.Output"] = None, + **kwargs + ) -> Optional["models.ResourceTestStatus"]: + cls = kwargs.pop('cls', None) # type: ClsType[Optional["models.ResourceTestStatus"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._test_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'outputName': self._serialize.url("output_name", output_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if output is not None: + body_content = self._serialize.body(output, 'Output') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('ResourceTestStatus', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _test_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/outputs/{outputName}/test'} # type: ignore + + async def begin_test( + self, + resource_group_name: str, + job_name: str, + output_name: str, + output: Optional["models.Output"] = None, + **kwargs + ) -> AsyncLROPoller["models.ResourceTestStatus"]: + """Tests whether an output’s datasource is reachable and usable by the Azure Stream Analytics + service. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param output_name: The name of the output. + :type output_name: str + :param output: If the output specified does not already exist, this parameter must contain the + full output definition intended to be tested. If the output specified already exists, this + parameter can be left null to test the existing output as is or if specified, the properties + specified will overwrite the corresponding properties in the existing output (exactly like a + PATCH operation) and the resulting output will be tested. + :type output: ~stream_analytics_management_client.models.Output + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either ResourceTestStatus or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~stream_analytics_management_client.models.ResourceTestStatus] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["models.ResourceTestStatus"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._test_initial( + resource_group_name=resource_group_name, + job_name=job_name, + output_name=output_name, + output=output, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('ResourceTestStatus', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'outputName': self._serialize.url("output_name", output_name, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_test.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/outputs/{outputName}/test'} # type: ignore diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/_streaming_jobs_operations.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/_streaming_jobs_operations.py new file mode 100644 index 00000000000..69bec209504 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/_streaming_jobs_operations.py @@ -0,0 +1,965 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar, Union +import warnings + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling + +from ... import models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class StreamingJobsOperations: + """StreamingJobsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~stream_analytics_management_client.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _create_or_replace_initial( + self, + resource_group_name: str, + job_name: str, + streaming_job: "models.StreamingJob", + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + **kwargs + ) -> "models.StreamingJob": + cls = kwargs.pop('cls', None) # type: ClsType["models.StreamingJob"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._create_or_replace_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + if if_match is not None: + header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') + if if_none_match is not None: + header_parameters['If-None-Match'] = self._serialize.header("if_none_match", if_none_match, 'str') + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(streaming_job, 'StreamingJob') + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 200: + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('StreamingJob', pipeline_response) + + if response.status_code == 201: + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('StreamingJob', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + _create_or_replace_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}'} # type: ignore + + async def begin_create_or_replace( + self, + resource_group_name: str, + job_name: str, + streaming_job: "models.StreamingJob", + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + **kwargs + ) -> AsyncLROPoller["models.StreamingJob"]: + """Creates a streaming job or replaces an already existing streaming job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param streaming_job: The definition of the streaming job that will be used to create a new + streaming job or replace the existing one. + :type streaming_job: ~stream_analytics_management_client.models.StreamingJob + :param if_match: The ETag of the streaming job. Omit this value to always overwrite the current + record set. Specify the last-seen ETag value to prevent accidentally overwriting concurrent + changes. + :type if_match: str + :param if_none_match: Set to '*' to allow a new streaming job to be created, but to prevent + updating an existing record set. Other values will result in a 412 Pre-condition Failed + response. + :type if_none_match: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either StreamingJob or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~stream_analytics_management_client.models.StreamingJob] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["models.StreamingJob"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_replace_initial( + resource_group_name=resource_group_name, + job_name=job_name, + streaming_job=streaming_job, + if_match=if_match, + if_none_match=if_none_match, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + response_headers = {} + response = pipeline_response.http_response + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('StreamingJob', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, response_headers) + return deserialized + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_create_or_replace.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}'} # type: ignore + + async def update( + self, + resource_group_name: str, + job_name: str, + streaming_job: "models.StreamingJob", + if_match: Optional[str] = None, + **kwargs + ) -> "models.StreamingJob": + """Updates an existing streaming job. This can be used to partially update (ie. update one or two + properties) a streaming job without affecting the rest the job definition. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param streaming_job: A streaming job object. The properties specified here will overwrite the + corresponding properties in the existing streaming job (ie. Those properties will be updated). + Any properties that are set to null here will mean that the corresponding property in the + existing input will remain the same and not change as a result of this PATCH operation. + :type streaming_job: ~stream_analytics_management_client.models.StreamingJob + :param if_match: The ETag of the streaming job. Omit this value to always overwrite the current + record set. Specify the last-seen ETag value to prevent accidentally overwriting concurrent + changes. + :type if_match: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: StreamingJob, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.StreamingJob + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.StreamingJob"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self.update.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + if if_match is not None: + header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(streaming_job, 'StreamingJob') + body_content_kwargs['content'] = body_content + request = self._client.patch(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('StreamingJob', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + update.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}'} # type: ignore + + async def _delete_initial( + self, + resource_group_name: str, + job_name: str, + **kwargs + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + + # Construct URL + url = self._delete_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.delete(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}'} # type: ignore + + async def begin_delete( + self, + resource_group_name: str, + job_name: str, + **kwargs + ) -> AsyncLROPoller[None]: + """Deletes a streaming job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + job_name=job_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}'} # type: ignore + + async def get( + self, + resource_group_name: str, + job_name: str, + expand: Optional[str] = None, + **kwargs + ) -> "models.StreamingJob": + """Gets details about the specified streaming job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param expand: The $expand OData query parameter. This is a comma-separated list of additional + streaming job properties to include in the response, beyond the default set returned when this + parameter is absent. The default set is all streaming job properties other than 'inputs', + 'transformation', 'outputs', and 'functions'. + :type expand: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: StreamingJob, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.StreamingJob + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.StreamingJob"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + if expand is not None: + query_parameters['$expand'] = self._serialize.query("expand", expand, 'str') + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('StreamingJob', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}'} # type: ignore + + def list_by_resource_group( + self, + resource_group_name: str, + expand: Optional[str] = None, + **kwargs + ) -> AsyncIterable["models.StreamingJobListResult"]: + """Lists all of the streaming jobs in the specified resource group. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param expand: The $expand OData query parameter. This is a comma-separated list of additional + streaming job properties to include in the response, beyond the default set returned when this + parameter is absent. The default set is all streaming job properties other than 'inputs', + 'transformation', 'outputs', and 'functions'. + :type expand: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either StreamingJobListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~stream_analytics_management_client.models.StreamingJobListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.StreamingJobListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_by_resource_group.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + if expand is not None: + query_parameters['$expand'] = self._serialize.query("expand", expand, 'str') + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('StreamingJobListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + error = self._deserialize(models.Error, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs'} # type: ignore + + def list( + self, + expand: Optional[str] = None, + **kwargs + ) -> AsyncIterable["models.StreamingJobListResult"]: + """Lists all of the streaming jobs in the given subscription. + + :param expand: The $expand OData query parameter. This is a comma-separated list of additional + streaming job properties to include in the response, beyond the default set returned when this + parameter is absent. The default set is all streaming job properties other than 'inputs', + 'transformation', 'outputs', and 'functions'. + :type expand: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either StreamingJobListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~stream_analytics_management_client.models.StreamingJobListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.StreamingJobListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + if expand is not None: + query_parameters['$expand'] = self._serialize.query("expand", expand, 'str') + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('StreamingJobListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + error = self._deserialize(models.Error, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.StreamAnalytics/streamingjobs'} # type: ignore + + async def _start_initial( + self, + resource_group_name: str, + job_name: str, + start_job_parameters: Optional["models.StartStreamingJobParameters"] = None, + **kwargs + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._start_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if start_job_parameters is not None: + body_content = self._serialize.body(start_job_parameters, 'StartStreamingJobParameters') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _start_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/start'} # type: ignore + + async def begin_start( + self, + resource_group_name: str, + job_name: str, + start_job_parameters: Optional["models.StartStreamingJobParameters"] = None, + **kwargs + ) -> AsyncLROPoller[None]: + """Starts a streaming job. Once a job is started it will start processing input events and produce + output. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param start_job_parameters: Parameters applicable to a start streaming job operation. + :type start_job_parameters: ~stream_analytics_management_client.models.StartStreamingJobParameters + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._start_initial( + resource_group_name=resource_group_name, + job_name=job_name, + start_job_parameters=start_job_parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_start.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/start'} # type: ignore + + async def _stop_initial( + self, + resource_group_name: str, + job_name: str, + **kwargs + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + + # Construct URL + url = self._stop_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.post(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _stop_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/stop'} # type: ignore + + async def begin_stop( + self, + resource_group_name: str, + job_name: str, + **kwargs + ) -> AsyncLROPoller[None]: + """Stops a running streaming job. This will cause a running streaming job to stop processing input + events and producing output. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._stop_initial( + resource_group_name=resource_group_name, + job_name=job_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_stop.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/stop'} # type: ignore + + async def _scale_initial( + self, + resource_group_name: str, + job_name: str, + scale_job_parameters: Optional["models.ScaleStreamingJobParameters"] = None, + **kwargs + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._scale_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if scale_job_parameters is not None: + body_content = self._serialize.body(scale_job_parameters, 'ScaleStreamingJobParameters') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _scale_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/scale'} # type: ignore + + async def begin_scale( + self, + resource_group_name: str, + job_name: str, + scale_job_parameters: Optional["models.ScaleStreamingJobParameters"] = None, + **kwargs + ) -> AsyncLROPoller[None]: + """Scales a streaming job when the job is running. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param scale_job_parameters: Parameters applicable to a scale streaming job operation. + :type scale_job_parameters: ~stream_analytics_management_client.models.ScaleStreamingJobParameters + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._scale_initial( + resource_group_name=resource_group_name, + job_name=job_name, + scale_job_parameters=scale_job_parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_scale.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/scale'} # type: ignore diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/_subscriptions_operations.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/_subscriptions_operations.py new file mode 100644 index 00000000000..767e3e9ef13 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/_subscriptions_operations.py @@ -0,0 +1,98 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, Callable, Dict, Generic, Optional, TypeVar +import warnings + +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class SubscriptionsOperations: + """SubscriptionsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~stream_analytics_management_client.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def list_quotas( + self, + location: str, + **kwargs + ) -> "models.SubscriptionQuotasListResult": + """Retrieves the subscription's current quota information in a particular region. + + :param location: The region in which to retrieve the subscription's quota information. You can + find out which regions Azure Stream Analytics is supported in here: + https://azure.microsoft.com/en-us/regions/. + :type location: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SubscriptionQuotasListResult, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.SubscriptionQuotasListResult + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.SubscriptionQuotasListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + + # Construct URL + url = self.list_quotas.metadata['url'] # type: ignore + path_format_arguments = { + 'location': self._serialize.url("location", location, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + deserialized = self._deserialize('SubscriptionQuotasListResult', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + list_quotas.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.StreamAnalytics/locations/{location}/quotas'} # type: ignore diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/_transformations_operations.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/_transformations_operations.py new file mode 100644 index 00000000000..50dff78ebf6 --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/aio/operations/_transformations_operations.py @@ -0,0 +1,286 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- +from typing import Any, Callable, Dict, Generic, Optional, TypeVar, Union +import warnings + +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class TransformationsOperations: + """TransformationsOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~stream_analytics_management_client.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def create_or_replace( + self, + resource_group_name: str, + job_name: str, + transformation_name: str, + transformation: "models.Transformation", + if_match: Optional[str] = None, + if_none_match: Optional[str] = None, + **kwargs + ) -> "models.Transformation": + """Creates a transformation or replaces an already existing transformation under an existing + streaming job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param transformation_name: The name of the transformation. + :type transformation_name: str + :param transformation: The definition of the transformation that will be used to create a new + transformation or replace the existing one under the streaming job. + :type transformation: ~stream_analytics_management_client.models.Transformation + :param if_match: The ETag of the transformation. Omit this value to always overwrite the + current transformation. Specify the last-seen ETag value to prevent accidentally overwriting + concurrent changes. + :type if_match: str + :param if_none_match: Set to '*' to allow a new transformation to be created, but to prevent + updating an existing transformation. Other values will result in a 412 Pre-condition Failed + response. + :type if_none_match: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Transformation, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Transformation + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Transformation"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self.create_or_replace.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'transformationName': self._serialize.url("transformation_name", transformation_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + if if_match is not None: + header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') + if if_none_match is not None: + header_parameters['If-None-Match'] = self._serialize.header("if_none_match", if_none_match, 'str') + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(transformation, 'Transformation') + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + if response.status_code == 200: + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Transformation', pipeline_response) + + if response.status_code == 201: + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Transformation', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + create_or_replace.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/transformations/{transformationName}'} # type: ignore + + async def update( + self, + resource_group_name: str, + job_name: str, + transformation_name: str, + transformation: "models.Transformation", + if_match: Optional[str] = None, + **kwargs + ) -> "models.Transformation": + """Updates an existing transformation under an existing streaming job. This can be used to + partially update (ie. update one or two properties) a transformation without affecting the rest + the job or transformation definition. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param transformation_name: The name of the transformation. + :type transformation_name: str + :param transformation: A Transformation object. The properties specified here will overwrite + the corresponding properties in the existing transformation (ie. Those properties will be + updated). Any properties that are set to null here will mean that the corresponding property in + the existing transformation will remain the same and not change as a result of this PATCH + operation. + :type transformation: ~stream_analytics_management_client.models.Transformation + :param if_match: The ETag of the transformation. Omit this value to always overwrite the + current transformation. Specify the last-seen ETag value to prevent accidentally overwriting + concurrent changes. + :type if_match: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Transformation, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Transformation + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Transformation"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self.update.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'transformationName': self._serialize.url("transformation_name", transformation_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + if if_match is not None: + header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + body_content = self._serialize.body(transformation, 'Transformation') + body_content_kwargs['content'] = body_content + request = self._client.patch(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Transformation', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + update.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/transformations/{transformationName}'} # type: ignore + + async def get( + self, + resource_group_name: str, + job_name: str, + transformation_name: str, + **kwargs + ) -> "models.Transformation": + """Gets details about the specified transformation. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :param transformation_name: The name of the transformation. + :type transformation_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Transformation, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Transformation + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Transformation"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'transformationName': self._serialize.url("transformation_name", transformation_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + response_headers = {} + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Transformation', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, response_headers) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/transformations/{transformationName}'} # type: ignore diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/models/__init__.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/models/__init__.py index f38b43d8e3c..eee014f3b75 100644 --- a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/models/__init__.py +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/models/__init__.py @@ -1,17 +1,15 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- try: from ._models_py3 import AvroSerialization from ._models_py3 import AzureDataLakeStoreOutputDataSource + from ._models_py3 import AzureDataLakeStoreOutputDataSourceProperties from ._models_py3 import AzureMachineLearningWebServiceFunctionBinding from ._models_py3 import AzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters from ._models_py3 import AzureMachineLearningWebServiceInputColumn @@ -19,135 +17,198 @@ from ._models_py3 import AzureMachineLearningWebServiceOutputColumn from ._models_py3 import AzureSqlDatabaseDataSourceProperties from ._models_py3 import AzureSqlDatabaseOutputDataSource + from ._models_py3 import AzureSqlDatabaseOutputDataSourceProperties + from ._models_py3 import AzureSqlReferenceInputDataSource + from ._models_py3 import AzureSynapseDataSourceProperties + from ._models_py3 import AzureSynapseOutputDataSource + from ._models_py3 import AzureSynapseOutputDataSourceProperties from ._models_py3 import AzureTableOutputDataSource from ._models_py3 import BlobDataSourceProperties from ._models_py3 import BlobOutputDataSource + from ._models_py3 import BlobOutputDataSourceProperties from ._models_py3 import BlobReferenceInputDataSource + from ._models_py3 import BlobReferenceInputDataSourceProperties from ._models_py3 import BlobStreamInputDataSource + from ._models_py3 import BlobStreamInputDataSourceProperties + from ._models_py3 import ClusterInfo + from ._models_py3 import Compression from ._models_py3 import CsvSerialization from ._models_py3 import DiagnosticCondition from ._models_py3 import Diagnostics from ._models_py3 import DocumentDbOutputDataSource + from ._models_py3 import Error + from ._models_py3 import ErrorDetails from ._models_py3 import ErrorResponse + from ._models_py3 import Errorautogenerated from ._models_py3 import EventHubDataSourceProperties from ._models_py3 import EventHubOutputDataSource + from ._models_py3 import EventHubOutputDataSourceProperties from ._models_py3 import EventHubStreamInputDataSource + from ._models_py3 import EventHubStreamInputDataSourceProperties + from ._models_py3 import EventHubV2OutputDataSource + from ._models_py3 import EventHubV2StreamInputDataSource from ._models_py3 import Function from ._models_py3 import FunctionBinding from ._models_py3 import FunctionInput + from ._models_py3 import FunctionListResult from ._models_py3 import FunctionOutput from ._models_py3 import FunctionProperties from ._models_py3 import FunctionRetrieveDefaultDefinitionParameters + from ._models_py3 import Identity from ._models_py3 import Input + from ._models_py3 import InputListResult from ._models_py3 import InputProperties from ._models_py3 import IoTHubStreamInputDataSource from ._models_py3 import JavaScriptFunctionBinding from ._models_py3 import JavaScriptFunctionRetrieveDefaultDefinitionParameters + from ._models_py3 import JobStorageAccount from ._models_py3 import JsonSerialization from ._models_py3 import OAuthBasedDataSourceProperties from ._models_py3 import Operation from ._models_py3 import OperationDisplay + from ._models_py3 import OperationListResult from ._models_py3 import Output from ._models_py3 import OutputDataSource - from ._models_py3 import PowerBIOutputDataSource + from ._models_py3 import OutputListResult + from ._models_py3 import ParquetSerialization + from ._models_py3 import PowerBiOutputDataSource + from ._models_py3 import PowerBiOutputDataSourceProperties from ._models_py3 import ReferenceInputDataSource from ._models_py3 import ReferenceInputProperties from ._models_py3 import Resource from ._models_py3 import ResourceTestStatus from ._models_py3 import ScalarFunctionProperties + from ._models_py3 import ScaleStreamingJobParameters from ._models_py3 import Serialization from ._models_py3 import ServiceBusDataSourceProperties from ._models_py3 import ServiceBusQueueOutputDataSource + from ._models_py3 import ServiceBusQueueOutputDataSourceProperties from ._models_py3 import ServiceBusTopicOutputDataSource + from ._models_py3 import ServiceBusTopicOutputDataSourceProperties from ._models_py3 import Sku from ._models_py3 import StartStreamingJobParameters from ._models_py3 import StorageAccount - from ._models_py3 import StreamingJob from ._models_py3 import StreamInputDataSource from ._models_py3 import StreamInputProperties + from ._models_py3 import StreamingJob + from ._models_py3 import StreamingJobListResult from ._models_py3 import SubResource from ._models_py3 import SubscriptionQuota from ._models_py3 import SubscriptionQuotasListResult + from ._models_py3 import TrackedResource from ._models_py3 import Transformation except (SyntaxError, ImportError): - from ._models import AvroSerialization - from ._models import AzureDataLakeStoreOutputDataSource - from ._models import AzureMachineLearningWebServiceFunctionBinding - from ._models import AzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters - from ._models import AzureMachineLearningWebServiceInputColumn - from ._models import AzureMachineLearningWebServiceInputs - from ._models import AzureMachineLearningWebServiceOutputColumn - from ._models import AzureSqlDatabaseDataSourceProperties - from ._models import AzureSqlDatabaseOutputDataSource - from ._models import AzureTableOutputDataSource - from ._models import BlobDataSourceProperties - from ._models import BlobOutputDataSource - from ._models import BlobReferenceInputDataSource - from ._models import BlobStreamInputDataSource - from ._models import CsvSerialization - from ._models import DiagnosticCondition - from ._models import Diagnostics - from ._models import DocumentDbOutputDataSource - from ._models import ErrorResponse - from ._models import EventHubDataSourceProperties - from ._models import EventHubOutputDataSource - from ._models import EventHubStreamInputDataSource - from ._models import Function - from ._models import FunctionBinding - from ._models import FunctionInput - from ._models import FunctionOutput - from ._models import FunctionProperties - from ._models import FunctionRetrieveDefaultDefinitionParameters - from ._models import Input - from ._models import InputProperties - from ._models import IoTHubStreamInputDataSource - from ._models import JavaScriptFunctionBinding - from ._models import JavaScriptFunctionRetrieveDefaultDefinitionParameters - from ._models import JsonSerialization - from ._models import OAuthBasedDataSourceProperties - from ._models import Operation - from ._models import OperationDisplay - from ._models import Output - from ._models import OutputDataSource - from ._models import PowerBIOutputDataSource - from ._models import ReferenceInputDataSource - from ._models import ReferenceInputProperties - from ._models import Resource - from ._models import ResourceTestStatus - from ._models import ScalarFunctionProperties - from ._models import Serialization - from ._models import ServiceBusDataSourceProperties - from ._models import ServiceBusQueueOutputDataSource - from ._models import ServiceBusTopicOutputDataSource - from ._models import Sku - from ._models import StartStreamingJobParameters - from ._models import StorageAccount - from ._models import StreamingJob - from ._models import StreamInputDataSource - from ._models import StreamInputProperties - from ._models import SubResource - from ._models import SubscriptionQuota - from ._models import SubscriptionQuotasListResult - from ._models import Transformation -from ._paged_models import FunctionPaged -from ._paged_models import InputPaged -from ._paged_models import OperationPaged -from ._paged_models import OutputPaged -from ._paged_models import StreamingJobPaged + from ._models import AvroSerialization # type: ignore + from ._models import AzureDataLakeStoreOutputDataSource # type: ignore + from ._models import AzureDataLakeStoreOutputDataSourceProperties # type: ignore + from ._models import AzureMachineLearningWebServiceFunctionBinding # type: ignore + from ._models import AzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters # type: ignore + from ._models import AzureMachineLearningWebServiceInputColumn # type: ignore + from ._models import AzureMachineLearningWebServiceInputs # type: ignore + from ._models import AzureMachineLearningWebServiceOutputColumn # type: ignore + from ._models import AzureSqlDatabaseDataSourceProperties # type: ignore + from ._models import AzureSqlDatabaseOutputDataSource # type: ignore + from ._models import AzureSqlDatabaseOutputDataSourceProperties # type: ignore + from ._models import AzureSqlReferenceInputDataSource # type: ignore + from ._models import AzureSynapseDataSourceProperties # type: ignore + from ._models import AzureSynapseOutputDataSource # type: ignore + from ._models import AzureSynapseOutputDataSourceProperties # type: ignore + from ._models import AzureTableOutputDataSource # type: ignore + from ._models import BlobDataSourceProperties # type: ignore + from ._models import BlobOutputDataSource # type: ignore + from ._models import BlobOutputDataSourceProperties # type: ignore + from ._models import BlobReferenceInputDataSource # type: ignore + from ._models import BlobReferenceInputDataSourceProperties # type: ignore + from ._models import BlobStreamInputDataSource # type: ignore + from ._models import BlobStreamInputDataSourceProperties # type: ignore + from ._models import ClusterInfo # type: ignore + from ._models import Compression # type: ignore + from ._models import CsvSerialization # type: ignore + from ._models import DiagnosticCondition # type: ignore + from ._models import Diagnostics # type: ignore + from ._models import DocumentDbOutputDataSource # type: ignore + from ._models import Error # type: ignore + from ._models import ErrorDetails # type: ignore + from ._models import ErrorResponse # type: ignore + from ._models import Errorautogenerated # type: ignore + from ._models import EventHubDataSourceProperties # type: ignore + from ._models import EventHubOutputDataSource # type: ignore + from ._models import EventHubOutputDataSourceProperties # type: ignore + from ._models import EventHubStreamInputDataSource # type: ignore + from ._models import EventHubStreamInputDataSourceProperties # type: ignore + from ._models import EventHubV2OutputDataSource # type: ignore + from ._models import EventHubV2StreamInputDataSource # type: ignore + from ._models import Function # type: ignore + from ._models import FunctionBinding # type: ignore + from ._models import FunctionInput # type: ignore + from ._models import FunctionListResult # type: ignore + from ._models import FunctionOutput # type: ignore + from ._models import FunctionProperties # type: ignore + from ._models import FunctionRetrieveDefaultDefinitionParameters # type: ignore + from ._models import Identity # type: ignore + from ._models import Input # type: ignore + from ._models import InputListResult # type: ignore + from ._models import InputProperties # type: ignore + from ._models import IoTHubStreamInputDataSource # type: ignore + from ._models import JavaScriptFunctionBinding # type: ignore + from ._models import JavaScriptFunctionRetrieveDefaultDefinitionParameters # type: ignore + from ._models import JobStorageAccount # type: ignore + from ._models import JsonSerialization # type: ignore + from ._models import OAuthBasedDataSourceProperties # type: ignore + from ._models import Operation # type: ignore + from ._models import OperationDisplay # type: ignore + from ._models import OperationListResult # type: ignore + from ._models import Output # type: ignore + from ._models import OutputDataSource # type: ignore + from ._models import OutputListResult # type: ignore + from ._models import ParquetSerialization # type: ignore + from ._models import PowerBiOutputDataSource # type: ignore + from ._models import PowerBiOutputDataSourceProperties # type: ignore + from ._models import ReferenceInputDataSource # type: ignore + from ._models import ReferenceInputProperties # type: ignore + from ._models import Resource # type: ignore + from ._models import ResourceTestStatus # type: ignore + from ._models import ScalarFunctionProperties # type: ignore + from ._models import ScaleStreamingJobParameters # type: ignore + from ._models import Serialization # type: ignore + from ._models import ServiceBusDataSourceProperties # type: ignore + from ._models import ServiceBusQueueOutputDataSource # type: ignore + from ._models import ServiceBusQueueOutputDataSourceProperties # type: ignore + from ._models import ServiceBusTopicOutputDataSource # type: ignore + from ._models import ServiceBusTopicOutputDataSourceProperties # type: ignore + from ._models import Sku # type: ignore + from ._models import StartStreamingJobParameters # type: ignore + from ._models import StorageAccount # type: ignore + from ._models import StreamInputDataSource # type: ignore + from ._models import StreamInputProperties # type: ignore + from ._models import StreamingJob # type: ignore + from ._models import StreamingJobListResult # type: ignore + from ._models import SubResource # type: ignore + from ._models import SubscriptionQuota # type: ignore + from ._models import SubscriptionQuotasListResult # type: ignore + from ._models import TrackedResource # type: ignore + from ._models import Transformation # type: ignore + from ._stream_analytics_management_client_enums import ( - SkuName, - OutputStartMode, - EventsOutOfOrderPolicy, - OutputErrorPolicy, + AuthenticationMode, CompatibilityLevel, - JsonOutputSerializationFormat, + CompressionType, + ContentStoragePolicy, Encoding, - UdfType, + EventSerializationType, + EventsOutOfOrderPolicy, + JobType, + JsonOutputSerializationFormat, + OutputErrorPolicy, + OutputStartMode, + RefreshType, + SkuName, ) __all__ = [ 'AvroSerialization', 'AzureDataLakeStoreOutputDataSource', + 'AzureDataLakeStoreOutputDataSourceProperties', 'AzureMachineLearningWebServiceFunctionBinding', 'AzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters', 'AzureMachineLearningWebServiceInputColumn', @@ -155,67 +216,97 @@ 'AzureMachineLearningWebServiceOutputColumn', 'AzureSqlDatabaseDataSourceProperties', 'AzureSqlDatabaseOutputDataSource', + 'AzureSqlDatabaseOutputDataSourceProperties', + 'AzureSqlReferenceInputDataSource', + 'AzureSynapseDataSourceProperties', + 'AzureSynapseOutputDataSource', + 'AzureSynapseOutputDataSourceProperties', 'AzureTableOutputDataSource', 'BlobDataSourceProperties', 'BlobOutputDataSource', + 'BlobOutputDataSourceProperties', 'BlobReferenceInputDataSource', + 'BlobReferenceInputDataSourceProperties', 'BlobStreamInputDataSource', + 'BlobStreamInputDataSourceProperties', + 'ClusterInfo', + 'Compression', 'CsvSerialization', 'DiagnosticCondition', 'Diagnostics', 'DocumentDbOutputDataSource', + 'Error', + 'ErrorDetails', 'ErrorResponse', + 'Errorautogenerated', 'EventHubDataSourceProperties', 'EventHubOutputDataSource', + 'EventHubOutputDataSourceProperties', 'EventHubStreamInputDataSource', + 'EventHubStreamInputDataSourceProperties', + 'EventHubV2OutputDataSource', + 'EventHubV2StreamInputDataSource', 'Function', 'FunctionBinding', 'FunctionInput', + 'FunctionListResult', 'FunctionOutput', 'FunctionProperties', 'FunctionRetrieveDefaultDefinitionParameters', + 'Identity', 'Input', + 'InputListResult', 'InputProperties', 'IoTHubStreamInputDataSource', 'JavaScriptFunctionBinding', 'JavaScriptFunctionRetrieveDefaultDefinitionParameters', + 'JobStorageAccount', 'JsonSerialization', 'OAuthBasedDataSourceProperties', 'Operation', 'OperationDisplay', + 'OperationListResult', 'Output', 'OutputDataSource', - 'PowerBIOutputDataSource', + 'OutputListResult', + 'ParquetSerialization', + 'PowerBiOutputDataSource', + 'PowerBiOutputDataSourceProperties', 'ReferenceInputDataSource', 'ReferenceInputProperties', 'Resource', 'ResourceTestStatus', 'ScalarFunctionProperties', + 'ScaleStreamingJobParameters', 'Serialization', 'ServiceBusDataSourceProperties', 'ServiceBusQueueOutputDataSource', + 'ServiceBusQueueOutputDataSourceProperties', 'ServiceBusTopicOutputDataSource', + 'ServiceBusTopicOutputDataSourceProperties', 'Sku', 'StartStreamingJobParameters', 'StorageAccount', - 'StreamingJob', 'StreamInputDataSource', 'StreamInputProperties', + 'StreamingJob', + 'StreamingJobListResult', 'SubResource', 'SubscriptionQuota', 'SubscriptionQuotasListResult', + 'TrackedResource', 'Transformation', - 'OperationPaged', - 'StreamingJobPaged', - 'InputPaged', - 'OutputPaged', - 'FunctionPaged', - 'SkuName', - 'OutputStartMode', - 'EventsOutOfOrderPolicy', - 'OutputErrorPolicy', + 'AuthenticationMode', 'CompatibilityLevel', - 'JsonOutputSerializationFormat', + 'CompressionType', + 'ContentStoragePolicy', 'Encoding', - 'UdfType', + 'EventSerializationType', + 'EventsOutOfOrderPolicy', + 'JobType', + 'JsonOutputSerializationFormat', + 'OutputErrorPolicy', + 'OutputStartMode', + 'RefreshType', + 'SkuName', ] diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/models/_models.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/models/_models.py index ad0aecb4627..d7ade059b10 100644 --- a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/models/_models.py +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/models/_models.py @@ -1,28 +1,27 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from msrest.serialization import Model +from azure.core.exceptions import HttpResponseError +import msrest.serialization -class Serialization(Model): - """Describes how data from an input is serialized or how data is serialized - when written to an output. +class Serialization(msrest.serialization.Model): + """Describes how data from an input is serialized or how data is serialized when written to an output. You probably want to use the sub-classes and not this class directly. Known - sub-classes are: AvroSerialization, JsonSerialization, CsvSerialization + sub-classes are: AvroSerialization, CsvSerialization, JsonSerialization, ParquetSerialization. All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. - :type type: str + :param type: Required. Indicates the type of serialization that the input or output uses. + Required on PUT (CreateOrReplace) requests.Constant filled by server. Possible values include: + "Csv", "Avro", "Json", "Parquet". + :type type: str or ~stream_analytics_management_client.models.EventSerializationType """ _validation = { @@ -34,24 +33,28 @@ class Serialization(Model): } _subtype_map = { - 'type': {'Avro': 'AvroSerialization', 'Json': 'JsonSerialization', 'Csv': 'CsvSerialization'} + 'type': {'Avro': 'AvroSerialization', 'Csv': 'CsvSerialization', 'Json': 'JsonSerialization', 'Parquet': 'ParquetSerialization'} } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(Serialization, self).__init__(**kwargs) - self.type = None + self.type = None # type: Optional[str] class AvroSerialization(Serialization): - """Describes how data from an input is serialized or how data is serialized - when written to an output in Avro format. + """Describes how data from an input is serialized or how data is serialized when written to an output in Avro format. All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. - :type type: str - :param properties: The properties that are associated with the Avro - serialization type. Required on PUT (CreateOrReplace) requests. + :param type: Required. Indicates the type of serialization that the input or output uses. + Required on PUT (CreateOrReplace) requests.Constant filled by server. Possible values include: + "Csv", "Avro", "Json", "Parquet". + :type type: str or ~stream_analytics_management_client.models.EventSerializationType + :param properties: The properties that are associated with the Avro serialization type. + Required on PUT (CreateOrReplace) requests. :type properties: object """ @@ -64,25 +67,25 @@ class AvroSerialization(Serialization): 'properties': {'key': 'properties', 'type': 'object'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(AvroSerialization, self).__init__(**kwargs) + self.type = 'Avro' # type: str self.properties = kwargs.get('properties', None) - self.type = 'Avro' -class OutputDataSource(Model): +class OutputDataSource(msrest.serialization.Model): """Describes the data source that output will be written to. You probably want to use the sub-classes and not this class directly. Known - sub-classes are: AzureDataLakeStoreOutputDataSource, - PowerBIOutputDataSource, ServiceBusTopicOutputDataSource, - ServiceBusQueueOutputDataSource, DocumentDbOutputDataSource, - AzureSqlDatabaseOutputDataSource, EventHubOutputDataSource, - AzureTableOutputDataSource, BlobOutputDataSource + sub-classes are: AzureDataLakeStoreOutputDataSource, EventHubV2OutputDataSource, EventHubOutputDataSource, ServiceBusQueueOutputDataSource, ServiceBusTopicOutputDataSource, AzureSynapseOutputDataSource, AzureSqlDatabaseOutputDataSource, BlobOutputDataSource, DocumentDbOutputDataSource, AzureTableOutputDataSource, PowerBiOutputDataSource. All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. :type type: str """ @@ -95,12 +98,15 @@ class OutputDataSource(Model): } _subtype_map = { - 'type': {'Microsoft.DataLake/Accounts': 'AzureDataLakeStoreOutputDataSource', 'PowerBI': 'PowerBIOutputDataSource', 'Microsoft.ServiceBus/Topic': 'ServiceBusTopicOutputDataSource', 'Microsoft.ServiceBus/Queue': 'ServiceBusQueueOutputDataSource', 'Microsoft.Storage/DocumentDB': 'DocumentDbOutputDataSource', 'Microsoft.Sql/Server/Database': 'AzureSqlDatabaseOutputDataSource', 'Microsoft.ServiceBus/EventHub': 'EventHubOutputDataSource', 'Microsoft.Storage/Table': 'AzureTableOutputDataSource', 'Microsoft.Storage/Blob': 'BlobOutputDataSource'} + 'type': {'Microsoft.DataLake/Accounts': 'AzureDataLakeStoreOutputDataSource', 'Microsoft.EventHub/EventHub': 'EventHubV2OutputDataSource', 'Microsoft.ServiceBus/EventHub': 'EventHubOutputDataSource', 'Microsoft.ServiceBus/Queue': 'ServiceBusQueueOutputDataSource', 'Microsoft.ServiceBus/Topic': 'ServiceBusTopicOutputDataSource', 'Microsoft.Sql/Server/DataWarehouse': 'AzureSynapseOutputDataSource', 'Microsoft.Sql/Server/Database': 'AzureSqlDatabaseOutputDataSource', 'Microsoft.Storage/Blob': 'BlobOutputDataSource', 'Microsoft.Storage/DocumentDB': 'DocumentDbOutputDataSource', 'Microsoft.Storage/Table': 'AzureTableOutputDataSource', 'PowerBI': 'PowerBiOutputDataSource'} } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(OutputDataSource, self).__init__(**kwargs) - self.type = None + self.type = None # type: Optional[str] class AzureDataLakeStoreOutputDataSource(OutputDataSource): @@ -108,41 +114,42 @@ class AzureDataLakeStoreOutputDataSource(OutputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param refresh_token: A refresh token that can be used to obtain a valid - access token that can then be used to authenticate with the data source. A - valid refresh token is currently only obtainable via the Azure Portal. It - is recommended to put a dummy string value here when creating the data - source and then going to the Azure Portal to authenticate the data source - which will update this property with a valid refresh token. Required on - PUT (CreateOrReplace) requests. + :param refresh_token: A refresh token that can be used to obtain a valid access token that can + then be used to authenticate with the data source. A valid refresh token is currently only + obtainable via the Azure Portal. It is recommended to put a dummy string value here when + creating the data source and then going to the Azure Portal to authenticate the data source + which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) + requests. :type refresh_token: str - :param token_user_principal_name: The user principal name (UPN) of the - user that was used to obtain the refresh token. Use this property to help - remember which user was used to obtain the refresh token. + :param token_user_principal_name: The user principal name (UPN) of the user that was used to + obtain the refresh token. Use this property to help remember which user was used to obtain the + refresh token. :type token_user_principal_name: str - :param token_user_display_name: The user display name of the user that was - used to obtain the refresh token. Use this property to help remember which - user was used to obtain the refresh token. + :param token_user_display_name: The user display name of the user that was used to obtain the + refresh token. Use this property to help remember which user was used to obtain the refresh + token. :type token_user_display_name: str - :param account_name: The name of the Azure Data Lake Store account. - Required on PUT (CreateOrReplace) requests. + :param account_name: The name of the Azure Data Lake Store account. Required on PUT + (CreateOrReplace) requests. :type account_name: str - :param tenant_id: The tenant id of the user used to obtain the refresh - token. Required on PUT (CreateOrReplace) requests. + :param tenant_id: The tenant id of the user used to obtain the refresh token. Required on PUT + (CreateOrReplace) requests. :type tenant_id: str - :param file_path_prefix: The location of the file to which the output - should be written to. Required on PUT (CreateOrReplace) requests. + :param file_path_prefix: The location of the file to which the output should be written to. + Required on PUT (CreateOrReplace) requests. :type file_path_prefix: str - :param date_format: The date format. Wherever {date} appears in - filePathPrefix, the value of this property is used as the date format - instead. + :param date_format: The date format. Wherever {date} appears in filePathPrefix, the value of + this property is used as the date format instead. :type date_format: str - :param time_format: The time format. Wherever {time} appears in - filePathPrefix, the value of this property is used as the time format - instead. + :param time_format: The time format. Wherever {time} appears in filePathPrefix, the value of + this property is used as the time format instead. :type time_format: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode """ _validation = { @@ -159,32 +166,134 @@ class AzureDataLakeStoreOutputDataSource(OutputDataSource): 'file_path_prefix': {'key': 'properties.filePathPrefix', 'type': 'str'}, 'date_format': {'key': 'properties.dateFormat', 'type': 'str'}, 'time_format': {'key': 'properties.timeFormat', 'type': 'str'}, + 'authentication_mode': {'key': 'properties.authenticationMode', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(AzureDataLakeStoreOutputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.DataLake/Accounts' # type: str + self.refresh_token = kwargs.get('refresh_token', None) + self.token_user_principal_name = kwargs.get('token_user_principal_name', None) + self.token_user_display_name = kwargs.get('token_user_display_name', None) + self.account_name = kwargs.get('account_name', None) + self.tenant_id = kwargs.get('tenant_id', None) + self.file_path_prefix = kwargs.get('file_path_prefix', None) + self.date_format = kwargs.get('date_format', None) + self.time_format = kwargs.get('time_format', None) + self.authentication_mode = kwargs.get('authentication_mode', None) + + +class OAuthBasedDataSourceProperties(msrest.serialization.Model): + """The properties that are associated with data sources that use OAuth as their authentication model. + + :param refresh_token: A refresh token that can be used to obtain a valid access token that can + then be used to authenticate with the data source. A valid refresh token is currently only + obtainable via the Azure Portal. It is recommended to put a dummy string value here when + creating the data source and then going to the Azure Portal to authenticate the data source + which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) + requests. + :type refresh_token: str + :param token_user_principal_name: The user principal name (UPN) of the user that was used to + obtain the refresh token. Use this property to help remember which user was used to obtain the + refresh token. + :type token_user_principal_name: str + :param token_user_display_name: The user display name of the user that was used to obtain the + refresh token. Use this property to help remember which user was used to obtain the refresh + token. + :type token_user_display_name: str + """ + + _attribute_map = { + 'refresh_token': {'key': 'refreshToken', 'type': 'str'}, + 'token_user_principal_name': {'key': 'tokenUserPrincipalName', 'type': 'str'}, + 'token_user_display_name': {'key': 'tokenUserDisplayName', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(OAuthBasedDataSourceProperties, self).__init__(**kwargs) self.refresh_token = kwargs.get('refresh_token', None) self.token_user_principal_name = kwargs.get('token_user_principal_name', None) self.token_user_display_name = kwargs.get('token_user_display_name', None) + + +class AzureDataLakeStoreOutputDataSourceProperties(OAuthBasedDataSourceProperties): + """The properties that are associated with an Azure Data Lake Store. + + :param refresh_token: A refresh token that can be used to obtain a valid access token that can + then be used to authenticate with the data source. A valid refresh token is currently only + obtainable via the Azure Portal. It is recommended to put a dummy string value here when + creating the data source and then going to the Azure Portal to authenticate the data source + which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) + requests. + :type refresh_token: str + :param token_user_principal_name: The user principal name (UPN) of the user that was used to + obtain the refresh token. Use this property to help remember which user was used to obtain the + refresh token. + :type token_user_principal_name: str + :param token_user_display_name: The user display name of the user that was used to obtain the + refresh token. Use this property to help remember which user was used to obtain the refresh + token. + :type token_user_display_name: str + :param account_name: The name of the Azure Data Lake Store account. Required on PUT + (CreateOrReplace) requests. + :type account_name: str + :param tenant_id: The tenant id of the user used to obtain the refresh token. Required on PUT + (CreateOrReplace) requests. + :type tenant_id: str + :param file_path_prefix: The location of the file to which the output should be written to. + Required on PUT (CreateOrReplace) requests. + :type file_path_prefix: str + :param date_format: The date format. Wherever {date} appears in filePathPrefix, the value of + this property is used as the date format instead. + :type date_format: str + :param time_format: The time format. Wherever {time} appears in filePathPrefix, the value of + this property is used as the time format instead. + :type time_format: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + """ + + _attribute_map = { + 'refresh_token': {'key': 'refreshToken', 'type': 'str'}, + 'token_user_principal_name': {'key': 'tokenUserPrincipalName', 'type': 'str'}, + 'token_user_display_name': {'key': 'tokenUserDisplayName', 'type': 'str'}, + 'account_name': {'key': 'accountName', 'type': 'str'}, + 'tenant_id': {'key': 'tenantId', 'type': 'str'}, + 'file_path_prefix': {'key': 'filePathPrefix', 'type': 'str'}, + 'date_format': {'key': 'dateFormat', 'type': 'str'}, + 'time_format': {'key': 'timeFormat', 'type': 'str'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(AzureDataLakeStoreOutputDataSourceProperties, self).__init__(**kwargs) self.account_name = kwargs.get('account_name', None) self.tenant_id = kwargs.get('tenant_id', None) self.file_path_prefix = kwargs.get('file_path_prefix', None) self.date_format = kwargs.get('date_format', None) self.time_format = kwargs.get('time_format', None) - self.type = 'Microsoft.DataLake/Accounts' + self.authentication_mode = kwargs.get('authentication_mode', None) -class FunctionBinding(Model): - """The physical binding of the function. For example, in the Azure Machine - Learning web service’s case, this describes the endpoint. +class FunctionBinding(msrest.serialization.Model): + """The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint. You probably want to use the sub-classes and not this class directly. Known - sub-classes are: JavaScriptFunctionBinding, - AzureMachineLearningWebServiceFunctionBinding + sub-classes are: AzureMachineLearningWebServiceFunctionBinding, JavaScriptFunctionBinding. All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the function binding type.Constant filled by server. :type type: str """ @@ -197,12 +306,15 @@ class FunctionBinding(Model): } _subtype_map = { - 'type': {'Microsoft.StreamAnalytics/JavascriptUdf': 'JavaScriptFunctionBinding', 'Microsoft.MachineLearning/WebService': 'AzureMachineLearningWebServiceFunctionBinding'} + 'type': {'Microsoft.MachineLearning/WebService': 'AzureMachineLearningWebServiceFunctionBinding', 'Microsoft.StreamAnalytics/JavascriptUdf': 'JavaScriptFunctionBinding'} } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(FunctionBinding, self).__init__(**kwargs) - self.type = None + self.type = None # type: Optional[str] class AzureMachineLearningWebServiceFunctionBinding(FunctionBinding): @@ -210,25 +322,22 @@ class AzureMachineLearningWebServiceFunctionBinding(FunctionBinding): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the function binding type.Constant filled by server. :type type: str - :param endpoint: The Request-Response execute endpoint of the Azure - Machine Learning web service. Find out more here: - https://docs.microsoft.com/en-us/azure/machine-learning/machine-learning-consume-web-services#request-response-service-rrs + :param endpoint: The Request-Response execute endpoint of the Azure Machine Learning web + service. Find out more here: https://docs.microsoft.com/en-us/azure/machine-learning/machine- + learning-consume-web-services#request-response-service-rrs. :type endpoint: str - :param api_key: The API key used to authenticate with Request-Response - endpoint. + :param api_key: The API key used to authenticate with Request-Response endpoint. :type api_key: str - :param inputs: The inputs for the Azure Machine Learning web service - endpoint. - :type inputs: - ~azure.mgmt.streamanalytics.models.AzureMachineLearningWebServiceInputs - :param outputs: A list of outputs from the Azure Machine Learning web - service endpoint execution. + :param inputs: The inputs for the Azure Machine Learning web service endpoint. + :type inputs: ~stream_analytics_management_client.models.AzureMachineLearningWebServiceInputs + :param outputs: A list of outputs from the Azure Machine Learning web service endpoint + execution. :type outputs: - list[~azure.mgmt.streamanalytics.models.AzureMachineLearningWebServiceOutputColumn] - :param batch_size: Number between 1 and 10000 describing maximum number of - rows for every Azure ML RRS execute request. Default is 1000. + list[~stream_analytics_management_client.models.AzureMachineLearningWebServiceOutputColumn] + :param batch_size: Number between 1 and 10000 describing maximum number of rows for every Azure + ML RRS execute request. Default is 1000. :type batch_size: int """ @@ -245,28 +354,28 @@ class AzureMachineLearningWebServiceFunctionBinding(FunctionBinding): 'batch_size': {'key': 'properties.batchSize', 'type': 'int'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(AzureMachineLearningWebServiceFunctionBinding, self).__init__(**kwargs) + self.type = 'Microsoft.MachineLearning/WebService' # type: str self.endpoint = kwargs.get('endpoint', None) self.api_key = kwargs.get('api_key', None) self.inputs = kwargs.get('inputs', None) self.outputs = kwargs.get('outputs', None) self.batch_size = kwargs.get('batch_size', None) - self.type = 'Microsoft.MachineLearning/WebService' -class FunctionRetrieveDefaultDefinitionParameters(Model): - """Parameters used to specify the type of function to retrieve the default - definition for. +class FunctionRetrieveDefaultDefinitionParameters(msrest.serialization.Model): + """Parameters used to specify the type of function to retrieve the default definition for. You probably want to use the sub-classes and not this class directly. Known - sub-classes are: - AzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters, - JavaScriptFunctionRetrieveDefaultDefinitionParameters + sub-classes are: AzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters, JavaScriptFunctionRetrieveDefaultDefinitionParameters. All required parameters must be populated in order to send to Azure. - :param binding_type: Required. Constant filled by server. + :param binding_type: Required. Indicates the function binding type.Constant filled by server. :type binding_type: str """ @@ -282,57 +391,63 @@ class FunctionRetrieveDefaultDefinitionParameters(Model): 'binding_type': {'Microsoft.MachineLearning/WebService': 'AzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters', 'Microsoft.StreamAnalytics/JavascriptUdf': 'JavaScriptFunctionRetrieveDefaultDefinitionParameters'} } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(FunctionRetrieveDefaultDefinitionParameters, self).__init__(**kwargs) - self.binding_type = None + self.binding_type = None # type: Optional[str] class AzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters(FunctionRetrieveDefaultDefinitionParameters): - """The parameters needed to retrieve the default function definition for an - Azure Machine Learning web service function. + """The parameters needed to retrieve the default function definition for an Azure Machine Learning web service function. + + Variables are only populated by the server, and will be ignored when sending a request. All required parameters must be populated in order to send to Azure. - :param binding_type: Required. Constant filled by server. + :param binding_type: Required. Indicates the function binding type.Constant filled by server. :type binding_type: str - :param execute_endpoint: The Request-Response execute endpoint of the - Azure Machine Learning web service. Find out more here: - https://docs.microsoft.com/en-us/azure/machine-learning/machine-learning-consume-web-services#request-response-service-rrs + :param execute_endpoint: The Request-Response execute endpoint of the Azure Machine Learning + web service. Find out more here: https://docs.microsoft.com/en-us/azure/machine- + learning/machine-learning-consume-web-services#request-response-service-rrs. :type execute_endpoint: str - :param udf_type: The function type. Possible values include: 'Scalar' - :type udf_type: str or ~azure.mgmt.streamanalytics.models.UdfType + :ivar udf_type: The function type. Default value: "Scalar". + :vartype udf_type: str """ _validation = { 'binding_type': {'required': True}, + 'udf_type': {'constant': True}, } _attribute_map = { 'binding_type': {'key': 'bindingType', 'type': 'str'}, 'execute_endpoint': {'key': 'bindingRetrievalProperties.executeEndpoint', 'type': 'str'}, - 'udf_type': {'key': 'bindingRetrievalProperties.udfType', 'type': 'UdfType'}, + 'udf_type': {'key': 'bindingRetrievalProperties.udfType', 'type': 'str'}, } - def __init__(self, **kwargs): + udf_type = "Scalar" + + def __init__( + self, + **kwargs + ): super(AzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters, self).__init__(**kwargs) + self.binding_type = 'Microsoft.MachineLearning/WebService' # type: str self.execute_endpoint = kwargs.get('execute_endpoint', None) - self.udf_type = kwargs.get('udf_type', None) - self.binding_type = 'Microsoft.MachineLearning/WebService' -class AzureMachineLearningWebServiceInputColumn(Model): - """Describes an input column for the Azure Machine Learning web service - endpoint. +class AzureMachineLearningWebServiceInputColumn(msrest.serialization.Model): + """Describes an input column for the Azure Machine Learning web service endpoint. :param name: The name of the input column. :type name: str - :param data_type: The (Azure Machine Learning supported) data type of the - input column. A list of valid Azure Machine Learning data types are - described at https://msdn.microsoft.com/en-us/library/azure/dn905923.aspx - . + :param data_type: The (Azure Machine Learning supported) data type of the input column. A list + of valid Azure Machine Learning data types are described at https://msdn.microsoft.com/en- + us/library/azure/dn905923.aspx . :type data_type: str - :param map_to: The zero based index of the function parameter this input - maps to. + :param map_to: The zero based index of the function parameter this input maps to. :type map_to: int """ @@ -342,23 +457,25 @@ class AzureMachineLearningWebServiceInputColumn(Model): 'map_to': {'key': 'mapTo', 'type': 'int'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(AzureMachineLearningWebServiceInputColumn, self).__init__(**kwargs) self.name = kwargs.get('name', None) self.data_type = kwargs.get('data_type', None) self.map_to = kwargs.get('map_to', None) -class AzureMachineLearningWebServiceInputs(Model): +class AzureMachineLearningWebServiceInputs(msrest.serialization.Model): """The inputs for the Azure Machine Learning web service endpoint. - :param name: The name of the input. This is the name provided while - authoring the endpoint. + :param name: The name of the input. This is the name provided while authoring the endpoint. :type name: str - :param column_names: A list of input columns for the Azure Machine - Learning web service endpoint. + :param column_names: A list of input columns for the Azure Machine Learning web service + endpoint. :type column_names: - list[~azure.mgmt.streamanalytics.models.AzureMachineLearningWebServiceInputColumn] + list[~stream_analytics_management_client.models.AzureMachineLearningWebServiceInputColumn] """ _attribute_map = { @@ -366,22 +483,23 @@ class AzureMachineLearningWebServiceInputs(Model): 'column_names': {'key': 'columnNames', 'type': '[AzureMachineLearningWebServiceInputColumn]'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(AzureMachineLearningWebServiceInputs, self).__init__(**kwargs) self.name = kwargs.get('name', None) self.column_names = kwargs.get('column_names', None) -class AzureMachineLearningWebServiceOutputColumn(Model): - """Describes an output column for the Azure Machine Learning web service - endpoint. +class AzureMachineLearningWebServiceOutputColumn(msrest.serialization.Model): + """Describes an output column for the Azure Machine Learning web service endpoint. :param name: The name of the output column. :type name: str - :param data_type: The (Azure Machine Learning supported) data type of the - output column. A list of valid Azure Machine Learning data types are - described at https://msdn.microsoft.com/en-us/library/azure/dn905923.aspx - . + :param data_type: The (Azure Machine Learning supported) data type of the output column. A list + of valid Azure Machine Learning data types are described at https://msdn.microsoft.com/en- + us/library/azure/dn905923.aspx . :type data_type: str """ @@ -390,30 +508,42 @@ class AzureMachineLearningWebServiceOutputColumn(Model): 'data_type': {'key': 'dataType', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(AzureMachineLearningWebServiceOutputColumn, self).__init__(**kwargs) self.name = kwargs.get('name', None) self.data_type = kwargs.get('data_type', None) -class AzureSqlDatabaseDataSourceProperties(Model): +class AzureSqlDatabaseDataSourceProperties(msrest.serialization.Model): """The properties that are associated with an Azure SQL database data source. - :param server: The name of the SQL server containing the Azure SQL - database. Required on PUT (CreateOrReplace) requests. - :type server: str - :param database: The name of the Azure SQL database. Required on PUT + :param server: The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests. + :type server: str + :param database: The name of the Azure SQL database. Required on PUT (CreateOrReplace) + requests. :type database: str - :param user: The user name that will be used to connect to the Azure SQL - database. Required on PUT (CreateOrReplace) requests. + :param user: The user name that will be used to connect to the Azure SQL database. Required on + PUT (CreateOrReplace) requests. :type user: str - :param password: The password that will be used to connect to the Azure - SQL database. Required on PUT (CreateOrReplace) requests. + :param password: The password that will be used to connect to the Azure SQL database. Required + on PUT (CreateOrReplace) requests. :type password: str - :param table: The name of the table in the Azure SQL database. Required on - PUT (CreateOrReplace) requests. + :param table: The name of the table in the Azure SQL database. Required on PUT + (CreateOrReplace) requests. :type table: str + :param max_batch_count: Max Batch count for write to Sql database, the default value is 10,000. + Optional on PUT requests. + :type max_batch_count: float + :param max_writer_count: Max Writer count, currently only 1(single writer) and 0(based on query + partition) are available. Optional on PUT requests. + :type max_writer_count: float + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode """ _attribute_map = { @@ -422,15 +552,24 @@ class AzureSqlDatabaseDataSourceProperties(Model): 'user': {'key': 'user', 'type': 'str'}, 'password': {'key': 'password', 'type': 'str'}, 'table': {'key': 'table', 'type': 'str'}, + 'max_batch_count': {'key': 'maxBatchCount', 'type': 'float'}, + 'max_writer_count': {'key': 'maxWriterCount', 'type': 'float'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(AzureSqlDatabaseDataSourceProperties, self).__init__(**kwargs) self.server = kwargs.get('server', None) self.database = kwargs.get('database', None) self.user = kwargs.get('user', None) self.password = kwargs.get('password', None) self.table = kwargs.get('table', None) + self.max_batch_count = kwargs.get('max_batch_count', None) + self.max_writer_count = kwargs.get('max_writer_count', None) + self.authentication_mode = kwargs.get('authentication_mode', None) class AzureSqlDatabaseOutputDataSource(OutputDataSource): @@ -438,23 +577,33 @@ class AzureSqlDatabaseOutputDataSource(OutputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param server: The name of the SQL server containing the Azure SQL - database. Required on PUT (CreateOrReplace) requests. - :type server: str - :param database: The name of the Azure SQL database. Required on PUT + :param server: The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests. + :type server: str + :param database: The name of the Azure SQL database. Required on PUT (CreateOrReplace) + requests. :type database: str - :param user: The user name that will be used to connect to the Azure SQL - database. Required on PUT (CreateOrReplace) requests. + :param user: The user name that will be used to connect to the Azure SQL database. Required on + PUT (CreateOrReplace) requests. :type user: str - :param password: The password that will be used to connect to the Azure - SQL database. Required on PUT (CreateOrReplace) requests. + :param password: The password that will be used to connect to the Azure SQL database. Required + on PUT (CreateOrReplace) requests. :type password: str - :param table: The name of the table in the Azure SQL database. Required on - PUT (CreateOrReplace) requests. + :param table: The name of the table in the Azure SQL database. Required on PUT + (CreateOrReplace) requests. :type table: str + :param max_batch_count: Max Batch count for write to Sql database, the default value is 10,000. + Optional on PUT requests. + :type max_batch_count: float + :param max_writer_count: Max Writer count, currently only 1(single writer) and 0(based on query + partition) are available. Optional on PUT requests. + :type max_writer_count: float + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode """ _validation = { @@ -468,16 +617,303 @@ class AzureSqlDatabaseOutputDataSource(OutputDataSource): 'user': {'key': 'properties.user', 'type': 'str'}, 'password': {'key': 'properties.password', 'type': 'str'}, 'table': {'key': 'properties.table', 'type': 'str'}, + 'max_batch_count': {'key': 'properties.maxBatchCount', 'type': 'float'}, + 'max_writer_count': {'key': 'properties.maxWriterCount', 'type': 'float'}, + 'authentication_mode': {'key': 'properties.authenticationMode', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(AzureSqlDatabaseOutputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.Sql/Server/Database' # type: str + self.server = kwargs.get('server', None) + self.database = kwargs.get('database', None) + self.user = kwargs.get('user', None) + self.password = kwargs.get('password', None) + self.table = kwargs.get('table', None) + self.max_batch_count = kwargs.get('max_batch_count', None) + self.max_writer_count = kwargs.get('max_writer_count', None) + self.authentication_mode = kwargs.get('authentication_mode', None) + + +class AzureSqlDatabaseOutputDataSourceProperties(AzureSqlDatabaseDataSourceProperties): + """The properties that are associated with an Azure SQL database output. + + :param server: The name of the SQL server containing the Azure SQL database. Required on PUT + (CreateOrReplace) requests. + :type server: str + :param database: The name of the Azure SQL database. Required on PUT (CreateOrReplace) + requests. + :type database: str + :param user: The user name that will be used to connect to the Azure SQL database. Required on + PUT (CreateOrReplace) requests. + :type user: str + :param password: The password that will be used to connect to the Azure SQL database. Required + on PUT (CreateOrReplace) requests. + :type password: str + :param table: The name of the table in the Azure SQL database. Required on PUT + (CreateOrReplace) requests. + :type table: str + :param max_batch_count: Max Batch count for write to Sql database, the default value is 10,000. + Optional on PUT requests. + :type max_batch_count: float + :param max_writer_count: Max Writer count, currently only 1(single writer) and 0(based on query + partition) are available. Optional on PUT requests. + :type max_writer_count: float + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + """ + + _attribute_map = { + 'server': {'key': 'server', 'type': 'str'}, + 'database': {'key': 'database', 'type': 'str'}, + 'user': {'key': 'user', 'type': 'str'}, + 'password': {'key': 'password', 'type': 'str'}, + 'table': {'key': 'table', 'type': 'str'}, + 'max_batch_count': {'key': 'maxBatchCount', 'type': 'float'}, + 'max_writer_count': {'key': 'maxWriterCount', 'type': 'float'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(AzureSqlDatabaseOutputDataSourceProperties, self).__init__(**kwargs) + + +class ReferenceInputDataSource(msrest.serialization.Model): + """Describes an input data source that contains reference data. + + You probably want to use the sub-classes and not this class directly. Known + sub-classes are: AzureSqlReferenceInputDataSource, BlobReferenceInputDataSource. + + All required parameters must be populated in order to send to Azure. + + :param type: Required. Indicates the type of input data source containing reference data. + Required on PUT (CreateOrReplace) requests.Constant filled by server. + :type type: str + """ + + _validation = { + 'type': {'required': True}, + } + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + } + + _subtype_map = { + 'type': {'Microsoft.Sql/Server/Database': 'AzureSqlReferenceInputDataSource', 'Microsoft.Storage/Blob': 'BlobReferenceInputDataSource'} + } + + def __init__( + self, + **kwargs + ): + super(ReferenceInputDataSource, self).__init__(**kwargs) + self.type = None # type: Optional[str] + + +class AzureSqlReferenceInputDataSource(ReferenceInputDataSource): + """Describes an Azure SQL database reference input data source. + + All required parameters must be populated in order to send to Azure. + + :param type: Required. Indicates the type of input data source containing reference data. + Required on PUT (CreateOrReplace) requests.Constant filled by server. + :type type: str + :param server: This element is associated with the datasource element. This is the name of the + server that contains the database that will be written to. + :type server: str + :param database: This element is associated with the datasource element. This is the name of + the database that output will be written to. + :type database: str + :param user: This element is associated with the datasource element. This is the user name that + will be used to connect to the SQL Database instance. + :type user: str + :param password: This element is associated with the datasource element. This is the password + that will be used to connect to the SQL Database instance. + :type password: str + :param table: This element is associated with the datasource element. The name of the table in + the Azure SQL database.. + :type table: str + :param refresh_type: Indicates the type of data refresh option. Possible values include: + "Static", "RefreshPeriodicallyWithFull", "RefreshPeriodicallyWithDelta". + :type refresh_type: str or ~stream_analytics_management_client.models.RefreshType + :param refresh_rate: This element is associated with the datasource element. This indicates how + frequently the data will be fetched from the database. It is of DateTime format. + :type refresh_rate: str + :param full_snapshot_query: This element is associated with the datasource element. This query + is used to fetch data from the sql database. + :type full_snapshot_query: str + :param delta_snapshot_query: This element is associated with the datasource element. This query + is used to fetch incremental changes from the SQL database. To use this option, we recommend + using temporal tables in Azure SQL Database. + :type delta_snapshot_query: str + """ + + _validation = { + 'type': {'required': True}, + } + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + 'server': {'key': 'properties.server', 'type': 'str'}, + 'database': {'key': 'properties.database', 'type': 'str'}, + 'user': {'key': 'properties.user', 'type': 'str'}, + 'password': {'key': 'properties.password', 'type': 'str'}, + 'table': {'key': 'properties.table', 'type': 'str'}, + 'refresh_type': {'key': 'properties.refreshType', 'type': 'str'}, + 'refresh_rate': {'key': 'properties.refreshRate', 'type': 'str'}, + 'full_snapshot_query': {'key': 'properties.fullSnapshotQuery', 'type': 'str'}, + 'delta_snapshot_query': {'key': 'properties.deltaSnapshotQuery', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(AzureSqlReferenceInputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.Sql/Server/Database' # type: str + self.server = kwargs.get('server', None) + self.database = kwargs.get('database', None) + self.user = kwargs.get('user', None) + self.password = kwargs.get('password', None) + self.table = kwargs.get('table', None) + self.refresh_type = kwargs.get('refresh_type', None) + self.refresh_rate = kwargs.get('refresh_rate', None) + self.full_snapshot_query = kwargs.get('full_snapshot_query', None) + self.delta_snapshot_query = kwargs.get('delta_snapshot_query', None) + + +class AzureSynapseDataSourceProperties(msrest.serialization.Model): + """The properties that are associated with an Azure SQL database data source. + + :param server: The name of the SQL server containing the Azure SQL database. Required on PUT + (CreateOrReplace) requests. + :type server: str + :param database: The name of the Azure SQL database. Required on PUT (CreateOrReplace) + requests. + :type database: str + :param table: The name of the table in the Azure SQL database. Required on PUT + (CreateOrReplace) requests. + :type table: str + :param user: The user name that will be used to connect to the Azure SQL database. Required on + PUT (CreateOrReplace) requests. + :type user: str + :param password: The password that will be used to connect to the Azure SQL database. Required + on PUT (CreateOrReplace) requests. + :type password: str + """ + + _attribute_map = { + 'server': {'key': 'server', 'type': 'str'}, + 'database': {'key': 'database', 'type': 'str'}, + 'table': {'key': 'table', 'type': 'str'}, + 'user': {'key': 'user', 'type': 'str'}, + 'password': {'key': 'password', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(AzureSynapseDataSourceProperties, self).__init__(**kwargs) self.server = kwargs.get('server', None) self.database = kwargs.get('database', None) + self.table = kwargs.get('table', None) self.user = kwargs.get('user', None) self.password = kwargs.get('password', None) + + +class AzureSynapseOutputDataSource(OutputDataSource): + """Describes an Azure Synapse output data source. + + All required parameters must be populated in order to send to Azure. + + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. + :type type: str + :param server: The name of the SQL server containing the Azure SQL database. Required on PUT + (CreateOrReplace) requests. + :type server: str + :param database: The name of the Azure SQL database. Required on PUT (CreateOrReplace) + requests. + :type database: str + :param table: The name of the table in the Azure SQL database. Required on PUT + (CreateOrReplace) requests. + :type table: str + :param user: The user name that will be used to connect to the Azure SQL database. Required on + PUT (CreateOrReplace) requests. + :type user: str + :param password: The password that will be used to connect to the Azure SQL database. Required + on PUT (CreateOrReplace) requests. + :type password: str + """ + + _validation = { + 'type': {'required': True}, + } + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + 'server': {'key': 'properties.server', 'type': 'str'}, + 'database': {'key': 'properties.database', 'type': 'str'}, + 'table': {'key': 'properties.table', 'type': 'str'}, + 'user': {'key': 'properties.user', 'type': 'str'}, + 'password': {'key': 'properties.password', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(AzureSynapseOutputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.Sql/Server/DataWarehouse' # type: str + self.server = kwargs.get('server', None) + self.database = kwargs.get('database', None) self.table = kwargs.get('table', None) - self.type = 'Microsoft.Sql/Server/Database' + self.user = kwargs.get('user', None) + self.password = kwargs.get('password', None) + + +class AzureSynapseOutputDataSourceProperties(AzureSynapseDataSourceProperties): + """The properties that are associated with an Azure Synapse output. + + :param server: The name of the SQL server containing the Azure SQL database. Required on PUT + (CreateOrReplace) requests. + :type server: str + :param database: The name of the Azure SQL database. Required on PUT (CreateOrReplace) + requests. + :type database: str + :param table: The name of the table in the Azure SQL database. Required on PUT + (CreateOrReplace) requests. + :type table: str + :param user: The user name that will be used to connect to the Azure SQL database. Required on + PUT (CreateOrReplace) requests. + :type user: str + :param password: The password that will be used to connect to the Azure SQL database. Required + on PUT (CreateOrReplace) requests. + :type password: str + """ + + _attribute_map = { + 'server': {'key': 'server', 'type': 'str'}, + 'database': {'key': 'database', 'type': 'str'}, + 'table': {'key': 'table', 'type': 'str'}, + 'user': {'key': 'user', 'type': 'str'}, + 'password': {'key': 'password', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(AzureSynapseOutputDataSourceProperties, self).__init__(**kwargs) class AzureTableOutputDataSource(OutputDataSource): @@ -485,30 +921,29 @@ class AzureTableOutputDataSource(OutputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param account_name: The name of the Azure Storage account. Required on - PUT (CreateOrReplace) requests. + :param account_name: The name of the Azure Storage account. Required on PUT (CreateOrReplace) + requests. :type account_name: str - :param account_key: The account key for the Azure Storage account. - Required on PUT (CreateOrReplace) requests. - :type account_key: str - :param table: The name of the Azure Table. Required on PUT + :param account_key: The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests. + :type account_key: str + :param table: The name of the Azure Table. Required on PUT (CreateOrReplace) requests. :type table: str - :param partition_key: This element indicates the name of a column from the - SELECT statement in the query that will be used as the partition key for - the Azure Table. Required on PUT (CreateOrReplace) requests. + :param partition_key: This element indicates the name of a column from the SELECT statement in + the query that will be used as the partition key for the Azure Table. Required on PUT + (CreateOrReplace) requests. :type partition_key: str - :param row_key: This element indicates the name of a column from the - SELECT statement in the query that will be used as the row key for the - Azure Table. Required on PUT (CreateOrReplace) requests. + :param row_key: This element indicates the name of a column from the SELECT statement in the + query that will be used as the row key for the Azure Table. Required on PUT (CreateOrReplace) + requests. :type row_key: str - :param columns_to_remove: If specified, each item in the array is the name - of a column to remove (if present) from output event entities. + :param columns_to_remove: If specified, each item in the array is the name of a column to + remove (if present) from output event entities. :type columns_to_remove: list[str] - :param batch_size: The number of rows to write to the Azure Table at a - time. + :param batch_size: The number of rows to write to the Azure Table at a time. :type batch_size: int """ @@ -527,8 +962,12 @@ class AzureTableOutputDataSource(OutputDataSource): 'batch_size': {'key': 'properties.batchSize', 'type': 'int'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(AzureTableOutputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.Storage/Table' # type: str self.account_name = kwargs.get('account_name', None) self.account_key = kwargs.get('account_key', None) self.table = kwargs.get('table', None) @@ -536,35 +975,30 @@ def __init__(self, **kwargs): self.row_key = kwargs.get('row_key', None) self.columns_to_remove = kwargs.get('columns_to_remove', None) self.batch_size = kwargs.get('batch_size', None) - self.type = 'Microsoft.Storage/Table' -class BlobDataSourceProperties(Model): +class BlobDataSourceProperties(msrest.serialization.Model): """The properties that are associated with a blob data source. - :param storage_accounts: A list of one or more Azure Storage accounts. - Required on PUT (CreateOrReplace) requests. - :type storage_accounts: - list[~azure.mgmt.streamanalytics.models.StorageAccount] - :param container: The name of a container within the associated Storage - account. This container contains either the blob(s) to be read from or - written to. Required on PUT (CreateOrReplace) requests. + :param storage_accounts: A list of one or more Azure Storage accounts. Required on PUT + (CreateOrReplace) requests. + :type storage_accounts: list[~stream_analytics_management_client.models.StorageAccount] + :param container: The name of a container within the associated Storage account. This container + contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) + requests. :type container: str - :param path_pattern: The blob path pattern. Not a regular expression. It - represents a pattern against which blob names will be matched to determine - whether or not they should be included as input or output to the job. See - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input - or - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output - for a more detailed explanation and example. + :param path_pattern: The blob path pattern. Not a regular expression. It represents a pattern + against which blob names will be matched to determine whether or not they should be included as + input or output to the job. See https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and + example. :type path_pattern: str - :param date_format: The date format. Wherever {date} appears in - pathPattern, the value of this property is used as the date format - instead. + :param date_format: The date format. Wherever {date} appears in pathPattern, the value of this + property is used as the date format instead. :type date_format: str - :param time_format: The time format. Wherever {time} appears in - pathPattern, the value of this property is used as the time format - instead. + :param time_format: The time format. Wherever {time} appears in pathPattern, the value of this + property is used as the time format instead. :type time_format: str """ @@ -576,7 +1010,10 @@ class BlobDataSourceProperties(Model): 'time_format': {'key': 'timeFormat', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(BlobDataSourceProperties, self).__init__(**kwargs) self.storage_accounts = kwargs.get('storage_accounts', None) self.container = kwargs.get('container', None) @@ -590,32 +1027,32 @@ class BlobOutputDataSource(OutputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param storage_accounts: A list of one or more Azure Storage accounts. - Required on PUT (CreateOrReplace) requests. - :type storage_accounts: - list[~azure.mgmt.streamanalytics.models.StorageAccount] - :param container: The name of a container within the associated Storage - account. This container contains either the blob(s) to be read from or - written to. Required on PUT (CreateOrReplace) requests. - :type container: str - :param path_pattern: The blob path pattern. Not a regular expression. It - represents a pattern against which blob names will be matched to determine - whether or not they should be included as input or output to the job. See - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input - or - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output - for a more detailed explanation and example. + :param storage_accounts: A list of one or more Azure Storage accounts. Required on PUT + (CreateOrReplace) requests. + :type storage_accounts: list[~stream_analytics_management_client.models.StorageAccount] + :param container: The name of a container within the associated Storage account. This container + contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) + requests. + :type container: str + :param path_pattern: The blob path pattern. Not a regular expression. It represents a pattern + against which blob names will be matched to determine whether or not they should be included as + input or output to the job. See https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and + example. :type path_pattern: str - :param date_format: The date format. Wherever {date} appears in - pathPattern, the value of this property is used as the date format - instead. + :param date_format: The date format. Wherever {date} appears in pathPattern, the value of this + property is used as the date format instead. :type date_format: str - :param time_format: The time format. Wherever {time} appears in - pathPattern, the value of this property is used as the time format - instead. + :param time_format: The time format. Wherever {time} appears in pathPattern, the value of this + property is used as the time format instead. :type time_format: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode """ _validation = { @@ -629,45 +1066,66 @@ class BlobOutputDataSource(OutputDataSource): 'path_pattern': {'key': 'properties.pathPattern', 'type': 'str'}, 'date_format': {'key': 'properties.dateFormat', 'type': 'str'}, 'time_format': {'key': 'properties.timeFormat', 'type': 'str'}, + 'authentication_mode': {'key': 'properties.authenticationMode', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(BlobOutputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.Storage/Blob' # type: str self.storage_accounts = kwargs.get('storage_accounts', None) self.container = kwargs.get('container', None) self.path_pattern = kwargs.get('path_pattern', None) self.date_format = kwargs.get('date_format', None) self.time_format = kwargs.get('time_format', None) - self.type = 'Microsoft.Storage/Blob' - - -class ReferenceInputDataSource(Model): - """Describes an input data source that contains reference data. + self.authentication_mode = kwargs.get('authentication_mode', None) - You probably want to use the sub-classes and not this class directly. Known - sub-classes are: BlobReferenceInputDataSource - All required parameters must be populated in order to send to Azure. +class BlobOutputDataSourceProperties(BlobDataSourceProperties): + """The properties that are associated with a blob output. - :param type: Required. Constant filled by server. - :type type: str + :param storage_accounts: A list of one or more Azure Storage accounts. Required on PUT + (CreateOrReplace) requests. + :type storage_accounts: list[~stream_analytics_management_client.models.StorageAccount] + :param container: The name of a container within the associated Storage account. This container + contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) + requests. + :type container: str + :param path_pattern: The blob path pattern. Not a regular expression. It represents a pattern + against which blob names will be matched to determine whether or not they should be included as + input or output to the job. See https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and + example. + :type path_pattern: str + :param date_format: The date format. Wherever {date} appears in pathPattern, the value of this + property is used as the date format instead. + :type date_format: str + :param time_format: The time format. Wherever {time} appears in pathPattern, the value of this + property is used as the time format instead. + :type time_format: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode """ - _validation = { - 'type': {'required': True}, - } - _attribute_map = { - 'type': {'key': 'type', 'type': 'str'}, - } - - _subtype_map = { - 'type': {'Microsoft.Storage/Blob': 'BlobReferenceInputDataSource'} + 'storage_accounts': {'key': 'storageAccounts', 'type': '[StorageAccount]'}, + 'container': {'key': 'container', 'type': 'str'}, + 'path_pattern': {'key': 'pathPattern', 'type': 'str'}, + 'date_format': {'key': 'dateFormat', 'type': 'str'}, + 'time_format': {'key': 'timeFormat', 'type': 'str'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, } - def __init__(self, **kwargs): - super(ReferenceInputDataSource, self).__init__(**kwargs) - self.type = None + def __init__( + self, + **kwargs + ): + super(BlobOutputDataSourceProperties, self).__init__(**kwargs) + self.authentication_mode = kwargs.get('authentication_mode', None) class BlobReferenceInputDataSource(ReferenceInputDataSource): @@ -675,31 +1133,28 @@ class BlobReferenceInputDataSource(ReferenceInputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of input data source containing reference data. + Required on PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param storage_accounts: A list of one or more Azure Storage accounts. - Required on PUT (CreateOrReplace) requests. - :type storage_accounts: - list[~azure.mgmt.streamanalytics.models.StorageAccount] - :param container: The name of a container within the associated Storage - account. This container contains either the blob(s) to be read from or - written to. Required on PUT (CreateOrReplace) requests. + :param storage_accounts: A list of one or more Azure Storage accounts. Required on PUT + (CreateOrReplace) requests. + :type storage_accounts: list[~stream_analytics_management_client.models.StorageAccount] + :param container: The name of a container within the associated Storage account. This container + contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) + requests. :type container: str - :param path_pattern: The blob path pattern. Not a regular expression. It - represents a pattern against which blob names will be matched to determine - whether or not they should be included as input or output to the job. See - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input - or - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output - for a more detailed explanation and example. + :param path_pattern: The blob path pattern. Not a regular expression. It represents a pattern + against which blob names will be matched to determine whether or not they should be included as + input or output to the job. See https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and + example. :type path_pattern: str - :param date_format: The date format. Wherever {date} appears in - pathPattern, the value of this property is used as the date format - instead. + :param date_format: The date format. Wherever {date} appears in pathPattern, the value of this + property is used as the date format instead. :type date_format: str - :param time_format: The time format. Wherever {time} appears in - pathPattern, the value of this property is used as the time format - instead. + :param time_format: The time format. Wherever {time} appears in pathPattern, the value of this + property is used as the time format instead. :type time_format: str """ @@ -716,26 +1171,69 @@ class BlobReferenceInputDataSource(ReferenceInputDataSource): 'time_format': {'key': 'properties.timeFormat', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(BlobReferenceInputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.Storage/Blob' # type: str self.storage_accounts = kwargs.get('storage_accounts', None) self.container = kwargs.get('container', None) self.path_pattern = kwargs.get('path_pattern', None) self.date_format = kwargs.get('date_format', None) self.time_format = kwargs.get('time_format', None) - self.type = 'Microsoft.Storage/Blob' -class StreamInputDataSource(Model): +class BlobReferenceInputDataSourceProperties(BlobDataSourceProperties): + """The properties that are associated with a blob input containing reference data. + + :param storage_accounts: A list of one or more Azure Storage accounts. Required on PUT + (CreateOrReplace) requests. + :type storage_accounts: list[~stream_analytics_management_client.models.StorageAccount] + :param container: The name of a container within the associated Storage account. This container + contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) + requests. + :type container: str + :param path_pattern: The blob path pattern. Not a regular expression. It represents a pattern + against which blob names will be matched to determine whether or not they should be included as + input or output to the job. See https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and + example. + :type path_pattern: str + :param date_format: The date format. Wherever {date} appears in pathPattern, the value of this + property is used as the date format instead. + :type date_format: str + :param time_format: The time format. Wherever {time} appears in pathPattern, the value of this + property is used as the time format instead. + :type time_format: str + """ + + _attribute_map = { + 'storage_accounts': {'key': 'storageAccounts', 'type': '[StorageAccount]'}, + 'container': {'key': 'container', 'type': 'str'}, + 'path_pattern': {'key': 'pathPattern', 'type': 'str'}, + 'date_format': {'key': 'dateFormat', 'type': 'str'}, + 'time_format': {'key': 'timeFormat', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(BlobReferenceInputDataSourceProperties, self).__init__(**kwargs) + + +class StreamInputDataSource(msrest.serialization.Model): """Describes an input data source that contains stream data. You probably want to use the sub-classes and not this class directly. Known - sub-classes are: IoTHubStreamInputDataSource, - EventHubStreamInputDataSource, BlobStreamInputDataSource + sub-classes are: IoTHubStreamInputDataSource, EventHubV2StreamInputDataSource, EventHubStreamInputDataSource, BlobStreamInputDataSource. All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of input data source containing stream data. Required + on PUT (CreateOrReplace) requests.Constant filled by server. :type type: str """ @@ -748,12 +1246,15 @@ class StreamInputDataSource(Model): } _subtype_map = { - 'type': {'Microsoft.Devices/IotHubs': 'IoTHubStreamInputDataSource', 'Microsoft.ServiceBus/EventHub': 'EventHubStreamInputDataSource', 'Microsoft.Storage/Blob': 'BlobStreamInputDataSource'} + 'type': {'Microsoft.Devices/IotHubs': 'IoTHubStreamInputDataSource', 'Microsoft.EventHub/EventHub': 'EventHubV2StreamInputDataSource', 'Microsoft.ServiceBus/EventHub': 'EventHubStreamInputDataSource', 'Microsoft.Storage/Blob': 'BlobStreamInputDataSource'} } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(StreamInputDataSource, self).__init__(**kwargs) - self.type = None + self.type = None # type: Optional[str] class BlobStreamInputDataSource(StreamInputDataSource): @@ -761,34 +1262,31 @@ class BlobStreamInputDataSource(StreamInputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of input data source containing stream data. Required + on PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param storage_accounts: A list of one or more Azure Storage accounts. - Required on PUT (CreateOrReplace) requests. - :type storage_accounts: - list[~azure.mgmt.streamanalytics.models.StorageAccount] - :param container: The name of a container within the associated Storage - account. This container contains either the blob(s) to be read from or - written to. Required on PUT (CreateOrReplace) requests. + :param storage_accounts: A list of one or more Azure Storage accounts. Required on PUT + (CreateOrReplace) requests. + :type storage_accounts: list[~stream_analytics_management_client.models.StorageAccount] + :param container: The name of a container within the associated Storage account. This container + contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) + requests. :type container: str - :param path_pattern: The blob path pattern. Not a regular expression. It - represents a pattern against which blob names will be matched to determine - whether or not they should be included as input or output to the job. See - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input - or - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output - for a more detailed explanation and example. + :param path_pattern: The blob path pattern. Not a regular expression. It represents a pattern + against which blob names will be matched to determine whether or not they should be included as + input or output to the job. See https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and + example. :type path_pattern: str - :param date_format: The date format. Wherever {date} appears in - pathPattern, the value of this property is used as the date format - instead. + :param date_format: The date format. Wherever {date} appears in pathPattern, the value of this + property is used as the date format instead. :type date_format: str - :param time_format: The time format. Wherever {time} appears in - pathPattern, the value of this property is used as the time format - instead. + :param time_format: The time format. Wherever {time} appears in pathPattern, the value of this + property is used as the time format instead. :type time_format: str - :param source_partition_count: The partition count of the blob input data - source. Range 1 - 256. + :param source_partition_count: The partition count of the blob input data source. Range 1 - + 256. :type source_partition_count: int """ @@ -806,45 +1304,128 @@ class BlobStreamInputDataSource(StreamInputDataSource): 'source_partition_count': {'key': 'properties.sourcePartitionCount', 'type': 'int'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(BlobStreamInputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.Storage/Blob' # type: str self.storage_accounts = kwargs.get('storage_accounts', None) self.container = kwargs.get('container', None) self.path_pattern = kwargs.get('path_pattern', None) self.date_format = kwargs.get('date_format', None) self.time_format = kwargs.get('time_format', None) self.source_partition_count = kwargs.get('source_partition_count', None) - self.type = 'Microsoft.Storage/Blob' -class CloudError(Model): - """CloudError. +class BlobStreamInputDataSourceProperties(BlobDataSourceProperties): + """The properties that are associated with a blob input containing stream data. + + :param storage_accounts: A list of one or more Azure Storage accounts. Required on PUT + (CreateOrReplace) requests. + :type storage_accounts: list[~stream_analytics_management_client.models.StorageAccount] + :param container: The name of a container within the associated Storage account. This container + contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) + requests. + :type container: str + :param path_pattern: The blob path pattern. Not a regular expression. It represents a pattern + against which blob names will be matched to determine whether or not they should be included as + input or output to the job. See https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and + example. + :type path_pattern: str + :param date_format: The date format. Wherever {date} appears in pathPattern, the value of this + property is used as the date format instead. + :type date_format: str + :param time_format: The time format. Wherever {time} appears in pathPattern, the value of this + property is used as the time format instead. + :type time_format: str + :param source_partition_count: The partition count of the blob input data source. Range 1 - + 256. + :type source_partition_count: int + """ + + _attribute_map = { + 'storage_accounts': {'key': 'storageAccounts', 'type': '[StorageAccount]'}, + 'container': {'key': 'container', 'type': 'str'}, + 'path_pattern': {'key': 'pathPattern', 'type': 'str'}, + 'date_format': {'key': 'dateFormat', 'type': 'str'}, + 'time_format': {'key': 'timeFormat', 'type': 'str'}, + 'source_partition_count': {'key': 'sourcePartitionCount', 'type': 'int'}, + } + + def __init__( + self, + **kwargs + ): + super(BlobStreamInputDataSourceProperties, self).__init__(**kwargs) + self.source_partition_count = kwargs.get('source_partition_count', None) + + +class ClusterInfo(msrest.serialization.Model): + """The properties associated with a Stream Analytics cluster. + + :param id: The resource id of cluster. + :type id: str + """ + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(ClusterInfo, self).__init__(**kwargs) + self.id = kwargs.get('id', None) + + +class Compression(msrest.serialization.Model): + """Describes how input data is compressed. + + All required parameters must be populated in order to send to Azure. + + :param type: Required. Indicates the type of compression that the input uses. Required on PUT + (CreateOrReplace) requests. Possible values include: "None", "GZip", "Deflate". + :type type: str or ~stream_analytics_management_client.models.CompressionType """ + _validation = { + 'type': {'required': True}, + } + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, } + def __init__( + self, + **kwargs + ): + super(Compression, self).__init__(**kwargs) + self.type = kwargs['type'] + class CsvSerialization(Serialization): - """Describes how data from an input is serialized or how data is serialized - when written to an output in CSV format. + """Describes how data from an input is serialized or how data is serialized when written to an output in CSV format. All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. - :type type: str - :param field_delimiter: Specifies the delimiter that will be used to - separate comma-separated value (CSV) records. See - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input - or - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output - for a list of supported values. Required on PUT (CreateOrReplace) - requests. + :param type: Required. Indicates the type of serialization that the input or output uses. + Required on PUT (CreateOrReplace) requests.Constant filled by server. Possible values include: + "Csv", "Avro", "Json", "Parquet". + :type type: str or ~stream_analytics_management_client.models.EventSerializationType + :param field_delimiter: Specifies the delimiter that will be used to separate comma-separated + value (CSV) records. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream- + analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics- + output for a list of supported values. Required on PUT (CreateOrReplace) requests. :type field_delimiter: str - :param encoding: Specifies the encoding of the incoming data in the case - of input and the encoding of outgoing data in the case of output. Required - on PUT (CreateOrReplace) requests. Possible values include: 'UTF8' - :type encoding: str or ~azure.mgmt.streamanalytics.models.Encoding + :param encoding: Specifies the encoding of the incoming data in the case of input and the + encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests. + Possible values include: "UTF8". + :type encoding: str or ~stream_analytics_management_client.models.Encoding """ _validation = { @@ -857,28 +1438,28 @@ class CsvSerialization(Serialization): 'encoding': {'key': 'properties.encoding', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(CsvSerialization, self).__init__(**kwargs) + self.type = 'Csv' # type: str self.field_delimiter = kwargs.get('field_delimiter', None) self.encoding = kwargs.get('encoding', None) - self.type = 'Csv' -class DiagnosticCondition(Model): - """Condition applicable to the resource, or to the job overall, that warrant - customer attention. +class DiagnosticCondition(msrest.serialization.Model): + """Condition applicable to the resource, or to the job overall, that warrant customer attention. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar since: The UTC timestamp of when the condition started. Customers - should be able to find a corresponding event in the ops log around this - time. + :ivar since: The UTC timestamp of when the condition started. Customers should be able to find + a corresponding event in the ops log around this time. :vartype since: str :ivar code: The opaque diagnostic code. :vartype code: str - :ivar message: The human-readable message describing the condition in - detail. Localized in the Accept-Language of the client request. + :ivar message: The human-readable message describing the condition in detail. Localized in the + Accept-Language of the client request. :vartype message: str """ @@ -894,24 +1475,24 @@ class DiagnosticCondition(Model): 'message': {'key': 'message', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(DiagnosticCondition, self).__init__(**kwargs) self.since = None self.code = None self.message = None -class Diagnostics(Model): - """Describes conditions applicable to the Input, Output, or the job overall, - that warrant customer attention. +class Diagnostics(msrest.serialization.Model): + """Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar conditions: A collection of zero or more conditions applicable to - the resource, or to the job overall, that warrant customer attention. - :vartype conditions: - list[~azure.mgmt.streamanalytics.models.DiagnosticCondition] + :ivar conditions: A collection of zero or more conditions applicable to the resource, or to the + job overall, that warrant customer attention. + :vartype conditions: list[~stream_analytics_management_client.models.DiagnosticCondition] """ _validation = { @@ -922,7 +1503,10 @@ class Diagnostics(Model): 'conditions': {'key': 'conditions', 'type': '[DiagnosticCondition]'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(Diagnostics, self).__init__(**kwargs) self.conditions = None @@ -932,31 +1516,30 @@ class DocumentDbOutputDataSource(OutputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param account_id: The DocumentDB account name or ID. Required on PUT - (CreateOrReplace) requests. + :param account_id: The DocumentDB account name or ID. Required on PUT (CreateOrReplace) + requests. :type account_id: str - :param account_key: The account key for the DocumentDB account. Required - on PUT (CreateOrReplace) requests. - :type account_key: str - :param database: The name of the DocumentDB database. Required on PUT + :param account_key: The account key for the DocumentDB account. Required on PUT (CreateOrReplace) requests. + :type account_key: str + :param database: The name of the DocumentDB database. Required on PUT (CreateOrReplace) + requests. :type database: str - :param collection_name_pattern: The collection name pattern for the - collections to be used. The collection name format can be constructed - using the optional {partition} token, where partitions start from 0. See - the DocumentDB section of - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output - for more information. Required on PUT (CreateOrReplace) requests. + :param collection_name_pattern: The collection name pattern for the collections to be used. The + collection name format can be constructed using the optional {partition} token, where + partitions start from 0. See the DocumentDB section of https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-output for more information. Required on PUT + (CreateOrReplace) requests. :type collection_name_pattern: str - :param partition_key: The name of the field in output events used to - specify the key for partitioning output across collections. If - 'collectionNamePattern' contains the {partition} token, this property is - required to be specified. + :param partition_key: The name of the field in output events used to specify the key for + partitioning output across collections. If 'collectionNamePattern' contains the {partition} + token, this property is required to be specified. :type partition_key: str - :param document_id: The name of the field in output events used to specify - the primary key which insert or update operations are based on. + :param document_id: The name of the field in output events used to specify the primary key + which insert or update operations are based on. :type document_id: str """ @@ -974,22 +1557,101 @@ class DocumentDbOutputDataSource(OutputDataSource): 'document_id': {'key': 'properties.documentId', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(DocumentDbOutputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.Storage/DocumentDB' # type: str self.account_id = kwargs.get('account_id', None) self.account_key = kwargs.get('account_key', None) self.database = kwargs.get('database', None) self.collection_name_pattern = kwargs.get('collection_name_pattern', None) self.partition_key = kwargs.get('partition_key', None) self.document_id = kwargs.get('document_id', None) - self.type = 'Microsoft.Storage/DocumentDB' -class ErrorResponse(Model): +class Error(msrest.serialization.Model): + """Common error representation. + + :param error: Error definition properties. + :type error: ~stream_analytics_management_client.models.Errorautogenerated + """ + + _attribute_map = { + 'error': {'key': 'error', 'type': 'Errorautogenerated'}, + } + + def __init__( + self, + **kwargs + ): + super(Error, self).__init__(**kwargs) + self.error = kwargs.get('error', None) + + +class Errorautogenerated(msrest.serialization.Model): + """Error definition properties. + + :param code: Error code. + :type code: str + :param message: Error message. + :type message: str + :param target: Error target. + :type target: str + :param details: Error details. + :type details: list[~stream_analytics_management_client.models.ErrorDetails] + """ + + _attribute_map = { + 'code': {'key': 'code', 'type': 'str'}, + 'message': {'key': 'message', 'type': 'str'}, + 'target': {'key': 'target', 'type': 'str'}, + 'details': {'key': 'details', 'type': '[ErrorDetails]'}, + } + + def __init__( + self, + **kwargs + ): + super(Errorautogenerated, self).__init__(**kwargs) + self.code = kwargs.get('code', None) + self.message = kwargs.get('message', None) + self.target = kwargs.get('target', None) + self.details = kwargs.get('details', None) + + +class ErrorDetails(msrest.serialization.Model): + """Common error details representation. + + :param code: Error code. + :type code: str + :param target: Error target. + :type target: str + :param message: Error message. + :type message: str + """ + + _attribute_map = { + 'code': {'key': 'code', 'type': 'str'}, + 'target': {'key': 'target', 'type': 'str'}, + 'message': {'key': 'message', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(ErrorDetails, self).__init__(**kwargs) + self.code = kwargs.get('code', None) + self.target = kwargs.get('target', None) + self.message = kwargs.get('message', None) + + +class ErrorResponse(msrest.serialization.Model): """Describes the error that occurred. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. :ivar code: Error code associated with the error that occurred. :vartype code: str @@ -1007,60 +1669,66 @@ class ErrorResponse(Model): 'message': {'key': 'message', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(ErrorResponse, self).__init__(**kwargs) self.code = None self.message = None -class ServiceBusDataSourceProperties(Model): - """The common properties that are associated with Service Bus data sources - (Queues, Topics, Event Hubs, etc.). +class ServiceBusDataSourceProperties(msrest.serialization.Model): + """The common properties that are associated with Service Bus data sources (Queues, Topics, Event Hubs, etc.). - :param service_bus_namespace: The namespace that is associated with the - desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on - PUT (CreateOrReplace) requests. + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type service_bus_namespace: str - :param shared_access_policy_name: The shared access policy name for the - Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT - (CreateOrReplace) requests. + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_name: str - :param shared_access_policy_key: The shared access policy key for the - specified shared access policy. Required on PUT (CreateOrReplace) - requests. + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_key: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode """ _attribute_map = { 'service_bus_namespace': {'key': 'serviceBusNamespace', 'type': 'str'}, 'shared_access_policy_name': {'key': 'sharedAccessPolicyName', 'type': 'str'}, 'shared_access_policy_key': {'key': 'sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(ServiceBusDataSourceProperties, self).__init__(**kwargs) self.service_bus_namespace = kwargs.get('service_bus_namespace', None) self.shared_access_policy_name = kwargs.get('shared_access_policy_name', None) self.shared_access_policy_key = kwargs.get('shared_access_policy_key', None) + self.authentication_mode = kwargs.get('authentication_mode', None) class EventHubDataSourceProperties(ServiceBusDataSourceProperties): """The common properties that are associated with Event Hub data sources. - :param service_bus_namespace: The namespace that is associated with the - desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on - PUT (CreateOrReplace) requests. + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type service_bus_namespace: str - :param shared_access_policy_name: The shared access policy name for the - Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT - (CreateOrReplace) requests. + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_name: str - :param shared_access_policy_key: The shared access policy key for the - specified shared access policy. Required on PUT (CreateOrReplace) - requests. + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_key: str - :param event_hub_name: The name of the Event Hub. Required on PUT - (CreateOrReplace) requests. + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param event_hub_name: The name of the Event Hub. Required on PUT (CreateOrReplace) requests. :type event_hub_name: str """ @@ -1068,10 +1736,14 @@ class EventHubDataSourceProperties(ServiceBusDataSourceProperties): 'service_bus_namespace': {'key': 'serviceBusNamespace', 'type': 'str'}, 'shared_access_policy_name': {'key': 'sharedAccessPolicyName', 'type': 'str'}, 'shared_access_policy_key': {'key': 'sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, 'event_hub_name': {'key': 'eventHubName', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(EventHubDataSourceProperties, self).__init__(**kwargs) self.event_hub_name = kwargs.get('event_hub_name', None) @@ -1081,26 +1753,28 @@ class EventHubOutputDataSource(OutputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param service_bus_namespace: The namespace that is associated with the - desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on - PUT (CreateOrReplace) requests. + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type service_bus_namespace: str - :param shared_access_policy_name: The shared access policy name for the - Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT - (CreateOrReplace) requests. + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_name: str - :param shared_access_policy_key: The shared access policy key for the - specified shared access policy. Required on PUT (CreateOrReplace) - requests. + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_key: str - :param event_hub_name: The name of the Event Hub. Required on PUT - (CreateOrReplace) requests. + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param event_hub_name: The name of the Event Hub. Required on PUT (CreateOrReplace) requests. :type event_hub_name: str - :param partition_key: The key/column that is used to determine to which - partition to send event data. + :param partition_key: The key/column that is used to determine to which partition to send event + data. :type partition_key: str + :param property_columns: The properties associated with this Event Hub output. + :type property_columns: list[str] """ _validation = { @@ -1112,18 +1786,68 @@ class EventHubOutputDataSource(OutputDataSource): 'service_bus_namespace': {'key': 'properties.serviceBusNamespace', 'type': 'str'}, 'shared_access_policy_name': {'key': 'properties.sharedAccessPolicyName', 'type': 'str'}, 'shared_access_policy_key': {'key': 'properties.sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'properties.authenticationMode', 'type': 'str'}, 'event_hub_name': {'key': 'properties.eventHubName', 'type': 'str'}, 'partition_key': {'key': 'properties.partitionKey', 'type': 'str'}, + 'property_columns': {'key': 'properties.propertyColumns', 'type': '[str]'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(EventHubOutputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.ServiceBus/EventHub' # type: str self.service_bus_namespace = kwargs.get('service_bus_namespace', None) self.shared_access_policy_name = kwargs.get('shared_access_policy_name', None) self.shared_access_policy_key = kwargs.get('shared_access_policy_key', None) + self.authentication_mode = kwargs.get('authentication_mode', None) self.event_hub_name = kwargs.get('event_hub_name', None) self.partition_key = kwargs.get('partition_key', None) - self.type = 'Microsoft.ServiceBus/EventHub' + self.property_columns = kwargs.get('property_columns', None) + + +class EventHubOutputDataSourceProperties(EventHubDataSourceProperties): + """The properties that are associated with an Event Hub output. + + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type service_bus_namespace: str + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_name: str + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_key: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param event_hub_name: The name of the Event Hub. Required on PUT (CreateOrReplace) requests. + :type event_hub_name: str + :param partition_key: The key/column that is used to determine to which partition to send event + data. + :type partition_key: str + :param property_columns: The properties associated with this Event Hub output. + :type property_columns: list[str] + """ + + _attribute_map = { + 'service_bus_namespace': {'key': 'serviceBusNamespace', 'type': 'str'}, + 'shared_access_policy_name': {'key': 'sharedAccessPolicyName', 'type': 'str'}, + 'shared_access_policy_key': {'key': 'sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, + 'event_hub_name': {'key': 'eventHubName', 'type': 'str'}, + 'partition_key': {'key': 'partitionKey', 'type': 'str'}, + 'property_columns': {'key': 'propertyColumns', 'type': '[str]'}, + } + + def __init__( + self, + **kwargs + ): + super(EventHubOutputDataSourceProperties, self).__init__(**kwargs) + self.partition_key = kwargs.get('partition_key', None) + self.property_columns = kwargs.get('property_columns', None) class EventHubStreamInputDataSource(StreamInputDataSource): @@ -1131,27 +1855,26 @@ class EventHubStreamInputDataSource(StreamInputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of input data source containing stream data. Required + on PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param service_bus_namespace: The namespace that is associated with the - desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on - PUT (CreateOrReplace) requests. + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type service_bus_namespace: str - :param shared_access_policy_name: The shared access policy name for the - Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT - (CreateOrReplace) requests. + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_name: str - :param shared_access_policy_key: The shared access policy key for the - specified shared access policy. Required on PUT (CreateOrReplace) - requests. + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_key: str - :param event_hub_name: The name of the Event Hub. Required on PUT - (CreateOrReplace) requests. + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param event_hub_name: The name of the Event Hub. Required on PUT (CreateOrReplace) requests. :type event_hub_name: str - :param consumer_group_name: The name of an Event Hub Consumer Group that - should be used to read events from the Event Hub. Specifying distinct - consumer group names for multiple inputs allows each of those inputs to - receive the same events from the Event Hub. If not specified, the input + :param consumer_group_name: The name of an Event Hub Consumer Group that should be used to read + events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows + each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group. :type consumer_group_name: str """ @@ -1165,31 +1888,192 @@ class EventHubStreamInputDataSource(StreamInputDataSource): 'service_bus_namespace': {'key': 'properties.serviceBusNamespace', 'type': 'str'}, 'shared_access_policy_name': {'key': 'properties.sharedAccessPolicyName', 'type': 'str'}, 'shared_access_policy_key': {'key': 'properties.sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'properties.authenticationMode', 'type': 'str'}, 'event_hub_name': {'key': 'properties.eventHubName', 'type': 'str'}, 'consumer_group_name': {'key': 'properties.consumerGroupName', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(EventHubStreamInputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.ServiceBus/EventHub' # type: str self.service_bus_namespace = kwargs.get('service_bus_namespace', None) self.shared_access_policy_name = kwargs.get('shared_access_policy_name', None) self.shared_access_policy_key = kwargs.get('shared_access_policy_key', None) + self.authentication_mode = kwargs.get('authentication_mode', None) self.event_hub_name = kwargs.get('event_hub_name', None) self.consumer_group_name = kwargs.get('consumer_group_name', None) - self.type = 'Microsoft.ServiceBus/EventHub' -class SubResource(Model): +class EventHubStreamInputDataSourceProperties(EventHubDataSourceProperties): + """The properties that are associated with a Event Hub input containing stream data. + + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type service_bus_namespace: str + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_name: str + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_key: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param event_hub_name: The name of the Event Hub. Required on PUT (CreateOrReplace) requests. + :type event_hub_name: str + :param consumer_group_name: The name of an Event Hub Consumer Group that should be used to read + events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows + each of those inputs to receive the same events from the Event Hub. If not specified, the input + uses the Event Hub’s default consumer group. + :type consumer_group_name: str + """ + + _attribute_map = { + 'service_bus_namespace': {'key': 'serviceBusNamespace', 'type': 'str'}, + 'shared_access_policy_name': {'key': 'sharedAccessPolicyName', 'type': 'str'}, + 'shared_access_policy_key': {'key': 'sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, + 'event_hub_name': {'key': 'eventHubName', 'type': 'str'}, + 'consumer_group_name': {'key': 'consumerGroupName', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(EventHubStreamInputDataSourceProperties, self).__init__(**kwargs) + self.consumer_group_name = kwargs.get('consumer_group_name', None) + + +class EventHubV2OutputDataSource(OutputDataSource): + """Describes an Event Hub output data source. + + All required parameters must be populated in order to send to Azure. + + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. + :type type: str + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type service_bus_namespace: str + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_name: str + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_key: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param event_hub_name: The name of the Event Hub. Required on PUT (CreateOrReplace) requests. + :type event_hub_name: str + :param partition_key: The key/column that is used to determine to which partition to send event + data. + :type partition_key: str + :param property_columns: The properties associated with this Event Hub output. + :type property_columns: list[str] + """ + + _validation = { + 'type': {'required': True}, + } + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + 'service_bus_namespace': {'key': 'properties.serviceBusNamespace', 'type': 'str'}, + 'shared_access_policy_name': {'key': 'properties.sharedAccessPolicyName', 'type': 'str'}, + 'shared_access_policy_key': {'key': 'properties.sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'properties.authenticationMode', 'type': 'str'}, + 'event_hub_name': {'key': 'properties.eventHubName', 'type': 'str'}, + 'partition_key': {'key': 'properties.partitionKey', 'type': 'str'}, + 'property_columns': {'key': 'properties.propertyColumns', 'type': '[str]'}, + } + + def __init__( + self, + **kwargs + ): + super(EventHubV2OutputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.EventHub/EventHub' # type: str + self.service_bus_namespace = kwargs.get('service_bus_namespace', None) + self.shared_access_policy_name = kwargs.get('shared_access_policy_name', None) + self.shared_access_policy_key = kwargs.get('shared_access_policy_key', None) + self.authentication_mode = kwargs.get('authentication_mode', None) + self.event_hub_name = kwargs.get('event_hub_name', None) + self.partition_key = kwargs.get('partition_key', None) + self.property_columns = kwargs.get('property_columns', None) + + +class EventHubV2StreamInputDataSource(StreamInputDataSource): + """Describes an Event Hub input data source that contains stream data. + + All required parameters must be populated in order to send to Azure. + + :param type: Required. Indicates the type of input data source containing stream data. Required + on PUT (CreateOrReplace) requests.Constant filled by server. + :type type: str + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type service_bus_namespace: str + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_name: str + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_key: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param event_hub_name: The name of the Event Hub. Required on PUT (CreateOrReplace) requests. + :type event_hub_name: str + :param consumer_group_name: The name of an Event Hub Consumer Group that should be used to read + events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows + each of those inputs to receive the same events from the Event Hub. If not specified, the input + uses the Event Hub’s default consumer group. + :type consumer_group_name: str + """ + + _validation = { + 'type': {'required': True}, + } + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + 'service_bus_namespace': {'key': 'properties.serviceBusNamespace', 'type': 'str'}, + 'shared_access_policy_name': {'key': 'properties.sharedAccessPolicyName', 'type': 'str'}, + 'shared_access_policy_key': {'key': 'properties.sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'properties.authenticationMode', 'type': 'str'}, + 'event_hub_name': {'key': 'properties.eventHubName', 'type': 'str'}, + 'consumer_group_name': {'key': 'properties.consumerGroupName', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(EventHubV2StreamInputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.EventHub/EventHub' # type: str + self.service_bus_namespace = kwargs.get('service_bus_namespace', None) + self.shared_access_policy_name = kwargs.get('shared_access_policy_name', None) + self.shared_access_policy_key = kwargs.get('shared_access_policy_key', None) + self.authentication_mode = kwargs.get('authentication_mode', None) + self.event_hub_name = kwargs.get('event_hub_name', None) + self.consumer_group_name = kwargs.get('consumer_group_name', None) + + +class SubResource(msrest.serialization.Model): """The base sub-resource model definition. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Resource Id + :ivar id: Resource Id. :vartype id: str - :param name: Resource name + :param name: Resource name. :type name: str - :ivar type: Resource type + :ivar type: Resource type. :vartype type: str """ @@ -1204,7 +2088,10 @@ class SubResource(Model): 'type': {'key': 'type', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(SubResource, self).__init__(**kwargs) self.id = None self.name = kwargs.get('name', None) @@ -1212,20 +2099,18 @@ def __init__(self, **kwargs): class Function(SubResource): - """A function object, containing all information associated with the named - function. All functions are contained under a streaming job. + """A function object, containing all information associated with the named function. All functions are contained under a streaming job. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Resource Id + :ivar id: Resource Id. :vartype id: str - :param name: Resource name + :param name: Resource name. :type name: str - :ivar type: Resource type + :ivar type: Resource type. :vartype type: str :param properties: The properties that are associated with a function. - :type properties: ~azure.mgmt.streamanalytics.models.FunctionProperties + :type properties: ~stream_analytics_management_client.models.FunctionProperties """ _validation = { @@ -1240,22 +2125,23 @@ class Function(SubResource): 'properties': {'key': 'properties', 'type': 'FunctionProperties'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(Function, self).__init__(**kwargs) self.properties = kwargs.get('properties', None) -class FunctionInput(Model): +class FunctionInput(msrest.serialization.Model): """Describes one input parameter of a function. - :param data_type: The (Azure Stream Analytics supported) data type of the - function input parameter. A list of valid Azure Stream Analytics data - types are described at - https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx + :param data_type: The (Azure Stream Analytics supported) data type of the function input + parameter. A list of valid Azure Stream Analytics data types are described at + https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx. :type data_type: str - :param is_configuration_parameter: A flag indicating if the parameter is a - configuration parameter. True if this input parameter is expected to be a - constant. Default is false. + :param is_configuration_parameter: A flag indicating if the parameter is a configuration + parameter. True if this input parameter is expected to be a constant. Default is false. :type is_configuration_parameter: bool """ @@ -1264,18 +2150,51 @@ class FunctionInput(Model): 'is_configuration_parameter': {'key': 'isConfigurationParameter', 'type': 'bool'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(FunctionInput, self).__init__(**kwargs) self.data_type = kwargs.get('data_type', None) self.is_configuration_parameter = kwargs.get('is_configuration_parameter', None) -class FunctionOutput(Model): +class FunctionListResult(msrest.serialization.Model): + """Object containing a list of functions under a streaming job. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of functions under a streaming job. Populated by a 'List' operation. + :vartype value: list[~stream_analytics_management_client.models.Function] + :ivar next_link: The link (url) to the next page of results. + :vartype next_link: str + """ + + _validation = { + 'value': {'readonly': True}, + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[Function]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(FunctionListResult, self).__init__(**kwargs) + self.value = None + self.next_link = None + + +class FunctionOutput(msrest.serialization.Model): """Describes the output of a function. - :param data_type: The (Azure Stream Analytics supported) data type of the - function output. A list of valid Azure Stream Analytics data types are - described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx + :param data_type: The (Azure Stream Analytics supported) data type of the function output. A + list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en- + us/library/azure/dn835065.aspx. :type data_type: str """ @@ -1283,67 +2202,96 @@ class FunctionOutput(Model): 'data_type': {'key': 'dataType', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(FunctionOutput, self).__init__(**kwargs) self.data_type = kwargs.get('data_type', None) -class FunctionProperties(Model): +class FunctionProperties(msrest.serialization.Model): """The properties that are associated with a function. You probably want to use the sub-classes and not this class directly. Known - sub-classes are: ScalarFunctionProperties + sub-classes are: ScalarFunctionProperties. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. All required parameters must be populated in order to send to Azure. - :ivar etag: The current entity tag for the function. This is an opaque - string. You can use it to detect whether the resource has changed between - requests. You can also use it in the If-Match or If-None-Match headers for - write operations for optimistic concurrency. - :vartype etag: str - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of function.Constant filled by server. :type type: str + :ivar etag: The current entity tag for the function. This is an opaque string. You can use it + to detect whether the resource has changed between requests. You can also use it in the If- + Match or If-None-Match headers for write operations for optimistic concurrency. + :vartype etag: str """ _validation = { - 'etag': {'readonly': True}, 'type': {'required': True}, + 'etag': {'readonly': True}, } _attribute_map = { - 'etag': {'key': 'etag', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, } _subtype_map = { 'type': {'Scalar': 'ScalarFunctionProperties'} } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(FunctionProperties, self).__init__(**kwargs) + self.type = None # type: Optional[str] self.etag = None - self.type = None + + +class Identity(msrest.serialization.Model): + """Describes how identity is verified. + + :param tenant_id: The identity tenantId. + :type tenant_id: str + :param principal_id: The identity principal ID. + :type principal_id: str + :param type: The identity type. + :type type: str + """ + + _attribute_map = { + 'tenant_id': {'key': 'tenantId', 'type': 'str'}, + 'principal_id': {'key': 'principalId', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(Identity, self).__init__(**kwargs) + self.tenant_id = kwargs.get('tenant_id', None) + self.principal_id = kwargs.get('principal_id', None) + self.type = kwargs.get('type', None) class Input(SubResource): - """An input object, containing all information associated with the named - input. All inputs are contained under a streaming job. + """An input object, containing all information associated with the named input. All inputs are contained under a streaming job. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Resource Id + :ivar id: Resource Id. :vartype id: str - :param name: Resource name + :param name: Resource name. :type name: str - :ivar type: Resource type + :ivar type: Resource type. :vartype type: str - :param properties: The properties that are associated with an input. - Required on PUT (CreateOrReplace) requests. - :type properties: ~azure.mgmt.streamanalytics.models.InputProperties + :param properties: The properties that are associated with an input. Required on PUT + (CreateOrReplace) requests. + :type properties: ~stream_analytics_management_client.models.InputProperties """ _validation = { @@ -1358,61 +2306,104 @@ class Input(SubResource): 'properties': {'key': 'properties', 'type': 'InputProperties'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(Input, self).__init__(**kwargs) self.properties = kwargs.get('properties', None) -class InputProperties(Model): +class InputListResult(msrest.serialization.Model): + """Object containing a list of inputs under a streaming job. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of inputs under a streaming job. Populated by a 'List' operation. + :vartype value: list[~stream_analytics_management_client.models.Input] + :ivar next_link: The link (url) to the next page of results. + :vartype next_link: str + """ + + _validation = { + 'value': {'readonly': True}, + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[Input]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(InputListResult, self).__init__(**kwargs) + self.value = None + self.next_link = None + + +class InputProperties(msrest.serialization.Model): """The properties that are associated with an input. You probably want to use the sub-classes and not this class directly. Known - sub-classes are: ReferenceInputProperties, StreamInputProperties + sub-classes are: ReferenceInputProperties, StreamInputProperties. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. All required parameters must be populated in order to send to Azure. - :param serialization: Describes how data from an input is serialized or - how data is serialized when written to an output. Required on PUT - (CreateOrReplace) requests. - :type serialization: ~azure.mgmt.streamanalytics.models.Serialization - :ivar diagnostics: Describes conditions applicable to the Input, Output, - or the job overall, that warrant customer attention. - :vartype diagnostics: ~azure.mgmt.streamanalytics.models.Diagnostics - :ivar etag: The current entity tag for the input. This is an opaque - string. You can use it to detect whether the resource has changed between - requests. You can also use it in the If-Match or If-None-Match headers for - write operations for optimistic concurrency. - :vartype etag: str - :param type: Required. Constant filled by server. + :param type: Required. Indicates whether the input is a source of reference data or stream + data. Required on PUT (CreateOrReplace) requests.Constant filled by server. :type type: str + :param serialization: Describes how data from an input is serialized or how data is serialized + when written to an output. Required on PUT (CreateOrReplace) requests. + :type serialization: ~stream_analytics_management_client.models.Serialization + :ivar diagnostics: Describes conditions applicable to the Input, Output, or the job overall, + that warrant customer attention. + :vartype diagnostics: ~stream_analytics_management_client.models.Diagnostics + :ivar etag: The current entity tag for the input. This is an opaque string. You can use it to + detect whether the resource has changed between requests. You can also use it in the If-Match + or If-None-Match headers for write operations for optimistic concurrency. + :vartype etag: str + :param compression: Describes how input data is compressed. + :type compression: ~stream_analytics_management_client.models.Compression + :param partition_key: partitionKey Describes a key in the input data which is used for + partitioning the input data. + :type partition_key: str """ _validation = { + 'type': {'required': True}, 'diagnostics': {'readonly': True}, 'etag': {'readonly': True}, - 'type': {'required': True}, } _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, 'serialization': {'key': 'serialization', 'type': 'Serialization'}, 'diagnostics': {'key': 'diagnostics', 'type': 'Diagnostics'}, 'etag': {'key': 'etag', 'type': 'str'}, - 'type': {'key': 'type', 'type': 'str'}, + 'compression': {'key': 'compression', 'type': 'Compression'}, + 'partition_key': {'key': 'partitionKey', 'type': 'str'}, } _subtype_map = { 'type': {'Reference': 'ReferenceInputProperties', 'Stream': 'StreamInputProperties'} } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(InputProperties, self).__init__(**kwargs) + self.type = None # type: Optional[str] self.serialization = kwargs.get('serialization', None) self.diagnostics = None self.etag = None - self.type = None + self.compression = kwargs.get('compression', None) + self.partition_key = kwargs.get('partition_key', None) class IoTHubStreamInputDataSource(StreamInputDataSource): @@ -1420,22 +2411,21 @@ class IoTHubStreamInputDataSource(StreamInputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of input data source containing stream data. Required + on PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param iot_hub_namespace: The name or the URI of the IoT Hub. Required on - PUT (CreateOrReplace) requests. + :param iot_hub_namespace: The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) + requests. :type iot_hub_namespace: str - :param shared_access_policy_name: The shared access policy name for the - IoT Hub. This policy must contain at least the Service connect permission. - Required on PUT (CreateOrReplace) requests. - :type shared_access_policy_name: str - :param shared_access_policy_key: The shared access policy key for the - specified shared access policy. Required on PUT (CreateOrReplace) + :param shared_access_policy_name: The shared access policy name for the IoT Hub. This policy + must contain at least the Service connect permission. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_name: str + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_key: str - :param consumer_group_name: The name of an IoT Hub Consumer Group that - should be used to read events from the IoT Hub. If not specified, the - input uses the Iot Hub’s default consumer group. + :param consumer_group_name: The name of an IoT Hub Consumer Group that should be used to read + events from the IoT Hub. If not specified, the input uses the Iot Hub’s default consumer group. :type consumer_group_name: str :param endpoint: The IoT Hub endpoint to connect to (ie. messages/events, messages/operationsMonitoringEvents, etc.). @@ -1455,14 +2445,17 @@ class IoTHubStreamInputDataSource(StreamInputDataSource): 'endpoint': {'key': 'properties.endpoint', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(IoTHubStreamInputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.Devices/IotHubs' # type: str self.iot_hub_namespace = kwargs.get('iot_hub_namespace', None) self.shared_access_policy_name = kwargs.get('shared_access_policy_name', None) self.shared_access_policy_key = kwargs.get('shared_access_policy_key', None) self.consumer_group_name = kwargs.get('consumer_group_name', None) self.endpoint = kwargs.get('endpoint', None) - self.type = 'Microsoft.Devices/IotHubs' class JavaScriptFunctionBinding(FunctionBinding): @@ -1470,10 +2463,10 @@ class JavaScriptFunctionBinding(FunctionBinding): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the function binding type.Constant filled by server. :type type: str - :param script: The JavaScript code containing a single function - definition. For example: 'function (x, y) { return x + y; }' + :param script: The JavaScript code containing a single function definition. For example: + 'function (x, y) { return x + y; }'. :type script: str """ @@ -1486,65 +2479,126 @@ class JavaScriptFunctionBinding(FunctionBinding): 'script': {'key': 'properties.script', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(JavaScriptFunctionBinding, self).__init__(**kwargs) + self.type = 'Microsoft.StreamAnalytics/JavascriptUdf' # type: str + self.script = kwargs.get('script', None) + + +class JavaScriptFunctionRetrieveDefaultDefinitionParameters(FunctionRetrieveDefaultDefinitionParameters): + """The parameters needed to retrieve the default function definition for a JavaScript function. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :param binding_type: Required. Indicates the function binding type.Constant filled by server. + :type binding_type: str + :param script: The JavaScript code containing a single function definition. For example: + 'function (x, y) { return x + y; }'. + :type script: str + :ivar udf_type: The function type. Default value: "Scalar". + :vartype udf_type: str + """ + + _validation = { + 'binding_type': {'required': True}, + 'udf_type': {'constant': True}, + } + + _attribute_map = { + 'binding_type': {'key': 'bindingType', 'type': 'str'}, + 'script': {'key': 'bindingRetrievalProperties.script', 'type': 'str'}, + 'udf_type': {'key': 'bindingRetrievalProperties.udfType', 'type': 'str'}, + } + + udf_type = "Scalar" + + def __init__( + self, + **kwargs + ): + super(JavaScriptFunctionRetrieveDefaultDefinitionParameters, self).__init__(**kwargs) + self.binding_type = 'Microsoft.StreamAnalytics/JavascriptUdf' # type: str self.script = kwargs.get('script', None) - self.type = 'Microsoft.StreamAnalytics/JavascriptUdf' -class JavaScriptFunctionRetrieveDefaultDefinitionParameters(FunctionRetrieveDefaultDefinitionParameters): - """The parameters needed to retrieve the default function definition for a - JavaScript function. +class StorageAccount(msrest.serialization.Model): + """The properties that are associated with an Azure Storage account. + + :param account_name: The name of the Azure Storage account. Required on PUT (CreateOrReplace) + requests. + :type account_name: str + :param account_key: The account key for the Azure Storage account. Required on PUT + (CreateOrReplace) requests. + :type account_key: str + """ + + _attribute_map = { + 'account_name': {'key': 'accountName', 'type': 'str'}, + 'account_key': {'key': 'accountKey', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(StorageAccount, self).__init__(**kwargs) + self.account_name = kwargs.get('account_name', None) + self.account_key = kwargs.get('account_key', None) + - All required parameters must be populated in order to send to Azure. +class JobStorageAccount(StorageAccount): + """The properties that are associated with an Azure Storage account with MSI. - :param binding_type: Required. Constant filled by server. - :type binding_type: str - :param script: The JavaScript code containing a single function - definition. For example: 'function (x, y) { return x + y; }'. - :type script: str - :param udf_type: The function type. Possible values include: 'Scalar' - :type udf_type: str or ~azure.mgmt.streamanalytics.models.UdfType + :param account_name: The name of the Azure Storage account. Required on PUT (CreateOrReplace) + requests. + :type account_name: str + :param account_key: The account key for the Azure Storage account. Required on PUT + (CreateOrReplace) requests. + :type account_key: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode """ - _validation = { - 'binding_type': {'required': True}, - } - _attribute_map = { - 'binding_type': {'key': 'bindingType', 'type': 'str'}, - 'script': {'key': 'bindingRetrievalProperties.script', 'type': 'str'}, - 'udf_type': {'key': 'bindingRetrievalProperties.udfType', 'type': 'UdfType'}, + 'account_name': {'key': 'accountName', 'type': 'str'}, + 'account_key': {'key': 'accountKey', 'type': 'str'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, } - def __init__(self, **kwargs): - super(JavaScriptFunctionRetrieveDefaultDefinitionParameters, self).__init__(**kwargs) - self.script = kwargs.get('script', None) - self.udf_type = kwargs.get('udf_type', None) - self.binding_type = 'Microsoft.StreamAnalytics/JavascriptUdf' + def __init__( + self, + **kwargs + ): + super(JobStorageAccount, self).__init__(**kwargs) + self.authentication_mode = kwargs.get('authentication_mode', None) class JsonSerialization(Serialization): - """Describes how data from an input is serialized or how data is serialized - when written to an output in JSON format. + """Describes how data from an input is serialized or how data is serialized when written to an output in JSON format. All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. - :type type: str - :param encoding: Specifies the encoding of the incoming data in the case - of input and the encoding of outgoing data in the case of output. Required - on PUT (CreateOrReplace) requests. Possible values include: 'UTF8' - :type encoding: str or ~azure.mgmt.streamanalytics.models.Encoding - :param format: This property only applies to JSON serialization of outputs - only. It is not applicable to inputs. This property specifies the format - of the JSON the output will be written in. The currently supported values - are 'lineSeparated' indicating the output will be formatted by having each - JSON object separated by a new line and 'array' indicating the output will - be formatted as an array of JSON objects. Default value is 'lineSeparated' - if left null. Possible values include: 'LineSeparated', 'Array' - :type format: str or - ~azure.mgmt.streamanalytics.models.JsonOutputSerializationFormat + :param type: Required. Indicates the type of serialization that the input or output uses. + Required on PUT (CreateOrReplace) requests.Constant filled by server. Possible values include: + "Csv", "Avro", "Json", "Parquet". + :type type: str or ~stream_analytics_management_client.models.EventSerializationType + :param encoding: Specifies the encoding of the incoming data in the case of input and the + encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests. + Possible values include: "UTF8". + :type encoding: str or ~stream_analytics_management_client.models.Encoding + :param format: This property only applies to JSON serialization of outputs only. It is not + applicable to inputs. This property specifies the format of the JSON the output will be written + in. The currently supported values are 'lineSeparated' indicating the output will be formatted + by having each JSON object separated by a new line and 'array' indicating the output will be + formatted as an array of JSON objects. Default value is 'lineSeparated' if left null. Possible + values include: "LineSeparated", "Array". + :type format: str or ~stream_analytics_management_client.models.JsonOutputSerializationFormat """ _validation = { @@ -1557,60 +2611,28 @@ class JsonSerialization(Serialization): 'format': {'key': 'properties.format', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(JsonSerialization, self).__init__(**kwargs) + self.type = 'Json' # type: str self.encoding = kwargs.get('encoding', None) self.format = kwargs.get('format', None) - self.type = 'Json' - - -class OAuthBasedDataSourceProperties(Model): - """The properties that are associated with data sources that use OAuth as - their authentication model. - - :param refresh_token: A refresh token that can be used to obtain a valid - access token that can then be used to authenticate with the data source. A - valid refresh token is currently only obtainable via the Azure Portal. It - is recommended to put a dummy string value here when creating the data - source and then going to the Azure Portal to authenticate the data source - which will update this property with a valid refresh token. Required on - PUT (CreateOrReplace) requests. - :type refresh_token: str - :param token_user_principal_name: The user principal name (UPN) of the - user that was used to obtain the refresh token. Use this property to help - remember which user was used to obtain the refresh token. - :type token_user_principal_name: str - :param token_user_display_name: The user display name of the user that was - used to obtain the refresh token. Use this property to help remember which - user was used to obtain the refresh token. - :type token_user_display_name: str - """ - - _attribute_map = { - 'refresh_token': {'key': 'refreshToken', 'type': 'str'}, - 'token_user_principal_name': {'key': 'tokenUserPrincipalName', 'type': 'str'}, - 'token_user_display_name': {'key': 'tokenUserDisplayName', 'type': 'str'}, - } - - def __init__(self, **kwargs): - super(OAuthBasedDataSourceProperties, self).__init__(**kwargs) - self.refresh_token = kwargs.get('refresh_token', None) - self.token_user_principal_name = kwargs.get('token_user_principal_name', None) - self.token_user_display_name = kwargs.get('token_user_display_name', None) -class Operation(Model): +class Operation(msrest.serialization.Model): """A Stream Analytics REST API operation. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar name: The name of the operation being performed on this particular - object. + :ivar name: The name of the operation being performed on this particular object. :vartype name: str - :ivar display: Contains the localized display information for this - particular operation / action. - :vartype display: ~azure.mgmt.streamanalytics.models.OperationDisplay + :param is_data_action: Indicates whether the operation is a data action. + :type is_data_action: bool + :ivar display: Contains the localized display information for this particular operation / + action. + :vartype display: ~stream_analytics_management_client.models.OperationDisplay """ _validation = { @@ -1620,26 +2642,29 @@ class Operation(Model): _attribute_map = { 'name': {'key': 'name', 'type': 'str'}, + 'is_data_action': {'key': 'isDataAction', 'type': 'bool'}, 'display': {'key': 'display', 'type': 'OperationDisplay'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(Operation, self).__init__(**kwargs) self.name = None + self.is_data_action = kwargs.get('is_data_action', None) self.display = None -class OperationDisplay(Model): - """Contains the localized display information for this particular operation / - action. +class OperationDisplay(msrest.serialization.Model): + """Contains the localized display information for this particular operation / action. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. :ivar provider: The localized friendly form of the resource provider name. :vartype provider: str - :ivar resource: The localized friendly form of the resource type related - to this action/operation. + :ivar resource: The localized friendly form of the resource type related to this + action/operation. :vartype resource: str :ivar operation: The localized friendly name for the operation. :vartype operation: str @@ -1661,7 +2686,10 @@ class OperationDisplay(Model): 'description': {'key': 'description', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(OperationDisplay, self).__init__(**kwargs) self.provider = None self.resource = None @@ -1669,33 +2697,64 @@ def __init__(self, **kwargs): self.description = None +class OperationListResult(msrest.serialization.Model): + """Result of the request to list Stream Analytics operations. It contains a list of operations and a URL link to get the next set of results. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: List of Stream Analytics operations supported by the Microsoft.StreamAnalytics + resource provider. + :vartype value: list[~stream_analytics_management_client.models.Operation] + :ivar next_link: URL to get the next set of operation list results if there are any. + :vartype next_link: str + """ + + _validation = { + 'value': {'readonly': True}, + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[Operation]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(OperationListResult, self).__init__(**kwargs) + self.value = None + self.next_link = None + + class Output(SubResource): - """An output object, containing all information associated with the named - output. All outputs are contained under a streaming job. + """An output object, containing all information associated with the named output. All outputs are contained under a streaming job. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Resource Id + :ivar id: Resource Id. :vartype id: str - :param name: Resource name + :param name: Resource name. :type name: str - :ivar type: Resource type + :ivar type: Resource type. :vartype type: str - :param datasource: Describes the data source that output will be written - to. Required on PUT (CreateOrReplace) requests. - :type datasource: ~azure.mgmt.streamanalytics.models.OutputDataSource - :param serialization: Describes how data from an input is serialized or - how data is serialized when written to an output. Required on PUT + :param datasource: Describes the data source that output will be written to. Required on PUT (CreateOrReplace) requests. - :type serialization: ~azure.mgmt.streamanalytics.models.Serialization - :ivar diagnostics: Describes conditions applicable to the Input, Output, - or the job overall, that warrant customer attention. - :vartype diagnostics: ~azure.mgmt.streamanalytics.models.Diagnostics - :ivar etag: The current entity tag for the output. This is an opaque - string. You can use it to detect whether the resource has changed between - requests. You can also use it in the If-Match or If-None-Match headers for - write operations for optimistic concurrency. + :type datasource: ~stream_analytics_management_client.models.OutputDataSource + :param time_window: The time frame for filtering Stream Analytics job outputs. + :type time_window: str + :param size_window: The size window to constrain a Stream Analytics output to. + :type size_window: float + :param serialization: Describes how data from an input is serialized or how data is serialized + when written to an output. Required on PUT (CreateOrReplace) requests. + :type serialization: ~stream_analytics_management_client.models.Serialization + :ivar diagnostics: Describes conditions applicable to the Input, Output, or the job overall, + that warrant customer attention. + :vartype diagnostics: ~stream_analytics_management_client.models.Diagnostics + :ivar etag: The current entity tag for the output. This is an opaque string. You can use it to + detect whether the resource has changed between requests. You can also use it in the If-Match + or If-None-Match headers for write operations for optimistic concurrency. :vartype etag: str """ @@ -1711,53 +2770,124 @@ class Output(SubResource): 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, 'datasource': {'key': 'properties.datasource', 'type': 'OutputDataSource'}, + 'time_window': {'key': 'properties.timeWindow', 'type': 'str'}, + 'size_window': {'key': 'properties.sizeWindow', 'type': 'float'}, 'serialization': {'key': 'properties.serialization', 'type': 'Serialization'}, 'diagnostics': {'key': 'properties.diagnostics', 'type': 'Diagnostics'}, 'etag': {'key': 'properties.etag', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(Output, self).__init__(**kwargs) self.datasource = kwargs.get('datasource', None) + self.time_window = kwargs.get('time_window', None) + self.size_window = kwargs.get('size_window', None) self.serialization = kwargs.get('serialization', None) self.diagnostics = None self.etag = None -class PowerBIOutputDataSource(OutputDataSource): +class OutputListResult(msrest.serialization.Model): + """Object containing a list of outputs under a streaming job. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of outputs under a streaming job. Populated by a 'List' operation. + :vartype value: list[~stream_analytics_management_client.models.Output] + :ivar next_link: The link (url) to the next page of results. + :vartype next_link: str + """ + + _validation = { + 'value': {'readonly': True}, + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[Output]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(OutputListResult, self).__init__(**kwargs) + self.value = None + self.next_link = None + + +class ParquetSerialization(Serialization): + """Describes how data from an input is serialized or how data is serialized when written to an output in Parquet format. + + All required parameters must be populated in order to send to Azure. + + :param type: Required. Indicates the type of serialization that the input or output uses. + Required on PUT (CreateOrReplace) requests.Constant filled by server. Possible values include: + "Csv", "Avro", "Json", "Parquet". + :type type: str or ~stream_analytics_management_client.models.EventSerializationType + :param properties: The properties that are associated with the Parquet serialization type. + Required on PUT (CreateOrReplace) requests. + :type properties: object + """ + + _validation = { + 'type': {'required': True}, + } + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + 'properties': {'key': 'properties', 'type': 'object'}, + } + + def __init__( + self, + **kwargs + ): + super(ParquetSerialization, self).__init__(**kwargs) + self.type = 'Parquet' # type: str + self.properties = kwargs.get('properties', None) + + +class PowerBiOutputDataSource(OutputDataSource): """Describes a Power BI output data source. All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param refresh_token: A refresh token that can be used to obtain a valid - access token that can then be used to authenticate with the data source. A - valid refresh token is currently only obtainable via the Azure Portal. It - is recommended to put a dummy string value here when creating the data - source and then going to the Azure Portal to authenticate the data source - which will update this property with a valid refresh token. Required on - PUT (CreateOrReplace) requests. + :param refresh_token: A refresh token that can be used to obtain a valid access token that can + then be used to authenticate with the data source. A valid refresh token is currently only + obtainable via the Azure Portal. It is recommended to put a dummy string value here when + creating the data source and then going to the Azure Portal to authenticate the data source + which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) + requests. :type refresh_token: str - :param token_user_principal_name: The user principal name (UPN) of the - user that was used to obtain the refresh token. Use this property to help - remember which user was used to obtain the refresh token. + :param token_user_principal_name: The user principal name (UPN) of the user that was used to + obtain the refresh token. Use this property to help remember which user was used to obtain the + refresh token. :type token_user_principal_name: str - :param token_user_display_name: The user display name of the user that was - used to obtain the refresh token. Use this property to help remember which - user was used to obtain the refresh token. + :param token_user_display_name: The user display name of the user that was used to obtain the + refresh token. Use this property to help remember which user was used to obtain the refresh + token. :type token_user_display_name: str - :param dataset: The name of the Power BI dataset. Required on PUT - (CreateOrReplace) requests. + :param dataset: The name of the Power BI dataset. Required on PUT (CreateOrReplace) requests. :type dataset: str - :param table: The name of the Power BI table under the specified dataset. - Required on PUT (CreateOrReplace) requests. + :param table: The name of the Power BI table under the specified dataset. Required on PUT + (CreateOrReplace) requests. :type table: str :param group_id: The ID of the Power BI group. :type group_id: str - :param group_name: The name of the Power BI group. Use this property to - help remember which specific Power BI group id was used. + :param group_name: The name of the Power BI group. Use this property to help remember which + specific Power BI group id was used. :type group_name: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode """ _validation = { @@ -1773,10 +2903,15 @@ class PowerBIOutputDataSource(OutputDataSource): 'table': {'key': 'properties.table', 'type': 'str'}, 'group_id': {'key': 'properties.groupId', 'type': 'str'}, 'group_name': {'key': 'properties.groupName', 'type': 'str'}, + 'authentication_mode': {'key': 'properties.authenticationMode', 'type': 'str'}, } - def __init__(self, **kwargs): - super(PowerBIOutputDataSource, self).__init__(**kwargs) + def __init__( + self, + **kwargs + ): + super(PowerBiOutputDataSource, self).__init__(**kwargs) + self.type = 'PowerBI' # type: str self.refresh_token = kwargs.get('refresh_token', None) self.token_user_principal_name = kwargs.get('token_user_principal_name', None) self.token_user_display_name = kwargs.get('token_user_display_name', None) @@ -1784,74 +2919,133 @@ def __init__(self, **kwargs): self.table = kwargs.get('table', None) self.group_id = kwargs.get('group_id', None) self.group_name = kwargs.get('group_name', None) - self.type = 'PowerBI' + self.authentication_mode = kwargs.get('authentication_mode', None) + + +class PowerBiOutputDataSourceProperties(OAuthBasedDataSourceProperties): + """The properties that are associated with a Power BI output. + + :param refresh_token: A refresh token that can be used to obtain a valid access token that can + then be used to authenticate with the data source. A valid refresh token is currently only + obtainable via the Azure Portal. It is recommended to put a dummy string value here when + creating the data source and then going to the Azure Portal to authenticate the data source + which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) + requests. + :type refresh_token: str + :param token_user_principal_name: The user principal name (UPN) of the user that was used to + obtain the refresh token. Use this property to help remember which user was used to obtain the + refresh token. + :type token_user_principal_name: str + :param token_user_display_name: The user display name of the user that was used to obtain the + refresh token. Use this property to help remember which user was used to obtain the refresh + token. + :type token_user_display_name: str + :param dataset: The name of the Power BI dataset. Required on PUT (CreateOrReplace) requests. + :type dataset: str + :param table: The name of the Power BI table under the specified dataset. Required on PUT + (CreateOrReplace) requests. + :type table: str + :param group_id: The ID of the Power BI group. + :type group_id: str + :param group_name: The name of the Power BI group. Use this property to help remember which + specific Power BI group id was used. + :type group_name: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + """ + + _attribute_map = { + 'refresh_token': {'key': 'refreshToken', 'type': 'str'}, + 'token_user_principal_name': {'key': 'tokenUserPrincipalName', 'type': 'str'}, + 'token_user_display_name': {'key': 'tokenUserDisplayName', 'type': 'str'}, + 'dataset': {'key': 'dataset', 'type': 'str'}, + 'table': {'key': 'table', 'type': 'str'}, + 'group_id': {'key': 'groupId', 'type': 'str'}, + 'group_name': {'key': 'groupName', 'type': 'str'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(PowerBiOutputDataSourceProperties, self).__init__(**kwargs) + self.dataset = kwargs.get('dataset', None) + self.table = kwargs.get('table', None) + self.group_id = kwargs.get('group_id', None) + self.group_name = kwargs.get('group_name', None) + self.authentication_mode = kwargs.get('authentication_mode', None) class ReferenceInputProperties(InputProperties): """The properties that are associated with an input containing reference data. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. All required parameters must be populated in order to send to Azure. - :param serialization: Describes how data from an input is serialized or - how data is serialized when written to an output. Required on PUT - (CreateOrReplace) requests. - :type serialization: ~azure.mgmt.streamanalytics.models.Serialization - :ivar diagnostics: Describes conditions applicable to the Input, Output, - or the job overall, that warrant customer attention. - :vartype diagnostics: ~azure.mgmt.streamanalytics.models.Diagnostics - :ivar etag: The current entity tag for the input. This is an opaque - string. You can use it to detect whether the resource has changed between - requests. You can also use it in the If-Match or If-None-Match headers for - write operations for optimistic concurrency. - :vartype etag: str - :param type: Required. Constant filled by server. + :param type: Required. Indicates whether the input is a source of reference data or stream + data. Required on PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param datasource: Describes an input data source that contains reference - data. Required on PUT (CreateOrReplace) requests. - :type datasource: - ~azure.mgmt.streamanalytics.models.ReferenceInputDataSource + :param serialization: Describes how data from an input is serialized or how data is serialized + when written to an output. Required on PUT (CreateOrReplace) requests. + :type serialization: ~stream_analytics_management_client.models.Serialization + :ivar diagnostics: Describes conditions applicable to the Input, Output, or the job overall, + that warrant customer attention. + :vartype diagnostics: ~stream_analytics_management_client.models.Diagnostics + :ivar etag: The current entity tag for the input. This is an opaque string. You can use it to + detect whether the resource has changed between requests. You can also use it in the If-Match + or If-None-Match headers for write operations for optimistic concurrency. + :vartype etag: str + :param compression: Describes how input data is compressed. + :type compression: ~stream_analytics_management_client.models.Compression + :param partition_key: partitionKey Describes a key in the input data which is used for + partitioning the input data. + :type partition_key: str + :param datasource: Describes an input data source that contains reference data. Required on PUT + (CreateOrReplace) requests. + :type datasource: ~stream_analytics_management_client.models.ReferenceInputDataSource """ _validation = { + 'type': {'required': True}, 'diagnostics': {'readonly': True}, 'etag': {'readonly': True}, - 'type': {'required': True}, } _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, 'serialization': {'key': 'serialization', 'type': 'Serialization'}, 'diagnostics': {'key': 'diagnostics', 'type': 'Diagnostics'}, 'etag': {'key': 'etag', 'type': 'str'}, - 'type': {'key': 'type', 'type': 'str'}, + 'compression': {'key': 'compression', 'type': 'Compression'}, + 'partition_key': {'key': 'partitionKey', 'type': 'str'}, 'datasource': {'key': 'datasource', 'type': 'ReferenceInputDataSource'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(ReferenceInputProperties, self).__init__(**kwargs) + self.type = 'Reference' # type: str self.datasource = kwargs.get('datasource', None) - self.type = 'Reference' -class Resource(Model): - """The base resource model definition. +class Resource(msrest.serialization.Model): + """The base resource definition. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Resource Id + :ivar id: Fully qualified resource Id for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. :vartype id: str - :ivar name: Resource name + :ivar name: The name of the resource. :vartype name: str - :ivar type: Resource type + :ivar type: The type of the resource. Ex- Microsoft.Compute/virtualMachines or + Microsoft.Storage/storageAccounts. :vartype type: str - :param location: Resource location. Required on PUT (CreateOrReplace) - requests. - :type location: str - :param tags: Resource tags - :type tags: dict[str, str] """ _validation = { @@ -1864,30 +3058,27 @@ class Resource(Model): 'id': {'key': 'id', 'type': 'str'}, 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, - 'location': {'key': 'location', 'type': 'str'}, - 'tags': {'key': 'tags', 'type': '{str}'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(Resource, self).__init__(**kwargs) self.id = None self.name = None self.type = None - self.location = kwargs.get('location', None) - self.tags = kwargs.get('tags', None) -class ResourceTestStatus(Model): - """Describes the status of the test operation along with error information, if - applicable. +class ResourceTestStatus(msrest.serialization.Model): + """Describes the status of the test operation along with error information, if applicable. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. :ivar status: The status of the test operation. :vartype status: str :ivar error: Describes the error that occurred. - :vartype error: ~azure.mgmt.streamanalytics.models.ErrorResponse + :vartype error: ~stream_analytics_management_client.models.ErrorResponse """ _validation = { @@ -1900,7 +3091,10 @@ class ResourceTestStatus(Model): 'error': {'key': 'error', 'type': 'ErrorResponse'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(ResourceTestStatus, self).__init__(**kwargs) self.status = None self.error = None @@ -1909,46 +3103,67 @@ def __init__(self, **kwargs): class ScalarFunctionProperties(FunctionProperties): """The properties that are associated with a scalar function. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. All required parameters must be populated in order to send to Azure. - :ivar etag: The current entity tag for the function. This is an opaque - string. You can use it to detect whether the resource has changed between - requests. You can also use it in the If-Match or If-None-Match headers for - write operations for optimistic concurrency. - :vartype etag: str - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of function.Constant filled by server. :type type: str + :ivar etag: The current entity tag for the function. This is an opaque string. You can use it + to detect whether the resource has changed between requests. You can also use it in the If- + Match or If-None-Match headers for write operations for optimistic concurrency. + :vartype etag: str :param inputs: A list of inputs describing the parameters of the function. - :type inputs: list[~azure.mgmt.streamanalytics.models.FunctionInput] + :type inputs: list[~stream_analytics_management_client.models.FunctionInput] :param output: The output of the function. - :type output: ~azure.mgmt.streamanalytics.models.FunctionOutput - :param binding: The physical binding of the function. For example, in the - Azure Machine Learning web service’s case, this describes the endpoint. - :type binding: ~azure.mgmt.streamanalytics.models.FunctionBinding + :type output: ~stream_analytics_management_client.models.FunctionOutput + :param binding: The physical binding of the function. For example, in the Azure Machine + Learning web service’s case, this describes the endpoint. + :type binding: ~stream_analytics_management_client.models.FunctionBinding """ _validation = { - 'etag': {'readonly': True}, 'type': {'required': True}, + 'etag': {'readonly': True}, } _attribute_map = { - 'etag': {'key': 'etag', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, 'inputs': {'key': 'properties.inputs', 'type': '[FunctionInput]'}, 'output': {'key': 'properties.output', 'type': 'FunctionOutput'}, 'binding': {'key': 'properties.binding', 'type': 'FunctionBinding'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(ScalarFunctionProperties, self).__init__(**kwargs) + self.type = 'Scalar' # type: str self.inputs = kwargs.get('inputs', None) self.output = kwargs.get('output', None) self.binding = kwargs.get('binding', None) - self.type = 'Scalar' + + +class ScaleStreamingJobParameters(msrest.serialization.Model): + """Parameters supplied to the Scale Streaming Job operation. + + :param streaming_units: Specifies the number of streaming units that the streaming job will + scale to. + :type streaming_units: int + """ + + _attribute_map = { + 'streaming_units': {'key': 'streamingUnits', 'type': 'int'}, + } + + def __init__( + self, + **kwargs + ): + super(ScaleStreamingJobParameters, self).__init__(**kwargs) + self.streaming_units = kwargs.get('streaming_units', None) class ServiceBusQueueOutputDataSource(OutputDataSource): @@ -1956,26 +3171,32 @@ class ServiceBusQueueOutputDataSource(OutputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param service_bus_namespace: The namespace that is associated with the - desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on - PUT (CreateOrReplace) requests. + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type service_bus_namespace: str - :param shared_access_policy_name: The shared access policy name for the - Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT - (CreateOrReplace) requests. + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_name: str - :param shared_access_policy_key: The shared access policy key for the - specified shared access policy. Required on PUT (CreateOrReplace) - requests. + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_key: str - :param queue_name: The name of the Service Bus Queue. Required on PUT - (CreateOrReplace) requests. + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param queue_name: The name of the Service Bus Queue. Required on PUT (CreateOrReplace) + requests. :type queue_name: str - :param property_columns: A string array of the names of output columns to - be attached to Service Bus messages as custom properties. + :param property_columns: A string array of the names of output columns to be attached to + Service Bus messages as custom properties. :type property_columns: list[str] + :param system_property_columns: The system properties associated with the Service Bus Queue. + The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, + CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, + Label, ScheduledEnqueueTimeUtc. + :type system_property_columns: object """ _validation = { @@ -1987,18 +3208,73 @@ class ServiceBusQueueOutputDataSource(OutputDataSource): 'service_bus_namespace': {'key': 'properties.serviceBusNamespace', 'type': 'str'}, 'shared_access_policy_name': {'key': 'properties.sharedAccessPolicyName', 'type': 'str'}, 'shared_access_policy_key': {'key': 'properties.sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'properties.authenticationMode', 'type': 'str'}, 'queue_name': {'key': 'properties.queueName', 'type': 'str'}, 'property_columns': {'key': 'properties.propertyColumns', 'type': '[str]'}, + 'system_property_columns': {'key': 'properties.systemPropertyColumns', 'type': 'object'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(ServiceBusQueueOutputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.ServiceBus/Queue' # type: str self.service_bus_namespace = kwargs.get('service_bus_namespace', None) self.shared_access_policy_name = kwargs.get('shared_access_policy_name', None) self.shared_access_policy_key = kwargs.get('shared_access_policy_key', None) + self.authentication_mode = kwargs.get('authentication_mode', None) + self.queue_name = kwargs.get('queue_name', None) + self.property_columns = kwargs.get('property_columns', None) + self.system_property_columns = kwargs.get('system_property_columns', None) + + +class ServiceBusQueueOutputDataSourceProperties(ServiceBusDataSourceProperties): + """The properties that are associated with a Service Bus Queue output. + + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type service_bus_namespace: str + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_name: str + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_key: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param queue_name: The name of the Service Bus Queue. Required on PUT (CreateOrReplace) + requests. + :type queue_name: str + :param property_columns: A string array of the names of output columns to be attached to + Service Bus messages as custom properties. + :type property_columns: list[str] + :param system_property_columns: The system properties associated with the Service Bus Queue. + The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, + CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, + Label, ScheduledEnqueueTimeUtc. + :type system_property_columns: object + """ + + _attribute_map = { + 'service_bus_namespace': {'key': 'serviceBusNamespace', 'type': 'str'}, + 'shared_access_policy_name': {'key': 'sharedAccessPolicyName', 'type': 'str'}, + 'shared_access_policy_key': {'key': 'sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, + 'queue_name': {'key': 'queueName', 'type': 'str'}, + 'property_columns': {'key': 'propertyColumns', 'type': '[str]'}, + 'system_property_columns': {'key': 'systemPropertyColumns', 'type': 'object'}, + } + + def __init__( + self, + **kwargs + ): + super(ServiceBusQueueOutputDataSourceProperties, self).__init__(**kwargs) self.queue_name = kwargs.get('queue_name', None) self.property_columns = kwargs.get('property_columns', None) - self.type = 'Microsoft.ServiceBus/Queue' + self.system_property_columns = kwargs.get('system_property_columns', None) class ServiceBusTopicOutputDataSource(OutputDataSource): @@ -2006,26 +3282,32 @@ class ServiceBusTopicOutputDataSource(OutputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param service_bus_namespace: The namespace that is associated with the - desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on - PUT (CreateOrReplace) requests. + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type service_bus_namespace: str - :param shared_access_policy_name: The shared access policy name for the - Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT - (CreateOrReplace) requests. + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_name: str - :param shared_access_policy_key: The shared access policy key for the - specified shared access policy. Required on PUT (CreateOrReplace) - requests. + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_key: str - :param topic_name: The name of the Service Bus Topic. Required on PUT - (CreateOrReplace) requests. + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param topic_name: The name of the Service Bus Topic. Required on PUT (CreateOrReplace) + requests. :type topic_name: str - :param property_columns: A string array of the names of output columns to - be attached to Service Bus messages as custom properties. + :param property_columns: A string array of the names of output columns to be attached to + Service Bus messages as custom properties. :type property_columns: list[str] + :param system_property_columns: The system properties associated with the Service Bus Topic + Output. The following system properties are supported: ReplyToSessionId, ContentType, To, + Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, + ReplyTo, Label, ScheduledEnqueueTimeUtc. + :type system_property_columns: dict[str, str] """ _validation = { @@ -2037,54 +3319,109 @@ class ServiceBusTopicOutputDataSource(OutputDataSource): 'service_bus_namespace': {'key': 'properties.serviceBusNamespace', 'type': 'str'}, 'shared_access_policy_name': {'key': 'properties.sharedAccessPolicyName', 'type': 'str'}, 'shared_access_policy_key': {'key': 'properties.sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'properties.authenticationMode', 'type': 'str'}, 'topic_name': {'key': 'properties.topicName', 'type': 'str'}, 'property_columns': {'key': 'properties.propertyColumns', 'type': '[str]'}, + 'system_property_columns': {'key': 'properties.systemPropertyColumns', 'type': '{str}'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(ServiceBusTopicOutputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.ServiceBus/Topic' # type: str self.service_bus_namespace = kwargs.get('service_bus_namespace', None) self.shared_access_policy_name = kwargs.get('shared_access_policy_name', None) self.shared_access_policy_key = kwargs.get('shared_access_policy_key', None) + self.authentication_mode = kwargs.get('authentication_mode', None) + self.topic_name = kwargs.get('topic_name', None) + self.property_columns = kwargs.get('property_columns', None) + self.system_property_columns = kwargs.get('system_property_columns', None) + + +class ServiceBusTopicOutputDataSourceProperties(ServiceBusDataSourceProperties): + """The properties that are associated with a Service Bus Topic output. + + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type service_bus_namespace: str + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_name: str + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_key: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param topic_name: The name of the Service Bus Topic. Required on PUT (CreateOrReplace) + requests. + :type topic_name: str + :param property_columns: A string array of the names of output columns to be attached to + Service Bus messages as custom properties. + :type property_columns: list[str] + :param system_property_columns: The system properties associated with the Service Bus Topic + Output. The following system properties are supported: ReplyToSessionId, ContentType, To, + Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, + ReplyTo, Label, ScheduledEnqueueTimeUtc. + :type system_property_columns: dict[str, str] + """ + + _attribute_map = { + 'service_bus_namespace': {'key': 'serviceBusNamespace', 'type': 'str'}, + 'shared_access_policy_name': {'key': 'sharedAccessPolicyName', 'type': 'str'}, + 'shared_access_policy_key': {'key': 'sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, + 'topic_name': {'key': 'topicName', 'type': 'str'}, + 'property_columns': {'key': 'propertyColumns', 'type': '[str]'}, + 'system_property_columns': {'key': 'systemPropertyColumns', 'type': '{str}'}, + } + + def __init__( + self, + **kwargs + ): + super(ServiceBusTopicOutputDataSourceProperties, self).__init__(**kwargs) self.topic_name = kwargs.get('topic_name', None) self.property_columns = kwargs.get('property_columns', None) - self.type = 'Microsoft.ServiceBus/Topic' + self.system_property_columns = kwargs.get('system_property_columns', None) -class Sku(Model): +class Sku(msrest.serialization.Model): """The properties that are associated with a SKU. - :param name: The name of the SKU. Required on PUT (CreateOrReplace) - requests. Possible values include: 'Standard' - :type name: str or ~azure.mgmt.streamanalytics.models.SkuName + :param name: The name of the SKU. Required on PUT (CreateOrReplace) requests. Possible values + include: "Standard". + :type name: str or ~stream_analytics_management_client.models.SkuName """ _attribute_map = { 'name': {'key': 'name', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(Sku, self).__init__(**kwargs) self.name = kwargs.get('name', None) -class StartStreamingJobParameters(Model): +class StartStreamingJobParameters(msrest.serialization.Model): """Parameters supplied to the Start Streaming Job operation. - :param output_start_mode: Value may be JobStartTime, CustomTime, or - LastOutputEventTime to indicate whether the starting point of the output - event stream should start whenever the job is started, start at a custom - user time stamp specified via the outputStartTime property, or start from - the last event output time. Possible values include: 'JobStartTime', - 'CustomTime', 'LastOutputEventTime' - :type output_start_mode: str or - ~azure.mgmt.streamanalytics.models.OutputStartMode - :param output_start_time: Value is either an ISO-8601 formatted time stamp - that indicates the starting point of the output event stream, or null to - indicate that the output event stream will start whenever the streaming - job is started. This property must have a value if outputStartMode is set - to CustomTime. - :type output_start_time: datetime + :param output_start_mode: Value may be JobStartTime, CustomTime, or LastOutputEventTime to + indicate whether the starting point of the output event stream should start whenever the job is + started, start at a custom user time stamp specified via the outputStartTime property, or start + from the last event output time. Possible values include: "JobStartTime", "CustomTime", + "LastOutputEventTime". + :type output_start_mode: str or ~stream_analytics_management_client.models.OutputStartMode + :param output_start_time: Value is either an ISO-8601 formatted time stamp that indicates the + starting point of the output event stream, or null to indicate that the output event stream + will start whenever the streaming job is started. This property must have a value if + outputStartMode is set to CustomTime. + :type output_start_time: ~datetime.datetime """ _attribute_map = { @@ -2092,144 +3429,165 @@ class StartStreamingJobParameters(Model): 'output_start_time': {'key': 'outputStartTime', 'type': 'iso-8601'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(StartStreamingJobParameters, self).__init__(**kwargs) self.output_start_mode = kwargs.get('output_start_mode', None) self.output_start_time = kwargs.get('output_start_time', None) -class StorageAccount(Model): - """The properties that are associated with an Azure Storage account. +class TrackedResource(Resource): + """The resource model definition for a ARM tracked top level resource. - :param account_name: The name of the Azure Storage account. Required on - PUT (CreateOrReplace) requests. - :type account_name: str - :param account_key: The account key for the Azure Storage account. - Required on PUT (CreateOrReplace) requests. - :type account_key: str + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Fully qualified resource Id for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. Ex- Microsoft.Compute/virtualMachines or + Microsoft.Storage/storageAccounts. + :vartype type: str + :param tags: A set of tags. Resource tags. + :type tags: dict[str, str] + :param location: The geo-location where the resource lives. + :type location: str """ + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + _attribute_map = { - 'account_name': {'key': 'accountName', 'type': 'str'}, - 'account_key': {'key': 'accountKey', 'type': 'str'}, + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'location': {'key': 'location', 'type': 'str'}, } - def __init__(self, **kwargs): - super(StorageAccount, self).__init__(**kwargs) - self.account_name = kwargs.get('account_name', None) - self.account_key = kwargs.get('account_key', None) + def __init__( + self, + **kwargs + ): + super(TrackedResource, self).__init__(**kwargs) + self.tags = kwargs.get('tags', None) + self.location = kwargs.get('location', None) -class StreamingJob(Resource): - """A streaming job object, containing all information associated with the - named streaming job. +class StreamingJob(TrackedResource): + """A streaming job object, containing all information associated with the named streaming job. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Resource Id + :ivar id: Fully qualified resource Id for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. :vartype id: str - :ivar name: Resource name + :ivar name: The name of the resource. :vartype name: str - :ivar type: Resource type + :ivar type: The type of the resource. Ex- Microsoft.Compute/virtualMachines or + Microsoft.Storage/storageAccounts. :vartype type: str - :param location: Resource location. Required on PUT (CreateOrReplace) - requests. - :type location: str - :param tags: Resource tags + :param tags: A set of tags. Resource tags. :type tags: dict[str, str] - :param sku: Describes the SKU of the streaming job. Required on PUT - (CreateOrReplace) requests. - :type sku: ~azure.mgmt.streamanalytics.models.Sku - :ivar job_id: A GUID uniquely identifying the streaming job. This GUID is - generated upon creation of the streaming job. + :param location: The geo-location where the resource lives. + :type location: str + :param identity: Describes the system-assigned managed identity assigned to this job that can + be used to authenticate with inputs and outputs. + :type identity: ~stream_analytics_management_client.models.Identity + :param sku: Describes the SKU of the streaming job. Required on PUT (CreateOrReplace) requests. + :type sku: ~stream_analytics_management_client.models.Sku + :ivar job_id: A GUID uniquely identifying the streaming job. This GUID is generated upon + creation of the streaming job. :vartype job_id: str - :ivar provisioning_state: Describes the provisioning status of the - streaming job. + :ivar provisioning_state: Describes the provisioning status of the streaming job. :vartype provisioning_state: str :ivar job_state: Describes the state of the streaming job. :vartype job_state: str - :param output_start_mode: This property should only be utilized when it is - desired that the job be started immediately upon creation. Value may be - JobStartTime, CustomTime, or LastOutputEventTime to indicate whether the - starting point of the output event stream should start whenever the job is - started, start at a custom user time stamp specified via the - outputStartTime property, or start from the last event output time. - Possible values include: 'JobStartTime', 'CustomTime', - 'LastOutputEventTime' - :type output_start_mode: str or - ~azure.mgmt.streamanalytics.models.OutputStartMode - :param output_start_time: Value is either an ISO-8601 formatted time stamp - that indicates the starting point of the output event stream, or null to - indicate that the output event stream will start whenever the streaming - job is started. This property must have a value if outputStartMode is set - to CustomTime. - :type output_start_time: datetime - :ivar last_output_event_time: Value is either an ISO-8601 formatted - timestamp indicating the last output event time of the streaming job or - null indicating that output has not yet been produced. In case of multiple - outputs or multiple streams, this shows the latest value in that set. - :vartype last_output_event_time: datetime - :param events_out_of_order_policy: Indicates the policy to apply to events - that arrive out of order in the input event stream. Possible values - include: 'Adjust', 'Drop' + :param job_type: Describes the type of the job. Valid modes are ``Cloud`` and 'Edge'. Possible + values include: "Cloud", "Edge". + :type job_type: str or ~stream_analytics_management_client.models.JobType + :param output_start_mode: This property should only be utilized when it is desired that the job + be started immediately upon creation. Value may be JobStartTime, CustomTime, or + LastOutputEventTime to indicate whether the starting point of the output event stream should + start whenever the job is started, start at a custom user time stamp specified via the + outputStartTime property, or start from the last event output time. Possible values include: + "JobStartTime", "CustomTime", "LastOutputEventTime". + :type output_start_mode: str or ~stream_analytics_management_client.models.OutputStartMode + :param output_start_time: Value is either an ISO-8601 formatted time stamp that indicates the + starting point of the output event stream, or null to indicate that the output event stream + will start whenever the streaming job is started. This property must have a value if + outputStartMode is set to CustomTime. + :type output_start_time: ~datetime.datetime + :ivar last_output_event_time: Value is either an ISO-8601 formatted timestamp indicating the + last output event time of the streaming job or null indicating that output has not yet been + produced. In case of multiple outputs or multiple streams, this shows the latest value in that + set. + :vartype last_output_event_time: ~datetime.datetime + :param events_out_of_order_policy: Indicates the policy to apply to events that arrive out of + order in the input event stream. Possible values include: "Adjust", "Drop". :type events_out_of_order_policy: str or - ~azure.mgmt.streamanalytics.models.EventsOutOfOrderPolicy - :param output_error_policy: Indicates the policy to apply to events that - arrive at the output and cannot be written to the external storage due to - being malformed (missing column values, column values of wrong type or - size). Possible values include: 'Stop', 'Drop' - :type output_error_policy: str or - ~azure.mgmt.streamanalytics.models.OutputErrorPolicy - :param events_out_of_order_max_delay_in_seconds: The maximum tolerable - delay in seconds where out-of-order events can be adjusted to be back in - order. + ~stream_analytics_management_client.models.EventsOutOfOrderPolicy + :param output_error_policy: Indicates the policy to apply to events that arrive at the output + and cannot be written to the external storage due to being malformed (missing column values, + column values of wrong type or size). Possible values include: "Stop", "Drop". + :type output_error_policy: str or ~stream_analytics_management_client.models.OutputErrorPolicy + :param events_out_of_order_max_delay_in_seconds: The maximum tolerable delay in seconds where + out-of-order events can be adjusted to be back in order. :type events_out_of_order_max_delay_in_seconds: int - :param events_late_arrival_max_delay_in_seconds: The maximum tolerable - delay in seconds where events arriving late could be included. Supported - range is -1 to 1814399 (20.23:59:59 days) and -1 is used to specify wait - indefinitely. If the property is absent, it is interpreted to have a value - of -1. + :param events_late_arrival_max_delay_in_seconds: The maximum tolerable delay in seconds where + events arriving late could be included. Supported range is -1 to 1814399 (20.23:59:59 days) + and -1 is used to specify wait indefinitely. If the property is absent, it is interpreted to + have a value of -1. :type events_late_arrival_max_delay_in_seconds: int - :param data_locale: The data locale of the stream analytics job. Value - should be the name of a supported .NET Culture from the set - https://msdn.microsoft.com/en-us/library/system.globalization.culturetypes(v=vs.110).aspx. - Defaults to 'en-US' if none specified. + :param data_locale: The data locale of the stream analytics job. Value should be the name of a + supported .NET Culture from the set https://msdn.microsoft.com/en- + us/library/system.globalization.culturetypes(v=vs.110).aspx. Defaults to 'en-US' if none + specified. :type data_locale: str - :param compatibility_level: Controls certain runtime behaviors of the - streaming job. Possible values include: '1.0' - :type compatibility_level: str or - ~azure.mgmt.streamanalytics.models.CompatibilityLevel - :ivar created_date: Value is an ISO-8601 formatted UTC timestamp - indicating when the streaming job was created. - :vartype created_date: datetime - :param inputs: A list of one or more inputs to the streaming job. The name - property for each input is required when specifying this property in a PUT - request. This property cannot be modify via a PATCH operation. You must - use the PATCH API available for the individual input. - :type inputs: list[~azure.mgmt.streamanalytics.models.Input] - :param transformation: Indicates the query and the number of streaming - units to use for the streaming job. The name property of the - transformation is required when specifying this property in a PUT request. - This property cannot be modify via a PATCH operation. You must use the - PATCH API available for the individual transformation. - :type transformation: ~azure.mgmt.streamanalytics.models.Transformation - :param outputs: A list of one or more outputs for the streaming job. The - name property for each output is required when specifying this property in - a PUT request. This property cannot be modify via a PATCH operation. You - must use the PATCH API available for the individual output. - :type outputs: list[~azure.mgmt.streamanalytics.models.Output] - :param functions: A list of one or more functions for the streaming job. - The name property for each function is required when specifying this - property in a PUT request. This property cannot be modify via a PATCH - operation. You must use the PATCH API available for the individual + :param compatibility_level: Controls certain runtime behaviors of the streaming job. Possible + values include: "1.0", "1.2". + :type compatibility_level: str or ~stream_analytics_management_client.models.CompatibilityLevel + :ivar created_date: Value is an ISO-8601 formatted UTC timestamp indicating when the streaming + job was created. + :vartype created_date: ~datetime.datetime + :param inputs: A list of one or more inputs to the streaming job. The name property for each + input is required when specifying this property in a PUT request. This property cannot be + modify via a PATCH operation. You must use the PATCH API available for the individual input. + :type inputs: list[~stream_analytics_management_client.models.Input] + :param transformation: Indicates the query and the number of streaming units to use for the + streaming job. The name property of the transformation is required when specifying this + property in a PUT request. This property cannot be modify via a PATCH operation. You must use + the PATCH API available for the individual transformation. + :type transformation: ~stream_analytics_management_client.models.Transformation + :param outputs: A list of one or more outputs for the streaming job. The name property for each + output is required when specifying this property in a PUT request. This property cannot be + modify via a PATCH operation. You must use the PATCH API available for the individual output. + :type outputs: list[~stream_analytics_management_client.models.Output] + :param functions: A list of one or more functions for the streaming job. The name property for + each function is required when specifying this property in a PUT request. This property cannot + be modify via a PATCH operation. You must use the PATCH API available for the individual transformation. - :type functions: list[~azure.mgmt.streamanalytics.models.Function] - :ivar etag: The current entity tag for the streaming job. This is an - opaque string. You can use it to detect whether the resource has changed - between requests. You can also use it in the If-Match or If-None-Match - headers for write operations for optimistic concurrency. + :type functions: list[~stream_analytics_management_client.models.Function] + :ivar etag: The current entity tag for the streaming job. This is an opaque string. You can use + it to detect whether the resource has changed between requests. You can also use it in the If- + Match or If-None-Match headers for write operations for optimistic concurrency. :vartype etag: str + :param job_storage_account: The properties that are associated with an Azure Storage account + with MSI. + :type job_storage_account: ~stream_analytics_management_client.models.JobStorageAccount + :param content_storage_policy: Valid values are JobStorageAccount and SystemAccount. If set to + JobStorageAccount, this requires the user to also specify jobStorageAccount property. . + Possible values include: "SystemAccount", "JobStorageAccount". + :type content_storage_policy: str or + ~stream_analytics_management_client.models.ContentStoragePolicy + :param cluster: The cluster which streaming jobs will run on. + :type cluster: ~stream_analytics_management_client.models.ClusterInfo """ _validation = { @@ -2248,12 +3606,14 @@ class StreamingJob(Resource): 'id': {'key': 'id', 'type': 'str'}, 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, - 'location': {'key': 'location', 'type': 'str'}, 'tags': {'key': 'tags', 'type': '{str}'}, + 'location': {'key': 'location', 'type': 'str'}, + 'identity': {'key': 'identity', 'type': 'Identity'}, 'sku': {'key': 'properties.sku', 'type': 'Sku'}, 'job_id': {'key': 'properties.jobId', 'type': 'str'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, 'job_state': {'key': 'properties.jobState', 'type': 'str'}, + 'job_type': {'key': 'properties.jobType', 'type': 'str'}, 'output_start_mode': {'key': 'properties.outputStartMode', 'type': 'str'}, 'output_start_time': {'key': 'properties.outputStartTime', 'type': 'iso-8601'}, 'last_output_event_time': {'key': 'properties.lastOutputEventTime', 'type': 'iso-8601'}, @@ -2269,14 +3629,22 @@ class StreamingJob(Resource): 'outputs': {'key': 'properties.outputs', 'type': '[Output]'}, 'functions': {'key': 'properties.functions', 'type': '[Function]'}, 'etag': {'key': 'properties.etag', 'type': 'str'}, + 'job_storage_account': {'key': 'properties.jobStorageAccount', 'type': 'JobStorageAccount'}, + 'content_storage_policy': {'key': 'properties.contentStoragePolicy', 'type': 'str'}, + 'cluster': {'key': 'properties.cluster', 'type': 'ClusterInfo'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(StreamingJob, self).__init__(**kwargs) + self.identity = kwargs.get('identity', None) self.sku = kwargs.get('sku', None) self.job_id = None self.provisioning_state = None self.job_state = None + self.job_type = kwargs.get('job_type', None) self.output_start_mode = kwargs.get('output_start_mode', None) self.output_start_time = kwargs.get('output_start_time', None) self.last_output_event_time = None @@ -2292,66 +3660,106 @@ def __init__(self, **kwargs): self.outputs = kwargs.get('outputs', None) self.functions = kwargs.get('functions', None) self.etag = None + self.job_storage_account = kwargs.get('job_storage_account', None) + self.content_storage_policy = kwargs.get('content_storage_policy', None) + self.cluster = kwargs.get('cluster', None) + + +class StreamingJobListResult(msrest.serialization.Model): + """Object containing a list of streaming jobs. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of streaming jobs. Populated by a 'List' operation. + :vartype value: list[~stream_analytics_management_client.models.StreamingJob] + :ivar next_link: The link (url) to the next page of results. + :vartype next_link: str + """ + + _validation = { + 'value': {'readonly': True}, + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[StreamingJob]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(StreamingJobListResult, self).__init__(**kwargs) + self.value = None + self.next_link = None class StreamInputProperties(InputProperties): """The properties that are associated with an input containing stream data. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. All required parameters must be populated in order to send to Azure. - :param serialization: Describes how data from an input is serialized or - how data is serialized when written to an output. Required on PUT - (CreateOrReplace) requests. - :type serialization: ~azure.mgmt.streamanalytics.models.Serialization - :ivar diagnostics: Describes conditions applicable to the Input, Output, - or the job overall, that warrant customer attention. - :vartype diagnostics: ~azure.mgmt.streamanalytics.models.Diagnostics - :ivar etag: The current entity tag for the input. This is an opaque - string. You can use it to detect whether the resource has changed between - requests. You can also use it in the If-Match or If-None-Match headers for - write operations for optimistic concurrency. - :vartype etag: str - :param type: Required. Constant filled by server. + :param type: Required. Indicates whether the input is a source of reference data or stream + data. Required on PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param datasource: Describes an input data source that contains stream - data. Required on PUT (CreateOrReplace) requests. - :type datasource: ~azure.mgmt.streamanalytics.models.StreamInputDataSource + :param serialization: Describes how data from an input is serialized or how data is serialized + when written to an output. Required on PUT (CreateOrReplace) requests. + :type serialization: ~stream_analytics_management_client.models.Serialization + :ivar diagnostics: Describes conditions applicable to the Input, Output, or the job overall, + that warrant customer attention. + :vartype diagnostics: ~stream_analytics_management_client.models.Diagnostics + :ivar etag: The current entity tag for the input. This is an opaque string. You can use it to + detect whether the resource has changed between requests. You can also use it in the If-Match + or If-None-Match headers for write operations for optimistic concurrency. + :vartype etag: str + :param compression: Describes how input data is compressed. + :type compression: ~stream_analytics_management_client.models.Compression + :param partition_key: partitionKey Describes a key in the input data which is used for + partitioning the input data. + :type partition_key: str + :param datasource: Describes an input data source that contains stream data. Required on PUT + (CreateOrReplace) requests. + :type datasource: ~stream_analytics_management_client.models.StreamInputDataSource """ _validation = { + 'type': {'required': True}, 'diagnostics': {'readonly': True}, 'etag': {'readonly': True}, - 'type': {'required': True}, } _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, 'serialization': {'key': 'serialization', 'type': 'Serialization'}, 'diagnostics': {'key': 'diagnostics', 'type': 'Diagnostics'}, 'etag': {'key': 'etag', 'type': 'str'}, - 'type': {'key': 'type', 'type': 'str'}, + 'compression': {'key': 'compression', 'type': 'Compression'}, + 'partition_key': {'key': 'partitionKey', 'type': 'str'}, 'datasource': {'key': 'datasource', 'type': 'StreamInputDataSource'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(StreamInputProperties, self).__init__(**kwargs) + self.type = 'Stream' # type: str self.datasource = kwargs.get('datasource', None) - self.type = 'Stream' class SubscriptionQuota(SubResource): """Describes the current quota for the subscription. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Resource Id + :ivar id: Resource Id. :vartype id: str - :param name: Resource name + :param name: Resource name. :type name: str - :ivar type: Resource type + :ivar type: Resource type. :vartype type: str :ivar max_count: The max permitted usage of this resource. :vartype max_count: int @@ -2374,21 +3782,22 @@ class SubscriptionQuota(SubResource): 'current_count': {'key': 'properties.currentCount', 'type': 'int'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(SubscriptionQuota, self).__init__(**kwargs) self.max_count = None self.current_count = None -class SubscriptionQuotasListResult(Model): - """Result of the GetQuotas operation. It contains a list of quotas for the - subscription in a particular region. +class SubscriptionQuotasListResult(msrest.serialization.Model): + """Result of the GetQuotas operation. It contains a list of quotas for the subscription in a particular region. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. :ivar value: List of quotas for the subscription in a particular region. - :vartype value: list[~azure.mgmt.streamanalytics.models.SubscriptionQuota] + :vartype value: list[~stream_analytics_management_client.models.SubscriptionQuota] """ _validation = { @@ -2399,37 +3808,36 @@ class SubscriptionQuotasListResult(Model): 'value': {'key': 'value', 'type': '[SubscriptionQuota]'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(SubscriptionQuotasListResult, self).__init__(**kwargs) self.value = None class Transformation(SubResource): - """A transformation object, containing all information associated with the - named transformation. All transformations are contained under a streaming - job. + """A transformation object, containing all information associated with the named transformation. All transformations are contained under a streaming job. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Resource Id + :ivar id: Resource Id. :vartype id: str - :param name: Resource name + :param name: Resource name. :type name: str - :ivar type: Resource type + :ivar type: Resource type. :vartype type: str - :param streaming_units: Specifies the number of streaming units that the - streaming job uses. + :param streaming_units: Specifies the number of streaming units that the streaming job uses. :type streaming_units: int - :param query: Specifies the query that will be run in the streaming job. - You can learn more about the Stream Analytics Query Language (SAQL) here: - https://msdn.microsoft.com/library/azure/dn834998 . Required on PUT - (CreateOrReplace) requests. + :param valid_streaming_units: Specifies the valid streaming units a streaming job can scale to. + :type valid_streaming_units: list[int] + :param query: Specifies the query that will be run in the streaming job. You can learn more + about the Stream Analytics Query Language (SAQL) here: + https://msdn.microsoft.com/library/azure/dn834998 . Required on PUT (CreateOrReplace) requests. :type query: str - :ivar etag: The current entity tag for the transformation. This is an - opaque string. You can use it to detect whether the resource has changed - between requests. You can also use it in the If-Match or If-None-Match - headers for write operations for optimistic concurrency. + :ivar etag: The current entity tag for the transformation. This is an opaque string. You can + use it to detect whether the resource has changed between requests. You can also use it in the + If-Match or If-None-Match headers for write operations for optimistic concurrency. :vartype etag: str """ @@ -2444,12 +3852,17 @@ class Transformation(SubResource): 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, 'streaming_units': {'key': 'properties.streamingUnits', 'type': 'int'}, + 'valid_streaming_units': {'key': 'properties.validStreamingUnits', 'type': '[int]'}, 'query': {'key': 'properties.query', 'type': 'str'}, 'etag': {'key': 'properties.etag', 'type': 'str'}, } - def __init__(self, **kwargs): + def __init__( + self, + **kwargs + ): super(Transformation, self).__init__(**kwargs) self.streaming_units = kwargs.get('streaming_units', None) + self.valid_streaming_units = kwargs.get('valid_streaming_units', None) self.query = kwargs.get('query', None) self.etag = None diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/models/_models_py3.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/models/_models_py3.py index 9a782949e3d..2b4eadc7ae8 100644 --- a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/models/_models_py3.py +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/models/_models_py3.py @@ -1,28 +1,32 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from msrest.serialization import Model +import datetime +from typing import Dict, List, Optional, Union +from azure.core.exceptions import HttpResponseError +import msrest.serialization -class Serialization(Model): - """Describes how data from an input is serialized or how data is serialized - when written to an output. +from ._stream_analytics_management_client_enums import * + + +class Serialization(msrest.serialization.Model): + """Describes how data from an input is serialized or how data is serialized when written to an output. You probably want to use the sub-classes and not this class directly. Known - sub-classes are: AvroSerialization, JsonSerialization, CsvSerialization + sub-classes are: AvroSerialization, CsvSerialization, JsonSerialization, ParquetSerialization. All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. - :type type: str + :param type: Required. Indicates the type of serialization that the input or output uses. + Required on PUT (CreateOrReplace) requests.Constant filled by server. Possible values include: + "Csv", "Avro", "Json", "Parquet". + :type type: str or ~stream_analytics_management_client.models.EventSerializationType """ _validation = { @@ -34,24 +38,28 @@ class Serialization(Model): } _subtype_map = { - 'type': {'Avro': 'AvroSerialization', 'Json': 'JsonSerialization', 'Csv': 'CsvSerialization'} + 'type': {'Avro': 'AvroSerialization', 'Csv': 'CsvSerialization', 'Json': 'JsonSerialization', 'Parquet': 'ParquetSerialization'} } - def __init__(self, **kwargs) -> None: + def __init__( + self, + **kwargs + ): super(Serialization, self).__init__(**kwargs) - self.type = None + self.type = None # type: Optional[str] class AvroSerialization(Serialization): - """Describes how data from an input is serialized or how data is serialized - when written to an output in Avro format. + """Describes how data from an input is serialized or how data is serialized when written to an output in Avro format. All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. - :type type: str - :param properties: The properties that are associated with the Avro - serialization type. Required on PUT (CreateOrReplace) requests. + :param type: Required. Indicates the type of serialization that the input or output uses. + Required on PUT (CreateOrReplace) requests.Constant filled by server. Possible values include: + "Csv", "Avro", "Json", "Parquet". + :type type: str or ~stream_analytics_management_client.models.EventSerializationType + :param properties: The properties that are associated with the Avro serialization type. + Required on PUT (CreateOrReplace) requests. :type properties: object """ @@ -64,25 +72,27 @@ class AvroSerialization(Serialization): 'properties': {'key': 'properties', 'type': 'object'}, } - def __init__(self, *, properties=None, **kwargs) -> None: + def __init__( + self, + *, + properties: Optional[object] = None, + **kwargs + ): super(AvroSerialization, self).__init__(**kwargs) + self.type = 'Avro' # type: str self.properties = properties - self.type = 'Avro' -class OutputDataSource(Model): +class OutputDataSource(msrest.serialization.Model): """Describes the data source that output will be written to. You probably want to use the sub-classes and not this class directly. Known - sub-classes are: AzureDataLakeStoreOutputDataSource, - PowerBIOutputDataSource, ServiceBusTopicOutputDataSource, - ServiceBusQueueOutputDataSource, DocumentDbOutputDataSource, - AzureSqlDatabaseOutputDataSource, EventHubOutputDataSource, - AzureTableOutputDataSource, BlobOutputDataSource + sub-classes are: AzureDataLakeStoreOutputDataSource, EventHubV2OutputDataSource, EventHubOutputDataSource, ServiceBusQueueOutputDataSource, ServiceBusTopicOutputDataSource, AzureSynapseOutputDataSource, AzureSqlDatabaseOutputDataSource, BlobOutputDataSource, DocumentDbOutputDataSource, AzureTableOutputDataSource, PowerBiOutputDataSource. All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. :type type: str """ @@ -95,12 +105,15 @@ class OutputDataSource(Model): } _subtype_map = { - 'type': {'Microsoft.DataLake/Accounts': 'AzureDataLakeStoreOutputDataSource', 'PowerBI': 'PowerBIOutputDataSource', 'Microsoft.ServiceBus/Topic': 'ServiceBusTopicOutputDataSource', 'Microsoft.ServiceBus/Queue': 'ServiceBusQueueOutputDataSource', 'Microsoft.Storage/DocumentDB': 'DocumentDbOutputDataSource', 'Microsoft.Sql/Server/Database': 'AzureSqlDatabaseOutputDataSource', 'Microsoft.ServiceBus/EventHub': 'EventHubOutputDataSource', 'Microsoft.Storage/Table': 'AzureTableOutputDataSource', 'Microsoft.Storage/Blob': 'BlobOutputDataSource'} + 'type': {'Microsoft.DataLake/Accounts': 'AzureDataLakeStoreOutputDataSource', 'Microsoft.EventHub/EventHub': 'EventHubV2OutputDataSource', 'Microsoft.ServiceBus/EventHub': 'EventHubOutputDataSource', 'Microsoft.ServiceBus/Queue': 'ServiceBusQueueOutputDataSource', 'Microsoft.ServiceBus/Topic': 'ServiceBusTopicOutputDataSource', 'Microsoft.Sql/Server/DataWarehouse': 'AzureSynapseOutputDataSource', 'Microsoft.Sql/Server/Database': 'AzureSqlDatabaseOutputDataSource', 'Microsoft.Storage/Blob': 'BlobOutputDataSource', 'Microsoft.Storage/DocumentDB': 'DocumentDbOutputDataSource', 'Microsoft.Storage/Table': 'AzureTableOutputDataSource', 'PowerBI': 'PowerBiOutputDataSource'} } - def __init__(self, **kwargs) -> None: + def __init__( + self, + **kwargs + ): super(OutputDataSource, self).__init__(**kwargs) - self.type = None + self.type = None # type: Optional[str] class AzureDataLakeStoreOutputDataSource(OutputDataSource): @@ -108,41 +121,42 @@ class AzureDataLakeStoreOutputDataSource(OutputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param refresh_token: A refresh token that can be used to obtain a valid - access token that can then be used to authenticate with the data source. A - valid refresh token is currently only obtainable via the Azure Portal. It - is recommended to put a dummy string value here when creating the data - source and then going to the Azure Portal to authenticate the data source - which will update this property with a valid refresh token. Required on - PUT (CreateOrReplace) requests. + :param refresh_token: A refresh token that can be used to obtain a valid access token that can + then be used to authenticate with the data source. A valid refresh token is currently only + obtainable via the Azure Portal. It is recommended to put a dummy string value here when + creating the data source and then going to the Azure Portal to authenticate the data source + which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) + requests. :type refresh_token: str - :param token_user_principal_name: The user principal name (UPN) of the - user that was used to obtain the refresh token. Use this property to help - remember which user was used to obtain the refresh token. + :param token_user_principal_name: The user principal name (UPN) of the user that was used to + obtain the refresh token. Use this property to help remember which user was used to obtain the + refresh token. :type token_user_principal_name: str - :param token_user_display_name: The user display name of the user that was - used to obtain the refresh token. Use this property to help remember which - user was used to obtain the refresh token. + :param token_user_display_name: The user display name of the user that was used to obtain the + refresh token. Use this property to help remember which user was used to obtain the refresh + token. :type token_user_display_name: str - :param account_name: The name of the Azure Data Lake Store account. - Required on PUT (CreateOrReplace) requests. + :param account_name: The name of the Azure Data Lake Store account. Required on PUT + (CreateOrReplace) requests. :type account_name: str - :param tenant_id: The tenant id of the user used to obtain the refresh - token. Required on PUT (CreateOrReplace) requests. + :param tenant_id: The tenant id of the user used to obtain the refresh token. Required on PUT + (CreateOrReplace) requests. :type tenant_id: str - :param file_path_prefix: The location of the file to which the output - should be written to. Required on PUT (CreateOrReplace) requests. + :param file_path_prefix: The location of the file to which the output should be written to. + Required on PUT (CreateOrReplace) requests. :type file_path_prefix: str - :param date_format: The date format. Wherever {date} appears in - filePathPrefix, the value of this property is used as the date format - instead. + :param date_format: The date format. Wherever {date} appears in filePathPrefix, the value of + this property is used as the date format instead. :type date_format: str - :param time_format: The time format. Wherever {time} appears in - filePathPrefix, the value of this property is used as the time format - instead. + :param time_format: The time format. Wherever {time} appears in filePathPrefix, the value of + this property is used as the time format instead. :type time_format: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode """ _validation = { @@ -159,10 +173,25 @@ class AzureDataLakeStoreOutputDataSource(OutputDataSource): 'file_path_prefix': {'key': 'properties.filePathPrefix', 'type': 'str'}, 'date_format': {'key': 'properties.dateFormat', 'type': 'str'}, 'time_format': {'key': 'properties.timeFormat', 'type': 'str'}, + 'authentication_mode': {'key': 'properties.authenticationMode', 'type': 'str'}, } - def __init__(self, *, refresh_token: str=None, token_user_principal_name: str=None, token_user_display_name: str=None, account_name: str=None, tenant_id: str=None, file_path_prefix: str=None, date_format: str=None, time_format: str=None, **kwargs) -> None: + def __init__( + self, + *, + refresh_token: Optional[str] = None, + token_user_principal_name: Optional[str] = None, + token_user_display_name: Optional[str] = None, + account_name: Optional[str] = None, + tenant_id: Optional[str] = None, + file_path_prefix: Optional[str] = None, + date_format: Optional[str] = None, + time_format: Optional[str] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + **kwargs + ): super(AzureDataLakeStoreOutputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.DataLake/Accounts' # type: str self.refresh_token = refresh_token self.token_user_principal_name = token_user_principal_name self.token_user_display_name = token_user_display_name @@ -171,20 +200,131 @@ def __init__(self, *, refresh_token: str=None, token_user_principal_name: str=No self.file_path_prefix = file_path_prefix self.date_format = date_format self.time_format = time_format - self.type = 'Microsoft.DataLake/Accounts' + self.authentication_mode = authentication_mode -class FunctionBinding(Model): - """The physical binding of the function. For example, in the Azure Machine - Learning web service’s case, this describes the endpoint. +class OAuthBasedDataSourceProperties(msrest.serialization.Model): + """The properties that are associated with data sources that use OAuth as their authentication model. + + :param refresh_token: A refresh token that can be used to obtain a valid access token that can + then be used to authenticate with the data source. A valid refresh token is currently only + obtainable via the Azure Portal. It is recommended to put a dummy string value here when + creating the data source and then going to the Azure Portal to authenticate the data source + which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) + requests. + :type refresh_token: str + :param token_user_principal_name: The user principal name (UPN) of the user that was used to + obtain the refresh token. Use this property to help remember which user was used to obtain the + refresh token. + :type token_user_principal_name: str + :param token_user_display_name: The user display name of the user that was used to obtain the + refresh token. Use this property to help remember which user was used to obtain the refresh + token. + :type token_user_display_name: str + """ + + _attribute_map = { + 'refresh_token': {'key': 'refreshToken', 'type': 'str'}, + 'token_user_principal_name': {'key': 'tokenUserPrincipalName', 'type': 'str'}, + 'token_user_display_name': {'key': 'tokenUserDisplayName', 'type': 'str'}, + } + + def __init__( + self, + *, + refresh_token: Optional[str] = None, + token_user_principal_name: Optional[str] = None, + token_user_display_name: Optional[str] = None, + **kwargs + ): + super(OAuthBasedDataSourceProperties, self).__init__(**kwargs) + self.refresh_token = refresh_token + self.token_user_principal_name = token_user_principal_name + self.token_user_display_name = token_user_display_name + + +class AzureDataLakeStoreOutputDataSourceProperties(OAuthBasedDataSourceProperties): + """The properties that are associated with an Azure Data Lake Store. + + :param refresh_token: A refresh token that can be used to obtain a valid access token that can + then be used to authenticate with the data source. A valid refresh token is currently only + obtainable via the Azure Portal. It is recommended to put a dummy string value here when + creating the data source and then going to the Azure Portal to authenticate the data source + which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) + requests. + :type refresh_token: str + :param token_user_principal_name: The user principal name (UPN) of the user that was used to + obtain the refresh token. Use this property to help remember which user was used to obtain the + refresh token. + :type token_user_principal_name: str + :param token_user_display_name: The user display name of the user that was used to obtain the + refresh token. Use this property to help remember which user was used to obtain the refresh + token. + :type token_user_display_name: str + :param account_name: The name of the Azure Data Lake Store account. Required on PUT + (CreateOrReplace) requests. + :type account_name: str + :param tenant_id: The tenant id of the user used to obtain the refresh token. Required on PUT + (CreateOrReplace) requests. + :type tenant_id: str + :param file_path_prefix: The location of the file to which the output should be written to. + Required on PUT (CreateOrReplace) requests. + :type file_path_prefix: str + :param date_format: The date format. Wherever {date} appears in filePathPrefix, the value of + this property is used as the date format instead. + :type date_format: str + :param time_format: The time format. Wherever {time} appears in filePathPrefix, the value of + this property is used as the time format instead. + :type time_format: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + """ + + _attribute_map = { + 'refresh_token': {'key': 'refreshToken', 'type': 'str'}, + 'token_user_principal_name': {'key': 'tokenUserPrincipalName', 'type': 'str'}, + 'token_user_display_name': {'key': 'tokenUserDisplayName', 'type': 'str'}, + 'account_name': {'key': 'accountName', 'type': 'str'}, + 'tenant_id': {'key': 'tenantId', 'type': 'str'}, + 'file_path_prefix': {'key': 'filePathPrefix', 'type': 'str'}, + 'date_format': {'key': 'dateFormat', 'type': 'str'}, + 'time_format': {'key': 'timeFormat', 'type': 'str'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, + } + + def __init__( + self, + *, + refresh_token: Optional[str] = None, + token_user_principal_name: Optional[str] = None, + token_user_display_name: Optional[str] = None, + account_name: Optional[str] = None, + tenant_id: Optional[str] = None, + file_path_prefix: Optional[str] = None, + date_format: Optional[str] = None, + time_format: Optional[str] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + **kwargs + ): + super(AzureDataLakeStoreOutputDataSourceProperties, self).__init__(refresh_token=refresh_token, token_user_principal_name=token_user_principal_name, token_user_display_name=token_user_display_name, **kwargs) + self.account_name = account_name + self.tenant_id = tenant_id + self.file_path_prefix = file_path_prefix + self.date_format = date_format + self.time_format = time_format + self.authentication_mode = authentication_mode + + +class FunctionBinding(msrest.serialization.Model): + """The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint. You probably want to use the sub-classes and not this class directly. Known - sub-classes are: JavaScriptFunctionBinding, - AzureMachineLearningWebServiceFunctionBinding + sub-classes are: AzureMachineLearningWebServiceFunctionBinding, JavaScriptFunctionBinding. All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the function binding type.Constant filled by server. :type type: str """ @@ -197,12 +337,15 @@ class FunctionBinding(Model): } _subtype_map = { - 'type': {'Microsoft.StreamAnalytics/JavascriptUdf': 'JavaScriptFunctionBinding', 'Microsoft.MachineLearning/WebService': 'AzureMachineLearningWebServiceFunctionBinding'} + 'type': {'Microsoft.MachineLearning/WebService': 'AzureMachineLearningWebServiceFunctionBinding', 'Microsoft.StreamAnalytics/JavascriptUdf': 'JavaScriptFunctionBinding'} } - def __init__(self, **kwargs) -> None: + def __init__( + self, + **kwargs + ): super(FunctionBinding, self).__init__(**kwargs) - self.type = None + self.type = None # type: Optional[str] class AzureMachineLearningWebServiceFunctionBinding(FunctionBinding): @@ -210,25 +353,22 @@ class AzureMachineLearningWebServiceFunctionBinding(FunctionBinding): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the function binding type.Constant filled by server. :type type: str - :param endpoint: The Request-Response execute endpoint of the Azure - Machine Learning web service. Find out more here: - https://docs.microsoft.com/en-us/azure/machine-learning/machine-learning-consume-web-services#request-response-service-rrs + :param endpoint: The Request-Response execute endpoint of the Azure Machine Learning web + service. Find out more here: https://docs.microsoft.com/en-us/azure/machine-learning/machine- + learning-consume-web-services#request-response-service-rrs. :type endpoint: str - :param api_key: The API key used to authenticate with Request-Response - endpoint. + :param api_key: The API key used to authenticate with Request-Response endpoint. :type api_key: str - :param inputs: The inputs for the Azure Machine Learning web service - endpoint. - :type inputs: - ~azure.mgmt.streamanalytics.models.AzureMachineLearningWebServiceInputs - :param outputs: A list of outputs from the Azure Machine Learning web - service endpoint execution. + :param inputs: The inputs for the Azure Machine Learning web service endpoint. + :type inputs: ~stream_analytics_management_client.models.AzureMachineLearningWebServiceInputs + :param outputs: A list of outputs from the Azure Machine Learning web service endpoint + execution. :type outputs: - list[~azure.mgmt.streamanalytics.models.AzureMachineLearningWebServiceOutputColumn] - :param batch_size: Number between 1 and 10000 describing maximum number of - rows for every Azure ML RRS execute request. Default is 1000. + list[~stream_analytics_management_client.models.AzureMachineLearningWebServiceOutputColumn] + :param batch_size: Number between 1 and 10000 describing maximum number of rows for every Azure + ML RRS execute request. Default is 1000. :type batch_size: int """ @@ -245,28 +385,34 @@ class AzureMachineLearningWebServiceFunctionBinding(FunctionBinding): 'batch_size': {'key': 'properties.batchSize', 'type': 'int'}, } - def __init__(self, *, endpoint: str=None, api_key: str=None, inputs=None, outputs=None, batch_size: int=None, **kwargs) -> None: + def __init__( + self, + *, + endpoint: Optional[str] = None, + api_key: Optional[str] = None, + inputs: Optional["AzureMachineLearningWebServiceInputs"] = None, + outputs: Optional[List["AzureMachineLearningWebServiceOutputColumn"]] = None, + batch_size: Optional[int] = None, + **kwargs + ): super(AzureMachineLearningWebServiceFunctionBinding, self).__init__(**kwargs) + self.type = 'Microsoft.MachineLearning/WebService' # type: str self.endpoint = endpoint self.api_key = api_key self.inputs = inputs self.outputs = outputs self.batch_size = batch_size - self.type = 'Microsoft.MachineLearning/WebService' -class FunctionRetrieveDefaultDefinitionParameters(Model): - """Parameters used to specify the type of function to retrieve the default - definition for. +class FunctionRetrieveDefaultDefinitionParameters(msrest.serialization.Model): + """Parameters used to specify the type of function to retrieve the default definition for. You probably want to use the sub-classes and not this class directly. Known - sub-classes are: - AzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters, - JavaScriptFunctionRetrieveDefaultDefinitionParameters + sub-classes are: AzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters, JavaScriptFunctionRetrieveDefaultDefinitionParameters. All required parameters must be populated in order to send to Azure. - :param binding_type: Required. Constant filled by server. + :param binding_type: Required. Indicates the function binding type.Constant filled by server. :type binding_type: str """ @@ -282,57 +428,65 @@ class FunctionRetrieveDefaultDefinitionParameters(Model): 'binding_type': {'Microsoft.MachineLearning/WebService': 'AzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters', 'Microsoft.StreamAnalytics/JavascriptUdf': 'JavaScriptFunctionRetrieveDefaultDefinitionParameters'} } - def __init__(self, **kwargs) -> None: + def __init__( + self, + **kwargs + ): super(FunctionRetrieveDefaultDefinitionParameters, self).__init__(**kwargs) - self.binding_type = None + self.binding_type = None # type: Optional[str] class AzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters(FunctionRetrieveDefaultDefinitionParameters): - """The parameters needed to retrieve the default function definition for an - Azure Machine Learning web service function. + """The parameters needed to retrieve the default function definition for an Azure Machine Learning web service function. + + Variables are only populated by the server, and will be ignored when sending a request. All required parameters must be populated in order to send to Azure. - :param binding_type: Required. Constant filled by server. + :param binding_type: Required. Indicates the function binding type.Constant filled by server. :type binding_type: str - :param execute_endpoint: The Request-Response execute endpoint of the - Azure Machine Learning web service. Find out more here: - https://docs.microsoft.com/en-us/azure/machine-learning/machine-learning-consume-web-services#request-response-service-rrs + :param execute_endpoint: The Request-Response execute endpoint of the Azure Machine Learning + web service. Find out more here: https://docs.microsoft.com/en-us/azure/machine- + learning/machine-learning-consume-web-services#request-response-service-rrs. :type execute_endpoint: str - :param udf_type: The function type. Possible values include: 'Scalar' - :type udf_type: str or ~azure.mgmt.streamanalytics.models.UdfType + :ivar udf_type: The function type. Default value: "Scalar". + :vartype udf_type: str """ _validation = { 'binding_type': {'required': True}, + 'udf_type': {'constant': True}, } _attribute_map = { 'binding_type': {'key': 'bindingType', 'type': 'str'}, 'execute_endpoint': {'key': 'bindingRetrievalProperties.executeEndpoint', 'type': 'str'}, - 'udf_type': {'key': 'bindingRetrievalProperties.udfType', 'type': 'UdfType'}, + 'udf_type': {'key': 'bindingRetrievalProperties.udfType', 'type': 'str'}, } - def __init__(self, *, execute_endpoint: str=None, udf_type=None, **kwargs) -> None: + udf_type = "Scalar" + + def __init__( + self, + *, + execute_endpoint: Optional[str] = None, + **kwargs + ): super(AzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters, self).__init__(**kwargs) + self.binding_type = 'Microsoft.MachineLearning/WebService' # type: str self.execute_endpoint = execute_endpoint - self.udf_type = udf_type - self.binding_type = 'Microsoft.MachineLearning/WebService' -class AzureMachineLearningWebServiceInputColumn(Model): - """Describes an input column for the Azure Machine Learning web service - endpoint. +class AzureMachineLearningWebServiceInputColumn(msrest.serialization.Model): + """Describes an input column for the Azure Machine Learning web service endpoint. :param name: The name of the input column. :type name: str - :param data_type: The (Azure Machine Learning supported) data type of the - input column. A list of valid Azure Machine Learning data types are - described at https://msdn.microsoft.com/en-us/library/azure/dn905923.aspx - . + :param data_type: The (Azure Machine Learning supported) data type of the input column. A list + of valid Azure Machine Learning data types are described at https://msdn.microsoft.com/en- + us/library/azure/dn905923.aspx . :type data_type: str - :param map_to: The zero based index of the function parameter this input - maps to. + :param map_to: The zero based index of the function parameter this input maps to. :type map_to: int """ @@ -342,23 +496,29 @@ class AzureMachineLearningWebServiceInputColumn(Model): 'map_to': {'key': 'mapTo', 'type': 'int'}, } - def __init__(self, *, name: str=None, data_type: str=None, map_to: int=None, **kwargs) -> None: + def __init__( + self, + *, + name: Optional[str] = None, + data_type: Optional[str] = None, + map_to: Optional[int] = None, + **kwargs + ): super(AzureMachineLearningWebServiceInputColumn, self).__init__(**kwargs) self.name = name self.data_type = data_type self.map_to = map_to -class AzureMachineLearningWebServiceInputs(Model): +class AzureMachineLearningWebServiceInputs(msrest.serialization.Model): """The inputs for the Azure Machine Learning web service endpoint. - :param name: The name of the input. This is the name provided while - authoring the endpoint. + :param name: The name of the input. This is the name provided while authoring the endpoint. :type name: str - :param column_names: A list of input columns for the Azure Machine - Learning web service endpoint. + :param column_names: A list of input columns for the Azure Machine Learning web service + endpoint. :type column_names: - list[~azure.mgmt.streamanalytics.models.AzureMachineLearningWebServiceInputColumn] + list[~stream_analytics_management_client.models.AzureMachineLearningWebServiceInputColumn] """ _attribute_map = { @@ -366,22 +526,26 @@ class AzureMachineLearningWebServiceInputs(Model): 'column_names': {'key': 'columnNames', 'type': '[AzureMachineLearningWebServiceInputColumn]'}, } - def __init__(self, *, name: str=None, column_names=None, **kwargs) -> None: + def __init__( + self, + *, + name: Optional[str] = None, + column_names: Optional[List["AzureMachineLearningWebServiceInputColumn"]] = None, + **kwargs + ): super(AzureMachineLearningWebServiceInputs, self).__init__(**kwargs) self.name = name self.column_names = column_names -class AzureMachineLearningWebServiceOutputColumn(Model): - """Describes an output column for the Azure Machine Learning web service - endpoint. +class AzureMachineLearningWebServiceOutputColumn(msrest.serialization.Model): + """Describes an output column for the Azure Machine Learning web service endpoint. :param name: The name of the output column. :type name: str - :param data_type: The (Azure Machine Learning supported) data type of the - output column. A list of valid Azure Machine Learning data types are - described at https://msdn.microsoft.com/en-us/library/azure/dn905923.aspx - . + :param data_type: The (Azure Machine Learning supported) data type of the output column. A list + of valid Azure Machine Learning data types are described at https://msdn.microsoft.com/en- + us/library/azure/dn905923.aspx . :type data_type: str """ @@ -390,30 +554,45 @@ class AzureMachineLearningWebServiceOutputColumn(Model): 'data_type': {'key': 'dataType', 'type': 'str'}, } - def __init__(self, *, name: str=None, data_type: str=None, **kwargs) -> None: + def __init__( + self, + *, + name: Optional[str] = None, + data_type: Optional[str] = None, + **kwargs + ): super(AzureMachineLearningWebServiceOutputColumn, self).__init__(**kwargs) self.name = name self.data_type = data_type -class AzureSqlDatabaseDataSourceProperties(Model): +class AzureSqlDatabaseDataSourceProperties(msrest.serialization.Model): """The properties that are associated with an Azure SQL database data source. - :param server: The name of the SQL server containing the Azure SQL - database. Required on PUT (CreateOrReplace) requests. - :type server: str - :param database: The name of the Azure SQL database. Required on PUT + :param server: The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests. + :type server: str + :param database: The name of the Azure SQL database. Required on PUT (CreateOrReplace) + requests. :type database: str - :param user: The user name that will be used to connect to the Azure SQL - database. Required on PUT (CreateOrReplace) requests. + :param user: The user name that will be used to connect to the Azure SQL database. Required on + PUT (CreateOrReplace) requests. :type user: str - :param password: The password that will be used to connect to the Azure - SQL database. Required on PUT (CreateOrReplace) requests. + :param password: The password that will be used to connect to the Azure SQL database. Required + on PUT (CreateOrReplace) requests. :type password: str - :param table: The name of the table in the Azure SQL database. Required on - PUT (CreateOrReplace) requests. + :param table: The name of the table in the Azure SQL database. Required on PUT + (CreateOrReplace) requests. :type table: str + :param max_batch_count: Max Batch count for write to Sql database, the default value is 10,000. + Optional on PUT requests. + :type max_batch_count: float + :param max_writer_count: Max Writer count, currently only 1(single writer) and 0(based on query + partition) are available. Optional on PUT requests. + :type max_writer_count: float + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode """ _attribute_map = { @@ -422,15 +601,33 @@ class AzureSqlDatabaseDataSourceProperties(Model): 'user': {'key': 'user', 'type': 'str'}, 'password': {'key': 'password', 'type': 'str'}, 'table': {'key': 'table', 'type': 'str'}, + 'max_batch_count': {'key': 'maxBatchCount', 'type': 'float'}, + 'max_writer_count': {'key': 'maxWriterCount', 'type': 'float'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, } - def __init__(self, *, server: str=None, database: str=None, user: str=None, password: str=None, table: str=None, **kwargs) -> None: + def __init__( + self, + *, + server: Optional[str] = None, + database: Optional[str] = None, + user: Optional[str] = None, + password: Optional[str] = None, + table: Optional[str] = None, + max_batch_count: Optional[float] = None, + max_writer_count: Optional[float] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + **kwargs + ): super(AzureSqlDatabaseDataSourceProperties, self).__init__(**kwargs) self.server = server self.database = database self.user = user self.password = password self.table = table + self.max_batch_count = max_batch_count + self.max_writer_count = max_writer_count + self.authentication_mode = authentication_mode class AzureSqlDatabaseOutputDataSource(OutputDataSource): @@ -438,23 +635,33 @@ class AzureSqlDatabaseOutputDataSource(OutputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param server: The name of the SQL server containing the Azure SQL - database. Required on PUT (CreateOrReplace) requests. - :type server: str - :param database: The name of the Azure SQL database. Required on PUT + :param server: The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests. + :type server: str + :param database: The name of the Azure SQL database. Required on PUT (CreateOrReplace) + requests. :type database: str - :param user: The user name that will be used to connect to the Azure SQL - database. Required on PUT (CreateOrReplace) requests. + :param user: The user name that will be used to connect to the Azure SQL database. Required on + PUT (CreateOrReplace) requests. :type user: str - :param password: The password that will be used to connect to the Azure - SQL database. Required on PUT (CreateOrReplace) requests. + :param password: The password that will be used to connect to the Azure SQL database. Required + on PUT (CreateOrReplace) requests. :type password: str - :param table: The name of the table in the Azure SQL database. Required on - PUT (CreateOrReplace) requests. + :param table: The name of the table in the Azure SQL database. Required on PUT + (CreateOrReplace) requests. :type table: str + :param max_batch_count: Max Batch count for write to Sql database, the default value is 10,000. + Optional on PUT requests. + :type max_batch_count: float + :param max_writer_count: Max Writer count, currently only 1(single writer) and 0(based on query + partition) are available. Optional on PUT requests. + :type max_writer_count: float + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode """ _validation = { @@ -468,16 +675,349 @@ class AzureSqlDatabaseOutputDataSource(OutputDataSource): 'user': {'key': 'properties.user', 'type': 'str'}, 'password': {'key': 'properties.password', 'type': 'str'}, 'table': {'key': 'properties.table', 'type': 'str'}, + 'max_batch_count': {'key': 'properties.maxBatchCount', 'type': 'float'}, + 'max_writer_count': {'key': 'properties.maxWriterCount', 'type': 'float'}, + 'authentication_mode': {'key': 'properties.authenticationMode', 'type': 'str'}, } - def __init__(self, *, server: str=None, database: str=None, user: str=None, password: str=None, table: str=None, **kwargs) -> None: + def __init__( + self, + *, + server: Optional[str] = None, + database: Optional[str] = None, + user: Optional[str] = None, + password: Optional[str] = None, + table: Optional[str] = None, + max_batch_count: Optional[float] = None, + max_writer_count: Optional[float] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + **kwargs + ): super(AzureSqlDatabaseOutputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.Sql/Server/Database' # type: str + self.server = server + self.database = database + self.user = user + self.password = password + self.table = table + self.max_batch_count = max_batch_count + self.max_writer_count = max_writer_count + self.authentication_mode = authentication_mode + + +class AzureSqlDatabaseOutputDataSourceProperties(AzureSqlDatabaseDataSourceProperties): + """The properties that are associated with an Azure SQL database output. + + :param server: The name of the SQL server containing the Azure SQL database. Required on PUT + (CreateOrReplace) requests. + :type server: str + :param database: The name of the Azure SQL database. Required on PUT (CreateOrReplace) + requests. + :type database: str + :param user: The user name that will be used to connect to the Azure SQL database. Required on + PUT (CreateOrReplace) requests. + :type user: str + :param password: The password that will be used to connect to the Azure SQL database. Required + on PUT (CreateOrReplace) requests. + :type password: str + :param table: The name of the table in the Azure SQL database. Required on PUT + (CreateOrReplace) requests. + :type table: str + :param max_batch_count: Max Batch count for write to Sql database, the default value is 10,000. + Optional on PUT requests. + :type max_batch_count: float + :param max_writer_count: Max Writer count, currently only 1(single writer) and 0(based on query + partition) are available. Optional on PUT requests. + :type max_writer_count: float + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + """ + + _attribute_map = { + 'server': {'key': 'server', 'type': 'str'}, + 'database': {'key': 'database', 'type': 'str'}, + 'user': {'key': 'user', 'type': 'str'}, + 'password': {'key': 'password', 'type': 'str'}, + 'table': {'key': 'table', 'type': 'str'}, + 'max_batch_count': {'key': 'maxBatchCount', 'type': 'float'}, + 'max_writer_count': {'key': 'maxWriterCount', 'type': 'float'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, + } + + def __init__( + self, + *, + server: Optional[str] = None, + database: Optional[str] = None, + user: Optional[str] = None, + password: Optional[str] = None, + table: Optional[str] = None, + max_batch_count: Optional[float] = None, + max_writer_count: Optional[float] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + **kwargs + ): + super(AzureSqlDatabaseOutputDataSourceProperties, self).__init__(server=server, database=database, user=user, password=password, table=table, max_batch_count=max_batch_count, max_writer_count=max_writer_count, authentication_mode=authentication_mode, **kwargs) + + +class ReferenceInputDataSource(msrest.serialization.Model): + """Describes an input data source that contains reference data. + + You probably want to use the sub-classes and not this class directly. Known + sub-classes are: AzureSqlReferenceInputDataSource, BlobReferenceInputDataSource. + + All required parameters must be populated in order to send to Azure. + + :param type: Required. Indicates the type of input data source containing reference data. + Required on PUT (CreateOrReplace) requests.Constant filled by server. + :type type: str + """ + + _validation = { + 'type': {'required': True}, + } + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + } + + _subtype_map = { + 'type': {'Microsoft.Sql/Server/Database': 'AzureSqlReferenceInputDataSource', 'Microsoft.Storage/Blob': 'BlobReferenceInputDataSource'} + } + + def __init__( + self, + **kwargs + ): + super(ReferenceInputDataSource, self).__init__(**kwargs) + self.type = None # type: Optional[str] + + +class AzureSqlReferenceInputDataSource(ReferenceInputDataSource): + """Describes an Azure SQL database reference input data source. + + All required parameters must be populated in order to send to Azure. + + :param type: Required. Indicates the type of input data source containing reference data. + Required on PUT (CreateOrReplace) requests.Constant filled by server. + :type type: str + :param server: This element is associated with the datasource element. This is the name of the + server that contains the database that will be written to. + :type server: str + :param database: This element is associated with the datasource element. This is the name of + the database that output will be written to. + :type database: str + :param user: This element is associated with the datasource element. This is the user name that + will be used to connect to the SQL Database instance. + :type user: str + :param password: This element is associated with the datasource element. This is the password + that will be used to connect to the SQL Database instance. + :type password: str + :param table: This element is associated with the datasource element. The name of the table in + the Azure SQL database.. + :type table: str + :param refresh_type: Indicates the type of data refresh option. Possible values include: + "Static", "RefreshPeriodicallyWithFull", "RefreshPeriodicallyWithDelta". + :type refresh_type: str or ~stream_analytics_management_client.models.RefreshType + :param refresh_rate: This element is associated with the datasource element. This indicates how + frequently the data will be fetched from the database. It is of DateTime format. + :type refresh_rate: str + :param full_snapshot_query: This element is associated with the datasource element. This query + is used to fetch data from the sql database. + :type full_snapshot_query: str + :param delta_snapshot_query: This element is associated with the datasource element. This query + is used to fetch incremental changes from the SQL database. To use this option, we recommend + using temporal tables in Azure SQL Database. + :type delta_snapshot_query: str + """ + + _validation = { + 'type': {'required': True}, + } + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + 'server': {'key': 'properties.server', 'type': 'str'}, + 'database': {'key': 'properties.database', 'type': 'str'}, + 'user': {'key': 'properties.user', 'type': 'str'}, + 'password': {'key': 'properties.password', 'type': 'str'}, + 'table': {'key': 'properties.table', 'type': 'str'}, + 'refresh_type': {'key': 'properties.refreshType', 'type': 'str'}, + 'refresh_rate': {'key': 'properties.refreshRate', 'type': 'str'}, + 'full_snapshot_query': {'key': 'properties.fullSnapshotQuery', 'type': 'str'}, + 'delta_snapshot_query': {'key': 'properties.deltaSnapshotQuery', 'type': 'str'}, + } + + def __init__( + self, + *, + server: Optional[str] = None, + database: Optional[str] = None, + user: Optional[str] = None, + password: Optional[str] = None, + table: Optional[str] = None, + refresh_type: Optional[Union[str, "RefreshType"]] = None, + refresh_rate: Optional[str] = None, + full_snapshot_query: Optional[str] = None, + delta_snapshot_query: Optional[str] = None, + **kwargs + ): + super(AzureSqlReferenceInputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.Sql/Server/Database' # type: str + self.server = server + self.database = database + self.user = user + self.password = password + self.table = table + self.refresh_type = refresh_type + self.refresh_rate = refresh_rate + self.full_snapshot_query = full_snapshot_query + self.delta_snapshot_query = delta_snapshot_query + + +class AzureSynapseDataSourceProperties(msrest.serialization.Model): + """The properties that are associated with an Azure SQL database data source. + + :param server: The name of the SQL server containing the Azure SQL database. Required on PUT + (CreateOrReplace) requests. + :type server: str + :param database: The name of the Azure SQL database. Required on PUT (CreateOrReplace) + requests. + :type database: str + :param table: The name of the table in the Azure SQL database. Required on PUT + (CreateOrReplace) requests. + :type table: str + :param user: The user name that will be used to connect to the Azure SQL database. Required on + PUT (CreateOrReplace) requests. + :type user: str + :param password: The password that will be used to connect to the Azure SQL database. Required + on PUT (CreateOrReplace) requests. + :type password: str + """ + + _attribute_map = { + 'server': {'key': 'server', 'type': 'str'}, + 'database': {'key': 'database', 'type': 'str'}, + 'table': {'key': 'table', 'type': 'str'}, + 'user': {'key': 'user', 'type': 'str'}, + 'password': {'key': 'password', 'type': 'str'}, + } + + def __init__( + self, + *, + server: Optional[str] = None, + database: Optional[str] = None, + table: Optional[str] = None, + user: Optional[str] = None, + password: Optional[str] = None, + **kwargs + ): + super(AzureSynapseDataSourceProperties, self).__init__(**kwargs) self.server = server self.database = database + self.table = table self.user = user self.password = password + + +class AzureSynapseOutputDataSource(OutputDataSource): + """Describes an Azure Synapse output data source. + + All required parameters must be populated in order to send to Azure. + + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. + :type type: str + :param server: The name of the SQL server containing the Azure SQL database. Required on PUT + (CreateOrReplace) requests. + :type server: str + :param database: The name of the Azure SQL database. Required on PUT (CreateOrReplace) + requests. + :type database: str + :param table: The name of the table in the Azure SQL database. Required on PUT + (CreateOrReplace) requests. + :type table: str + :param user: The user name that will be used to connect to the Azure SQL database. Required on + PUT (CreateOrReplace) requests. + :type user: str + :param password: The password that will be used to connect to the Azure SQL database. Required + on PUT (CreateOrReplace) requests. + :type password: str + """ + + _validation = { + 'type': {'required': True}, + } + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + 'server': {'key': 'properties.server', 'type': 'str'}, + 'database': {'key': 'properties.database', 'type': 'str'}, + 'table': {'key': 'properties.table', 'type': 'str'}, + 'user': {'key': 'properties.user', 'type': 'str'}, + 'password': {'key': 'properties.password', 'type': 'str'}, + } + + def __init__( + self, + *, + server: Optional[str] = None, + database: Optional[str] = None, + table: Optional[str] = None, + user: Optional[str] = None, + password: Optional[str] = None, + **kwargs + ): + super(AzureSynapseOutputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.Sql/Server/DataWarehouse' # type: str + self.server = server + self.database = database self.table = table - self.type = 'Microsoft.Sql/Server/Database' + self.user = user + self.password = password + + +class AzureSynapseOutputDataSourceProperties(AzureSynapseDataSourceProperties): + """The properties that are associated with an Azure Synapse output. + + :param server: The name of the SQL server containing the Azure SQL database. Required on PUT + (CreateOrReplace) requests. + :type server: str + :param database: The name of the Azure SQL database. Required on PUT (CreateOrReplace) + requests. + :type database: str + :param table: The name of the table in the Azure SQL database. Required on PUT + (CreateOrReplace) requests. + :type table: str + :param user: The user name that will be used to connect to the Azure SQL database. Required on + PUT (CreateOrReplace) requests. + :type user: str + :param password: The password that will be used to connect to the Azure SQL database. Required + on PUT (CreateOrReplace) requests. + :type password: str + """ + + _attribute_map = { + 'server': {'key': 'server', 'type': 'str'}, + 'database': {'key': 'database', 'type': 'str'}, + 'table': {'key': 'table', 'type': 'str'}, + 'user': {'key': 'user', 'type': 'str'}, + 'password': {'key': 'password', 'type': 'str'}, + } + + def __init__( + self, + *, + server: Optional[str] = None, + database: Optional[str] = None, + table: Optional[str] = None, + user: Optional[str] = None, + password: Optional[str] = None, + **kwargs + ): + super(AzureSynapseOutputDataSourceProperties, self).__init__(server=server, database=database, table=table, user=user, password=password, **kwargs) class AzureTableOutputDataSource(OutputDataSource): @@ -485,30 +1025,29 @@ class AzureTableOutputDataSource(OutputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param account_name: The name of the Azure Storage account. Required on - PUT (CreateOrReplace) requests. + :param account_name: The name of the Azure Storage account. Required on PUT (CreateOrReplace) + requests. :type account_name: str - :param account_key: The account key for the Azure Storage account. - Required on PUT (CreateOrReplace) requests. - :type account_key: str - :param table: The name of the Azure Table. Required on PUT + :param account_key: The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests. + :type account_key: str + :param table: The name of the Azure Table. Required on PUT (CreateOrReplace) requests. :type table: str - :param partition_key: This element indicates the name of a column from the - SELECT statement in the query that will be used as the partition key for - the Azure Table. Required on PUT (CreateOrReplace) requests. + :param partition_key: This element indicates the name of a column from the SELECT statement in + the query that will be used as the partition key for the Azure Table. Required on PUT + (CreateOrReplace) requests. :type partition_key: str - :param row_key: This element indicates the name of a column from the - SELECT statement in the query that will be used as the row key for the - Azure Table. Required on PUT (CreateOrReplace) requests. + :param row_key: This element indicates the name of a column from the SELECT statement in the + query that will be used as the row key for the Azure Table. Required on PUT (CreateOrReplace) + requests. :type row_key: str - :param columns_to_remove: If specified, each item in the array is the name - of a column to remove (if present) from output event entities. + :param columns_to_remove: If specified, each item in the array is the name of a column to + remove (if present) from output event entities. :type columns_to_remove: list[str] - :param batch_size: The number of rows to write to the Azure Table at a - time. + :param batch_size: The number of rows to write to the Azure Table at a time. :type batch_size: int """ @@ -527,8 +1066,20 @@ class AzureTableOutputDataSource(OutputDataSource): 'batch_size': {'key': 'properties.batchSize', 'type': 'int'}, } - def __init__(self, *, account_name: str=None, account_key: str=None, table: str=None, partition_key: str=None, row_key: str=None, columns_to_remove=None, batch_size: int=None, **kwargs) -> None: + def __init__( + self, + *, + account_name: Optional[str] = None, + account_key: Optional[str] = None, + table: Optional[str] = None, + partition_key: Optional[str] = None, + row_key: Optional[str] = None, + columns_to_remove: Optional[List[str]] = None, + batch_size: Optional[int] = None, + **kwargs + ): super(AzureTableOutputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.Storage/Table' # type: str self.account_name = account_name self.account_key = account_key self.table = table @@ -536,35 +1087,30 @@ def __init__(self, *, account_name: str=None, account_key: str=None, table: str= self.row_key = row_key self.columns_to_remove = columns_to_remove self.batch_size = batch_size - self.type = 'Microsoft.Storage/Table' -class BlobDataSourceProperties(Model): +class BlobDataSourceProperties(msrest.serialization.Model): """The properties that are associated with a blob data source. - :param storage_accounts: A list of one or more Azure Storage accounts. - Required on PUT (CreateOrReplace) requests. - :type storage_accounts: - list[~azure.mgmt.streamanalytics.models.StorageAccount] - :param container: The name of a container within the associated Storage - account. This container contains either the blob(s) to be read from or - written to. Required on PUT (CreateOrReplace) requests. + :param storage_accounts: A list of one or more Azure Storage accounts. Required on PUT + (CreateOrReplace) requests. + :type storage_accounts: list[~stream_analytics_management_client.models.StorageAccount] + :param container: The name of a container within the associated Storage account. This container + contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) + requests. :type container: str - :param path_pattern: The blob path pattern. Not a regular expression. It - represents a pattern against which blob names will be matched to determine - whether or not they should be included as input or output to the job. See - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input - or - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output - for a more detailed explanation and example. + :param path_pattern: The blob path pattern. Not a regular expression. It represents a pattern + against which blob names will be matched to determine whether or not they should be included as + input or output to the job. See https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and + example. :type path_pattern: str - :param date_format: The date format. Wherever {date} appears in - pathPattern, the value of this property is used as the date format - instead. + :param date_format: The date format. Wherever {date} appears in pathPattern, the value of this + property is used as the date format instead. :type date_format: str - :param time_format: The time format. Wherever {time} appears in - pathPattern, the value of this property is used as the time format - instead. + :param time_format: The time format. Wherever {time} appears in pathPattern, the value of this + property is used as the time format instead. :type time_format: str """ @@ -576,7 +1122,16 @@ class BlobDataSourceProperties(Model): 'time_format': {'key': 'timeFormat', 'type': 'str'}, } - def __init__(self, *, storage_accounts=None, container: str=None, path_pattern: str=None, date_format: str=None, time_format: str=None, **kwargs) -> None: + def __init__( + self, + *, + storage_accounts: Optional[List["StorageAccount"]] = None, + container: Optional[str] = None, + path_pattern: Optional[str] = None, + date_format: Optional[str] = None, + time_format: Optional[str] = None, + **kwargs + ): super(BlobDataSourceProperties, self).__init__(**kwargs) self.storage_accounts = storage_accounts self.container = container @@ -590,32 +1145,32 @@ class BlobOutputDataSource(OutputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param storage_accounts: A list of one or more Azure Storage accounts. - Required on PUT (CreateOrReplace) requests. - :type storage_accounts: - list[~azure.mgmt.streamanalytics.models.StorageAccount] - :param container: The name of a container within the associated Storage - account. This container contains either the blob(s) to be read from or - written to. Required on PUT (CreateOrReplace) requests. + :param storage_accounts: A list of one or more Azure Storage accounts. Required on PUT + (CreateOrReplace) requests. + :type storage_accounts: list[~stream_analytics_management_client.models.StorageAccount] + :param container: The name of a container within the associated Storage account. This container + contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) + requests. :type container: str - :param path_pattern: The blob path pattern. Not a regular expression. It - represents a pattern against which blob names will be matched to determine - whether or not they should be included as input or output to the job. See - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input - or - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output - for a more detailed explanation and example. + :param path_pattern: The blob path pattern. Not a regular expression. It represents a pattern + against which blob names will be matched to determine whether or not they should be included as + input or output to the job. See https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and + example. :type path_pattern: str - :param date_format: The date format. Wherever {date} appears in - pathPattern, the value of this property is used as the date format - instead. + :param date_format: The date format. Wherever {date} appears in pathPattern, the value of this + property is used as the date format instead. :type date_format: str - :param time_format: The time format. Wherever {time} appears in - pathPattern, the value of this property is used as the time format - instead. + :param time_format: The time format. Wherever {time} appears in pathPattern, the value of this + property is used as the time format instead. :type time_format: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode """ _validation = { @@ -629,45 +1184,80 @@ class BlobOutputDataSource(OutputDataSource): 'path_pattern': {'key': 'properties.pathPattern', 'type': 'str'}, 'date_format': {'key': 'properties.dateFormat', 'type': 'str'}, 'time_format': {'key': 'properties.timeFormat', 'type': 'str'}, + 'authentication_mode': {'key': 'properties.authenticationMode', 'type': 'str'}, } - def __init__(self, *, storage_accounts=None, container: str=None, path_pattern: str=None, date_format: str=None, time_format: str=None, **kwargs) -> None: + def __init__( + self, + *, + storage_accounts: Optional[List["StorageAccount"]] = None, + container: Optional[str] = None, + path_pattern: Optional[str] = None, + date_format: Optional[str] = None, + time_format: Optional[str] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + **kwargs + ): super(BlobOutputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.Storage/Blob' # type: str self.storage_accounts = storage_accounts self.container = container self.path_pattern = path_pattern self.date_format = date_format self.time_format = time_format - self.type = 'Microsoft.Storage/Blob' + self.authentication_mode = authentication_mode -class ReferenceInputDataSource(Model): - """Describes an input data source that contains reference data. +class BlobOutputDataSourceProperties(BlobDataSourceProperties): + """The properties that are associated with a blob output. - You probably want to use the sub-classes and not this class directly. Known - sub-classes are: BlobReferenceInputDataSource - - All required parameters must be populated in order to send to Azure. - - :param type: Required. Constant filled by server. - :type type: str + :param storage_accounts: A list of one or more Azure Storage accounts. Required on PUT + (CreateOrReplace) requests. + :type storage_accounts: list[~stream_analytics_management_client.models.StorageAccount] + :param container: The name of a container within the associated Storage account. This container + contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) + requests. + :type container: str + :param path_pattern: The blob path pattern. Not a regular expression. It represents a pattern + against which blob names will be matched to determine whether or not they should be included as + input or output to the job. See https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and + example. + :type path_pattern: str + :param date_format: The date format. Wherever {date} appears in pathPattern, the value of this + property is used as the date format instead. + :type date_format: str + :param time_format: The time format. Wherever {time} appears in pathPattern, the value of this + property is used as the time format instead. + :type time_format: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode """ - _validation = { - 'type': {'required': True}, - } - _attribute_map = { - 'type': {'key': 'type', 'type': 'str'}, - } - - _subtype_map = { - 'type': {'Microsoft.Storage/Blob': 'BlobReferenceInputDataSource'} + 'storage_accounts': {'key': 'storageAccounts', 'type': '[StorageAccount]'}, + 'container': {'key': 'container', 'type': 'str'}, + 'path_pattern': {'key': 'pathPattern', 'type': 'str'}, + 'date_format': {'key': 'dateFormat', 'type': 'str'}, + 'time_format': {'key': 'timeFormat', 'type': 'str'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, } - def __init__(self, **kwargs) -> None: - super(ReferenceInputDataSource, self).__init__(**kwargs) - self.type = None + def __init__( + self, + *, + storage_accounts: Optional[List["StorageAccount"]] = None, + container: Optional[str] = None, + path_pattern: Optional[str] = None, + date_format: Optional[str] = None, + time_format: Optional[str] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + **kwargs + ): + super(BlobOutputDataSourceProperties, self).__init__(storage_accounts=storage_accounts, container=container, path_pattern=path_pattern, date_format=date_format, time_format=time_format, **kwargs) + self.authentication_mode = authentication_mode class BlobReferenceInputDataSource(ReferenceInputDataSource): @@ -675,31 +1265,28 @@ class BlobReferenceInputDataSource(ReferenceInputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of input data source containing reference data. + Required on PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param storage_accounts: A list of one or more Azure Storage accounts. - Required on PUT (CreateOrReplace) requests. - :type storage_accounts: - list[~azure.mgmt.streamanalytics.models.StorageAccount] - :param container: The name of a container within the associated Storage - account. This container contains either the blob(s) to be read from or - written to. Required on PUT (CreateOrReplace) requests. + :param storage_accounts: A list of one or more Azure Storage accounts. Required on PUT + (CreateOrReplace) requests. + :type storage_accounts: list[~stream_analytics_management_client.models.StorageAccount] + :param container: The name of a container within the associated Storage account. This container + contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) + requests. :type container: str - :param path_pattern: The blob path pattern. Not a regular expression. It - represents a pattern against which blob names will be matched to determine - whether or not they should be included as input or output to the job. See - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input - or - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output - for a more detailed explanation and example. + :param path_pattern: The blob path pattern. Not a regular expression. It represents a pattern + against which blob names will be matched to determine whether or not they should be included as + input or output to the job. See https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and + example. :type path_pattern: str - :param date_format: The date format. Wherever {date} appears in - pathPattern, the value of this property is used as the date format - instead. + :param date_format: The date format. Wherever {date} appears in pathPattern, the value of this + property is used as the date format instead. :type date_format: str - :param time_format: The time format. Wherever {time} appears in - pathPattern, the value of this property is used as the time format - instead. + :param time_format: The time format. Wherever {time} appears in pathPattern, the value of this + property is used as the time format instead. :type time_format: str """ @@ -716,26 +1303,81 @@ class BlobReferenceInputDataSource(ReferenceInputDataSource): 'time_format': {'key': 'properties.timeFormat', 'type': 'str'}, } - def __init__(self, *, storage_accounts=None, container: str=None, path_pattern: str=None, date_format: str=None, time_format: str=None, **kwargs) -> None: + def __init__( + self, + *, + storage_accounts: Optional[List["StorageAccount"]] = None, + container: Optional[str] = None, + path_pattern: Optional[str] = None, + date_format: Optional[str] = None, + time_format: Optional[str] = None, + **kwargs + ): super(BlobReferenceInputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.Storage/Blob' # type: str self.storage_accounts = storage_accounts self.container = container self.path_pattern = path_pattern self.date_format = date_format self.time_format = time_format - self.type = 'Microsoft.Storage/Blob' -class StreamInputDataSource(Model): +class BlobReferenceInputDataSourceProperties(BlobDataSourceProperties): + """The properties that are associated with a blob input containing reference data. + + :param storage_accounts: A list of one or more Azure Storage accounts. Required on PUT + (CreateOrReplace) requests. + :type storage_accounts: list[~stream_analytics_management_client.models.StorageAccount] + :param container: The name of a container within the associated Storage account. This container + contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) + requests. + :type container: str + :param path_pattern: The blob path pattern. Not a regular expression. It represents a pattern + against which blob names will be matched to determine whether or not they should be included as + input or output to the job. See https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and + example. + :type path_pattern: str + :param date_format: The date format. Wherever {date} appears in pathPattern, the value of this + property is used as the date format instead. + :type date_format: str + :param time_format: The time format. Wherever {time} appears in pathPattern, the value of this + property is used as the time format instead. + :type time_format: str + """ + + _attribute_map = { + 'storage_accounts': {'key': 'storageAccounts', 'type': '[StorageAccount]'}, + 'container': {'key': 'container', 'type': 'str'}, + 'path_pattern': {'key': 'pathPattern', 'type': 'str'}, + 'date_format': {'key': 'dateFormat', 'type': 'str'}, + 'time_format': {'key': 'timeFormat', 'type': 'str'}, + } + + def __init__( + self, + *, + storage_accounts: Optional[List["StorageAccount"]] = None, + container: Optional[str] = None, + path_pattern: Optional[str] = None, + date_format: Optional[str] = None, + time_format: Optional[str] = None, + **kwargs + ): + super(BlobReferenceInputDataSourceProperties, self).__init__(storage_accounts=storage_accounts, container=container, path_pattern=path_pattern, date_format=date_format, time_format=time_format, **kwargs) + + +class StreamInputDataSource(msrest.serialization.Model): """Describes an input data source that contains stream data. You probably want to use the sub-classes and not this class directly. Known - sub-classes are: IoTHubStreamInputDataSource, - EventHubStreamInputDataSource, BlobStreamInputDataSource + sub-classes are: IoTHubStreamInputDataSource, EventHubV2StreamInputDataSource, EventHubStreamInputDataSource, BlobStreamInputDataSource. All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of input data source containing stream data. Required + on PUT (CreateOrReplace) requests.Constant filled by server. :type type: str """ @@ -748,12 +1390,15 @@ class StreamInputDataSource(Model): } _subtype_map = { - 'type': {'Microsoft.Devices/IotHubs': 'IoTHubStreamInputDataSource', 'Microsoft.ServiceBus/EventHub': 'EventHubStreamInputDataSource', 'Microsoft.Storage/Blob': 'BlobStreamInputDataSource'} + 'type': {'Microsoft.Devices/IotHubs': 'IoTHubStreamInputDataSource', 'Microsoft.EventHub/EventHub': 'EventHubV2StreamInputDataSource', 'Microsoft.ServiceBus/EventHub': 'EventHubStreamInputDataSource', 'Microsoft.Storage/Blob': 'BlobStreamInputDataSource'} } - def __init__(self, **kwargs) -> None: + def __init__( + self, + **kwargs + ): super(StreamInputDataSource, self).__init__(**kwargs) - self.type = None + self.type = None # type: Optional[str] class BlobStreamInputDataSource(StreamInputDataSource): @@ -761,34 +1406,31 @@ class BlobStreamInputDataSource(StreamInputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of input data source containing stream data. Required + on PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param storage_accounts: A list of one or more Azure Storage accounts. - Required on PUT (CreateOrReplace) requests. - :type storage_accounts: - list[~azure.mgmt.streamanalytics.models.StorageAccount] - :param container: The name of a container within the associated Storage - account. This container contains either the blob(s) to be read from or - written to. Required on PUT (CreateOrReplace) requests. + :param storage_accounts: A list of one or more Azure Storage accounts. Required on PUT + (CreateOrReplace) requests. + :type storage_accounts: list[~stream_analytics_management_client.models.StorageAccount] + :param container: The name of a container within the associated Storage account. This container + contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) + requests. :type container: str - :param path_pattern: The blob path pattern. Not a regular expression. It - represents a pattern against which blob names will be matched to determine - whether or not they should be included as input or output to the job. See - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input - or - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output - for a more detailed explanation and example. + :param path_pattern: The blob path pattern. Not a regular expression. It represents a pattern + against which blob names will be matched to determine whether or not they should be included as + input or output to the job. See https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and + example. :type path_pattern: str - :param date_format: The date format. Wherever {date} appears in - pathPattern, the value of this property is used as the date format - instead. + :param date_format: The date format. Wherever {date} appears in pathPattern, the value of this + property is used as the date format instead. :type date_format: str - :param time_format: The time format. Wherever {time} appears in - pathPattern, the value of this property is used as the time format - instead. + :param time_format: The time format. Wherever {time} appears in pathPattern, the value of this + property is used as the time format instead. :type time_format: str - :param source_partition_count: The partition count of the blob input data - source. Range 1 - 256. + :param source_partition_count: The partition count of the blob input data source. Range 1 - + 256. :type source_partition_count: int """ @@ -806,45 +1448,146 @@ class BlobStreamInputDataSource(StreamInputDataSource): 'source_partition_count': {'key': 'properties.sourcePartitionCount', 'type': 'int'}, } - def __init__(self, *, storage_accounts=None, container: str=None, path_pattern: str=None, date_format: str=None, time_format: str=None, source_partition_count: int=None, **kwargs) -> None: + def __init__( + self, + *, + storage_accounts: Optional[List["StorageAccount"]] = None, + container: Optional[str] = None, + path_pattern: Optional[str] = None, + date_format: Optional[str] = None, + time_format: Optional[str] = None, + source_partition_count: Optional[int] = None, + **kwargs + ): super(BlobStreamInputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.Storage/Blob' # type: str self.storage_accounts = storage_accounts self.container = container self.path_pattern = path_pattern self.date_format = date_format self.time_format = time_format self.source_partition_count = source_partition_count - self.type = 'Microsoft.Storage/Blob' -class CloudError(Model): - """CloudError. +class BlobStreamInputDataSourceProperties(BlobDataSourceProperties): + """The properties that are associated with a blob input containing stream data. + + :param storage_accounts: A list of one or more Azure Storage accounts. Required on PUT + (CreateOrReplace) requests. + :type storage_accounts: list[~stream_analytics_management_client.models.StorageAccount] + :param container: The name of a container within the associated Storage account. This container + contains either the blob(s) to be read from or written to. Required on PUT (CreateOrReplace) + requests. + :type container: str + :param path_pattern: The blob path pattern. Not a regular expression. It represents a pattern + against which blob names will be matched to determine whether or not they should be included as + input or output to the job. See https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-input or https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-output for a more detailed explanation and + example. + :type path_pattern: str + :param date_format: The date format. Wherever {date} appears in pathPattern, the value of this + property is used as the date format instead. + :type date_format: str + :param time_format: The time format. Wherever {time} appears in pathPattern, the value of this + property is used as the time format instead. + :type time_format: str + :param source_partition_count: The partition count of the blob input data source. Range 1 - + 256. + :type source_partition_count: int """ _attribute_map = { + 'storage_accounts': {'key': 'storageAccounts', 'type': '[StorageAccount]'}, + 'container': {'key': 'container', 'type': 'str'}, + 'path_pattern': {'key': 'pathPattern', 'type': 'str'}, + 'date_format': {'key': 'dateFormat', 'type': 'str'}, + 'time_format': {'key': 'timeFormat', 'type': 'str'}, + 'source_partition_count': {'key': 'sourcePartitionCount', 'type': 'int'}, } + def __init__( + self, + *, + storage_accounts: Optional[List["StorageAccount"]] = None, + container: Optional[str] = None, + path_pattern: Optional[str] = None, + date_format: Optional[str] = None, + time_format: Optional[str] = None, + source_partition_count: Optional[int] = None, + **kwargs + ): + super(BlobStreamInputDataSourceProperties, self).__init__(storage_accounts=storage_accounts, container=container, path_pattern=path_pattern, date_format=date_format, time_format=time_format, **kwargs) + self.source_partition_count = source_partition_count -class CsvSerialization(Serialization): - """Describes how data from an input is serialized or how data is serialized - when written to an output in CSV format. + +class ClusterInfo(msrest.serialization.Model): + """The properties associated with a Stream Analytics cluster. + + :param id: The resource id of cluster. + :type id: str + """ + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + **kwargs + ): + super(ClusterInfo, self).__init__(**kwargs) + self.id = id + + +class Compression(msrest.serialization.Model): + """Describes how input data is compressed. All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. - :type type: str - :param field_delimiter: Specifies the delimiter that will be used to - separate comma-separated value (CSV) records. See - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-input - or - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output - for a list of supported values. Required on PUT (CreateOrReplace) - requests. + :param type: Required. Indicates the type of compression that the input uses. Required on PUT + (CreateOrReplace) requests. Possible values include: "None", "GZip", "Deflate". + :type type: str or ~stream_analytics_management_client.models.CompressionType + """ + + _validation = { + 'type': {'required': True}, + } + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__( + self, + *, + type: Union[str, "CompressionType"], + **kwargs + ): + super(Compression, self).__init__(**kwargs) + self.type = type + + +class CsvSerialization(Serialization): + """Describes how data from an input is serialized or how data is serialized when written to an output in CSV format. + + All required parameters must be populated in order to send to Azure. + + :param type: Required. Indicates the type of serialization that the input or output uses. + Required on PUT (CreateOrReplace) requests.Constant filled by server. Possible values include: + "Csv", "Avro", "Json", "Parquet". + :type type: str or ~stream_analytics_management_client.models.EventSerializationType + :param field_delimiter: Specifies the delimiter that will be used to separate comma-separated + value (CSV) records. See https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream- + analytics-input or https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics- + output for a list of supported values. Required on PUT (CreateOrReplace) requests. :type field_delimiter: str - :param encoding: Specifies the encoding of the incoming data in the case - of input and the encoding of outgoing data in the case of output. Required - on PUT (CreateOrReplace) requests. Possible values include: 'UTF8' - :type encoding: str or ~azure.mgmt.streamanalytics.models.Encoding + :param encoding: Specifies the encoding of the incoming data in the case of input and the + encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests. + Possible values include: "UTF8". + :type encoding: str or ~stream_analytics_management_client.models.Encoding """ _validation = { @@ -857,28 +1600,31 @@ class CsvSerialization(Serialization): 'encoding': {'key': 'properties.encoding', 'type': 'str'}, } - def __init__(self, *, field_delimiter: str=None, encoding=None, **kwargs) -> None: + def __init__( + self, + *, + field_delimiter: Optional[str] = None, + encoding: Optional[Union[str, "Encoding"]] = None, + **kwargs + ): super(CsvSerialization, self).__init__(**kwargs) + self.type = 'Csv' # type: str self.field_delimiter = field_delimiter self.encoding = encoding - self.type = 'Csv' -class DiagnosticCondition(Model): - """Condition applicable to the resource, or to the job overall, that warrant - customer attention. +class DiagnosticCondition(msrest.serialization.Model): + """Condition applicable to the resource, or to the job overall, that warrant customer attention. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar since: The UTC timestamp of when the condition started. Customers - should be able to find a corresponding event in the ops log around this - time. + :ivar since: The UTC timestamp of when the condition started. Customers should be able to find + a corresponding event in the ops log around this time. :vartype since: str :ivar code: The opaque diagnostic code. :vartype code: str - :ivar message: The human-readable message describing the condition in - detail. Localized in the Accept-Language of the client request. + :ivar message: The human-readable message describing the condition in detail. Localized in the + Accept-Language of the client request. :vartype message: str """ @@ -894,24 +1640,24 @@ class DiagnosticCondition(Model): 'message': {'key': 'message', 'type': 'str'}, } - def __init__(self, **kwargs) -> None: + def __init__( + self, + **kwargs + ): super(DiagnosticCondition, self).__init__(**kwargs) self.since = None self.code = None self.message = None -class Diagnostics(Model): - """Describes conditions applicable to the Input, Output, or the job overall, - that warrant customer attention. +class Diagnostics(msrest.serialization.Model): + """Describes conditions applicable to the Input, Output, or the job overall, that warrant customer attention. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar conditions: A collection of zero or more conditions applicable to - the resource, or to the job overall, that warrant customer attention. - :vartype conditions: - list[~azure.mgmt.streamanalytics.models.DiagnosticCondition] + :ivar conditions: A collection of zero or more conditions applicable to the resource, or to the + job overall, that warrant customer attention. + :vartype conditions: list[~stream_analytics_management_client.models.DiagnosticCondition] """ _validation = { @@ -922,7 +1668,10 @@ class Diagnostics(Model): 'conditions': {'key': 'conditions', 'type': '[DiagnosticCondition]'}, } - def __init__(self, **kwargs) -> None: + def __init__( + self, + **kwargs + ): super(Diagnostics, self).__init__(**kwargs) self.conditions = None @@ -932,31 +1681,30 @@ class DocumentDbOutputDataSource(OutputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param account_id: The DocumentDB account name or ID. Required on PUT - (CreateOrReplace) requests. + :param account_id: The DocumentDB account name or ID. Required on PUT (CreateOrReplace) + requests. :type account_id: str - :param account_key: The account key for the DocumentDB account. Required - on PUT (CreateOrReplace) requests. - :type account_key: str - :param database: The name of the DocumentDB database. Required on PUT + :param account_key: The account key for the DocumentDB account. Required on PUT (CreateOrReplace) requests. + :type account_key: str + :param database: The name of the DocumentDB database. Required on PUT (CreateOrReplace) + requests. :type database: str - :param collection_name_pattern: The collection name pattern for the - collections to be used. The collection name format can be constructed - using the optional {partition} token, where partitions start from 0. See - the DocumentDB section of - https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-output - for more information. Required on PUT (CreateOrReplace) requests. + :param collection_name_pattern: The collection name pattern for the collections to be used. The + collection name format can be constructed using the optional {partition} token, where + partitions start from 0. See the DocumentDB section of https://docs.microsoft.com/en- + us/rest/api/streamanalytics/stream-analytics-output for more information. Required on PUT + (CreateOrReplace) requests. :type collection_name_pattern: str - :param partition_key: The name of the field in output events used to - specify the key for partitioning output across collections. If - 'collectionNamePattern' contains the {partition} token, this property is - required to be specified. + :param partition_key: The name of the field in output events used to specify the key for + partitioning output across collections. If 'collectionNamePattern' contains the {partition} + token, this property is required to be specified. :type partition_key: str - :param document_id: The name of the field in output events used to specify - the primary key which insert or update operations are based on. + :param document_id: The name of the field in output events used to specify the primary key + which insert or update operations are based on. :type document_id: str """ @@ -974,22 +1722,119 @@ class DocumentDbOutputDataSource(OutputDataSource): 'document_id': {'key': 'properties.documentId', 'type': 'str'}, } - def __init__(self, *, account_id: str=None, account_key: str=None, database: str=None, collection_name_pattern: str=None, partition_key: str=None, document_id: str=None, **kwargs) -> None: + def __init__( + self, + *, + account_id: Optional[str] = None, + account_key: Optional[str] = None, + database: Optional[str] = None, + collection_name_pattern: Optional[str] = None, + partition_key: Optional[str] = None, + document_id: Optional[str] = None, + **kwargs + ): super(DocumentDbOutputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.Storage/DocumentDB' # type: str self.account_id = account_id self.account_key = account_key self.database = database self.collection_name_pattern = collection_name_pattern self.partition_key = partition_key self.document_id = document_id - self.type = 'Microsoft.Storage/DocumentDB' -class ErrorResponse(Model): +class Error(msrest.serialization.Model): + """Common error representation. + + :param error: Error definition properties. + :type error: ~stream_analytics_management_client.models.Errorautogenerated + """ + + _attribute_map = { + 'error': {'key': 'error', 'type': 'Errorautogenerated'}, + } + + def __init__( + self, + *, + error: Optional["Errorautogenerated"] = None, + **kwargs + ): + super(Error, self).__init__(**kwargs) + self.error = error + + +class Errorautogenerated(msrest.serialization.Model): + """Error definition properties. + + :param code: Error code. + :type code: str + :param message: Error message. + :type message: str + :param target: Error target. + :type target: str + :param details: Error details. + :type details: list[~stream_analytics_management_client.models.ErrorDetails] + """ + + _attribute_map = { + 'code': {'key': 'code', 'type': 'str'}, + 'message': {'key': 'message', 'type': 'str'}, + 'target': {'key': 'target', 'type': 'str'}, + 'details': {'key': 'details', 'type': '[ErrorDetails]'}, + } + + def __init__( + self, + *, + code: Optional[str] = None, + message: Optional[str] = None, + target: Optional[str] = None, + details: Optional[List["ErrorDetails"]] = None, + **kwargs + ): + super(Errorautogenerated, self).__init__(**kwargs) + self.code = code + self.message = message + self.target = target + self.details = details + + +class ErrorDetails(msrest.serialization.Model): + """Common error details representation. + + :param code: Error code. + :type code: str + :param target: Error target. + :type target: str + :param message: Error message. + :type message: str + """ + + _attribute_map = { + 'code': {'key': 'code', 'type': 'str'}, + 'target': {'key': 'target', 'type': 'str'}, + 'message': {'key': 'message', 'type': 'str'}, + } + + def __init__( + self, + *, + code: Optional[str] = None, + target: Optional[str] = None, + message: Optional[str] = None, + **kwargs + ): + super(ErrorDetails, self).__init__(**kwargs) + self.code = code + self.target = target + self.message = message + + +class ErrorResponse(msrest.serialization.Model): """Describes the error that occurred. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. :ivar code: Error code associated with the error that occurred. :vartype code: str @@ -1007,60 +1852,71 @@ class ErrorResponse(Model): 'message': {'key': 'message', 'type': 'str'}, } - def __init__(self, **kwargs) -> None: + def __init__( + self, + **kwargs + ): super(ErrorResponse, self).__init__(**kwargs) self.code = None self.message = None -class ServiceBusDataSourceProperties(Model): - """The common properties that are associated with Service Bus data sources - (Queues, Topics, Event Hubs, etc.). +class ServiceBusDataSourceProperties(msrest.serialization.Model): + """The common properties that are associated with Service Bus data sources (Queues, Topics, Event Hubs, etc.). - :param service_bus_namespace: The namespace that is associated with the - desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on - PUT (CreateOrReplace) requests. + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type service_bus_namespace: str - :param shared_access_policy_name: The shared access policy name for the - Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT - (CreateOrReplace) requests. + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_name: str - :param shared_access_policy_key: The shared access policy key for the - specified shared access policy. Required on PUT (CreateOrReplace) - requests. + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_key: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode """ _attribute_map = { 'service_bus_namespace': {'key': 'serviceBusNamespace', 'type': 'str'}, 'shared_access_policy_name': {'key': 'sharedAccessPolicyName', 'type': 'str'}, 'shared_access_policy_key': {'key': 'sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, } - def __init__(self, *, service_bus_namespace: str=None, shared_access_policy_name: str=None, shared_access_policy_key: str=None, **kwargs) -> None: + def __init__( + self, + *, + service_bus_namespace: Optional[str] = None, + shared_access_policy_name: Optional[str] = None, + shared_access_policy_key: Optional[str] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + **kwargs + ): super(ServiceBusDataSourceProperties, self).__init__(**kwargs) self.service_bus_namespace = service_bus_namespace self.shared_access_policy_name = shared_access_policy_name self.shared_access_policy_key = shared_access_policy_key + self.authentication_mode = authentication_mode class EventHubDataSourceProperties(ServiceBusDataSourceProperties): """The common properties that are associated with Event Hub data sources. - :param service_bus_namespace: The namespace that is associated with the - desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on - PUT (CreateOrReplace) requests. + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type service_bus_namespace: str - :param shared_access_policy_name: The shared access policy name for the - Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT - (CreateOrReplace) requests. + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_name: str - :param shared_access_policy_key: The shared access policy key for the - specified shared access policy. Required on PUT (CreateOrReplace) - requests. + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_key: str - :param event_hub_name: The name of the Event Hub. Required on PUT - (CreateOrReplace) requests. + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param event_hub_name: The name of the Event Hub. Required on PUT (CreateOrReplace) requests. :type event_hub_name: str """ @@ -1068,11 +1924,21 @@ class EventHubDataSourceProperties(ServiceBusDataSourceProperties): 'service_bus_namespace': {'key': 'serviceBusNamespace', 'type': 'str'}, 'shared_access_policy_name': {'key': 'sharedAccessPolicyName', 'type': 'str'}, 'shared_access_policy_key': {'key': 'sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, 'event_hub_name': {'key': 'eventHubName', 'type': 'str'}, } - def __init__(self, *, service_bus_namespace: str=None, shared_access_policy_name: str=None, shared_access_policy_key: str=None, event_hub_name: str=None, **kwargs) -> None: - super(EventHubDataSourceProperties, self).__init__(service_bus_namespace=service_bus_namespace, shared_access_policy_name=shared_access_policy_name, shared_access_policy_key=shared_access_policy_key, **kwargs) + def __init__( + self, + *, + service_bus_namespace: Optional[str] = None, + shared_access_policy_name: Optional[str] = None, + shared_access_policy_key: Optional[str] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + event_hub_name: Optional[str] = None, + **kwargs + ): + super(EventHubDataSourceProperties, self).__init__(service_bus_namespace=service_bus_namespace, shared_access_policy_name=shared_access_policy_name, shared_access_policy_key=shared_access_policy_key, authentication_mode=authentication_mode, **kwargs) self.event_hub_name = event_hub_name @@ -1081,26 +1947,28 @@ class EventHubOutputDataSource(OutputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param service_bus_namespace: The namespace that is associated with the - desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on - PUT (CreateOrReplace) requests. + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type service_bus_namespace: str - :param shared_access_policy_name: The shared access policy name for the - Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT - (CreateOrReplace) requests. + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_name: str - :param shared_access_policy_key: The shared access policy key for the - specified shared access policy. Required on PUT (CreateOrReplace) - requests. + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_key: str - :param event_hub_name: The name of the Event Hub. Required on PUT - (CreateOrReplace) requests. + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param event_hub_name: The name of the Event Hub. Required on PUT (CreateOrReplace) requests. :type event_hub_name: str - :param partition_key: The key/column that is used to determine to which - partition to send event data. + :param partition_key: The key/column that is used to determine to which partition to send event + data. :type partition_key: str + :param property_columns: The properties associated with this Event Hub output. + :type property_columns: list[str] """ _validation = { @@ -1112,18 +1980,84 @@ class EventHubOutputDataSource(OutputDataSource): 'service_bus_namespace': {'key': 'properties.serviceBusNamespace', 'type': 'str'}, 'shared_access_policy_name': {'key': 'properties.sharedAccessPolicyName', 'type': 'str'}, 'shared_access_policy_key': {'key': 'properties.sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'properties.authenticationMode', 'type': 'str'}, 'event_hub_name': {'key': 'properties.eventHubName', 'type': 'str'}, 'partition_key': {'key': 'properties.partitionKey', 'type': 'str'}, + 'property_columns': {'key': 'properties.propertyColumns', 'type': '[str]'}, } - def __init__(self, *, service_bus_namespace: str=None, shared_access_policy_name: str=None, shared_access_policy_key: str=None, event_hub_name: str=None, partition_key: str=None, **kwargs) -> None: + def __init__( + self, + *, + service_bus_namespace: Optional[str] = None, + shared_access_policy_name: Optional[str] = None, + shared_access_policy_key: Optional[str] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + event_hub_name: Optional[str] = None, + partition_key: Optional[str] = None, + property_columns: Optional[List[str]] = None, + **kwargs + ): super(EventHubOutputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.ServiceBus/EventHub' # type: str self.service_bus_namespace = service_bus_namespace self.shared_access_policy_name = shared_access_policy_name self.shared_access_policy_key = shared_access_policy_key + self.authentication_mode = authentication_mode self.event_hub_name = event_hub_name self.partition_key = partition_key - self.type = 'Microsoft.ServiceBus/EventHub' + self.property_columns = property_columns + + +class EventHubOutputDataSourceProperties(EventHubDataSourceProperties): + """The properties that are associated with an Event Hub output. + + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type service_bus_namespace: str + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_name: str + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_key: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param event_hub_name: The name of the Event Hub. Required on PUT (CreateOrReplace) requests. + :type event_hub_name: str + :param partition_key: The key/column that is used to determine to which partition to send event + data. + :type partition_key: str + :param property_columns: The properties associated with this Event Hub output. + :type property_columns: list[str] + """ + + _attribute_map = { + 'service_bus_namespace': {'key': 'serviceBusNamespace', 'type': 'str'}, + 'shared_access_policy_name': {'key': 'sharedAccessPolicyName', 'type': 'str'}, + 'shared_access_policy_key': {'key': 'sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, + 'event_hub_name': {'key': 'eventHubName', 'type': 'str'}, + 'partition_key': {'key': 'partitionKey', 'type': 'str'}, + 'property_columns': {'key': 'propertyColumns', 'type': '[str]'}, + } + + def __init__( + self, + *, + service_bus_namespace: Optional[str] = None, + shared_access_policy_name: Optional[str] = None, + shared_access_policy_key: Optional[str] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + event_hub_name: Optional[str] = None, + partition_key: Optional[str] = None, + property_columns: Optional[List[str]] = None, + **kwargs + ): + super(EventHubOutputDataSourceProperties, self).__init__(service_bus_namespace=service_bus_namespace, shared_access_policy_name=shared_access_policy_name, shared_access_policy_key=shared_access_policy_key, authentication_mode=authentication_mode, event_hub_name=event_hub_name, **kwargs) + self.partition_key = partition_key + self.property_columns = property_columns class EventHubStreamInputDataSource(StreamInputDataSource): @@ -1131,27 +2065,26 @@ class EventHubStreamInputDataSource(StreamInputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of input data source containing stream data. Required + on PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param service_bus_namespace: The namespace that is associated with the - desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on - PUT (CreateOrReplace) requests. + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type service_bus_namespace: str - :param shared_access_policy_name: The shared access policy name for the - Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT - (CreateOrReplace) requests. + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_name: str - :param shared_access_policy_key: The shared access policy key for the - specified shared access policy. Required on PUT (CreateOrReplace) - requests. + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_key: str - :param event_hub_name: The name of the Event Hub. Required on PUT - (CreateOrReplace) requests. + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param event_hub_name: The name of the Event Hub. Required on PUT (CreateOrReplace) requests. :type event_hub_name: str - :param consumer_group_name: The name of an Event Hub Consumer Group that - should be used to read events from the Event Hub. Specifying distinct - consumer group names for multiple inputs allows each of those inputs to - receive the same events from the Event Hub. If not specified, the input + :param consumer_group_name: The name of an Event Hub Consumer Group that should be used to read + events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows + each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group. :type consumer_group_name: str """ @@ -1165,31 +2098,221 @@ class EventHubStreamInputDataSource(StreamInputDataSource): 'service_bus_namespace': {'key': 'properties.serviceBusNamespace', 'type': 'str'}, 'shared_access_policy_name': {'key': 'properties.sharedAccessPolicyName', 'type': 'str'}, 'shared_access_policy_key': {'key': 'properties.sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'properties.authenticationMode', 'type': 'str'}, 'event_hub_name': {'key': 'properties.eventHubName', 'type': 'str'}, 'consumer_group_name': {'key': 'properties.consumerGroupName', 'type': 'str'}, } - def __init__(self, *, service_bus_namespace: str=None, shared_access_policy_name: str=None, shared_access_policy_key: str=None, event_hub_name: str=None, consumer_group_name: str=None, **kwargs) -> None: + def __init__( + self, + *, + service_bus_namespace: Optional[str] = None, + shared_access_policy_name: Optional[str] = None, + shared_access_policy_key: Optional[str] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + event_hub_name: Optional[str] = None, + consumer_group_name: Optional[str] = None, + **kwargs + ): super(EventHubStreamInputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.ServiceBus/EventHub' # type: str + self.service_bus_namespace = service_bus_namespace + self.shared_access_policy_name = shared_access_policy_name + self.shared_access_policy_key = shared_access_policy_key + self.authentication_mode = authentication_mode + self.event_hub_name = event_hub_name + self.consumer_group_name = consumer_group_name + + +class EventHubStreamInputDataSourceProperties(EventHubDataSourceProperties): + """The properties that are associated with a Event Hub input containing stream data. + + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type service_bus_namespace: str + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_name: str + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_key: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param event_hub_name: The name of the Event Hub. Required on PUT (CreateOrReplace) requests. + :type event_hub_name: str + :param consumer_group_name: The name of an Event Hub Consumer Group that should be used to read + events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows + each of those inputs to receive the same events from the Event Hub. If not specified, the input + uses the Event Hub’s default consumer group. + :type consumer_group_name: str + """ + + _attribute_map = { + 'service_bus_namespace': {'key': 'serviceBusNamespace', 'type': 'str'}, + 'shared_access_policy_name': {'key': 'sharedAccessPolicyName', 'type': 'str'}, + 'shared_access_policy_key': {'key': 'sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, + 'event_hub_name': {'key': 'eventHubName', 'type': 'str'}, + 'consumer_group_name': {'key': 'consumerGroupName', 'type': 'str'}, + } + + def __init__( + self, + *, + service_bus_namespace: Optional[str] = None, + shared_access_policy_name: Optional[str] = None, + shared_access_policy_key: Optional[str] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + event_hub_name: Optional[str] = None, + consumer_group_name: Optional[str] = None, + **kwargs + ): + super(EventHubStreamInputDataSourceProperties, self).__init__(service_bus_namespace=service_bus_namespace, shared_access_policy_name=shared_access_policy_name, shared_access_policy_key=shared_access_policy_key, authentication_mode=authentication_mode, event_hub_name=event_hub_name, **kwargs) + self.consumer_group_name = consumer_group_name + + +class EventHubV2OutputDataSource(OutputDataSource): + """Describes an Event Hub output data source. + + All required parameters must be populated in order to send to Azure. + + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. + :type type: str + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type service_bus_namespace: str + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_name: str + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_key: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param event_hub_name: The name of the Event Hub. Required on PUT (CreateOrReplace) requests. + :type event_hub_name: str + :param partition_key: The key/column that is used to determine to which partition to send event + data. + :type partition_key: str + :param property_columns: The properties associated with this Event Hub output. + :type property_columns: list[str] + """ + + _validation = { + 'type': {'required': True}, + } + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + 'service_bus_namespace': {'key': 'properties.serviceBusNamespace', 'type': 'str'}, + 'shared_access_policy_name': {'key': 'properties.sharedAccessPolicyName', 'type': 'str'}, + 'shared_access_policy_key': {'key': 'properties.sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'properties.authenticationMode', 'type': 'str'}, + 'event_hub_name': {'key': 'properties.eventHubName', 'type': 'str'}, + 'partition_key': {'key': 'properties.partitionKey', 'type': 'str'}, + 'property_columns': {'key': 'properties.propertyColumns', 'type': '[str]'}, + } + + def __init__( + self, + *, + service_bus_namespace: Optional[str] = None, + shared_access_policy_name: Optional[str] = None, + shared_access_policy_key: Optional[str] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + event_hub_name: Optional[str] = None, + partition_key: Optional[str] = None, + property_columns: Optional[List[str]] = None, + **kwargs + ): + super(EventHubV2OutputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.EventHub/EventHub' # type: str + self.service_bus_namespace = service_bus_namespace + self.shared_access_policy_name = shared_access_policy_name + self.shared_access_policy_key = shared_access_policy_key + self.authentication_mode = authentication_mode + self.event_hub_name = event_hub_name + self.partition_key = partition_key + self.property_columns = property_columns + + +class EventHubV2StreamInputDataSource(StreamInputDataSource): + """Describes an Event Hub input data source that contains stream data. + + All required parameters must be populated in order to send to Azure. + + :param type: Required. Indicates the type of input data source containing stream data. Required + on PUT (CreateOrReplace) requests.Constant filled by server. + :type type: str + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type service_bus_namespace: str + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_name: str + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_key: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param event_hub_name: The name of the Event Hub. Required on PUT (CreateOrReplace) requests. + :type event_hub_name: str + :param consumer_group_name: The name of an Event Hub Consumer Group that should be used to read + events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows + each of those inputs to receive the same events from the Event Hub. If not specified, the input + uses the Event Hub’s default consumer group. + :type consumer_group_name: str + """ + + _validation = { + 'type': {'required': True}, + } + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + 'service_bus_namespace': {'key': 'properties.serviceBusNamespace', 'type': 'str'}, + 'shared_access_policy_name': {'key': 'properties.sharedAccessPolicyName', 'type': 'str'}, + 'shared_access_policy_key': {'key': 'properties.sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'properties.authenticationMode', 'type': 'str'}, + 'event_hub_name': {'key': 'properties.eventHubName', 'type': 'str'}, + 'consumer_group_name': {'key': 'properties.consumerGroupName', 'type': 'str'}, + } + + def __init__( + self, + *, + service_bus_namespace: Optional[str] = None, + shared_access_policy_name: Optional[str] = None, + shared_access_policy_key: Optional[str] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + event_hub_name: Optional[str] = None, + consumer_group_name: Optional[str] = None, + **kwargs + ): + super(EventHubV2StreamInputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.EventHub/EventHub' # type: str self.service_bus_namespace = service_bus_namespace self.shared_access_policy_name = shared_access_policy_name self.shared_access_policy_key = shared_access_policy_key + self.authentication_mode = authentication_mode self.event_hub_name = event_hub_name self.consumer_group_name = consumer_group_name - self.type = 'Microsoft.ServiceBus/EventHub' -class SubResource(Model): +class SubResource(msrest.serialization.Model): """The base sub-resource model definition. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Resource Id + :ivar id: Resource Id. :vartype id: str - :param name: Resource name + :param name: Resource name. :type name: str - :ivar type: Resource type + :ivar type: Resource type. :vartype type: str """ @@ -1204,7 +2327,12 @@ class SubResource(Model): 'type': {'key': 'type', 'type': 'str'}, } - def __init__(self, *, name: str=None, **kwargs) -> None: + def __init__( + self, + *, + name: Optional[str] = None, + **kwargs + ): super(SubResource, self).__init__(**kwargs) self.id = None self.name = name @@ -1212,20 +2340,18 @@ def __init__(self, *, name: str=None, **kwargs) -> None: class Function(SubResource): - """A function object, containing all information associated with the named - function. All functions are contained under a streaming job. + """A function object, containing all information associated with the named function. All functions are contained under a streaming job. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Resource Id + :ivar id: Resource Id. :vartype id: str - :param name: Resource name + :param name: Resource name. :type name: str - :ivar type: Resource type + :ivar type: Resource type. :vartype type: str :param properties: The properties that are associated with a function. - :type properties: ~azure.mgmt.streamanalytics.models.FunctionProperties + :type properties: ~stream_analytics_management_client.models.FunctionProperties """ _validation = { @@ -1240,22 +2366,26 @@ class Function(SubResource): 'properties': {'key': 'properties', 'type': 'FunctionProperties'}, } - def __init__(self, *, name: str=None, properties=None, **kwargs) -> None: + def __init__( + self, + *, + name: Optional[str] = None, + properties: Optional["FunctionProperties"] = None, + **kwargs + ): super(Function, self).__init__(name=name, **kwargs) self.properties = properties -class FunctionInput(Model): +class FunctionInput(msrest.serialization.Model): """Describes one input parameter of a function. - :param data_type: The (Azure Stream Analytics supported) data type of the - function input parameter. A list of valid Azure Stream Analytics data - types are described at - https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx + :param data_type: The (Azure Stream Analytics supported) data type of the function input + parameter. A list of valid Azure Stream Analytics data types are described at + https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx. :type data_type: str - :param is_configuration_parameter: A flag indicating if the parameter is a - configuration parameter. True if this input parameter is expected to be a - constant. Default is false. + :param is_configuration_parameter: A flag indicating if the parameter is a configuration + parameter. True if this input parameter is expected to be a constant. Default is false. :type is_configuration_parameter: bool """ @@ -1264,18 +2394,54 @@ class FunctionInput(Model): 'is_configuration_parameter': {'key': 'isConfigurationParameter', 'type': 'bool'}, } - def __init__(self, *, data_type: str=None, is_configuration_parameter: bool=None, **kwargs) -> None: + def __init__( + self, + *, + data_type: Optional[str] = None, + is_configuration_parameter: Optional[bool] = None, + **kwargs + ): super(FunctionInput, self).__init__(**kwargs) self.data_type = data_type self.is_configuration_parameter = is_configuration_parameter -class FunctionOutput(Model): +class FunctionListResult(msrest.serialization.Model): + """Object containing a list of functions under a streaming job. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of functions under a streaming job. Populated by a 'List' operation. + :vartype value: list[~stream_analytics_management_client.models.Function] + :ivar next_link: The link (url) to the next page of results. + :vartype next_link: str + """ + + _validation = { + 'value': {'readonly': True}, + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[Function]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(FunctionListResult, self).__init__(**kwargs) + self.value = None + self.next_link = None + + +class FunctionOutput(msrest.serialization.Model): """Describes the output of a function. - :param data_type: The (Azure Stream Analytics supported) data type of the - function output. A list of valid Azure Stream Analytics data types are - described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx + :param data_type: The (Azure Stream Analytics supported) data type of the function output. A + list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en- + us/library/azure/dn835065.aspx. :type data_type: str """ @@ -1283,67 +2449,102 @@ class FunctionOutput(Model): 'data_type': {'key': 'dataType', 'type': 'str'}, } - def __init__(self, *, data_type: str=None, **kwargs) -> None: + def __init__( + self, + *, + data_type: Optional[str] = None, + **kwargs + ): super(FunctionOutput, self).__init__(**kwargs) self.data_type = data_type -class FunctionProperties(Model): +class FunctionProperties(msrest.serialization.Model): """The properties that are associated with a function. You probably want to use the sub-classes and not this class directly. Known - sub-classes are: ScalarFunctionProperties + sub-classes are: ScalarFunctionProperties. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. All required parameters must be populated in order to send to Azure. - :ivar etag: The current entity tag for the function. This is an opaque - string. You can use it to detect whether the resource has changed between - requests. You can also use it in the If-Match or If-None-Match headers for - write operations for optimistic concurrency. - :vartype etag: str - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of function.Constant filled by server. :type type: str + :ivar etag: The current entity tag for the function. This is an opaque string. You can use it + to detect whether the resource has changed between requests. You can also use it in the If- + Match or If-None-Match headers for write operations for optimistic concurrency. + :vartype etag: str """ _validation = { - 'etag': {'readonly': True}, 'type': {'required': True}, + 'etag': {'readonly': True}, } _attribute_map = { - 'etag': {'key': 'etag', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, } _subtype_map = { 'type': {'Scalar': 'ScalarFunctionProperties'} } - def __init__(self, **kwargs) -> None: + def __init__( + self, + **kwargs + ): super(FunctionProperties, self).__init__(**kwargs) + self.type = None # type: Optional[str] self.etag = None - self.type = None + + +class Identity(msrest.serialization.Model): + """Describes how identity is verified. + + :param tenant_id: The identity tenantId. + :type tenant_id: str + :param principal_id: The identity principal ID. + :type principal_id: str + :param type: The identity type. + :type type: str + """ + + _attribute_map = { + 'tenant_id': {'key': 'tenantId', 'type': 'str'}, + 'principal_id': {'key': 'principalId', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + } + + def __init__( + self, + *, + tenant_id: Optional[str] = None, + principal_id: Optional[str] = None, + type: Optional[str] = None, + **kwargs + ): + super(Identity, self).__init__(**kwargs) + self.tenant_id = tenant_id + self.principal_id = principal_id + self.type = type class Input(SubResource): - """An input object, containing all information associated with the named - input. All inputs are contained under a streaming job. + """An input object, containing all information associated with the named input. All inputs are contained under a streaming job. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Resource Id + :ivar id: Resource Id. :vartype id: str - :param name: Resource name + :param name: Resource name. :type name: str - :ivar type: Resource type + :ivar type: Resource type. :vartype type: str - :param properties: The properties that are associated with an input. - Required on PUT (CreateOrReplace) requests. - :type properties: ~azure.mgmt.streamanalytics.models.InputProperties + :param properties: The properties that are associated with an input. Required on PUT + (CreateOrReplace) requests. + :type properties: ~stream_analytics_management_client.models.InputProperties """ _validation = { @@ -1358,61 +2559,111 @@ class Input(SubResource): 'properties': {'key': 'properties', 'type': 'InputProperties'}, } - def __init__(self, *, name: str=None, properties=None, **kwargs) -> None: + def __init__( + self, + *, + name: Optional[str] = None, + properties: Optional["InputProperties"] = None, + **kwargs + ): super(Input, self).__init__(name=name, **kwargs) self.properties = properties -class InputProperties(Model): +class InputListResult(msrest.serialization.Model): + """Object containing a list of inputs under a streaming job. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of inputs under a streaming job. Populated by a 'List' operation. + :vartype value: list[~stream_analytics_management_client.models.Input] + :ivar next_link: The link (url) to the next page of results. + :vartype next_link: str + """ + + _validation = { + 'value': {'readonly': True}, + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[Input]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(InputListResult, self).__init__(**kwargs) + self.value = None + self.next_link = None + + +class InputProperties(msrest.serialization.Model): """The properties that are associated with an input. You probably want to use the sub-classes and not this class directly. Known - sub-classes are: ReferenceInputProperties, StreamInputProperties + sub-classes are: ReferenceInputProperties, StreamInputProperties. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. All required parameters must be populated in order to send to Azure. - :param serialization: Describes how data from an input is serialized or - how data is serialized when written to an output. Required on PUT - (CreateOrReplace) requests. - :type serialization: ~azure.mgmt.streamanalytics.models.Serialization - :ivar diagnostics: Describes conditions applicable to the Input, Output, - or the job overall, that warrant customer attention. - :vartype diagnostics: ~azure.mgmt.streamanalytics.models.Diagnostics - :ivar etag: The current entity tag for the input. This is an opaque - string. You can use it to detect whether the resource has changed between - requests. You can also use it in the If-Match or If-None-Match headers for - write operations for optimistic concurrency. - :vartype etag: str - :param type: Required. Constant filled by server. + :param type: Required. Indicates whether the input is a source of reference data or stream + data. Required on PUT (CreateOrReplace) requests.Constant filled by server. :type type: str + :param serialization: Describes how data from an input is serialized or how data is serialized + when written to an output. Required on PUT (CreateOrReplace) requests. + :type serialization: ~stream_analytics_management_client.models.Serialization + :ivar diagnostics: Describes conditions applicable to the Input, Output, or the job overall, + that warrant customer attention. + :vartype diagnostics: ~stream_analytics_management_client.models.Diagnostics + :ivar etag: The current entity tag for the input. This is an opaque string. You can use it to + detect whether the resource has changed between requests. You can also use it in the If-Match + or If-None-Match headers for write operations for optimistic concurrency. + :vartype etag: str + :param compression: Describes how input data is compressed. + :type compression: ~stream_analytics_management_client.models.Compression + :param partition_key: partitionKey Describes a key in the input data which is used for + partitioning the input data. + :type partition_key: str """ _validation = { + 'type': {'required': True}, 'diagnostics': {'readonly': True}, 'etag': {'readonly': True}, - 'type': {'required': True}, } _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, 'serialization': {'key': 'serialization', 'type': 'Serialization'}, 'diagnostics': {'key': 'diagnostics', 'type': 'Diagnostics'}, 'etag': {'key': 'etag', 'type': 'str'}, - 'type': {'key': 'type', 'type': 'str'}, + 'compression': {'key': 'compression', 'type': 'Compression'}, + 'partition_key': {'key': 'partitionKey', 'type': 'str'}, } _subtype_map = { 'type': {'Reference': 'ReferenceInputProperties', 'Stream': 'StreamInputProperties'} } - def __init__(self, *, serialization=None, **kwargs) -> None: + def __init__( + self, + *, + serialization: Optional["Serialization"] = None, + compression: Optional["Compression"] = None, + partition_key: Optional[str] = None, + **kwargs + ): super(InputProperties, self).__init__(**kwargs) + self.type = None # type: Optional[str] self.serialization = serialization self.diagnostics = None self.etag = None - self.type = None + self.compression = compression + self.partition_key = partition_key class IoTHubStreamInputDataSource(StreamInputDataSource): @@ -1420,22 +2671,21 @@ class IoTHubStreamInputDataSource(StreamInputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of input data source containing stream data. Required + on PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param iot_hub_namespace: The name or the URI of the IoT Hub. Required on - PUT (CreateOrReplace) requests. + :param iot_hub_namespace: The name or the URI of the IoT Hub. Required on PUT (CreateOrReplace) + requests. :type iot_hub_namespace: str - :param shared_access_policy_name: The shared access policy name for the - IoT Hub. This policy must contain at least the Service connect permission. - Required on PUT (CreateOrReplace) requests. - :type shared_access_policy_name: str - :param shared_access_policy_key: The shared access policy key for the - specified shared access policy. Required on PUT (CreateOrReplace) + :param shared_access_policy_name: The shared access policy name for the IoT Hub. This policy + must contain at least the Service connect permission. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_name: str + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_key: str - :param consumer_group_name: The name of an IoT Hub Consumer Group that - should be used to read events from the IoT Hub. If not specified, the - input uses the Iot Hub’s default consumer group. + :param consumer_group_name: The name of an IoT Hub Consumer Group that should be used to read + events from the IoT Hub. If not specified, the input uses the Iot Hub’s default consumer group. :type consumer_group_name: str :param endpoint: The IoT Hub endpoint to connect to (ie. messages/events, messages/operationsMonitoringEvents, etc.). @@ -1455,14 +2705,23 @@ class IoTHubStreamInputDataSource(StreamInputDataSource): 'endpoint': {'key': 'properties.endpoint', 'type': 'str'}, } - def __init__(self, *, iot_hub_namespace: str=None, shared_access_policy_name: str=None, shared_access_policy_key: str=None, consumer_group_name: str=None, endpoint: str=None, **kwargs) -> None: + def __init__( + self, + *, + iot_hub_namespace: Optional[str] = None, + shared_access_policy_name: Optional[str] = None, + shared_access_policy_key: Optional[str] = None, + consumer_group_name: Optional[str] = None, + endpoint: Optional[str] = None, + **kwargs + ): super(IoTHubStreamInputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.Devices/IotHubs' # type: str self.iot_hub_namespace = iot_hub_namespace self.shared_access_policy_name = shared_access_policy_name self.shared_access_policy_key = shared_access_policy_key self.consumer_group_name = consumer_group_name self.endpoint = endpoint - self.type = 'Microsoft.Devices/IotHubs' class JavaScriptFunctionBinding(FunctionBinding): @@ -1470,10 +2729,10 @@ class JavaScriptFunctionBinding(FunctionBinding): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the function binding type.Constant filled by server. :type type: str - :param script: The JavaScript code containing a single function - definition. For example: 'function (x, y) { return x + y; }' + :param script: The JavaScript code containing a single function definition. For example: + 'function (x, y) { return x + y; }'. :type script: str """ @@ -1486,65 +2745,137 @@ class JavaScriptFunctionBinding(FunctionBinding): 'script': {'key': 'properties.script', 'type': 'str'}, } - def __init__(self, *, script: str=None, **kwargs) -> None: + def __init__( + self, + *, + script: Optional[str] = None, + **kwargs + ): super(JavaScriptFunctionBinding, self).__init__(**kwargs) + self.type = 'Microsoft.StreamAnalytics/JavascriptUdf' # type: str + self.script = script + + +class JavaScriptFunctionRetrieveDefaultDefinitionParameters(FunctionRetrieveDefaultDefinitionParameters): + """The parameters needed to retrieve the default function definition for a JavaScript function. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :param binding_type: Required. Indicates the function binding type.Constant filled by server. + :type binding_type: str + :param script: The JavaScript code containing a single function definition. For example: + 'function (x, y) { return x + y; }'. + :type script: str + :ivar udf_type: The function type. Default value: "Scalar". + :vartype udf_type: str + """ + + _validation = { + 'binding_type': {'required': True}, + 'udf_type': {'constant': True}, + } + + _attribute_map = { + 'binding_type': {'key': 'bindingType', 'type': 'str'}, + 'script': {'key': 'bindingRetrievalProperties.script', 'type': 'str'}, + 'udf_type': {'key': 'bindingRetrievalProperties.udfType', 'type': 'str'}, + } + + udf_type = "Scalar" + + def __init__( + self, + *, + script: Optional[str] = None, + **kwargs + ): + super(JavaScriptFunctionRetrieveDefaultDefinitionParameters, self).__init__(**kwargs) + self.binding_type = 'Microsoft.StreamAnalytics/JavascriptUdf' # type: str self.script = script - self.type = 'Microsoft.StreamAnalytics/JavascriptUdf' -class JavaScriptFunctionRetrieveDefaultDefinitionParameters(FunctionRetrieveDefaultDefinitionParameters): - """The parameters needed to retrieve the default function definition for a - JavaScript function. +class StorageAccount(msrest.serialization.Model): + """The properties that are associated with an Azure Storage account. + + :param account_name: The name of the Azure Storage account. Required on PUT (CreateOrReplace) + requests. + :type account_name: str + :param account_key: The account key for the Azure Storage account. Required on PUT + (CreateOrReplace) requests. + :type account_key: str + """ + + _attribute_map = { + 'account_name': {'key': 'accountName', 'type': 'str'}, + 'account_key': {'key': 'accountKey', 'type': 'str'}, + } + + def __init__( + self, + *, + account_name: Optional[str] = None, + account_key: Optional[str] = None, + **kwargs + ): + super(StorageAccount, self).__init__(**kwargs) + self.account_name = account_name + self.account_key = account_key + - All required parameters must be populated in order to send to Azure. +class JobStorageAccount(StorageAccount): + """The properties that are associated with an Azure Storage account with MSI. - :param binding_type: Required. Constant filled by server. - :type binding_type: str - :param script: The JavaScript code containing a single function - definition. For example: 'function (x, y) { return x + y; }'. - :type script: str - :param udf_type: The function type. Possible values include: 'Scalar' - :type udf_type: str or ~azure.mgmt.streamanalytics.models.UdfType + :param account_name: The name of the Azure Storage account. Required on PUT (CreateOrReplace) + requests. + :type account_name: str + :param account_key: The account key for the Azure Storage account. Required on PUT + (CreateOrReplace) requests. + :type account_key: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode """ - _validation = { - 'binding_type': {'required': True}, - } - _attribute_map = { - 'binding_type': {'key': 'bindingType', 'type': 'str'}, - 'script': {'key': 'bindingRetrievalProperties.script', 'type': 'str'}, - 'udf_type': {'key': 'bindingRetrievalProperties.udfType', 'type': 'UdfType'}, + 'account_name': {'key': 'accountName', 'type': 'str'}, + 'account_key': {'key': 'accountKey', 'type': 'str'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, } - def __init__(self, *, script: str=None, udf_type=None, **kwargs) -> None: - super(JavaScriptFunctionRetrieveDefaultDefinitionParameters, self).__init__(**kwargs) - self.script = script - self.udf_type = udf_type - self.binding_type = 'Microsoft.StreamAnalytics/JavascriptUdf' + def __init__( + self, + *, + account_name: Optional[str] = None, + account_key: Optional[str] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + **kwargs + ): + super(JobStorageAccount, self).__init__(account_name=account_name, account_key=account_key, **kwargs) + self.authentication_mode = authentication_mode class JsonSerialization(Serialization): - """Describes how data from an input is serialized or how data is serialized - when written to an output in JSON format. + """Describes how data from an input is serialized or how data is serialized when written to an output in JSON format. All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. - :type type: str - :param encoding: Specifies the encoding of the incoming data in the case - of input and the encoding of outgoing data in the case of output. Required - on PUT (CreateOrReplace) requests. Possible values include: 'UTF8' - :type encoding: str or ~azure.mgmt.streamanalytics.models.Encoding - :param format: This property only applies to JSON serialization of outputs - only. It is not applicable to inputs. This property specifies the format - of the JSON the output will be written in. The currently supported values - are 'lineSeparated' indicating the output will be formatted by having each - JSON object separated by a new line and 'array' indicating the output will - be formatted as an array of JSON objects. Default value is 'lineSeparated' - if left null. Possible values include: 'LineSeparated', 'Array' - :type format: str or - ~azure.mgmt.streamanalytics.models.JsonOutputSerializationFormat + :param type: Required. Indicates the type of serialization that the input or output uses. + Required on PUT (CreateOrReplace) requests.Constant filled by server. Possible values include: + "Csv", "Avro", "Json", "Parquet". + :type type: str or ~stream_analytics_management_client.models.EventSerializationType + :param encoding: Specifies the encoding of the incoming data in the case of input and the + encoding of outgoing data in the case of output. Required on PUT (CreateOrReplace) requests. + Possible values include: "UTF8". + :type encoding: str or ~stream_analytics_management_client.models.Encoding + :param format: This property only applies to JSON serialization of outputs only. It is not + applicable to inputs. This property specifies the format of the JSON the output will be written + in. The currently supported values are 'lineSeparated' indicating the output will be formatted + by having each JSON object separated by a new line and 'array' indicating the output will be + formatted as an array of JSON objects. Default value is 'lineSeparated' if left null. Possible + values include: "LineSeparated", "Array". + :type format: str or ~stream_analytics_management_client.models.JsonOutputSerializationFormat """ _validation = { @@ -1557,60 +2888,31 @@ class JsonSerialization(Serialization): 'format': {'key': 'properties.format', 'type': 'str'}, } - def __init__(self, *, encoding=None, format=None, **kwargs) -> None: + def __init__( + self, + *, + encoding: Optional[Union[str, "Encoding"]] = None, + format: Optional[Union[str, "JsonOutputSerializationFormat"]] = None, + **kwargs + ): super(JsonSerialization, self).__init__(**kwargs) + self.type = 'Json' # type: str self.encoding = encoding self.format = format - self.type = 'Json' - - -class OAuthBasedDataSourceProperties(Model): - """The properties that are associated with data sources that use OAuth as - their authentication model. - - :param refresh_token: A refresh token that can be used to obtain a valid - access token that can then be used to authenticate with the data source. A - valid refresh token is currently only obtainable via the Azure Portal. It - is recommended to put a dummy string value here when creating the data - source and then going to the Azure Portal to authenticate the data source - which will update this property with a valid refresh token. Required on - PUT (CreateOrReplace) requests. - :type refresh_token: str - :param token_user_principal_name: The user principal name (UPN) of the - user that was used to obtain the refresh token. Use this property to help - remember which user was used to obtain the refresh token. - :type token_user_principal_name: str - :param token_user_display_name: The user display name of the user that was - used to obtain the refresh token. Use this property to help remember which - user was used to obtain the refresh token. - :type token_user_display_name: str - """ - - _attribute_map = { - 'refresh_token': {'key': 'refreshToken', 'type': 'str'}, - 'token_user_principal_name': {'key': 'tokenUserPrincipalName', 'type': 'str'}, - 'token_user_display_name': {'key': 'tokenUserDisplayName', 'type': 'str'}, - } - - def __init__(self, *, refresh_token: str=None, token_user_principal_name: str=None, token_user_display_name: str=None, **kwargs) -> None: - super(OAuthBasedDataSourceProperties, self).__init__(**kwargs) - self.refresh_token = refresh_token - self.token_user_principal_name = token_user_principal_name - self.token_user_display_name = token_user_display_name -class Operation(Model): +class Operation(msrest.serialization.Model): """A Stream Analytics REST API operation. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar name: The name of the operation being performed on this particular - object. + :ivar name: The name of the operation being performed on this particular object. :vartype name: str - :ivar display: Contains the localized display information for this - particular operation / action. - :vartype display: ~azure.mgmt.streamanalytics.models.OperationDisplay + :param is_data_action: Indicates whether the operation is a data action. + :type is_data_action: bool + :ivar display: Contains the localized display information for this particular operation / + action. + :vartype display: ~stream_analytics_management_client.models.OperationDisplay """ _validation = { @@ -1620,26 +2922,31 @@ class Operation(Model): _attribute_map = { 'name': {'key': 'name', 'type': 'str'}, + 'is_data_action': {'key': 'isDataAction', 'type': 'bool'}, 'display': {'key': 'display', 'type': 'OperationDisplay'}, } - def __init__(self, **kwargs) -> None: + def __init__( + self, + *, + is_data_action: Optional[bool] = None, + **kwargs + ): super(Operation, self).__init__(**kwargs) self.name = None + self.is_data_action = is_data_action self.display = None -class OperationDisplay(Model): - """Contains the localized display information for this particular operation / - action. +class OperationDisplay(msrest.serialization.Model): + """Contains the localized display information for this particular operation / action. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. :ivar provider: The localized friendly form of the resource provider name. :vartype provider: str - :ivar resource: The localized friendly form of the resource type related - to this action/operation. + :ivar resource: The localized friendly form of the resource type related to this + action/operation. :vartype resource: str :ivar operation: The localized friendly name for the operation. :vartype operation: str @@ -1661,7 +2968,10 @@ class OperationDisplay(Model): 'description': {'key': 'description', 'type': 'str'}, } - def __init__(self, **kwargs) -> None: + def __init__( + self, + **kwargs + ): super(OperationDisplay, self).__init__(**kwargs) self.provider = None self.resource = None @@ -1669,33 +2979,64 @@ def __init__(self, **kwargs) -> None: self.description = None +class OperationListResult(msrest.serialization.Model): + """Result of the request to list Stream Analytics operations. It contains a list of operations and a URL link to get the next set of results. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: List of Stream Analytics operations supported by the Microsoft.StreamAnalytics + resource provider. + :vartype value: list[~stream_analytics_management_client.models.Operation] + :ivar next_link: URL to get the next set of operation list results if there are any. + :vartype next_link: str + """ + + _validation = { + 'value': {'readonly': True}, + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[Operation]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(OperationListResult, self).__init__(**kwargs) + self.value = None + self.next_link = None + + class Output(SubResource): - """An output object, containing all information associated with the named - output. All outputs are contained under a streaming job. + """An output object, containing all information associated with the named output. All outputs are contained under a streaming job. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Resource Id + :ivar id: Resource Id. :vartype id: str - :param name: Resource name + :param name: Resource name. :type name: str - :ivar type: Resource type + :ivar type: Resource type. :vartype type: str - :param datasource: Describes the data source that output will be written - to. Required on PUT (CreateOrReplace) requests. - :type datasource: ~azure.mgmt.streamanalytics.models.OutputDataSource - :param serialization: Describes how data from an input is serialized or - how data is serialized when written to an output. Required on PUT + :param datasource: Describes the data source that output will be written to. Required on PUT (CreateOrReplace) requests. - :type serialization: ~azure.mgmt.streamanalytics.models.Serialization - :ivar diagnostics: Describes conditions applicable to the Input, Output, - or the job overall, that warrant customer attention. - :vartype diagnostics: ~azure.mgmt.streamanalytics.models.Diagnostics - :ivar etag: The current entity tag for the output. This is an opaque - string. You can use it to detect whether the resource has changed between - requests. You can also use it in the If-Match or If-None-Match headers for - write operations for optimistic concurrency. + :type datasource: ~stream_analytics_management_client.models.OutputDataSource + :param time_window: The time frame for filtering Stream Analytics job outputs. + :type time_window: str + :param size_window: The size window to constrain a Stream Analytics output to. + :type size_window: float + :param serialization: Describes how data from an input is serialized or how data is serialized + when written to an output. Required on PUT (CreateOrReplace) requests. + :type serialization: ~stream_analytics_management_client.models.Serialization + :ivar diagnostics: Describes conditions applicable to the Input, Output, or the job overall, + that warrant customer attention. + :vartype diagnostics: ~stream_analytics_management_client.models.Diagnostics + :ivar etag: The current entity tag for the output. This is an opaque string. You can use it to + detect whether the resource has changed between requests. You can also use it in the If-Match + or If-None-Match headers for write operations for optimistic concurrency. :vartype etag: str """ @@ -1711,53 +3052,132 @@ class Output(SubResource): 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, 'datasource': {'key': 'properties.datasource', 'type': 'OutputDataSource'}, + 'time_window': {'key': 'properties.timeWindow', 'type': 'str'}, + 'size_window': {'key': 'properties.sizeWindow', 'type': 'float'}, 'serialization': {'key': 'properties.serialization', 'type': 'Serialization'}, 'diagnostics': {'key': 'properties.diagnostics', 'type': 'Diagnostics'}, 'etag': {'key': 'properties.etag', 'type': 'str'}, } - def __init__(self, *, name: str=None, datasource=None, serialization=None, **kwargs) -> None: + def __init__( + self, + *, + name: Optional[str] = None, + datasource: Optional["OutputDataSource"] = None, + time_window: Optional[str] = None, + size_window: Optional[float] = None, + serialization: Optional["Serialization"] = None, + **kwargs + ): super(Output, self).__init__(name=name, **kwargs) self.datasource = datasource + self.time_window = time_window + self.size_window = size_window self.serialization = serialization self.diagnostics = None self.etag = None -class PowerBIOutputDataSource(OutputDataSource): +class OutputListResult(msrest.serialization.Model): + """Object containing a list of outputs under a streaming job. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of outputs under a streaming job. Populated by a 'List' operation. + :vartype value: list[~stream_analytics_management_client.models.Output] + :ivar next_link: The link (url) to the next page of results. + :vartype next_link: str + """ + + _validation = { + 'value': {'readonly': True}, + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[Output]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(OutputListResult, self).__init__(**kwargs) + self.value = None + self.next_link = None + + +class ParquetSerialization(Serialization): + """Describes how data from an input is serialized or how data is serialized when written to an output in Parquet format. + + All required parameters must be populated in order to send to Azure. + + :param type: Required. Indicates the type of serialization that the input or output uses. + Required on PUT (CreateOrReplace) requests.Constant filled by server. Possible values include: + "Csv", "Avro", "Json", "Parquet". + :type type: str or ~stream_analytics_management_client.models.EventSerializationType + :param properties: The properties that are associated with the Parquet serialization type. + Required on PUT (CreateOrReplace) requests. + :type properties: object + """ + + _validation = { + 'type': {'required': True}, + } + + _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, + 'properties': {'key': 'properties', 'type': 'object'}, + } + + def __init__( + self, + *, + properties: Optional[object] = None, + **kwargs + ): + super(ParquetSerialization, self).__init__(**kwargs) + self.type = 'Parquet' # type: str + self.properties = properties + + +class PowerBiOutputDataSource(OutputDataSource): """Describes a Power BI output data source. All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param refresh_token: A refresh token that can be used to obtain a valid - access token that can then be used to authenticate with the data source. A - valid refresh token is currently only obtainable via the Azure Portal. It - is recommended to put a dummy string value here when creating the data - source and then going to the Azure Portal to authenticate the data source - which will update this property with a valid refresh token. Required on - PUT (CreateOrReplace) requests. + :param refresh_token: A refresh token that can be used to obtain a valid access token that can + then be used to authenticate with the data source. A valid refresh token is currently only + obtainable via the Azure Portal. It is recommended to put a dummy string value here when + creating the data source and then going to the Azure Portal to authenticate the data source + which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) + requests. :type refresh_token: str - :param token_user_principal_name: The user principal name (UPN) of the - user that was used to obtain the refresh token. Use this property to help - remember which user was used to obtain the refresh token. + :param token_user_principal_name: The user principal name (UPN) of the user that was used to + obtain the refresh token. Use this property to help remember which user was used to obtain the + refresh token. :type token_user_principal_name: str - :param token_user_display_name: The user display name of the user that was - used to obtain the refresh token. Use this property to help remember which - user was used to obtain the refresh token. + :param token_user_display_name: The user display name of the user that was used to obtain the + refresh token. Use this property to help remember which user was used to obtain the refresh + token. :type token_user_display_name: str - :param dataset: The name of the Power BI dataset. Required on PUT - (CreateOrReplace) requests. + :param dataset: The name of the Power BI dataset. Required on PUT (CreateOrReplace) requests. :type dataset: str - :param table: The name of the Power BI table under the specified dataset. - Required on PUT (CreateOrReplace) requests. + :param table: The name of the Power BI table under the specified dataset. Required on PUT + (CreateOrReplace) requests. :type table: str :param group_id: The ID of the Power BI group. :type group_id: str - :param group_name: The name of the Power BI group. Use this property to - help remember which specific Power BI group id was used. + :param group_name: The name of the Power BI group. Use this property to help remember which + specific Power BI group id was used. :type group_name: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode """ _validation = { @@ -1773,10 +3193,24 @@ class PowerBIOutputDataSource(OutputDataSource): 'table': {'key': 'properties.table', 'type': 'str'}, 'group_id': {'key': 'properties.groupId', 'type': 'str'}, 'group_name': {'key': 'properties.groupName', 'type': 'str'}, + 'authentication_mode': {'key': 'properties.authenticationMode', 'type': 'str'}, } - def __init__(self, *, refresh_token: str=None, token_user_principal_name: str=None, token_user_display_name: str=None, dataset: str=None, table: str=None, group_id: str=None, group_name: str=None, **kwargs) -> None: - super(PowerBIOutputDataSource, self).__init__(**kwargs) + def __init__( + self, + *, + refresh_token: Optional[str] = None, + token_user_principal_name: Optional[str] = None, + token_user_display_name: Optional[str] = None, + dataset: Optional[str] = None, + table: Optional[str] = None, + group_id: Optional[str] = None, + group_name: Optional[str] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + **kwargs + ): + super(PowerBiOutputDataSource, self).__init__(**kwargs) + self.type = 'PowerBI' # type: str self.refresh_token = refresh_token self.token_user_principal_name = token_user_principal_name self.token_user_display_name = token_user_display_name @@ -1784,74 +3218,147 @@ def __init__(self, *, refresh_token: str=None, token_user_principal_name: str=No self.table = table self.group_id = group_id self.group_name = group_name - self.type = 'PowerBI' + self.authentication_mode = authentication_mode + + +class PowerBiOutputDataSourceProperties(OAuthBasedDataSourceProperties): + """The properties that are associated with a Power BI output. + + :param refresh_token: A refresh token that can be used to obtain a valid access token that can + then be used to authenticate with the data source. A valid refresh token is currently only + obtainable via the Azure Portal. It is recommended to put a dummy string value here when + creating the data source and then going to the Azure Portal to authenticate the data source + which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) + requests. + :type refresh_token: str + :param token_user_principal_name: The user principal name (UPN) of the user that was used to + obtain the refresh token. Use this property to help remember which user was used to obtain the + refresh token. + :type token_user_principal_name: str + :param token_user_display_name: The user display name of the user that was used to obtain the + refresh token. Use this property to help remember which user was used to obtain the refresh + token. + :type token_user_display_name: str + :param dataset: The name of the Power BI dataset. Required on PUT (CreateOrReplace) requests. + :type dataset: str + :param table: The name of the Power BI table under the specified dataset. Required on PUT + (CreateOrReplace) requests. + :type table: str + :param group_id: The ID of the Power BI group. + :type group_id: str + :param group_name: The name of the Power BI group. Use this property to help remember which + specific Power BI group id was used. + :type group_name: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + """ + + _attribute_map = { + 'refresh_token': {'key': 'refreshToken', 'type': 'str'}, + 'token_user_principal_name': {'key': 'tokenUserPrincipalName', 'type': 'str'}, + 'token_user_display_name': {'key': 'tokenUserDisplayName', 'type': 'str'}, + 'dataset': {'key': 'dataset', 'type': 'str'}, + 'table': {'key': 'table', 'type': 'str'}, + 'group_id': {'key': 'groupId', 'type': 'str'}, + 'group_name': {'key': 'groupName', 'type': 'str'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, + } + + def __init__( + self, + *, + refresh_token: Optional[str] = None, + token_user_principal_name: Optional[str] = None, + token_user_display_name: Optional[str] = None, + dataset: Optional[str] = None, + table: Optional[str] = None, + group_id: Optional[str] = None, + group_name: Optional[str] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + **kwargs + ): + super(PowerBiOutputDataSourceProperties, self).__init__(refresh_token=refresh_token, token_user_principal_name=token_user_principal_name, token_user_display_name=token_user_display_name, **kwargs) + self.dataset = dataset + self.table = table + self.group_id = group_id + self.group_name = group_name + self.authentication_mode = authentication_mode class ReferenceInputProperties(InputProperties): """The properties that are associated with an input containing reference data. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. All required parameters must be populated in order to send to Azure. - :param serialization: Describes how data from an input is serialized or - how data is serialized when written to an output. Required on PUT - (CreateOrReplace) requests. - :type serialization: ~azure.mgmt.streamanalytics.models.Serialization - :ivar diagnostics: Describes conditions applicable to the Input, Output, - or the job overall, that warrant customer attention. - :vartype diagnostics: ~azure.mgmt.streamanalytics.models.Diagnostics - :ivar etag: The current entity tag for the input. This is an opaque - string. You can use it to detect whether the resource has changed between - requests. You can also use it in the If-Match or If-None-Match headers for - write operations for optimistic concurrency. - :vartype etag: str - :param type: Required. Constant filled by server. + :param type: Required. Indicates whether the input is a source of reference data or stream + data. Required on PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param datasource: Describes an input data source that contains reference - data. Required on PUT (CreateOrReplace) requests. - :type datasource: - ~azure.mgmt.streamanalytics.models.ReferenceInputDataSource + :param serialization: Describes how data from an input is serialized or how data is serialized + when written to an output. Required on PUT (CreateOrReplace) requests. + :type serialization: ~stream_analytics_management_client.models.Serialization + :ivar diagnostics: Describes conditions applicable to the Input, Output, or the job overall, + that warrant customer attention. + :vartype diagnostics: ~stream_analytics_management_client.models.Diagnostics + :ivar etag: The current entity tag for the input. This is an opaque string. You can use it to + detect whether the resource has changed between requests. You can also use it in the If-Match + or If-None-Match headers for write operations for optimistic concurrency. + :vartype etag: str + :param compression: Describes how input data is compressed. + :type compression: ~stream_analytics_management_client.models.Compression + :param partition_key: partitionKey Describes a key in the input data which is used for + partitioning the input data. + :type partition_key: str + :param datasource: Describes an input data source that contains reference data. Required on PUT + (CreateOrReplace) requests. + :type datasource: ~stream_analytics_management_client.models.ReferenceInputDataSource """ _validation = { + 'type': {'required': True}, 'diagnostics': {'readonly': True}, 'etag': {'readonly': True}, - 'type': {'required': True}, } _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, 'serialization': {'key': 'serialization', 'type': 'Serialization'}, 'diagnostics': {'key': 'diagnostics', 'type': 'Diagnostics'}, 'etag': {'key': 'etag', 'type': 'str'}, - 'type': {'key': 'type', 'type': 'str'}, + 'compression': {'key': 'compression', 'type': 'Compression'}, + 'partition_key': {'key': 'partitionKey', 'type': 'str'}, 'datasource': {'key': 'datasource', 'type': 'ReferenceInputDataSource'}, } - def __init__(self, *, serialization=None, datasource=None, **kwargs) -> None: - super(ReferenceInputProperties, self).__init__(serialization=serialization, **kwargs) + def __init__( + self, + *, + serialization: Optional["Serialization"] = None, + compression: Optional["Compression"] = None, + partition_key: Optional[str] = None, + datasource: Optional["ReferenceInputDataSource"] = None, + **kwargs + ): + super(ReferenceInputProperties, self).__init__(serialization=serialization, compression=compression, partition_key=partition_key, **kwargs) + self.type = 'Reference' # type: str self.datasource = datasource - self.type = 'Reference' -class Resource(Model): - """The base resource model definition. +class Resource(msrest.serialization.Model): + """The base resource definition. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Resource Id + :ivar id: Fully qualified resource Id for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. :vartype id: str - :ivar name: Resource name + :ivar name: The name of the resource. :vartype name: str - :ivar type: Resource type + :ivar type: The type of the resource. Ex- Microsoft.Compute/virtualMachines or + Microsoft.Storage/storageAccounts. :vartype type: str - :param location: Resource location. Required on PUT (CreateOrReplace) - requests. - :type location: str - :param tags: Resource tags - :type tags: dict[str, str] """ _validation = { @@ -1864,30 +3371,27 @@ class Resource(Model): 'id': {'key': 'id', 'type': 'str'}, 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, - 'location': {'key': 'location', 'type': 'str'}, - 'tags': {'key': 'tags', 'type': '{str}'}, } - def __init__(self, *, location: str=None, tags=None, **kwargs) -> None: + def __init__( + self, + **kwargs + ): super(Resource, self).__init__(**kwargs) self.id = None self.name = None self.type = None - self.location = location - self.tags = tags -class ResourceTestStatus(Model): - """Describes the status of the test operation along with error information, if - applicable. +class ResourceTestStatus(msrest.serialization.Model): + """Describes the status of the test operation along with error information, if applicable. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. :ivar status: The status of the test operation. :vartype status: str :ivar error: Describes the error that occurred. - :vartype error: ~azure.mgmt.streamanalytics.models.ErrorResponse + :vartype error: ~stream_analytics_management_client.models.ErrorResponse """ _validation = { @@ -1900,7 +3404,10 @@ class ResourceTestStatus(Model): 'error': {'key': 'error', 'type': 'ErrorResponse'}, } - def __init__(self, **kwargs) -> None: + def __init__( + self, + **kwargs + ): super(ResourceTestStatus, self).__init__(**kwargs) self.status = None self.error = None @@ -1909,46 +3416,73 @@ def __init__(self, **kwargs) -> None: class ScalarFunctionProperties(FunctionProperties): """The properties that are associated with a scalar function. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. All required parameters must be populated in order to send to Azure. - :ivar etag: The current entity tag for the function. This is an opaque - string. You can use it to detect whether the resource has changed between - requests. You can also use it in the If-Match or If-None-Match headers for - write operations for optimistic concurrency. - :vartype etag: str - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of function.Constant filled by server. :type type: str + :ivar etag: The current entity tag for the function. This is an opaque string. You can use it + to detect whether the resource has changed between requests. You can also use it in the If- + Match or If-None-Match headers for write operations for optimistic concurrency. + :vartype etag: str :param inputs: A list of inputs describing the parameters of the function. - :type inputs: list[~azure.mgmt.streamanalytics.models.FunctionInput] + :type inputs: list[~stream_analytics_management_client.models.FunctionInput] :param output: The output of the function. - :type output: ~azure.mgmt.streamanalytics.models.FunctionOutput - :param binding: The physical binding of the function. For example, in the - Azure Machine Learning web service’s case, this describes the endpoint. - :type binding: ~azure.mgmt.streamanalytics.models.FunctionBinding + :type output: ~stream_analytics_management_client.models.FunctionOutput + :param binding: The physical binding of the function. For example, in the Azure Machine + Learning web service’s case, this describes the endpoint. + :type binding: ~stream_analytics_management_client.models.FunctionBinding """ _validation = { - 'etag': {'readonly': True}, 'type': {'required': True}, + 'etag': {'readonly': True}, } _attribute_map = { - 'etag': {'key': 'etag', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, + 'etag': {'key': 'etag', 'type': 'str'}, 'inputs': {'key': 'properties.inputs', 'type': '[FunctionInput]'}, 'output': {'key': 'properties.output', 'type': 'FunctionOutput'}, 'binding': {'key': 'properties.binding', 'type': 'FunctionBinding'}, } - def __init__(self, *, inputs=None, output=None, binding=None, **kwargs) -> None: + def __init__( + self, + *, + inputs: Optional[List["FunctionInput"]] = None, + output: Optional["FunctionOutput"] = None, + binding: Optional["FunctionBinding"] = None, + **kwargs + ): super(ScalarFunctionProperties, self).__init__(**kwargs) + self.type = 'Scalar' # type: str self.inputs = inputs self.output = output self.binding = binding - self.type = 'Scalar' + + +class ScaleStreamingJobParameters(msrest.serialization.Model): + """Parameters supplied to the Scale Streaming Job operation. + + :param streaming_units: Specifies the number of streaming units that the streaming job will + scale to. + :type streaming_units: int + """ + + _attribute_map = { + 'streaming_units': {'key': 'streamingUnits', 'type': 'int'}, + } + + def __init__( + self, + *, + streaming_units: Optional[int] = None, + **kwargs + ): + super(ScaleStreamingJobParameters, self).__init__(**kwargs) + self.streaming_units = streaming_units class ServiceBusQueueOutputDataSource(OutputDataSource): @@ -1956,26 +3490,32 @@ class ServiceBusQueueOutputDataSource(OutputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param service_bus_namespace: The namespace that is associated with the - desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on - PUT (CreateOrReplace) requests. + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type service_bus_namespace: str - :param shared_access_policy_name: The shared access policy name for the - Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT - (CreateOrReplace) requests. + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_name: str - :param shared_access_policy_key: The shared access policy key for the - specified shared access policy. Required on PUT (CreateOrReplace) - requests. + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_key: str - :param queue_name: The name of the Service Bus Queue. Required on PUT - (CreateOrReplace) requests. + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param queue_name: The name of the Service Bus Queue. Required on PUT (CreateOrReplace) + requests. :type queue_name: str - :param property_columns: A string array of the names of output columns to - be attached to Service Bus messages as custom properties. + :param property_columns: A string array of the names of output columns to be attached to + Service Bus messages as custom properties. :type property_columns: list[str] + :param system_property_columns: The system properties associated with the Service Bus Queue. + The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, + CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, + Label, ScheduledEnqueueTimeUtc. + :type system_property_columns: object """ _validation = { @@ -1987,18 +3527,89 @@ class ServiceBusQueueOutputDataSource(OutputDataSource): 'service_bus_namespace': {'key': 'properties.serviceBusNamespace', 'type': 'str'}, 'shared_access_policy_name': {'key': 'properties.sharedAccessPolicyName', 'type': 'str'}, 'shared_access_policy_key': {'key': 'properties.sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'properties.authenticationMode', 'type': 'str'}, 'queue_name': {'key': 'properties.queueName', 'type': 'str'}, 'property_columns': {'key': 'properties.propertyColumns', 'type': '[str]'}, + 'system_property_columns': {'key': 'properties.systemPropertyColumns', 'type': 'object'}, } - def __init__(self, *, service_bus_namespace: str=None, shared_access_policy_name: str=None, shared_access_policy_key: str=None, queue_name: str=None, property_columns=None, **kwargs) -> None: + def __init__( + self, + *, + service_bus_namespace: Optional[str] = None, + shared_access_policy_name: Optional[str] = None, + shared_access_policy_key: Optional[str] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + queue_name: Optional[str] = None, + property_columns: Optional[List[str]] = None, + system_property_columns: Optional[object] = None, + **kwargs + ): super(ServiceBusQueueOutputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.ServiceBus/Queue' # type: str self.service_bus_namespace = service_bus_namespace self.shared_access_policy_name = shared_access_policy_name self.shared_access_policy_key = shared_access_policy_key + self.authentication_mode = authentication_mode + self.queue_name = queue_name + self.property_columns = property_columns + self.system_property_columns = system_property_columns + + +class ServiceBusQueueOutputDataSourceProperties(ServiceBusDataSourceProperties): + """The properties that are associated with a Service Bus Queue output. + + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type service_bus_namespace: str + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_name: str + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_key: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param queue_name: The name of the Service Bus Queue. Required on PUT (CreateOrReplace) + requests. + :type queue_name: str + :param property_columns: A string array of the names of output columns to be attached to + Service Bus messages as custom properties. + :type property_columns: list[str] + :param system_property_columns: The system properties associated with the Service Bus Queue. + The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, + CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, + Label, ScheduledEnqueueTimeUtc. + :type system_property_columns: object + """ + + _attribute_map = { + 'service_bus_namespace': {'key': 'serviceBusNamespace', 'type': 'str'}, + 'shared_access_policy_name': {'key': 'sharedAccessPolicyName', 'type': 'str'}, + 'shared_access_policy_key': {'key': 'sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, + 'queue_name': {'key': 'queueName', 'type': 'str'}, + 'property_columns': {'key': 'propertyColumns', 'type': '[str]'}, + 'system_property_columns': {'key': 'systemPropertyColumns', 'type': 'object'}, + } + + def __init__( + self, + *, + service_bus_namespace: Optional[str] = None, + shared_access_policy_name: Optional[str] = None, + shared_access_policy_key: Optional[str] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + queue_name: Optional[str] = None, + property_columns: Optional[List[str]] = None, + system_property_columns: Optional[object] = None, + **kwargs + ): + super(ServiceBusQueueOutputDataSourceProperties, self).__init__(service_bus_namespace=service_bus_namespace, shared_access_policy_name=shared_access_policy_name, shared_access_policy_key=shared_access_policy_key, authentication_mode=authentication_mode, **kwargs) self.queue_name = queue_name self.property_columns = property_columns - self.type = 'Microsoft.ServiceBus/Queue' + self.system_property_columns = system_property_columns class ServiceBusTopicOutputDataSource(OutputDataSource): @@ -2006,26 +3617,32 @@ class ServiceBusTopicOutputDataSource(OutputDataSource): All required parameters must be populated in order to send to Azure. - :param type: Required. Constant filled by server. + :param type: Required. Indicates the type of data source output will be written to. Required on + PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param service_bus_namespace: The namespace that is associated with the - desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on - PUT (CreateOrReplace) requests. + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type service_bus_namespace: str - :param shared_access_policy_name: The shared access policy name for the - Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT - (CreateOrReplace) requests. + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_name: str - :param shared_access_policy_key: The shared access policy key for the - specified shared access policy. Required on PUT (CreateOrReplace) - requests. + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. :type shared_access_policy_key: str - :param topic_name: The name of the Service Bus Topic. Required on PUT - (CreateOrReplace) requests. + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param topic_name: The name of the Service Bus Topic. Required on PUT (CreateOrReplace) + requests. :type topic_name: str - :param property_columns: A string array of the names of output columns to - be attached to Service Bus messages as custom properties. + :param property_columns: A string array of the names of output columns to be attached to + Service Bus messages as custom properties. :type property_columns: list[str] + :param system_property_columns: The system properties associated with the Service Bus Topic + Output. The following system properties are supported: ReplyToSessionId, ContentType, To, + Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, + ReplyTo, Label, ScheduledEnqueueTimeUtc. + :type system_property_columns: dict[str, str] """ _validation = { @@ -2037,54 +3654,127 @@ class ServiceBusTopicOutputDataSource(OutputDataSource): 'service_bus_namespace': {'key': 'properties.serviceBusNamespace', 'type': 'str'}, 'shared_access_policy_name': {'key': 'properties.sharedAccessPolicyName', 'type': 'str'}, 'shared_access_policy_key': {'key': 'properties.sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'properties.authenticationMode', 'type': 'str'}, 'topic_name': {'key': 'properties.topicName', 'type': 'str'}, 'property_columns': {'key': 'properties.propertyColumns', 'type': '[str]'}, + 'system_property_columns': {'key': 'properties.systemPropertyColumns', 'type': '{str}'}, } - def __init__(self, *, service_bus_namespace: str=None, shared_access_policy_name: str=None, shared_access_policy_key: str=None, topic_name: str=None, property_columns=None, **kwargs) -> None: + def __init__( + self, + *, + service_bus_namespace: Optional[str] = None, + shared_access_policy_name: Optional[str] = None, + shared_access_policy_key: Optional[str] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + topic_name: Optional[str] = None, + property_columns: Optional[List[str]] = None, + system_property_columns: Optional[Dict[str, str]] = None, + **kwargs + ): super(ServiceBusTopicOutputDataSource, self).__init__(**kwargs) + self.type = 'Microsoft.ServiceBus/Topic' # type: str self.service_bus_namespace = service_bus_namespace self.shared_access_policy_name = shared_access_policy_name self.shared_access_policy_key = shared_access_policy_key + self.authentication_mode = authentication_mode + self.topic_name = topic_name + self.property_columns = property_columns + self.system_property_columns = system_property_columns + + +class ServiceBusTopicOutputDataSourceProperties(ServiceBusDataSourceProperties): + """The properties that are associated with a Service Bus Topic output. + + :param service_bus_namespace: The namespace that is associated with the desired Event Hub, + Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type service_bus_namespace: str + :param shared_access_policy_name: The shared access policy name for the Event Hub, Service Bus + Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_name: str + :param shared_access_policy_key: The shared access policy key for the specified shared access + policy. Required on PUT (CreateOrReplace) requests. + :type shared_access_policy_key: str + :param authentication_mode: Authentication Mode. Possible values include: "Msi", "UserToken", + "ConnectionString". + :type authentication_mode: str or ~stream_analytics_management_client.models.AuthenticationMode + :param topic_name: The name of the Service Bus Topic. Required on PUT (CreateOrReplace) + requests. + :type topic_name: str + :param property_columns: A string array of the names of output columns to be attached to + Service Bus messages as custom properties. + :type property_columns: list[str] + :param system_property_columns: The system properties associated with the Service Bus Topic + Output. The following system properties are supported: ReplyToSessionId, ContentType, To, + Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, + ReplyTo, Label, ScheduledEnqueueTimeUtc. + :type system_property_columns: dict[str, str] + """ + + _attribute_map = { + 'service_bus_namespace': {'key': 'serviceBusNamespace', 'type': 'str'}, + 'shared_access_policy_name': {'key': 'sharedAccessPolicyName', 'type': 'str'}, + 'shared_access_policy_key': {'key': 'sharedAccessPolicyKey', 'type': 'str'}, + 'authentication_mode': {'key': 'authenticationMode', 'type': 'str'}, + 'topic_name': {'key': 'topicName', 'type': 'str'}, + 'property_columns': {'key': 'propertyColumns', 'type': '[str]'}, + 'system_property_columns': {'key': 'systemPropertyColumns', 'type': '{str}'}, + } + + def __init__( + self, + *, + service_bus_namespace: Optional[str] = None, + shared_access_policy_name: Optional[str] = None, + shared_access_policy_key: Optional[str] = None, + authentication_mode: Optional[Union[str, "AuthenticationMode"]] = None, + topic_name: Optional[str] = None, + property_columns: Optional[List[str]] = None, + system_property_columns: Optional[Dict[str, str]] = None, + **kwargs + ): + super(ServiceBusTopicOutputDataSourceProperties, self).__init__(service_bus_namespace=service_bus_namespace, shared_access_policy_name=shared_access_policy_name, shared_access_policy_key=shared_access_policy_key, authentication_mode=authentication_mode, **kwargs) self.topic_name = topic_name self.property_columns = property_columns - self.type = 'Microsoft.ServiceBus/Topic' + self.system_property_columns = system_property_columns -class Sku(Model): +class Sku(msrest.serialization.Model): """The properties that are associated with a SKU. - :param name: The name of the SKU. Required on PUT (CreateOrReplace) - requests. Possible values include: 'Standard' - :type name: str or ~azure.mgmt.streamanalytics.models.SkuName + :param name: The name of the SKU. Required on PUT (CreateOrReplace) requests. Possible values + include: "Standard". + :type name: str or ~stream_analytics_management_client.models.SkuName """ _attribute_map = { 'name': {'key': 'name', 'type': 'str'}, } - def __init__(self, *, name=None, **kwargs) -> None: + def __init__( + self, + *, + name: Optional[Union[str, "SkuName"]] = None, + **kwargs + ): super(Sku, self).__init__(**kwargs) self.name = name -class StartStreamingJobParameters(Model): +class StartStreamingJobParameters(msrest.serialization.Model): """Parameters supplied to the Start Streaming Job operation. - :param output_start_mode: Value may be JobStartTime, CustomTime, or - LastOutputEventTime to indicate whether the starting point of the output - event stream should start whenever the job is started, start at a custom - user time stamp specified via the outputStartTime property, or start from - the last event output time. Possible values include: 'JobStartTime', - 'CustomTime', 'LastOutputEventTime' - :type output_start_mode: str or - ~azure.mgmt.streamanalytics.models.OutputStartMode - :param output_start_time: Value is either an ISO-8601 formatted time stamp - that indicates the starting point of the output event stream, or null to - indicate that the output event stream will start whenever the streaming - job is started. This property must have a value if outputStartMode is set - to CustomTime. - :type output_start_time: datetime + :param output_start_mode: Value may be JobStartTime, CustomTime, or LastOutputEventTime to + indicate whether the starting point of the output event stream should start whenever the job is + started, start at a custom user time stamp specified via the outputStartTime property, or start + from the last event output time. Possible values include: "JobStartTime", "CustomTime", + "LastOutputEventTime". + :type output_start_mode: str or ~stream_analytics_management_client.models.OutputStartMode + :param output_start_time: Value is either an ISO-8601 formatted time stamp that indicates the + starting point of the output event stream, or null to indicate that the output event stream + will start whenever the streaming job is started. This property must have a value if + outputStartMode is set to CustomTime. + :type output_start_time: ~datetime.datetime """ _attribute_map = { @@ -2092,144 +3782,171 @@ class StartStreamingJobParameters(Model): 'output_start_time': {'key': 'outputStartTime', 'type': 'iso-8601'}, } - def __init__(self, *, output_start_mode=None, output_start_time=None, **kwargs) -> None: + def __init__( + self, + *, + output_start_mode: Optional[Union[str, "OutputStartMode"]] = None, + output_start_time: Optional[datetime.datetime] = None, + **kwargs + ): super(StartStreamingJobParameters, self).__init__(**kwargs) self.output_start_mode = output_start_mode self.output_start_time = output_start_time -class StorageAccount(Model): - """The properties that are associated with an Azure Storage account. +class TrackedResource(Resource): + """The resource model definition for a ARM tracked top level resource. - :param account_name: The name of the Azure Storage account. Required on - PUT (CreateOrReplace) requests. - :type account_name: str - :param account_key: The account key for the Azure Storage account. - Required on PUT (CreateOrReplace) requests. - :type account_key: str + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Fully qualified resource Id for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. + :vartype id: str + :ivar name: The name of the resource. + :vartype name: str + :ivar type: The type of the resource. Ex- Microsoft.Compute/virtualMachines or + Microsoft.Storage/storageAccounts. + :vartype type: str + :param tags: A set of tags. Resource tags. + :type tags: dict[str, str] + :param location: The geo-location where the resource lives. + :type location: str """ + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + } + _attribute_map = { - 'account_name': {'key': 'accountName', 'type': 'str'}, - 'account_key': {'key': 'accountKey', 'type': 'str'}, + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'location': {'key': 'location', 'type': 'str'}, } - def __init__(self, *, account_name: str=None, account_key: str=None, **kwargs) -> None: - super(StorageAccount, self).__init__(**kwargs) - self.account_name = account_name - self.account_key = account_key + def __init__( + self, + *, + tags: Optional[Dict[str, str]] = None, + location: Optional[str] = None, + **kwargs + ): + super(TrackedResource, self).__init__(**kwargs) + self.tags = tags + self.location = location -class StreamingJob(Resource): - """A streaming job object, containing all information associated with the - named streaming job. +class StreamingJob(TrackedResource): + """A streaming job object, containing all information associated with the named streaming job. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Resource Id + :ivar id: Fully qualified resource Id for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. :vartype id: str - :ivar name: Resource name + :ivar name: The name of the resource. :vartype name: str - :ivar type: Resource type + :ivar type: The type of the resource. Ex- Microsoft.Compute/virtualMachines or + Microsoft.Storage/storageAccounts. :vartype type: str - :param location: Resource location. Required on PUT (CreateOrReplace) - requests. - :type location: str - :param tags: Resource tags + :param tags: A set of tags. Resource tags. :type tags: dict[str, str] - :param sku: Describes the SKU of the streaming job. Required on PUT - (CreateOrReplace) requests. - :type sku: ~azure.mgmt.streamanalytics.models.Sku - :ivar job_id: A GUID uniquely identifying the streaming job. This GUID is - generated upon creation of the streaming job. + :param location: The geo-location where the resource lives. + :type location: str + :param identity: Describes the system-assigned managed identity assigned to this job that can + be used to authenticate with inputs and outputs. + :type identity: ~stream_analytics_management_client.models.Identity + :param sku: Describes the SKU of the streaming job. Required on PUT (CreateOrReplace) requests. + :type sku: ~stream_analytics_management_client.models.Sku + :ivar job_id: A GUID uniquely identifying the streaming job. This GUID is generated upon + creation of the streaming job. :vartype job_id: str - :ivar provisioning_state: Describes the provisioning status of the - streaming job. + :ivar provisioning_state: Describes the provisioning status of the streaming job. :vartype provisioning_state: str :ivar job_state: Describes the state of the streaming job. :vartype job_state: str - :param output_start_mode: This property should only be utilized when it is - desired that the job be started immediately upon creation. Value may be - JobStartTime, CustomTime, or LastOutputEventTime to indicate whether the - starting point of the output event stream should start whenever the job is - started, start at a custom user time stamp specified via the - outputStartTime property, or start from the last event output time. - Possible values include: 'JobStartTime', 'CustomTime', - 'LastOutputEventTime' - :type output_start_mode: str or - ~azure.mgmt.streamanalytics.models.OutputStartMode - :param output_start_time: Value is either an ISO-8601 formatted time stamp - that indicates the starting point of the output event stream, or null to - indicate that the output event stream will start whenever the streaming - job is started. This property must have a value if outputStartMode is set - to CustomTime. - :type output_start_time: datetime - :ivar last_output_event_time: Value is either an ISO-8601 formatted - timestamp indicating the last output event time of the streaming job or - null indicating that output has not yet been produced. In case of multiple - outputs or multiple streams, this shows the latest value in that set. - :vartype last_output_event_time: datetime - :param events_out_of_order_policy: Indicates the policy to apply to events - that arrive out of order in the input event stream. Possible values - include: 'Adjust', 'Drop' + :param job_type: Describes the type of the job. Valid modes are ``Cloud`` and 'Edge'. Possible + values include: "Cloud", "Edge". + :type job_type: str or ~stream_analytics_management_client.models.JobType + :param output_start_mode: This property should only be utilized when it is desired that the job + be started immediately upon creation. Value may be JobStartTime, CustomTime, or + LastOutputEventTime to indicate whether the starting point of the output event stream should + start whenever the job is started, start at a custom user time stamp specified via the + outputStartTime property, or start from the last event output time. Possible values include: + "JobStartTime", "CustomTime", "LastOutputEventTime". + :type output_start_mode: str or ~stream_analytics_management_client.models.OutputStartMode + :param output_start_time: Value is either an ISO-8601 formatted time stamp that indicates the + starting point of the output event stream, or null to indicate that the output event stream + will start whenever the streaming job is started. This property must have a value if + outputStartMode is set to CustomTime. + :type output_start_time: ~datetime.datetime + :ivar last_output_event_time: Value is either an ISO-8601 formatted timestamp indicating the + last output event time of the streaming job or null indicating that output has not yet been + produced. In case of multiple outputs or multiple streams, this shows the latest value in that + set. + :vartype last_output_event_time: ~datetime.datetime + :param events_out_of_order_policy: Indicates the policy to apply to events that arrive out of + order in the input event stream. Possible values include: "Adjust", "Drop". :type events_out_of_order_policy: str or - ~azure.mgmt.streamanalytics.models.EventsOutOfOrderPolicy - :param output_error_policy: Indicates the policy to apply to events that - arrive at the output and cannot be written to the external storage due to - being malformed (missing column values, column values of wrong type or - size). Possible values include: 'Stop', 'Drop' - :type output_error_policy: str or - ~azure.mgmt.streamanalytics.models.OutputErrorPolicy - :param events_out_of_order_max_delay_in_seconds: The maximum tolerable - delay in seconds where out-of-order events can be adjusted to be back in - order. + ~stream_analytics_management_client.models.EventsOutOfOrderPolicy + :param output_error_policy: Indicates the policy to apply to events that arrive at the output + and cannot be written to the external storage due to being malformed (missing column values, + column values of wrong type or size). Possible values include: "Stop", "Drop". + :type output_error_policy: str or ~stream_analytics_management_client.models.OutputErrorPolicy + :param events_out_of_order_max_delay_in_seconds: The maximum tolerable delay in seconds where + out-of-order events can be adjusted to be back in order. :type events_out_of_order_max_delay_in_seconds: int - :param events_late_arrival_max_delay_in_seconds: The maximum tolerable - delay in seconds where events arriving late could be included. Supported - range is -1 to 1814399 (20.23:59:59 days) and -1 is used to specify wait - indefinitely. If the property is absent, it is interpreted to have a value - of -1. + :param events_late_arrival_max_delay_in_seconds: The maximum tolerable delay in seconds where + events arriving late could be included. Supported range is -1 to 1814399 (20.23:59:59 days) + and -1 is used to specify wait indefinitely. If the property is absent, it is interpreted to + have a value of -1. :type events_late_arrival_max_delay_in_seconds: int - :param data_locale: The data locale of the stream analytics job. Value - should be the name of a supported .NET Culture from the set - https://msdn.microsoft.com/en-us/library/system.globalization.culturetypes(v=vs.110).aspx. - Defaults to 'en-US' if none specified. + :param data_locale: The data locale of the stream analytics job. Value should be the name of a + supported .NET Culture from the set https://msdn.microsoft.com/en- + us/library/system.globalization.culturetypes(v=vs.110).aspx. Defaults to 'en-US' if none + specified. :type data_locale: str - :param compatibility_level: Controls certain runtime behaviors of the - streaming job. Possible values include: '1.0' - :type compatibility_level: str or - ~azure.mgmt.streamanalytics.models.CompatibilityLevel - :ivar created_date: Value is an ISO-8601 formatted UTC timestamp - indicating when the streaming job was created. - :vartype created_date: datetime - :param inputs: A list of one or more inputs to the streaming job. The name - property for each input is required when specifying this property in a PUT - request. This property cannot be modify via a PATCH operation. You must - use the PATCH API available for the individual input. - :type inputs: list[~azure.mgmt.streamanalytics.models.Input] - :param transformation: Indicates the query and the number of streaming - units to use for the streaming job. The name property of the - transformation is required when specifying this property in a PUT request. - This property cannot be modify via a PATCH operation. You must use the - PATCH API available for the individual transformation. - :type transformation: ~azure.mgmt.streamanalytics.models.Transformation - :param outputs: A list of one or more outputs for the streaming job. The - name property for each output is required when specifying this property in - a PUT request. This property cannot be modify via a PATCH operation. You - must use the PATCH API available for the individual output. - :type outputs: list[~azure.mgmt.streamanalytics.models.Output] - :param functions: A list of one or more functions for the streaming job. - The name property for each function is required when specifying this - property in a PUT request. This property cannot be modify via a PATCH - operation. You must use the PATCH API available for the individual + :param compatibility_level: Controls certain runtime behaviors of the streaming job. Possible + values include: "1.0", "1.2". + :type compatibility_level: str or ~stream_analytics_management_client.models.CompatibilityLevel + :ivar created_date: Value is an ISO-8601 formatted UTC timestamp indicating when the streaming + job was created. + :vartype created_date: ~datetime.datetime + :param inputs: A list of one or more inputs to the streaming job. The name property for each + input is required when specifying this property in a PUT request. This property cannot be + modify via a PATCH operation. You must use the PATCH API available for the individual input. + :type inputs: list[~stream_analytics_management_client.models.Input] + :param transformation: Indicates the query and the number of streaming units to use for the + streaming job. The name property of the transformation is required when specifying this + property in a PUT request. This property cannot be modify via a PATCH operation. You must use + the PATCH API available for the individual transformation. + :type transformation: ~stream_analytics_management_client.models.Transformation + :param outputs: A list of one or more outputs for the streaming job. The name property for each + output is required when specifying this property in a PUT request. This property cannot be + modify via a PATCH operation. You must use the PATCH API available for the individual output. + :type outputs: list[~stream_analytics_management_client.models.Output] + :param functions: A list of one or more functions for the streaming job. The name property for + each function is required when specifying this property in a PUT request. This property cannot + be modify via a PATCH operation. You must use the PATCH API available for the individual transformation. - :type functions: list[~azure.mgmt.streamanalytics.models.Function] - :ivar etag: The current entity tag for the streaming job. This is an - opaque string. You can use it to detect whether the resource has changed - between requests. You can also use it in the If-Match or If-None-Match - headers for write operations for optimistic concurrency. + :type functions: list[~stream_analytics_management_client.models.Function] + :ivar etag: The current entity tag for the streaming job. This is an opaque string. You can use + it to detect whether the resource has changed between requests. You can also use it in the If- + Match or If-None-Match headers for write operations for optimistic concurrency. :vartype etag: str + :param job_storage_account: The properties that are associated with an Azure Storage account + with MSI. + :type job_storage_account: ~stream_analytics_management_client.models.JobStorageAccount + :param content_storage_policy: Valid values are JobStorageAccount and SystemAccount. If set to + JobStorageAccount, this requires the user to also specify jobStorageAccount property. . + Possible values include: "SystemAccount", "JobStorageAccount". + :type content_storage_policy: str or + ~stream_analytics_management_client.models.ContentStoragePolicy + :param cluster: The cluster which streaming jobs will run on. + :type cluster: ~stream_analytics_management_client.models.ClusterInfo """ _validation = { @@ -2248,12 +3965,14 @@ class StreamingJob(Resource): 'id': {'key': 'id', 'type': 'str'}, 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, - 'location': {'key': 'location', 'type': 'str'}, 'tags': {'key': 'tags', 'type': '{str}'}, + 'location': {'key': 'location', 'type': 'str'}, + 'identity': {'key': 'identity', 'type': 'Identity'}, 'sku': {'key': 'properties.sku', 'type': 'Sku'}, 'job_id': {'key': 'properties.jobId', 'type': 'str'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, 'job_state': {'key': 'properties.jobState', 'type': 'str'}, + 'job_type': {'key': 'properties.jobType', 'type': 'str'}, 'output_start_mode': {'key': 'properties.outputStartMode', 'type': 'str'}, 'output_start_time': {'key': 'properties.outputStartTime', 'type': 'iso-8601'}, 'last_output_event_time': {'key': 'properties.lastOutputEventTime', 'type': 'iso-8601'}, @@ -2269,14 +3988,43 @@ class StreamingJob(Resource): 'outputs': {'key': 'properties.outputs', 'type': '[Output]'}, 'functions': {'key': 'properties.functions', 'type': '[Function]'}, 'etag': {'key': 'properties.etag', 'type': 'str'}, + 'job_storage_account': {'key': 'properties.jobStorageAccount', 'type': 'JobStorageAccount'}, + 'content_storage_policy': {'key': 'properties.contentStoragePolicy', 'type': 'str'}, + 'cluster': {'key': 'properties.cluster', 'type': 'ClusterInfo'}, } - def __init__(self, *, location: str=None, tags=None, sku=None, output_start_mode=None, output_start_time=None, events_out_of_order_policy=None, output_error_policy=None, events_out_of_order_max_delay_in_seconds: int=None, events_late_arrival_max_delay_in_seconds: int=None, data_locale: str=None, compatibility_level=None, inputs=None, transformation=None, outputs=None, functions=None, **kwargs) -> None: - super(StreamingJob, self).__init__(location=location, tags=tags, **kwargs) + def __init__( + self, + *, + tags: Optional[Dict[str, str]] = None, + location: Optional[str] = None, + identity: Optional["Identity"] = None, + sku: Optional["Sku"] = None, + job_type: Optional[Union[str, "JobType"]] = None, + output_start_mode: Optional[Union[str, "OutputStartMode"]] = None, + output_start_time: Optional[datetime.datetime] = None, + events_out_of_order_policy: Optional[Union[str, "EventsOutOfOrderPolicy"]] = None, + output_error_policy: Optional[Union[str, "OutputErrorPolicy"]] = None, + events_out_of_order_max_delay_in_seconds: Optional[int] = None, + events_late_arrival_max_delay_in_seconds: Optional[int] = None, + data_locale: Optional[str] = None, + compatibility_level: Optional[Union[str, "CompatibilityLevel"]] = None, + inputs: Optional[List["Input"]] = None, + transformation: Optional["Transformation"] = None, + outputs: Optional[List["Output"]] = None, + functions: Optional[List["Function"]] = None, + job_storage_account: Optional["JobStorageAccount"] = None, + content_storage_policy: Optional[Union[str, "ContentStoragePolicy"]] = None, + cluster: Optional["ClusterInfo"] = None, + **kwargs + ): + super(StreamingJob, self).__init__(tags=tags, location=location, **kwargs) + self.identity = identity self.sku = sku self.job_id = None self.provisioning_state = None self.job_state = None + self.job_type = job_type self.output_start_mode = output_start_mode self.output_start_time = output_start_time self.last_output_event_time = None @@ -2292,66 +4040,111 @@ def __init__(self, *, location: str=None, tags=None, sku=None, output_start_mode self.outputs = outputs self.functions = functions self.etag = None + self.job_storage_account = job_storage_account + self.content_storage_policy = content_storage_policy + self.cluster = cluster + + +class StreamingJobListResult(msrest.serialization.Model): + """Object containing a list of streaming jobs. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar value: A list of streaming jobs. Populated by a 'List' operation. + :vartype value: list[~stream_analytics_management_client.models.StreamingJob] + :ivar next_link: The link (url) to the next page of results. + :vartype next_link: str + """ + + _validation = { + 'value': {'readonly': True}, + 'next_link': {'readonly': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[StreamingJob]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(StreamingJobListResult, self).__init__(**kwargs) + self.value = None + self.next_link = None class StreamInputProperties(InputProperties): """The properties that are associated with an input containing stream data. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. All required parameters must be populated in order to send to Azure. - :param serialization: Describes how data from an input is serialized or - how data is serialized when written to an output. Required on PUT - (CreateOrReplace) requests. - :type serialization: ~azure.mgmt.streamanalytics.models.Serialization - :ivar diagnostics: Describes conditions applicable to the Input, Output, - or the job overall, that warrant customer attention. - :vartype diagnostics: ~azure.mgmt.streamanalytics.models.Diagnostics - :ivar etag: The current entity tag for the input. This is an opaque - string. You can use it to detect whether the resource has changed between - requests. You can also use it in the If-Match or If-None-Match headers for - write operations for optimistic concurrency. - :vartype etag: str - :param type: Required. Constant filled by server. + :param type: Required. Indicates whether the input is a source of reference data or stream + data. Required on PUT (CreateOrReplace) requests.Constant filled by server. :type type: str - :param datasource: Describes an input data source that contains stream - data. Required on PUT (CreateOrReplace) requests. - :type datasource: ~azure.mgmt.streamanalytics.models.StreamInputDataSource + :param serialization: Describes how data from an input is serialized or how data is serialized + when written to an output. Required on PUT (CreateOrReplace) requests. + :type serialization: ~stream_analytics_management_client.models.Serialization + :ivar diagnostics: Describes conditions applicable to the Input, Output, or the job overall, + that warrant customer attention. + :vartype diagnostics: ~stream_analytics_management_client.models.Diagnostics + :ivar etag: The current entity tag for the input. This is an opaque string. You can use it to + detect whether the resource has changed between requests. You can also use it in the If-Match + or If-None-Match headers for write operations for optimistic concurrency. + :vartype etag: str + :param compression: Describes how input data is compressed. + :type compression: ~stream_analytics_management_client.models.Compression + :param partition_key: partitionKey Describes a key in the input data which is used for + partitioning the input data. + :type partition_key: str + :param datasource: Describes an input data source that contains stream data. Required on PUT + (CreateOrReplace) requests. + :type datasource: ~stream_analytics_management_client.models.StreamInputDataSource """ _validation = { + 'type': {'required': True}, 'diagnostics': {'readonly': True}, 'etag': {'readonly': True}, - 'type': {'required': True}, } _attribute_map = { + 'type': {'key': 'type', 'type': 'str'}, 'serialization': {'key': 'serialization', 'type': 'Serialization'}, 'diagnostics': {'key': 'diagnostics', 'type': 'Diagnostics'}, 'etag': {'key': 'etag', 'type': 'str'}, - 'type': {'key': 'type', 'type': 'str'}, + 'compression': {'key': 'compression', 'type': 'Compression'}, + 'partition_key': {'key': 'partitionKey', 'type': 'str'}, 'datasource': {'key': 'datasource', 'type': 'StreamInputDataSource'}, } - def __init__(self, *, serialization=None, datasource=None, **kwargs) -> None: - super(StreamInputProperties, self).__init__(serialization=serialization, **kwargs) + def __init__( + self, + *, + serialization: Optional["Serialization"] = None, + compression: Optional["Compression"] = None, + partition_key: Optional[str] = None, + datasource: Optional["StreamInputDataSource"] = None, + **kwargs + ): + super(StreamInputProperties, self).__init__(serialization=serialization, compression=compression, partition_key=partition_key, **kwargs) + self.type = 'Stream' # type: str self.datasource = datasource - self.type = 'Stream' class SubscriptionQuota(SubResource): """Describes the current quota for the subscription. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Resource Id + :ivar id: Resource Id. :vartype id: str - :param name: Resource name + :param name: Resource name. :type name: str - :ivar type: Resource type + :ivar type: Resource type. :vartype type: str :ivar max_count: The max permitted usage of this resource. :vartype max_count: int @@ -2374,21 +4167,24 @@ class SubscriptionQuota(SubResource): 'current_count': {'key': 'properties.currentCount', 'type': 'int'}, } - def __init__(self, *, name: str=None, **kwargs) -> None: + def __init__( + self, + *, + name: Optional[str] = None, + **kwargs + ): super(SubscriptionQuota, self).__init__(name=name, **kwargs) self.max_count = None self.current_count = None -class SubscriptionQuotasListResult(Model): - """Result of the GetQuotas operation. It contains a list of quotas for the - subscription in a particular region. +class SubscriptionQuotasListResult(msrest.serialization.Model): + """Result of the GetQuotas operation. It contains a list of quotas for the subscription in a particular region. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. :ivar value: List of quotas for the subscription in a particular region. - :vartype value: list[~azure.mgmt.streamanalytics.models.SubscriptionQuota] + :vartype value: list[~stream_analytics_management_client.models.SubscriptionQuota] """ _validation = { @@ -2399,37 +4195,36 @@ class SubscriptionQuotasListResult(Model): 'value': {'key': 'value', 'type': '[SubscriptionQuota]'}, } - def __init__(self, **kwargs) -> None: + def __init__( + self, + **kwargs + ): super(SubscriptionQuotasListResult, self).__init__(**kwargs) self.value = None class Transformation(SubResource): - """A transformation object, containing all information associated with the - named transformation. All transformations are contained under a streaming - job. + """A transformation object, containing all information associated with the named transformation. All transformations are contained under a streaming job. - Variables are only populated by the server, and will be ignored when - sending a request. + Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Resource Id + :ivar id: Resource Id. :vartype id: str - :param name: Resource name + :param name: Resource name. :type name: str - :ivar type: Resource type + :ivar type: Resource type. :vartype type: str - :param streaming_units: Specifies the number of streaming units that the - streaming job uses. + :param streaming_units: Specifies the number of streaming units that the streaming job uses. :type streaming_units: int - :param query: Specifies the query that will be run in the streaming job. - You can learn more about the Stream Analytics Query Language (SAQL) here: - https://msdn.microsoft.com/library/azure/dn834998 . Required on PUT - (CreateOrReplace) requests. + :param valid_streaming_units: Specifies the valid streaming units a streaming job can scale to. + :type valid_streaming_units: list[int] + :param query: Specifies the query that will be run in the streaming job. You can learn more + about the Stream Analytics Query Language (SAQL) here: + https://msdn.microsoft.com/library/azure/dn834998 . Required on PUT (CreateOrReplace) requests. :type query: str - :ivar etag: The current entity tag for the transformation. This is an - opaque string. You can use it to detect whether the resource has changed - between requests. You can also use it in the If-Match or If-None-Match - headers for write operations for optimistic concurrency. + :ivar etag: The current entity tag for the transformation. This is an opaque string. You can + use it to detect whether the resource has changed between requests. You can also use it in the + If-Match or If-None-Match headers for write operations for optimistic concurrency. :vartype etag: str """ @@ -2444,12 +4239,22 @@ class Transformation(SubResource): 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, 'streaming_units': {'key': 'properties.streamingUnits', 'type': 'int'}, + 'valid_streaming_units': {'key': 'properties.validStreamingUnits', 'type': '[int]'}, 'query': {'key': 'properties.query', 'type': 'str'}, 'etag': {'key': 'properties.etag', 'type': 'str'}, } - def __init__(self, *, name: str=None, streaming_units: int=None, query: str=None, **kwargs) -> None: + def __init__( + self, + *, + name: Optional[str] = None, + streaming_units: Optional[int] = None, + valid_streaming_units: Optional[List[int]] = None, + query: Optional[str] = None, + **kwargs + ): super(Transformation, self).__init__(name=name, **kwargs) self.streaming_units = streaming_units + self.valid_streaming_units = valid_streaming_units self.query = query self.etag = None diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/models/_paged_models.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/models/_paged_models.py deleted file mode 100644 index 2f319cdaac9..00000000000 --- a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/models/_paged_models.py +++ /dev/null @@ -1,79 +0,0 @@ -# coding=utf-8 -# -------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# -# Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. -# -------------------------------------------------------------------------- - -from msrest.paging import Paged - - -class OperationPaged(Paged): - """ - A paging container for iterating over a list of :class:`Operation ` object - """ - - _attribute_map = { - 'next_link': {'key': 'nextLink', 'type': 'str'}, - 'current_page': {'key': 'value', 'type': '[Operation]'} - } - - def __init__(self, *args, **kwargs): - - super(OperationPaged, self).__init__(*args, **kwargs) -class StreamingJobPaged(Paged): - """ - A paging container for iterating over a list of :class:`StreamingJob ` object - """ - - _attribute_map = { - 'next_link': {'key': 'nextLink', 'type': 'str'}, - 'current_page': {'key': 'value', 'type': '[StreamingJob]'} - } - - def __init__(self, *args, **kwargs): - - super(StreamingJobPaged, self).__init__(*args, **kwargs) -class InputPaged(Paged): - """ - A paging container for iterating over a list of :class:`Input ` object - """ - - _attribute_map = { - 'next_link': {'key': 'nextLink', 'type': 'str'}, - 'current_page': {'key': 'value', 'type': '[Input]'} - } - - def __init__(self, *args, **kwargs): - - super(InputPaged, self).__init__(*args, **kwargs) -class OutputPaged(Paged): - """ - A paging container for iterating over a list of :class:`Output ` object - """ - - _attribute_map = { - 'next_link': {'key': 'nextLink', 'type': 'str'}, - 'current_page': {'key': 'value', 'type': '[Output]'} - } - - def __init__(self, *args, **kwargs): - - super(OutputPaged, self).__init__(*args, **kwargs) -class FunctionPaged(Paged): - """ - A paging container for iterating over a list of :class:`Function ` object - """ - - _attribute_map = { - 'next_link': {'key': 'nextLink', 'type': 'str'}, - 'current_page': {'key': 'value', 'type': '[Function]'} - } - - def __init__(self, *args, **kwargs): - - super(FunctionPaged, self).__init__(*args, **kwargs) diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/models/_stream_analytics_management_client_enums.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/models/_stream_analytics_management_client_enums.py index 8a75764b45c..e919de98b40 100644 --- a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/models/_stream_analytics_management_client_enums.py +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/models/_stream_analytics_management_client_enums.py @@ -1,57 +1,134 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from enum import Enum +from enum import Enum, EnumMeta +from six import with_metaclass + +class _CaseInsensitiveEnumMeta(EnumMeta): + def __getitem__(self, name): + return super().__getitem__(name.upper()) + + def __getattr__(cls, name): + """Return the enum member matching `name` + We use __getattr__ instead of descriptors or inserting into the enum + class' __dict__ in order to support `name` and `value` being both + properties for enum members (which live in the class' __dict__) and + enum members themselves. + """ + try: + return cls._member_map_[name.upper()] + except KeyError: + raise AttributeError(name) + + +class AuthenticationMode(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Authentication Mode. Valid modes are ``ConnectionString``\ , ``Msi`` and 'UserToken'. + """ + + MSI = "Msi" + USER_TOKEN = "UserToken" + CONNECTION_STRING = "ConnectionString" + +class CompatibilityLevel(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Controls certain runtime behaviors of the streaming job. + """ + + ONE0 = "1.0" + ONE2 = "1.2" + +class CompressionType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Indicates the type of compression that the input uses. Required on PUT (CreateOrReplace) + requests. + """ + + NONE = "None" + G_ZIP = "GZip" + DEFLATE = "Deflate" + +class ContentStoragePolicy(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Valid values are JobStorageAccount and SystemAccount. If set to JobStorageAccount, this + requires the user to also specify jobStorageAccount property. . + """ + + SYSTEM_ACCOUNT = "SystemAccount" + JOB_STORAGE_ACCOUNT = "JobStorageAccount" + +class Encoding(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Specifies the encoding of the incoming data in the case of input and the encoding of outgoing + data in the case of output. + """ + + UTF8 = "UTF8" + +class EventSerializationType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Indicates the type of serialization that the input or output uses. Required on PUT + (CreateOrReplace) requests. + """ + + CSV = "Csv" + AVRO = "Avro" + JSON = "Json" + PARQUET = "Parquet" + +class EventsOutOfOrderPolicy(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Indicates the policy to apply to events that arrive out of order in the input event stream. + """ + + ADJUST = "Adjust" + DROP = "Drop" + +class JobType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Describes the type of the job. Valid modes are ``Cloud`` and 'Edge'. + """ + + CLOUD = "Cloud" + EDGE = "Edge" + +class JsonOutputSerializationFormat(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Specifies the format of the JSON the output will be written in. The currently supported values + are 'lineSeparated' indicating the output will be formatted by having each JSON object + separated by a new line and 'array' indicating the output will be formatted as an array of JSON + objects. + """ + + LINE_SEPARATED = "LineSeparated" + ARRAY = "Array" + +class OutputErrorPolicy(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Indicates the policy to apply to events that arrive at the output and cannot be written to the + external storage due to being malformed (missing column values, column values of wrong type or + size). + """ + + STOP = "Stop" + DROP = "Drop" + +class OutputStartMode(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Value may be JobStartTime, CustomTime, or LastOutputEventTime to indicate whether the starting + point of the output event stream should start whenever the job is started, start at a custom + user time stamp specified via the outputStartTime property, or start from the last event output + time. + """ + + JOB_START_TIME = "JobStartTime" + CUSTOM_TIME = "CustomTime" + LAST_OUTPUT_EVENT_TIME = "LastOutputEventTime" + +class RefreshType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Indicates the type of data refresh option. + """ - -class SkuName(str, Enum): - - standard = "Standard" - - -class OutputStartMode(str, Enum): - - job_start_time = "JobStartTime" - custom_time = "CustomTime" - last_output_event_time = "LastOutputEventTime" - - -class EventsOutOfOrderPolicy(str, Enum): - - adjust = "Adjust" - drop = "Drop" - - -class OutputErrorPolicy(str, Enum): - - stop = "Stop" - drop = "Drop" - - -class CompatibilityLevel(str, Enum): - - one_full_stop_zero = "1.0" - - -class JsonOutputSerializationFormat(str, Enum): - - line_separated = "LineSeparated" - array = "Array" - - -class Encoding(str, Enum): - - utf8 = "UTF8" - - -class UdfType(str, Enum): - - scalar = "Scalar" + STATIC = "Static" + REFRESH_PERIODICALLY_WITH_FULL = "RefreshPeriodicallyWithFull" + REFRESH_PERIODICALLY_WITH_DELTA = "RefreshPeriodicallyWithDelta" + +class SkuName(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """The name of the SKU. Required on PUT (CreateOrReplace) requests. + """ + + STANDARD = "Standard" diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/__init__.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/__init__.py index f3bc6cbedc4..a034ccf2de4 100644 --- a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/__init__.py +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/__init__.py @@ -1,12 +1,9 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from ._operations import Operations diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_functions_operations.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_functions_operations.py index 140d1e02da6..d71688a4bb4 100644 --- a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_functions_operations.py +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_functions_operations.py @@ -1,642 +1,658 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- +from typing import TYPE_CHECKING +import warnings -import uuid -from msrest.pipeline import ClientRawResponse -from msrestazure.azure_exceptions import CloudError -from msrest.polling import LROPoller, NoPolling -from msrestazure.polling.arm_polling import ARMPolling +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling from .. import models +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar, Union + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] class FunctionsOperations(object): """FunctionsOperations operations. - You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute. + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + :ivar models: Alias to model classes used in this operation group. + :type models: ~stream_analytics_management_client.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Client Api Version. Constant value: "2016-03-01". """ models = models def __init__(self, client, config, serializer, deserializer): - self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2016-03-01" - - self.config = config + self._config = config def create_or_replace( - self, resource_group_name, job_name, function_name, if_match=None, if_none_match=None, name=None, properties=None, custom_headers=None, raw=False, **operation_config): - """Creates a function or replaces an already existing function under an - existing streaming job. - - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + self, + resource_group_name, # type: str + job_name, # type: str + function_name, # type: str + function, # type: "models.Function" + if_match=None, # type: Optional[str] + if_none_match=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> "models.Function" + """Creates a function or replaces an already existing function under an existing streaming job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str :param function_name: The name of the function. :type function_name: str - :param if_match: The ETag of the function. Omit this value to always - overwrite the current function. Specify the last-seen ETag value to - prevent accidentally overwriting concurrent changes. + :param function: The definition of the function that will be used to create a new function or + replace the existing one under the streaming job. + :type function: ~stream_analytics_management_client.models.Function + :param if_match: The ETag of the function. Omit this value to always overwrite the current + function. Specify the last-seen ETag value to prevent accidentally overwriting concurrent + changes. :type if_match: str - :param if_none_match: Set to '*' to allow a new function to be - created, but to prevent updating an existing function. Other values - will result in a 412 Pre-condition Failed response. + :param if_none_match: Set to '*' to allow a new function to be created, but to prevent updating + an existing function. Other values will result in a 412 Pre-condition Failed response. :type if_none_match: str - :param name: Resource name - :type name: str - :param properties: The properties that are associated with a function. - :type properties: - ~azure.mgmt.streamanalytics.models.FunctionProperties - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: Function or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.streamanalytics.models.Function or - ~msrest.pipeline.ClientRawResponse - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Function, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Function + :raises: ~azure.core.exceptions.HttpResponseError """ - function = models.Function(name=name, properties=properties) + cls = kwargs.pop('cls', None) # type: ClsType["models.Function"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" # Construct URL - url = self.create_or_replace.metadata['url'] + url = self.create_or_replace.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), 'jobName': self._serialize.url("job_name", job_name, 'str'), - 'functionName': self._serialize.url("function_name", function_name, 'str') + 'functionName': self._serialize.url("function_name", function_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) + header_parameters = {} # type: Dict[str, Any] if if_match is not None: header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') if if_none_match is not None: header_parameters['If-None-Match'] = self._serialize.header("if_none_match", if_none_match, 'str') - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct body + body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(function, 'Function') - - # Construct and send request - request = self._client.put(url, query_parameters, header_parameters, body_content) - response = self._client.send(request, stream=False, **operation_config) + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200, 201]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - header_dict = {} - deserialized = None + response_headers = {} if response.status_code == 200: - deserialized = self._deserialize('Function', response) - header_dict = { - 'ETag': 'str', - } + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Function', pipeline_response) + if response.status_code == 201: - deserialized = self._deserialize('Function', response) - header_dict = { - 'ETag': 'str', - } + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Function', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - client_raw_response.add_headers(header_dict) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, response_headers) return deserialized - create_or_replace.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}'} + create_or_replace.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}'} # type: ignore def update( - self, resource_group_name, job_name, function_name, if_match=None, name=None, properties=None, custom_headers=None, raw=False, **operation_config): - """Updates an existing function under an existing streaming job. This can - be used to partially update (ie. update one or two properties) a - function without affecting the rest the job or function definition. - - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + self, + resource_group_name, # type: str + job_name, # type: str + function_name, # type: str + function, # type: "models.Function" + if_match=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> "models.Function" + """Updates an existing function under an existing streaming job. This can be used to partially + update (ie. update one or two properties) a function without affecting the rest the job or + function definition. + + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str :param function_name: The name of the function. :type function_name: str - :param if_match: The ETag of the function. Omit this value to always - overwrite the current function. Specify the last-seen ETag value to - prevent accidentally overwriting concurrent changes. + :param function: A function object. The properties specified here will overwrite the + corresponding properties in the existing function (ie. Those properties will be updated). Any + properties that are set to null here will mean that the corresponding property in the existing + function will remain the same and not change as a result of this PATCH operation. + :type function: ~stream_analytics_management_client.models.Function + :param if_match: The ETag of the function. Omit this value to always overwrite the current + function. Specify the last-seen ETag value to prevent accidentally overwriting concurrent + changes. :type if_match: str - :param name: Resource name - :type name: str - :param properties: The properties that are associated with a function. - :type properties: - ~azure.mgmt.streamanalytics.models.FunctionProperties - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: Function or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.streamanalytics.models.Function or - ~msrest.pipeline.ClientRawResponse - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Function, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Function + :raises: ~azure.core.exceptions.HttpResponseError """ - function = models.Function(name=name, properties=properties) + cls = kwargs.pop('cls', None) # type: ClsType["models.Function"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" # Construct URL - url = self.update.metadata['url'] + url = self.update.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), 'jobName': self._serialize.url("job_name", job_name, 'str'), - 'functionName': self._serialize.url("function_name", function_name, 'str') + 'functionName': self._serialize.url("function_name", function_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) + header_parameters = {} # type: Dict[str, Any] if if_match is not None: header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct body + body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(function, 'Function') - - # Construct and send request - request = self._client.patch(url, query_parameters, header_parameters, body_content) - response = self._client.send(request, stream=False, **operation_config) + body_content_kwargs['content'] = body_content + request = self._client.patch(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - header_dict = {} - deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('Function', response) - header_dict = { - 'ETag': 'str', - } + response_headers = {} + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Function', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - client_raw_response.add_headers(header_dict) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, response_headers) return deserialized - update.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}'} + update.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}'} # type: ignore def delete( - self, resource_group_name, job_name, function_name, custom_headers=None, raw=False, **operation_config): + self, + resource_group_name, # type: str + job_name, # type: str + function_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> None """Deletes a function from the streaming job. - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str :param function_name: The name of the function. :type function_name: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: None or ClientRawResponse if raw=true - :rtype: None or ~msrest.pipeline.ClientRawResponse - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: None, or the result of cls(response) + :rtype: None + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + # Construct URL - url = self.delete.metadata['url'] + url = self.delete.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), 'jobName': self._serialize.url("job_name", job_name, 'str'), - 'functionName': self._serialize.url("function_name", function_name, 'str') + 'functionName': self._serialize.url("function_name", function_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + request = self._client.delete(url, query_parameters, header_parameters) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200, 204]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) - if raw: - client_raw_response = ClientRawResponse(None, response) - return client_raw_response - delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}'} + delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}'} # type: ignore def get( - self, resource_group_name, job_name, function_name, custom_headers=None, raw=False, **operation_config): + self, + resource_group_name, # type: str + job_name, # type: str + function_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> "models.Function" """Gets details about the specified function. - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str :param function_name: The name of the function. :type function_name: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: Function or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.streamanalytics.models.Function or - ~msrest.pipeline.ClientRawResponse - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Function, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Function + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Function"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + # Construct URL - url = self.get.metadata['url'] + url = self.get.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), 'jobName': self._serialize.url("job_name", job_name, 'str'), - 'functionName': self._serialize.url("function_name", function_name, 'str') + 'functionName': self._serialize.url("function_name", function_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + request = self._client.get(url, query_parameters, header_parameters) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - header_dict = {} - deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('Function', response) - header_dict = { - 'ETag': 'str', - } + response_headers = {} + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Function', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - client_raw_response.add_headers(header_dict) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, response_headers) return deserialized - get.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}'} + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}'} # type: ignore def list_by_streaming_job( - self, resource_group_name, job_name, select=None, custom_headers=None, raw=False, **operation_config): + self, + resource_group_name, # type: str + job_name, # type: str + select=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> Iterable["models.FunctionListResult"] """Lists all of the functions under the specified streaming job. - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str - :param select: The $select OData query parameter. This is a - comma-separated list of structural properties to include in the - response, or "*" to include all properties. By default, all properties - are returned except diagnostics. Currently only accepts '*' as a valid - value. + :param select: The $select OData query parameter. This is a comma-separated list of structural + properties to include in the response, or "\ *" to include all properties. By default, all + properties are returned except diagnostics. Currently only accepts '*\ ' as a valid value. :type select: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: An iterator like instance of Function - :rtype: - ~azure.mgmt.streamanalytics.models.FunctionPaged[~azure.mgmt.streamanalytics.models.Function] - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either FunctionListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~stream_analytics_management_client.models.FunctionListResult] + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["models.FunctionListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + if not next_link: # Construct URL - url = self.list_by_streaming_job.metadata['url'] + url = self.list_by_streaming_job.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), - 'jobName': self._serialize.url("job_name", job_name, 'str') + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) - # Construct parameters - query_parameters = {} + query_parameters = {} # type: Dict[str, Any] if select is not None: query_parameters['$select'] = self._serialize.query("select", select, 'str') - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + request = self._client.get(url, query_parameters, header_parameters) else: url = next_link - query_parameters = {} - - # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request - request = self._client.get(url, query_parameters, header_parameters) + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) return request - def internal_paging(next_link=None): + def extract_data(pipeline_response): + deserialized = self._deserialize('FunctionListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): request = prepare_request(next_link) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + error = self._deserialize(models.Error, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - return response - - # Deserialize response - header_dict = None - if raw: - header_dict = {} - deserialized = models.FunctionPaged(internal_paging, self._deserialize.dependencies, header_dict) - - return deserialized - list_by_streaming_job.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions'} + return pipeline_response + return ItemPaged( + get_next, extract_data + ) + list_by_streaming_job.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions'} # type: ignore def _test_initial( - self, resource_group_name, job_name, function_name, name=None, properties=None, custom_headers=None, raw=False, **operation_config): - function = None - if name is not None or properties is not None: - function = models.Function(name=name, properties=properties) + self, + resource_group_name, # type: str + job_name, # type: str + function_name, # type: str + function=None, # type: Optional["models.Function"] + **kwargs # type: Any + ): + # type: (...) -> Optional["models.ResourceTestStatus"] + cls = kwargs.pop('cls', None) # type: ClsType[Optional["models.ResourceTestStatus"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" # Construct URL - url = self.test.metadata['url'] + url = self._test_initial.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), 'jobName': self._serialize.url("job_name", job_name, 'str'), - 'functionName': self._serialize.url("function_name", function_name, 'str') + 'functionName': self._serialize.url("function_name", function_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct body + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] if function is not None: body_content = self._serialize.body(function, 'Function') else: body_content = None - - # Construct and send request - request = self._client.post(url, query_parameters, header_parameters, body_content) - response = self._client.send(request, stream=False, **operation_config) + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200, 202]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('ResourceTestStatus', response) + deserialized = self._deserialize('ResourceTestStatus', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, {}) return deserialized - - def test( - self, resource_group_name, job_name, function_name, name=None, properties=None, custom_headers=None, raw=False, polling=True, **operation_config): - """Tests if the information provided for a function is valid. This can - range from testing the connection to the underlying web service behind - the function or making sure the function code provided is syntactically - correct. - - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + _test_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}/test'} # type: ignore + + def begin_test( + self, + resource_group_name, # type: str + job_name, # type: str + function_name, # type: str + function=None, # type: Optional["models.Function"] + **kwargs # type: Any + ): + # type: (...) -> LROPoller["models.ResourceTestStatus"] + """Tests if the information provided for a function is valid. This can range from testing the + connection to the underlying web service behind the function or making sure the function code + provided is syntactically correct. + + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str :param function_name: The name of the function. :type function_name: str - :param name: Resource name - :type name: str - :param properties: The properties that are associated with a function. - :type properties: - ~azure.mgmt.streamanalytics.models.FunctionProperties - :param dict custom_headers: headers that will be added to the request - :param bool raw: The poller return type is ClientRawResponse, the - direct response alongside the deserialized response - :param polling: True for ARMPolling, False for no polling, or a + :param function: If the function specified does not already exist, this parameter must contain + the full function definition intended to be tested. If the function specified already exists, + this parameter can be left null to test the existing function as is or if specified, the + properties specified will overwrite the corresponding properties in the existing function + (exactly like a PATCH operation) and the resulting function will be tested. + :type function: ~stream_analytics_management_client.models.Function + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a polling object for personal polling strategy - :return: An instance of LROPoller that returns ResourceTestStatus or - ClientRawResponse if raw==True - :rtype: - ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.streamanalytics.models.ResourceTestStatus] - or - ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.streamanalytics.models.ResourceTestStatus]] - :raises: :class:`CloudError` + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either ResourceTestStatus or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~stream_analytics_management_client.models.ResourceTestStatus] + :raises ~azure.core.exceptions.HttpResponseError: """ - raw_result = self._test_initial( - resource_group_name=resource_group_name, - job_name=job_name, - function_name=function_name, - name=name, - properties=properties, - custom_headers=custom_headers, - raw=True, - **operation_config + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["models.ResourceTestStatus"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval ) - - def get_long_running_output(response): - deserialized = self._deserialize('ResourceTestStatus', response) - - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response - + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._test_initial( + resource_group_name=resource_group_name, + job_name=job_name, + function_name=function_name, + function=function, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('ResourceTestStatus', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) return deserialized - lro_delay = operation_config.get( - 'long_running_operation_timeout', - self.config.long_running_operation_timeout) - if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'functionName': self._serialize.url("function_name", function_name, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) elif polling is False: polling_method = NoPolling() else: polling_method = polling - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - test.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}/test'} + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_test.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}/test'} # type: ignore def retrieve_default_definition( - self, resource_group_name, job_name, function_name, function_retrieve_default_definition_parameters=None, custom_headers=None, raw=False, **operation_config): - """Retrieves the default definition of a function based on the parameters - specified. - - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + self, + resource_group_name, # type: str + job_name, # type: str + function_name, # type: str + function_retrieve_default_definition_parameters=None, # type: Optional["models.FunctionRetrieveDefaultDefinitionParameters"] + **kwargs # type: Any + ): + # type: (...) -> "models.Function" + """Retrieves the default definition of a function based on the parameters specified. + + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str :param function_name: The name of the function. :type function_name: str - :param function_retrieve_default_definition_parameters: Parameters - used to specify the type of function to retrieve the default - definition for. - :type function_retrieve_default_definition_parameters: - ~azure.mgmt.streamanalytics.models.FunctionRetrieveDefaultDefinitionParameters - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: Function or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.streamanalytics.models.Function or - ~msrest.pipeline.ClientRawResponse - :raises: :class:`CloudError` + :param function_retrieve_default_definition_parameters: Parameters used to specify the type of + function to retrieve the default definition for. + :type function_retrieve_default_definition_parameters: ~stream_analytics_management_client.models.FunctionRetrieveDefaultDefinitionParameters + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Function, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Function + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Function"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + # Construct URL - url = self.retrieve_default_definition.metadata['url'] + url = self.retrieve_default_definition.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), 'jobName': self._serialize.url("job_name", job_name, 'str'), - 'functionName': self._serialize.url("function_name", function_name, 'str') + 'functionName': self._serialize.url("function_name", function_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct body + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] if function_retrieve_default_definition_parameters is not None: body_content = self._serialize.body(function_retrieve_default_definition_parameters, 'FunctionRetrieveDefaultDefinitionParameters') else: body_content = None - - # Construct and send request - request = self._client.post(url, query_parameters, header_parameters, body_content) - response = self._client.send(request, stream=False, **operation_config) + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('Function', response) + deserialized = self._deserialize('Function', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, {}) return deserialized - retrieve_default_definition.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}/RetrieveDefaultDefinition'} + retrieve_default_definition.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}/retrieveDefaultDefinition'} # type: ignore diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_inputs_operations.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_inputs_operations.py index b5f001e9c90..cca9eddaed5 100644 --- a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_inputs_operations.py +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_inputs_operations.py @@ -1,561 +1,579 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- +from typing import TYPE_CHECKING +import warnings -import uuid -from msrest.pipeline import ClientRawResponse -from msrestazure.azure_exceptions import CloudError -from msrest.polling import LROPoller, NoPolling -from msrestazure.polling.arm_polling import ARMPolling +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling from .. import models +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar, Union + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] class InputsOperations(object): """InputsOperations operations. - You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute. + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + :ivar models: Alias to model classes used in this operation group. + :type models: ~stream_analytics_management_client.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Client Api Version. Constant value: "2016-03-01". """ models = models def __init__(self, client, config, serializer, deserializer): - self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2016-03-01" - - self.config = config + self._config = config def create_or_replace( - self, resource_group_name, job_name, input_name, if_match=None, if_none_match=None, name=None, properties=None, custom_headers=None, raw=False, **operation_config): - """Creates an input or replaces an already existing input under an - existing streaming job. - - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + self, + resource_group_name, # type: str + job_name, # type: str + input_name, # type: str + input, # type: "models.Input" + if_match=None, # type: Optional[str] + if_none_match=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> "models.Input" + """Creates an input or replaces an already existing input under an existing streaming job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str :param input_name: The name of the input. :type input_name: str - :param if_match: The ETag of the input. Omit this value to always - overwrite the current input. Specify the last-seen ETag value to - prevent accidentally overwriting concurrent changes. + :param input: The definition of the input that will be used to create a new input or replace + the existing one under the streaming job. + :type input: ~stream_analytics_management_client.models.Input + :param if_match: The ETag of the input. Omit this value to always overwrite the current input. + Specify the last-seen ETag value to prevent accidentally overwriting concurrent changes. :type if_match: str - :param if_none_match: Set to '*' to allow a new input to be created, - but to prevent updating an existing input. Other values will result in - a 412 Pre-condition Failed response. + :param if_none_match: Set to '*' to allow a new input to be created, but to prevent updating an + existing input. Other values will result in a 412 Pre-condition Failed response. :type if_none_match: str - :param name: Resource name - :type name: str - :param properties: The properties that are associated with an input. - Required on PUT (CreateOrReplace) requests. - :type properties: ~azure.mgmt.streamanalytics.models.InputProperties - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: Input or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.streamanalytics.models.Input or - ~msrest.pipeline.ClientRawResponse - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Input, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Input + :raises: ~azure.core.exceptions.HttpResponseError """ - input = models.Input(name=name, properties=properties) + cls = kwargs.pop('cls', None) # type: ClsType["models.Input"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" # Construct URL - url = self.create_or_replace.metadata['url'] + url = self.create_or_replace.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), 'jobName': self._serialize.url("job_name", job_name, 'str'), - 'inputName': self._serialize.url("input_name", input_name, 'str') + 'inputName': self._serialize.url("input_name", input_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) + header_parameters = {} # type: Dict[str, Any] if if_match is not None: header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') if if_none_match is not None: header_parameters['If-None-Match'] = self._serialize.header("if_none_match", if_none_match, 'str') - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct body + body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(input, 'Input') - - # Construct and send request - request = self._client.put(url, query_parameters, header_parameters, body_content) - response = self._client.send(request, stream=False, **operation_config) + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200, 201]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - header_dict = {} - deserialized = None + response_headers = {} if response.status_code == 200: - deserialized = self._deserialize('Input', response) - header_dict = { - 'ETag': 'str', - } + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Input', pipeline_response) + if response.status_code == 201: - deserialized = self._deserialize('Input', response) - header_dict = { - 'ETag': 'str', - } + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Input', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - client_raw_response.add_headers(header_dict) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, response_headers) return deserialized - create_or_replace.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/inputs/{inputName}'} + create_or_replace.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/inputs/{inputName}'} # type: ignore def update( - self, resource_group_name, job_name, input_name, if_match=None, name=None, properties=None, custom_headers=None, raw=False, **operation_config): - """Updates an existing input under an existing streaming job. This can be - used to partially update (ie. update one or two properties) an input - without affecting the rest the job or input definition. - - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + self, + resource_group_name, # type: str + job_name, # type: str + input_name, # type: str + input, # type: "models.Input" + if_match=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> "models.Input" + """Updates an existing input under an existing streaming job. This can be used to partially update + (ie. update one or two properties) an input without affecting the rest the job or input + definition. + + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str :param input_name: The name of the input. :type input_name: str - :param if_match: The ETag of the input. Omit this value to always - overwrite the current input. Specify the last-seen ETag value to - prevent accidentally overwriting concurrent changes. + :param input: An Input object. The properties specified here will overwrite the corresponding + properties in the existing input (ie. Those properties will be updated). Any properties that + are set to null here will mean that the corresponding property in the existing input will + remain the same and not change as a result of this PATCH operation. + :type input: ~stream_analytics_management_client.models.Input + :param if_match: The ETag of the input. Omit this value to always overwrite the current input. + Specify the last-seen ETag value to prevent accidentally overwriting concurrent changes. :type if_match: str - :param name: Resource name - :type name: str - :param properties: The properties that are associated with an input. - Required on PUT (CreateOrReplace) requests. - :type properties: ~azure.mgmt.streamanalytics.models.InputProperties - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: Input or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.streamanalytics.models.Input or - ~msrest.pipeline.ClientRawResponse - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Input, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Input + :raises: ~azure.core.exceptions.HttpResponseError """ - input = models.Input(name=name, properties=properties) + cls = kwargs.pop('cls', None) # type: ClsType["models.Input"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" # Construct URL - url = self.update.metadata['url'] + url = self.update.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), 'jobName': self._serialize.url("job_name", job_name, 'str'), - 'inputName': self._serialize.url("input_name", input_name, 'str') + 'inputName': self._serialize.url("input_name", input_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) + header_parameters = {} # type: Dict[str, Any] if if_match is not None: header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct body + body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(input, 'Input') - - # Construct and send request - request = self._client.patch(url, query_parameters, header_parameters, body_content) - response = self._client.send(request, stream=False, **operation_config) + body_content_kwargs['content'] = body_content + request = self._client.patch(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - header_dict = {} - deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('Input', response) - header_dict = { - 'ETag': 'str', - } + response_headers = {} + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Input', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - client_raw_response.add_headers(header_dict) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, response_headers) return deserialized - update.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/inputs/{inputName}'} + update.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/inputs/{inputName}'} # type: ignore def delete( - self, resource_group_name, job_name, input_name, custom_headers=None, raw=False, **operation_config): + self, + resource_group_name, # type: str + job_name, # type: str + input_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> None """Deletes an input from the streaming job. - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str :param input_name: The name of the input. :type input_name: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: None or ClientRawResponse if raw=true - :rtype: None or ~msrest.pipeline.ClientRawResponse - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: None, or the result of cls(response) + :rtype: None + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + # Construct URL - url = self.delete.metadata['url'] + url = self.delete.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), 'jobName': self._serialize.url("job_name", job_name, 'str'), - 'inputName': self._serialize.url("input_name", input_name, 'str') + 'inputName': self._serialize.url("input_name", input_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + request = self._client.delete(url, query_parameters, header_parameters) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200, 204]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - if raw: - client_raw_response = ClientRawResponse(None, response) - return client_raw_response - delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/inputs/{inputName}'} + if cls: + return cls(pipeline_response, None, {}) + + delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/inputs/{inputName}'} # type: ignore def get( - self, resource_group_name, job_name, input_name, custom_headers=None, raw=False, **operation_config): + self, + resource_group_name, # type: str + job_name, # type: str + input_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> "models.Input" """Gets details about the specified input. - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str :param input_name: The name of the input. :type input_name: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: Input or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.streamanalytics.models.Input or - ~msrest.pipeline.ClientRawResponse - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Input, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Input + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Input"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + # Construct URL - url = self.get.metadata['url'] + url = self.get.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), 'jobName': self._serialize.url("job_name", job_name, 'str'), - 'inputName': self._serialize.url("input_name", input_name, 'str') + 'inputName': self._serialize.url("input_name", input_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + request = self._client.get(url, query_parameters, header_parameters) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - header_dict = {} - deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('Input', response) - header_dict = { - 'ETag': 'str', - } + response_headers = {} + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Input', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - client_raw_response.add_headers(header_dict) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, response_headers) return deserialized - get.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/inputs/{inputName}'} + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/inputs/{inputName}'} # type: ignore def list_by_streaming_job( - self, resource_group_name, job_name, select=None, custom_headers=None, raw=False, **operation_config): + self, + resource_group_name, # type: str + job_name, # type: str + select=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> Iterable["models.InputListResult"] """Lists all of the inputs under the specified streaming job. - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str - :param select: The $select OData query parameter. This is a - comma-separated list of structural properties to include in the - response, or "*" to include all properties. By default, all properties - are returned except diagnostics. Currently only accepts '*' as a valid - value. + :param select: The $select OData query parameter. This is a comma-separated list of structural + properties to include in the response, or "\ *" to include all properties. By default, all + properties are returned except diagnostics. Currently only accepts '*\ ' as a valid value. :type select: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: An iterator like instance of Input - :rtype: - ~azure.mgmt.streamanalytics.models.InputPaged[~azure.mgmt.streamanalytics.models.Input] - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either InputListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~stream_analytics_management_client.models.InputListResult] + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["models.InputListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + if not next_link: # Construct URL - url = self.list_by_streaming_job.metadata['url'] + url = self.list_by_streaming_job.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), - 'jobName': self._serialize.url("job_name", job_name, 'str') + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) - # Construct parameters - query_parameters = {} + query_parameters = {} # type: Dict[str, Any] if select is not None: query_parameters['$select'] = self._serialize.query("select", select, 'str') - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + request = self._client.get(url, query_parameters, header_parameters) else: url = next_link - query_parameters = {} - - # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request - request = self._client.get(url, query_parameters, header_parameters) + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) return request - def internal_paging(next_link=None): + def extract_data(pipeline_response): + deserialized = self._deserialize('InputListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): request = prepare_request(next_link) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp - - return response + error = self._deserialize(models.Error, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - # Deserialize response - header_dict = None - if raw: - header_dict = {} - deserialized = models.InputPaged(internal_paging, self._deserialize.dependencies, header_dict) - - return deserialized - list_by_streaming_job.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/inputs'} + return pipeline_response + return ItemPaged( + get_next, extract_data + ) + list_by_streaming_job.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/inputs'} # type: ignore def _test_initial( - self, resource_group_name, job_name, input_name, name=None, properties=None, custom_headers=None, raw=False, **operation_config): - input = None - if name is not None or properties is not None: - input = models.Input(name=name, properties=properties) + self, + resource_group_name, # type: str + job_name, # type: str + input_name, # type: str + input=None, # type: Optional["models.Input"] + **kwargs # type: Any + ): + # type: (...) -> Optional["models.ResourceTestStatus"] + cls = kwargs.pop('cls', None) # type: ClsType[Optional["models.ResourceTestStatus"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" # Construct URL - url = self.test.metadata['url'] + url = self._test_initial.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), 'jobName': self._serialize.url("job_name", job_name, 'str'), - 'inputName': self._serialize.url("input_name", input_name, 'str') + 'inputName': self._serialize.url("input_name", input_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct body + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] if input is not None: body_content = self._serialize.body(input, 'Input') else: body_content = None - - # Construct and send request - request = self._client.post(url, query_parameters, header_parameters, body_content) - response = self._client.send(request, stream=False, **operation_config) + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200, 202]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('ResourceTestStatus', response) + deserialized = self._deserialize('ResourceTestStatus', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, {}) return deserialized - - def test( - self, resource_group_name, job_name, input_name, name=None, properties=None, custom_headers=None, raw=False, polling=True, **operation_config): - """Tests whether an input’s datasource is reachable and usable by the - Azure Stream Analytics service. - - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + _test_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/inputs/{inputName}/test'} # type: ignore + + def begin_test( + self, + resource_group_name, # type: str + job_name, # type: str + input_name, # type: str + input=None, # type: Optional["models.Input"] + **kwargs # type: Any + ): + # type: (...) -> LROPoller["models.ResourceTestStatus"] + """Tests whether an input’s datasource is reachable and usable by the Azure Stream Analytics + service. + + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str :param input_name: The name of the input. :type input_name: str - :param name: Resource name - :type name: str - :param properties: The properties that are associated with an input. - Required on PUT (CreateOrReplace) requests. - :type properties: ~azure.mgmt.streamanalytics.models.InputProperties - :param dict custom_headers: headers that will be added to the request - :param bool raw: The poller return type is ClientRawResponse, the - direct response alongside the deserialized response - :param polling: True for ARMPolling, False for no polling, or a + :param input: If the input specified does not already exist, this parameter must contain the + full input definition intended to be tested. If the input specified already exists, this + parameter can be left null to test the existing input as is or if specified, the properties + specified will overwrite the corresponding properties in the existing input (exactly like a + PATCH operation) and the resulting input will be tested. + :type input: ~stream_analytics_management_client.models.Input + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a polling object for personal polling strategy - :return: An instance of LROPoller that returns ResourceTestStatus or - ClientRawResponse if raw==True - :rtype: - ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.streamanalytics.models.ResourceTestStatus] - or - ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.streamanalytics.models.ResourceTestStatus]] - :raises: :class:`CloudError` + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either ResourceTestStatus or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~stream_analytics_management_client.models.ResourceTestStatus] + :raises ~azure.core.exceptions.HttpResponseError: """ - raw_result = self._test_initial( - resource_group_name=resource_group_name, - job_name=job_name, - input_name=input_name, - name=name, - properties=properties, - custom_headers=custom_headers, - raw=True, - **operation_config + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["models.ResourceTestStatus"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval ) - - def get_long_running_output(response): - deserialized = self._deserialize('ResourceTestStatus', response) - - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response - + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._test_initial( + resource_group_name=resource_group_name, + job_name=job_name, + input_name=input_name, + input=input, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('ResourceTestStatus', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) return deserialized - lro_delay = operation_config.get( - 'long_running_operation_timeout', - self.config.long_running_operation_timeout) - if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'inputName': self._serialize.url("input_name", input_name, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) elif polling is False: polling_method = NoPolling() else: polling_method = polling - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - test.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/inputs/{inputName}/test'} + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_test.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/inputs/{inputName}/test'} # type: ignore diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_operations.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_operations.py index d4acafb7b3e..4869bb8fb7c 100644 --- a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_operations.py +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_operations.py @@ -1,102 +1,110 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- +from typing import TYPE_CHECKING +import warnings -import uuid -from msrest.pipeline import ClientRawResponse -from msrestazure.azure_exceptions import CloudError +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.mgmt.core.exceptions import ARMErrorFormat from .. import models +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] class Operations(object): """Operations operations. - You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute. + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + :ivar models: Alias to model classes used in this operation group. + :type models: ~stream_analytics_management_client.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Client Api Version. Constant value: "2016-03-01". """ models = models def __init__(self, client, config, serializer, deserializer): - self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2016-03-01" - - self.config = config + self._config = config def list( - self, custom_headers=None, raw=False, **operation_config): + self, + **kwargs # type: Any + ): + # type: (...) -> Iterable["models.OperationListResult"] """Lists all of the available Stream Analytics related operations. - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: An iterator like instance of Operation - :rtype: - ~azure.mgmt.streamanalytics.models.OperationPaged[~azure.mgmt.streamanalytics.models.Operation] - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either OperationListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~stream_analytics_management_client.models.OperationListResult] + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["models.OperationListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + if not next_link: # Construct URL - url = self.list.metadata['url'] - + url = self.list.metadata['url'] # type: ignore # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + request = self._client.get(url, query_parameters, header_parameters) else: url = next_link - query_parameters = {} - - # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request - request = self._client.get(url, query_parameters, header_parameters) + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) return request - def internal_paging(next_link=None): + def extract_data(pipeline_response): + deserialized = self._deserialize('OperationListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): request = prepare_request(next_link) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp - - return response + error = self._deserialize(models.Error, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - # Deserialize response - header_dict = None - if raw: - header_dict = {} - deserialized = models.OperationPaged(internal_paging, self._deserialize.dependencies, header_dict) + return pipeline_response - return deserialized - list.metadata = {'url': '/providers/Microsoft.StreamAnalytics/operations'} + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/providers/Microsoft.StreamAnalytics/operations'} # type: ignore diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_outputs_operations.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_outputs_operations.py index 86103185bc5..b5994567012 100644 --- a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_outputs_operations.py +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_outputs_operations.py @@ -1,556 +1,581 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- +from typing import TYPE_CHECKING +import warnings -import uuid -from msrest.pipeline import ClientRawResponse -from msrestazure.azure_exceptions import CloudError -from msrest.polling import LROPoller, NoPolling -from msrestazure.polling.arm_polling import ARMPolling +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling from .. import models +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar, Union + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] class OutputsOperations(object): """OutputsOperations operations. - You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute. + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + :ivar models: Alias to model classes used in this operation group. + :type models: ~stream_analytics_management_client.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Client Api Version. Constant value: "2016-03-01". """ models = models def __init__(self, client, config, serializer, deserializer): - self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2016-03-01" - - self.config = config + self._config = config def create_or_replace( - self, output, resource_group_name, job_name, output_name, if_match=None, if_none_match=None, custom_headers=None, raw=False, **operation_config): - """Creates an output or replaces an already existing output under an - existing streaming job. - - :param output: The definition of the output that will be used to - create a new output or replace the existing one under the streaming - job. - :type output: ~azure.mgmt.streamanalytics.models.Output - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + self, + resource_group_name, # type: str + job_name, # type: str + output_name, # type: str + output, # type: "models.Output" + if_match=None, # type: Optional[str] + if_none_match=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> "models.Output" + """Creates an output or replaces an already existing output under an existing streaming job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str :param output_name: The name of the output. :type output_name: str - :param if_match: The ETag of the output. Omit this value to always - overwrite the current output. Specify the last-seen ETag value to - prevent accidentally overwriting concurrent changes. + :param output: The definition of the output that will be used to create a new output or replace + the existing one under the streaming job. + :type output: ~stream_analytics_management_client.models.Output + :param if_match: The ETag of the output. Omit this value to always overwrite the current + output. Specify the last-seen ETag value to prevent accidentally overwriting concurrent + changes. :type if_match: str - :param if_none_match: Set to '*' to allow a new output to be created, - but to prevent updating an existing output. Other values will result - in a 412 Pre-condition Failed response. + :param if_none_match: Set to '*' to allow a new output to be created, but to prevent updating + an existing output. Other values will result in a 412 Pre-condition Failed response. :type if_none_match: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: Output or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.streamanalytics.models.Output or - ~msrest.pipeline.ClientRawResponse - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Output, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Output + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Output"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + # Construct URL - url = self.create_or_replace.metadata['url'] + url = self.create_or_replace.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), 'jobName': self._serialize.url("job_name", job_name, 'str'), - 'outputName': self._serialize.url("output_name", output_name, 'str') + 'outputName': self._serialize.url("output_name", output_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) + header_parameters = {} # type: Dict[str, Any] if if_match is not None: header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') if if_none_match is not None: header_parameters['If-None-Match'] = self._serialize.header("if_none_match", if_none_match, 'str') - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct body + body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(output, 'Output') - - # Construct and send request - request = self._client.put(url, query_parameters, header_parameters, body_content) - response = self._client.send(request, stream=False, **operation_config) + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200, 201]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - header_dict = {} - deserialized = None + response_headers = {} if response.status_code == 200: - deserialized = self._deserialize('Output', response) - header_dict = { - 'ETag': 'str', - } + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Output', pipeline_response) + if response.status_code == 201: - deserialized = self._deserialize('Output', response) - header_dict = { - 'ETag': 'str', - } + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Output', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - client_raw_response.add_headers(header_dict) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, response_headers) return deserialized - create_or_replace.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/outputs/{outputName}'} + create_or_replace.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/outputs/{outputName}'} # type: ignore def update( - self, output, resource_group_name, job_name, output_name, if_match=None, custom_headers=None, raw=False, **operation_config): - """Updates an existing output under an existing streaming job. This can be - used to partially update (ie. update one or two properties) an output - without affecting the rest the job or output definition. - - :param output: An Output object. The properties specified here will - overwrite the corresponding properties in the existing output (ie. - Those properties will be updated). Any properties that are set to null - here will mean that the corresponding property in the existing output - will remain the same and not change as a result of this PATCH - operation. - :type output: ~azure.mgmt.streamanalytics.models.Output - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + self, + resource_group_name, # type: str + job_name, # type: str + output_name, # type: str + output, # type: "models.Output" + if_match=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> "models.Output" + """Updates an existing output under an existing streaming job. This can be used to partially + update (ie. update one or two properties) an output without affecting the rest the job or + output definition. + + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str :param output_name: The name of the output. :type output_name: str - :param if_match: The ETag of the output. Omit this value to always - overwrite the current output. Specify the last-seen ETag value to - prevent accidentally overwriting concurrent changes. + :param output: An Output object. The properties specified here will overwrite the corresponding + properties in the existing output (ie. Those properties will be updated). Any properties that + are set to null here will mean that the corresponding property in the existing output will + remain the same and not change as a result of this PATCH operation. + :type output: ~stream_analytics_management_client.models.Output + :param if_match: The ETag of the output. Omit this value to always overwrite the current + output. Specify the last-seen ETag value to prevent accidentally overwriting concurrent + changes. :type if_match: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: Output or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.streamanalytics.models.Output or - ~msrest.pipeline.ClientRawResponse - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Output, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Output + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Output"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + # Construct URL - url = self.update.metadata['url'] + url = self.update.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), 'jobName': self._serialize.url("job_name", job_name, 'str'), - 'outputName': self._serialize.url("output_name", output_name, 'str') + 'outputName': self._serialize.url("output_name", output_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) + header_parameters = {} # type: Dict[str, Any] if if_match is not None: header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct body + body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(output, 'Output') - - # Construct and send request - request = self._client.patch(url, query_parameters, header_parameters, body_content) - response = self._client.send(request, stream=False, **operation_config) + body_content_kwargs['content'] = body_content + request = self._client.patch(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - header_dict = {} - deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('Output', response) - header_dict = { - 'ETag': 'str', - } + response_headers = {} + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Output', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - client_raw_response.add_headers(header_dict) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, response_headers) return deserialized - update.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/outputs/{outputName}'} + update.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/outputs/{outputName}'} # type: ignore def delete( - self, resource_group_name, job_name, output_name, custom_headers=None, raw=False, **operation_config): + self, + resource_group_name, # type: str + job_name, # type: str + output_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> None """Deletes an output from the streaming job. - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str :param output_name: The name of the output. :type output_name: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: None or ClientRawResponse if raw=true - :rtype: None or ~msrest.pipeline.ClientRawResponse - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: None, or the result of cls(response) + :rtype: None + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + # Construct URL - url = self.delete.metadata['url'] + url = self.delete.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), 'jobName': self._serialize.url("job_name", job_name, 'str'), - 'outputName': self._serialize.url("output_name", output_name, 'str') + 'outputName': self._serialize.url("output_name", output_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + request = self._client.delete(url, query_parameters, header_parameters) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200, 204]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - if raw: - client_raw_response = ClientRawResponse(None, response) - return client_raw_response - delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/outputs/{outputName}'} + if cls: + return cls(pipeline_response, None, {}) + + delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/outputs/{outputName}'} # type: ignore def get( - self, resource_group_name, job_name, output_name, custom_headers=None, raw=False, **operation_config): + self, + resource_group_name, # type: str + job_name, # type: str + output_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> "models.Output" """Gets details about the specified output. - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str :param output_name: The name of the output. :type output_name: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: Output or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.streamanalytics.models.Output or - ~msrest.pipeline.ClientRawResponse - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Output, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Output + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Output"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + # Construct URL - url = self.get.metadata['url'] + url = self.get.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), 'jobName': self._serialize.url("job_name", job_name, 'str'), - 'outputName': self._serialize.url("output_name", output_name, 'str') + 'outputName': self._serialize.url("output_name", output_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + request = self._client.get(url, query_parameters, header_parameters) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - header_dict = {} - deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('Output', response) - header_dict = { - 'ETag': 'str', - } + response_headers = {} + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Output', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - client_raw_response.add_headers(header_dict) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, response_headers) return deserialized - get.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/outputs/{outputName}'} + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/outputs/{outputName}'} # type: ignore def list_by_streaming_job( - self, resource_group_name, job_name, select=None, custom_headers=None, raw=False, **operation_config): + self, + resource_group_name, # type: str + job_name, # type: str + select=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> Iterable["models.OutputListResult"] """Lists all of the outputs under the specified streaming job. - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str - :param select: The $select OData query parameter. This is a - comma-separated list of structural properties to include in the - response, or "*" to include all properties. By default, all properties - are returned except diagnostics. Currently only accepts '*' as a valid - value. + :param select: The $select OData query parameter. This is a comma-separated list of structural + properties to include in the response, or "\ *" to include all properties. By default, all + properties are returned except diagnostics. Currently only accepts '*\ ' as a valid value. :type select: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: An iterator like instance of Output - :rtype: - ~azure.mgmt.streamanalytics.models.OutputPaged[~azure.mgmt.streamanalytics.models.Output] - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either OutputListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~stream_analytics_management_client.models.OutputListResult] + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["models.OutputListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + if not next_link: # Construct URL - url = self.list_by_streaming_job.metadata['url'] + url = self.list_by_streaming_job.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), - 'jobName': self._serialize.url("job_name", job_name, 'str') + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) - # Construct parameters - query_parameters = {} + query_parameters = {} # type: Dict[str, Any] if select is not None: query_parameters['$select'] = self._serialize.query("select", select, 'str') - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + request = self._client.get(url, query_parameters, header_parameters) else: url = next_link - query_parameters = {} - - # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request - request = self._client.get(url, query_parameters, header_parameters) + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) return request - def internal_paging(next_link=None): + def extract_data(pipeline_response): + deserialized = self._deserialize('OutputListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): request = prepare_request(next_link) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp - - return response + error = self._deserialize(models.Error, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - # Deserialize response - header_dict = None - if raw: - header_dict = {} - deserialized = models.OutputPaged(internal_paging, self._deserialize.dependencies, header_dict) - - return deserialized - list_by_streaming_job.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/outputs'} + return pipeline_response + return ItemPaged( + get_next, extract_data + ) + list_by_streaming_job.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/outputs'} # type: ignore def _test_initial( - self, resource_group_name, job_name, output_name, output=None, custom_headers=None, raw=False, **operation_config): + self, + resource_group_name, # type: str + job_name, # type: str + output_name, # type: str + output=None, # type: Optional["models.Output"] + **kwargs # type: Any + ): + # type: (...) -> Optional["models.ResourceTestStatus"] + cls = kwargs.pop('cls', None) # type: ClsType[Optional["models.ResourceTestStatus"]] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + # Construct URL - url = self.test.metadata['url'] + url = self._test_initial.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), 'jobName': self._serialize.url("job_name", job_name, 'str'), - 'outputName': self._serialize.url("output_name", output_name, 'str') + 'outputName': self._serialize.url("output_name", output_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct body + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] if output is not None: body_content = self._serialize.body(output, 'Output') else: body_content = None - - # Construct and send request - request = self._client.post(url, query_parameters, header_parameters, body_content) - response = self._client.send(request, stream=False, **operation_config) + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200, 202]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('ResourceTestStatus', response) + deserialized = self._deserialize('ResourceTestStatus', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, {}) return deserialized - - def test( - self, resource_group_name, job_name, output_name, output=None, custom_headers=None, raw=False, polling=True, **operation_config): - """Tests whether an output’s datasource is reachable and usable by the - Azure Stream Analytics service. - - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + _test_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/outputs/{outputName}/test'} # type: ignore + + def begin_test( + self, + resource_group_name, # type: str + job_name, # type: str + output_name, # type: str + output=None, # type: Optional["models.Output"] + **kwargs # type: Any + ): + # type: (...) -> LROPoller["models.ResourceTestStatus"] + """Tests whether an output’s datasource is reachable and usable by the Azure Stream Analytics + service. + + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str :param output_name: The name of the output. :type output_name: str - :param output: If the output specified does not already exist, this - parameter must contain the full output definition intended to be - tested. If the output specified already exists, this parameter can be - left null to test the existing output as is or if specified, the - properties specified will overwrite the corresponding properties in - the existing output (exactly like a PATCH operation) and the resulting - output will be tested. - :type output: ~azure.mgmt.streamanalytics.models.Output - :param dict custom_headers: headers that will be added to the request - :param bool raw: The poller return type is ClientRawResponse, the - direct response alongside the deserialized response - :param polling: True for ARMPolling, False for no polling, or a + :param output: If the output specified does not already exist, this parameter must contain the + full output definition intended to be tested. If the output specified already exists, this + parameter can be left null to test the existing output as is or if specified, the properties + specified will overwrite the corresponding properties in the existing output (exactly like a + PATCH operation) and the resulting output will be tested. + :type output: ~stream_analytics_management_client.models.Output + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a polling object for personal polling strategy - :return: An instance of LROPoller that returns ResourceTestStatus or - ClientRawResponse if raw==True - :rtype: - ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.streamanalytics.models.ResourceTestStatus] - or - ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.streamanalytics.models.ResourceTestStatus]] - :raises: :class:`CloudError` + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either ResourceTestStatus or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~stream_analytics_management_client.models.ResourceTestStatus] + :raises ~azure.core.exceptions.HttpResponseError: """ - raw_result = self._test_initial( - resource_group_name=resource_group_name, - job_name=job_name, - output_name=output_name, - output=output, - custom_headers=custom_headers, - raw=True, - **operation_config + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["models.ResourceTestStatus"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval ) - - def get_long_running_output(response): - deserialized = self._deserialize('ResourceTestStatus', response) - - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response - + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._test_initial( + resource_group_name=resource_group_name, + job_name=job_name, + output_name=output_name, + output=output, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('ResourceTestStatus', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) return deserialized - lro_delay = operation_config.get( - 'long_running_operation_timeout', - self.config.long_running_operation_timeout) - if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + 'outputName': self._serialize.url("output_name", output_name, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) elif polling is False: polling_method = NoPolling() else: polling_method = polling - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - test.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/outputs/{outputName}/test'} + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_test.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/outputs/{outputName}/test'} # type: ignore diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_streaming_jobs_operations.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_streaming_jobs_operations.py index 9a5470b794e..d63d8455ee6 100644 --- a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_streaming_jobs_operations.py +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_streaming_jobs_operations.py @@ -1,761 +1,983 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- +from typing import TYPE_CHECKING +import warnings -import uuid -from msrest.pipeline import ClientRawResponse -from msrestazure.azure_exceptions import CloudError -from msrest.polling import LROPoller, NoPolling -from msrestazure.polling.arm_polling import ARMPolling +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling from .. import models +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar, Union + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] class StreamingJobsOperations(object): """StreamingJobsOperations operations. - You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute. + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + :ivar models: Alias to model classes used in this operation group. + :type models: ~stream_analytics_management_client.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Client Api Version. Constant value: "2016-03-01". """ models = models def __init__(self, client, config, serializer, deserializer): - self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2016-03-01" - - self.config = config - + self._config = config def _create_or_replace_initial( - self, streaming_job, resource_group_name, job_name, if_match=None, if_none_match=None, custom_headers=None, raw=False, **operation_config): + self, + resource_group_name, # type: str + job_name, # type: str + streaming_job, # type: "models.StreamingJob" + if_match=None, # type: Optional[str] + if_none_match=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> "models.StreamingJob" + cls = kwargs.pop('cls', None) # type: ClsType["models.StreamingJob"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + # Construct URL - url = self.create_or_replace.metadata['url'] + url = self._create_or_replace_initial.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), - 'jobName': self._serialize.url("job_name", job_name, 'str') + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) + header_parameters = {} # type: Dict[str, Any] if if_match is not None: header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') if if_none_match is not None: header_parameters['If-None-Match'] = self._serialize.header("if_none_match", if_none_match, 'str') - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct body + body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(streaming_job, 'StreamingJob') - - # Construct and send request - request = self._client.put(url, query_parameters, header_parameters, body_content) - response = self._client.send(request, stream=False, **operation_config) + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200, 201]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp - - deserialized = None - header_dict = {} + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + response_headers = {} if response.status_code == 200: - deserialized = self._deserialize('StreamingJob', response) - header_dict = { - 'ETag': 'str', - } + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('StreamingJob', pipeline_response) + if response.status_code == 201: - deserialized = self._deserialize('StreamingJob', response) - header_dict = { - 'ETag': 'str', - } + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('StreamingJob', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - client_raw_response.add_headers(header_dict) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, response_headers) return deserialized - - def create_or_replace( - self, streaming_job, resource_group_name, job_name, if_match=None, if_none_match=None, custom_headers=None, raw=False, polling=True, **operation_config): + _create_or_replace_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}'} # type: ignore + + def begin_create_or_replace( + self, + resource_group_name, # type: str + job_name, # type: str + streaming_job, # type: "models.StreamingJob" + if_match=None, # type: Optional[str] + if_none_match=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> LROPoller["models.StreamingJob"] """Creates a streaming job or replaces an already existing streaming job. - :param streaming_job: The definition of the streaming job that will be - used to create a new streaming job or replace the existing one. - :type streaming_job: ~azure.mgmt.streamanalytics.models.StreamingJob - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str - :param if_match: The ETag of the streaming job. Omit this value to - always overwrite the current record set. Specify the last-seen ETag - value to prevent accidentally overwriting concurrent changes. + :param streaming_job: The definition of the streaming job that will be used to create a new + streaming job or replace the existing one. + :type streaming_job: ~stream_analytics_management_client.models.StreamingJob + :param if_match: The ETag of the streaming job. Omit this value to always overwrite the current + record set. Specify the last-seen ETag value to prevent accidentally overwriting concurrent + changes. :type if_match: str - :param if_none_match: Set to '*' to allow a new streaming job to be - created, but to prevent updating an existing record set. Other values - will result in a 412 Pre-condition Failed response. + :param if_none_match: Set to '*' to allow a new streaming job to be created, but to prevent + updating an existing record set. Other values will result in a 412 Pre-condition Failed + response. :type if_none_match: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: The poller return type is ClientRawResponse, the - direct response alongside the deserialized response - :param polling: True for ARMPolling, False for no polling, or a + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a polling object for personal polling strategy - :return: An instance of LROPoller that returns StreamingJob or - ClientRawResponse if raw==True - :rtype: - ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.streamanalytics.models.StreamingJob] - or - ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.streamanalytics.models.StreamingJob]] - :raises: :class:`CloudError` + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either StreamingJob or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~stream_analytics_management_client.models.StreamingJob] + :raises ~azure.core.exceptions.HttpResponseError: """ - raw_result = self._create_or_replace_initial( - streaming_job=streaming_job, - resource_group_name=resource_group_name, - job_name=job_name, - if_match=if_match, - if_none_match=if_none_match, - custom_headers=custom_headers, - raw=True, - **operation_config + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["models.StreamingJob"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval ) - - def get_long_running_output(response): - header_dict = { - 'ETag': 'str', - } - deserialized = self._deserialize('StreamingJob', response) - - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - client_raw_response.add_headers(header_dict) - return client_raw_response - + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_replace_initial( + resource_group_name=resource_group_name, + job_name=job_name, + streaming_job=streaming_job, + if_match=if_match, + if_none_match=if_none_match, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + response_headers = {} + response = pipeline_response.http_response + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('StreamingJob', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, response_headers) return deserialized - lro_delay = operation_config.get( - 'long_running_operation_timeout', - self.config.long_running_operation_timeout) - if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) elif polling is False: polling_method = NoPolling() else: polling_method = polling - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - create_or_replace.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}'} + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_create_or_replace.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}'} # type: ignore def update( - self, streaming_job, resource_group_name, job_name, if_match=None, custom_headers=None, raw=False, **operation_config): - """Updates an existing streaming job. This can be used to partially update - (ie. update one or two properties) a streaming job without affecting - the rest the job definition. - - :param streaming_job: A streaming job object. The properties specified - here will overwrite the corresponding properties in the existing - streaming job (ie. Those properties will be updated). Any properties - that are set to null here will mean that the corresponding property in - the existing input will remain the same and not change as a result of - this PATCH operation. - :type streaming_job: ~azure.mgmt.streamanalytics.models.StreamingJob - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + self, + resource_group_name, # type: str + job_name, # type: str + streaming_job, # type: "models.StreamingJob" + if_match=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> "models.StreamingJob" + """Updates an existing streaming job. This can be used to partially update (ie. update one or two + properties) a streaming job without affecting the rest the job definition. + + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str - :param if_match: The ETag of the streaming job. Omit this value to - always overwrite the current record set. Specify the last-seen ETag - value to prevent accidentally overwriting concurrent changes. + :param streaming_job: A streaming job object. The properties specified here will overwrite the + corresponding properties in the existing streaming job (ie. Those properties will be updated). + Any properties that are set to null here will mean that the corresponding property in the + existing input will remain the same and not change as a result of this PATCH operation. + :type streaming_job: ~stream_analytics_management_client.models.StreamingJob + :param if_match: The ETag of the streaming job. Omit this value to always overwrite the current + record set. Specify the last-seen ETag value to prevent accidentally overwriting concurrent + changes. :type if_match: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: StreamingJob or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.streamanalytics.models.StreamingJob or - ~msrest.pipeline.ClientRawResponse - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: StreamingJob, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.StreamingJob + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["models.StreamingJob"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + # Construct URL - url = self.update.metadata['url'] + url = self.update.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), - 'jobName': self._serialize.url("job_name", job_name, 'str') + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) + header_parameters = {} # type: Dict[str, Any] if if_match is not None: header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct body + body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(streaming_job, 'StreamingJob') - - # Construct and send request - request = self._client.patch(url, query_parameters, header_parameters, body_content) - response = self._client.send(request, stream=False, **operation_config) + body_content_kwargs['content'] = body_content + request = self._client.patch(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - header_dict = {} - deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('StreamingJob', response) - header_dict = { - 'ETag': 'str', - } + response_headers = {} + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('StreamingJob', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - client_raw_response.add_headers(header_dict) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, response_headers) return deserialized - update.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}'} - + update.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}'} # type: ignore def _delete_initial( - self, resource_group_name, job_name, custom_headers=None, raw=False, **operation_config): + self, + resource_group_name, # type: str + job_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + # Construct URL - url = self.delete.metadata['url'] + url = self._delete_initial.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), - 'jobName': self._serialize.url("job_name", job_name, 'str') + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + request = self._client.delete(url, query_parameters, header_parameters) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200, 202, 204]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp - - if raw: - client_raw_response = ClientRawResponse(None, response) - return client_raw_response - - def delete( - self, resource_group_name, job_name, custom_headers=None, raw=False, polling=True, **operation_config): + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}'} # type: ignore + + def begin_delete( + self, + resource_group_name, # type: str + job_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] """Deletes a streaming job. - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: The poller return type is ClientRawResponse, the - direct response alongside the deserialized response - :param polling: True for ARMPolling, False for no polling, or a + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a polling object for personal polling strategy - :return: An instance of LROPoller that returns None or - ClientRawResponse if raw==True - :rtype: ~msrestazure.azure_operation.AzureOperationPoller[None] or - ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[None]] - :raises: :class:`CloudError` + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: """ - raw_result = self._delete_initial( - resource_group_name=resource_group_name, - job_name=job_name, - custom_headers=custom_headers, - raw=True, - **operation_config + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + job_name=job_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) - def get_long_running_output(response): - if raw: - client_raw_response = ClientRawResponse(None, response) - return client_raw_response + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } - lro_delay = operation_config.get( - 'long_running_operation_timeout', - self.config.long_running_operation_timeout) - if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) elif polling is False: polling_method = NoPolling() else: polling_method = polling - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}'} + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}'} # type: ignore def get( - self, resource_group_name, job_name, expand=None, custom_headers=None, raw=False, **operation_config): + self, + resource_group_name, # type: str + job_name, # type: str + expand=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> "models.StreamingJob" """Gets details about the specified streaming job. - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str - :param expand: The $expand OData query parameter. This is a - comma-separated list of additional streaming job properties to include - in the response, beyond the default set returned when this parameter - is absent. The default set is all streaming job properties other than - 'inputs', 'transformation', 'outputs', and 'functions'. + :param expand: The $expand OData query parameter. This is a comma-separated list of additional + streaming job properties to include in the response, beyond the default set returned when this + parameter is absent. The default set is all streaming job properties other than 'inputs', + 'transformation', 'outputs', and 'functions'. :type expand: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: StreamingJob or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.streamanalytics.models.StreamingJob or - ~msrest.pipeline.ClientRawResponse - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: StreamingJob, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.StreamingJob + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["models.StreamingJob"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + # Construct URL - url = self.get.metadata['url'] + url = self.get.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), - 'jobName': self._serialize.url("job_name", job_name, 'str') + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} + query_parameters = {} # type: Dict[str, Any] if expand is not None: query_parameters['$expand'] = self._serialize.query("expand", expand, 'str') - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + request = self._client.get(url, query_parameters, header_parameters) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - header_dict = {} - deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('StreamingJob', response) - header_dict = { - 'ETag': 'str', - } + response_headers = {} + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('StreamingJob', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - client_raw_response.add_headers(header_dict) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, response_headers) return deserialized - get.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}'} + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}'} # type: ignore def list_by_resource_group( - self, resource_group_name, expand=None, custom_headers=None, raw=False, **operation_config): + self, + resource_group_name, # type: str + expand=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> Iterable["models.StreamingJobListResult"] """Lists all of the streaming jobs in the specified resource group. - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str - :param expand: The $expand OData query parameter. This is a - comma-separated list of additional streaming job properties to include - in the response, beyond the default set returned when this parameter - is absent. The default set is all streaming job properties other than - 'inputs', 'transformation', 'outputs', and 'functions'. + :param expand: The $expand OData query parameter. This is a comma-separated list of additional + streaming job properties to include in the response, beyond the default set returned when this + parameter is absent. The default set is all streaming job properties other than 'inputs', + 'transformation', 'outputs', and 'functions'. :type expand: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: An iterator like instance of StreamingJob - :rtype: - ~azure.mgmt.streamanalytics.models.StreamingJobPaged[~azure.mgmt.streamanalytics.models.StreamingJob] - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either StreamingJobListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~stream_analytics_management_client.models.StreamingJobListResult] + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["models.StreamingJobListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + if not next_link: # Construct URL - url = self.list_by_resource_group.metadata['url'] + url = self.list_by_resource_group.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str') + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), } url = self._client.format_url(url, **path_format_arguments) - # Construct parameters - query_parameters = {} + query_parameters = {} # type: Dict[str, Any] if expand is not None: query_parameters['$expand'] = self._serialize.query("expand", expand, 'str') - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + request = self._client.get(url, query_parameters, header_parameters) else: url = next_link - query_parameters = {} - - # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request - request = self._client.get(url, query_parameters, header_parameters) + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) return request - def internal_paging(next_link=None): + def extract_data(pipeline_response): + deserialized = self._deserialize('StreamingJobListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): request = prepare_request(next_link) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + error = self._deserialize(models.Error, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - return response + return pipeline_response - # Deserialize response - header_dict = None - if raw: - header_dict = {} - deserialized = models.StreamingJobPaged(internal_paging, self._deserialize.dependencies, header_dict) - - return deserialized - list_by_resource_group.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs'} + return ItemPaged( + get_next, extract_data + ) + list_by_resource_group.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs'} # type: ignore def list( - self, expand=None, custom_headers=None, raw=False, **operation_config): + self, + expand=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> Iterable["models.StreamingJobListResult"] """Lists all of the streaming jobs in the given subscription. - :param expand: The $expand OData query parameter. This is a - comma-separated list of additional streaming job properties to include - in the response, beyond the default set returned when this parameter - is absent. The default set is all streaming job properties other than - 'inputs', 'transformation', 'outputs', and 'functions'. + :param expand: The $expand OData query parameter. This is a comma-separated list of additional + streaming job properties to include in the response, beyond the default set returned when this + parameter is absent. The default set is all streaming job properties other than 'inputs', + 'transformation', 'outputs', and 'functions'. :type expand: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: An iterator like instance of StreamingJob - :rtype: - ~azure.mgmt.streamanalytics.models.StreamingJobPaged[~azure.mgmt.streamanalytics.models.StreamingJob] - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either StreamingJobListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~stream_analytics_management_client.models.StreamingJobListResult] + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["models.StreamingJobListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + if not next_link: # Construct URL - url = self.list.metadata['url'] + url = self.list.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } url = self._client.format_url(url, **path_format_arguments) - # Construct parameters - query_parameters = {} + query_parameters = {} # type: Dict[str, Any] if expand is not None: query_parameters['$expand'] = self._serialize.query("expand", expand, 'str') - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + request = self._client.get(url, query_parameters, header_parameters) else: url = next_link - query_parameters = {} - - # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request - request = self._client.get(url, query_parameters, header_parameters) + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) return request - def internal_paging(next_link=None): + def extract_data(pipeline_response): + deserialized = self._deserialize('StreamingJobListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): request = prepare_request(next_link) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp - - return response + error = self._deserialize(models.Error, response) + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - # Deserialize response - header_dict = None - if raw: - header_dict = {} - deserialized = models.StreamingJobPaged(internal_paging, self._deserialize.dependencies, header_dict) - - return deserialized - list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.StreamAnalytics/streamingjobs'} + return pipeline_response + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.StreamAnalytics/streamingjobs'} # type: ignore def _start_initial( - self, resource_group_name, job_name, output_start_mode=None, output_start_time=None, custom_headers=None, raw=False, **operation_config): - start_job_parameters = None - if output_start_mode is not None or output_start_time is not None: - start_job_parameters = models.StartStreamingJobParameters(output_start_mode=output_start_mode, output_start_time=output_start_time) + self, + resource_group_name, # type: str + job_name, # type: str + start_job_parameters=None, # type: Optional["models.StartStreamingJobParameters"] + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" # Construct URL - url = self.start.metadata['url'] + url = self._start_initial.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), - 'jobName': self._serialize.url("job_name", job_name, 'str') + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct body + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] if start_job_parameters is not None: body_content = self._serialize.body(start_job_parameters, 'StartStreamingJobParameters') else: body_content = None - - # Construct and send request - request = self._client.post(url, query_parameters, header_parameters, body_content) - response = self._client.send(request, stream=False, **operation_config) + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200, 202]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp - - if raw: - client_raw_response = ClientRawResponse(None, response) - return client_raw_response - - def start( - self, resource_group_name, job_name, output_start_mode=None, output_start_time=None, custom_headers=None, raw=False, polling=True, **operation_config): - """Starts a streaming job. Once a job is started it will start processing - input events and produce output. - - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _start_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/start'} # type: ignore + + def begin_start( + self, + resource_group_name, # type: str + job_name, # type: str + start_job_parameters=None, # type: Optional["models.StartStreamingJobParameters"] + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """Starts a streaming job. Once a job is started it will start processing input events and produce + output. + + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str - :param output_start_mode: Value may be JobStartTime, CustomTime, or - LastOutputEventTime to indicate whether the starting point of the - output event stream should start whenever the job is started, start at - a custom user time stamp specified via the outputStartTime property, - or start from the last event output time. Possible values include: - 'JobStartTime', 'CustomTime', 'LastOutputEventTime' - :type output_start_mode: str or - ~azure.mgmt.streamanalytics.models.OutputStartMode - :param output_start_time: Value is either an ISO-8601 formatted time - stamp that indicates the starting point of the output event stream, or - null to indicate that the output event stream will start whenever the - streaming job is started. This property must have a value if - outputStartMode is set to CustomTime. - :type output_start_time: datetime - :param dict custom_headers: headers that will be added to the request - :param bool raw: The poller return type is ClientRawResponse, the - direct response alongside the deserialized response - :param polling: True for ARMPolling, False for no polling, or a + :param start_job_parameters: Parameters applicable to a start streaming job operation. + :type start_job_parameters: ~stream_analytics_management_client.models.StartStreamingJobParameters + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a polling object for personal polling strategy - :return: An instance of LROPoller that returns None or - ClientRawResponse if raw==True - :rtype: ~msrestazure.azure_operation.AzureOperationPoller[None] or - ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[None]] - :raises: :class:`CloudError` + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: """ - raw_result = self._start_initial( - resource_group_name=resource_group_name, - job_name=job_name, - output_start_mode=output_start_mode, - output_start_time=output_start_time, - custom_headers=custom_headers, - raw=True, - **operation_config + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._start_initial( + resource_group_name=resource_group_name, + job_name=job_name, + start_job_parameters=start_job_parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) - def get_long_running_output(response): - if raw: - client_raw_response = ClientRawResponse(None, response) - return client_raw_response + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } - lro_delay = operation_config.get( - 'long_running_operation_timeout', - self.config.long_running_operation_timeout) - if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) elif polling is False: polling_method = NoPolling() else: polling_method = polling - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - start.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/start'} - + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_start.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/start'} # type: ignore def _stop_initial( - self, resource_group_name, job_name, custom_headers=None, raw=False, **operation_config): + self, + resource_group_name, # type: str + job_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + # Construct URL - url = self.stop.metadata['url'] + url = self._stop_initial.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), - 'jobName': self._serialize.url("job_name", job_name, 'str') + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + request = self._client.post(url, query_parameters, header_parameters) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200, 202]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp - - if raw: - client_raw_response = ClientRawResponse(None, response) - return client_raw_response - - def stop( - self, resource_group_name, job_name, custom_headers=None, raw=False, polling=True, **operation_config): - """Stops a running streaming job. This will cause a running streaming job - to stop processing input events and producing output. - - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _stop_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/stop'} # type: ignore + + def begin_stop( + self, + resource_group_name, # type: str + job_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """Stops a running streaming job. This will cause a running streaming job to stop processing input + events and producing output. + + :param resource_group_name: The name of the resource group. The name is case insensitive. + :type resource_group_name: str + :param job_name: The name of the streaming job. + :type job_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._stop_initial( + resource_group_name=resource_group_name, + job_name=job_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_stop.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/stop'} # type: ignore + + def _scale_initial( + self, + resource_group_name, # type: str + job_name, # type: str + scale_job_parameters=None, # type: Optional["models.ScaleStreamingJobParameters"] + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._scale_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if scale_job_parameters is not None: + body_content = self._serialize.body(scale_job_parameters, 'ScaleStreamingJobParameters') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _scale_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/scale'} # type: ignore + + def begin_scale( + self, + resource_group_name, # type: str + job_name, # type: str + scale_job_parameters=None, # type: Optional["models.ScaleStreamingJobParameters"] + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """Scales a streaming job when the job is running. + + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: The poller return type is ClientRawResponse, the - direct response alongside the deserialized response - :param polling: True for ARMPolling, False for no polling, or a + :param scale_job_parameters: Parameters applicable to a scale streaming job operation. + :type scale_job_parameters: ~stream_analytics_management_client.models.ScaleStreamingJobParameters + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a polling object for personal polling strategy - :return: An instance of LROPoller that returns None or - ClientRawResponse if raw==True - :rtype: ~msrestazure.azure_operation.AzureOperationPoller[None] or - ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[None]] - :raises: :class:`CloudError` + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: """ - raw_result = self._stop_initial( - resource_group_name=resource_group_name, - job_name=job_name, - custom_headers=custom_headers, - raw=True, - **operation_config + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._scale_initial( + resource_group_name=resource_group_name, + job_name=job_name, + scale_job_parameters=scale_job_parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) - def get_long_running_output(response): - if raw: - client_raw_response = ClientRawResponse(None, response) - return client_raw_response + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'jobName': self._serialize.url("job_name", job_name, 'str'), + } - lro_delay = operation_config.get( - 'long_running_operation_timeout', - self.config.long_running_operation_timeout) - if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) elif polling is False: polling_method = NoPolling() else: polling_method = polling - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - stop.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/stop'} + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_scale.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/scale'} # type: ignore diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_subscriptions_operations.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_subscriptions_operations.py index e76faf64074..7e746eb9e43 100644 --- a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_subscriptions_operations.py +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_subscriptions_operations.py @@ -1,103 +1,103 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- +from typing import TYPE_CHECKING +import warnings -import uuid -from msrest.pipeline import ClientRawResponse -from msrestazure.azure_exceptions import CloudError +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.mgmt.core.exceptions import ARMErrorFormat from .. import models +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Optional, TypeVar + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] class SubscriptionsOperations(object): """SubscriptionsOperations operations. - You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute. + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + :ivar models: Alias to model classes used in this operation group. + :type models: ~stream_analytics_management_client.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Client Api Version. Constant value: "2016-03-01". """ models = models def __init__(self, client, config, serializer, deserializer): - self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2016-03-01" - - self.config = config + self._config = config def list_quotas( - self, location, custom_headers=None, raw=False, **operation_config): - """Retrieves the subscription's current quota information in a particular - region. - - :param location: The region in which to retrieve the subscription's - quota information. You can find out which regions Azure Stream - Analytics is supported in here: - https://azure.microsoft.com/en-us/regions/ + self, + location, # type: str + **kwargs # type: Any + ): + # type: (...) -> "models.SubscriptionQuotasListResult" + """Retrieves the subscription's current quota information in a particular region. + + :param location: The region in which to retrieve the subscription's quota information. You can + find out which regions Azure Stream Analytics is supported in here: + https://azure.microsoft.com/en-us/regions/. :type location: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: SubscriptionQuotasListResult or ClientRawResponse if raw=true - :rtype: - ~azure.mgmt.streamanalytics.models.SubscriptionQuotasListResult or - ~msrest.pipeline.ClientRawResponse - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: SubscriptionQuotasListResult, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.SubscriptionQuotasListResult + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["models.SubscriptionQuotasListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + # Construct URL - url = self.list_quotas.metadata['url'] + url = self.list_quotas.metadata['url'] # type: ignore path_format_arguments = { 'location': self._serialize.url("location", location, 'str'), - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + request = self._client.get(url, query_parameters, header_parameters) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('SubscriptionQuotasListResult', response) + deserialized = self._deserialize('SubscriptionQuotasListResult', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, {}) return deserialized - list_quotas.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.StreamAnalytics/locations/{location}/quotas'} + list_quotas.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.StreamAnalytics/locations/{location}/quotas'} # type: ignore diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_transformations_operations.py b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_transformations_operations.py index aab8f9570be..54287b5b6fa 100644 --- a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_transformations_operations.py +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/operations/_transformations_operations.py @@ -1,301 +1,293 @@ # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# +# Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. -# Changes may cause incorrect behavior and will be lost if the code is -# regenerated. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- +from typing import TYPE_CHECKING +import warnings -import uuid -from msrest.pipeline import ClientRawResponse -from msrestazure.azure_exceptions import CloudError +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.mgmt.core.exceptions import ARMErrorFormat from .. import models +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Optional, TypeVar, Union + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] class TransformationsOperations(object): """TransformationsOperations operations. - You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute. + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + :ivar models: Alias to model classes used in this operation group. + :type models: ~stream_analytics_management_client.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Client Api Version. Constant value: "2016-03-01". """ models = models def __init__(self, client, config, serializer, deserializer): - self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2016-03-01" - - self.config = config + self._config = config def create_or_replace( - self, transformation, resource_group_name, job_name, transformation_name, if_match=None, if_none_match=None, custom_headers=None, raw=False, **operation_config): - """Creates a transformation or replaces an already existing transformation - under an existing streaming job. - - :param transformation: The definition of the transformation that will - be used to create a new transformation or replace the existing one - under the streaming job. - :type transformation: - ~azure.mgmt.streamanalytics.models.Transformation - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + self, + resource_group_name, # type: str + job_name, # type: str + transformation_name, # type: str + transformation, # type: "models.Transformation" + if_match=None, # type: Optional[str] + if_none_match=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> "models.Transformation" + """Creates a transformation or replaces an already existing transformation under an existing + streaming job. + + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str :param transformation_name: The name of the transformation. :type transformation_name: str - :param if_match: The ETag of the transformation. Omit this value to - always overwrite the current transformation. Specify the last-seen - ETag value to prevent accidentally overwriting concurrent changes. + :param transformation: The definition of the transformation that will be used to create a new + transformation or replace the existing one under the streaming job. + :type transformation: ~stream_analytics_management_client.models.Transformation + :param if_match: The ETag of the transformation. Omit this value to always overwrite the + current transformation. Specify the last-seen ETag value to prevent accidentally overwriting + concurrent changes. :type if_match: str - :param if_none_match: Set to '*' to allow a new transformation to be - created, but to prevent updating an existing transformation. Other - values will result in a 412 Pre-condition Failed response. + :param if_none_match: Set to '*' to allow a new transformation to be created, but to prevent + updating an existing transformation. Other values will result in a 412 Pre-condition Failed + response. :type if_none_match: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: Transformation or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.streamanalytics.models.Transformation or - ~msrest.pipeline.ClientRawResponse - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Transformation, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Transformation + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Transformation"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + # Construct URL - url = self.create_or_replace.metadata['url'] + url = self.create_or_replace.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), 'jobName': self._serialize.url("job_name", job_name, 'str'), - 'transformationName': self._serialize.url("transformation_name", transformation_name, 'str') + 'transformationName': self._serialize.url("transformation_name", transformation_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) + header_parameters = {} # type: Dict[str, Any] if if_match is not None: header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') if if_none_match is not None: header_parameters['If-None-Match'] = self._serialize.header("if_none_match", if_none_match, 'str') - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct body + body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(transformation, 'Transformation') - - # Construct and send request - request = self._client.put(url, query_parameters, header_parameters, body_content) - response = self._client.send(request, stream=False, **operation_config) + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200, 201]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - header_dict = {} - deserialized = None + response_headers = {} if response.status_code == 200: - deserialized = self._deserialize('Transformation', response) - header_dict = { - 'ETag': 'str', - } + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Transformation', pipeline_response) + if response.status_code == 201: - deserialized = self._deserialize('Transformation', response) - header_dict = { - 'ETag': 'str', - } + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Transformation', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - client_raw_response.add_headers(header_dict) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, response_headers) return deserialized - create_or_replace.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/transformations/{transformationName}'} + create_or_replace.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/transformations/{transformationName}'} # type: ignore def update( - self, transformation, resource_group_name, job_name, transformation_name, if_match=None, custom_headers=None, raw=False, **operation_config): - """Updates an existing transformation under an existing streaming job. - This can be used to partially update (ie. update one or two properties) - a transformation without affecting the rest the job or transformation - definition. - - :param transformation: A Transformation object. The properties - specified here will overwrite the corresponding properties in the - existing transformation (ie. Those properties will be updated). Any - properties that are set to null here will mean that the corresponding - property in the existing transformation will remain the same and not - change as a result of this PATCH operation. - :type transformation: - ~azure.mgmt.streamanalytics.models.Transformation - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + self, + resource_group_name, # type: str + job_name, # type: str + transformation_name, # type: str + transformation, # type: "models.Transformation" + if_match=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> "models.Transformation" + """Updates an existing transformation under an existing streaming job. This can be used to + partially update (ie. update one or two properties) a transformation without affecting the rest + the job or transformation definition. + + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str :param transformation_name: The name of the transformation. :type transformation_name: str - :param if_match: The ETag of the transformation. Omit this value to - always overwrite the current transformation. Specify the last-seen - ETag value to prevent accidentally overwriting concurrent changes. + :param transformation: A Transformation object. The properties specified here will overwrite + the corresponding properties in the existing transformation (ie. Those properties will be + updated). Any properties that are set to null here will mean that the corresponding property in + the existing transformation will remain the same and not change as a result of this PATCH + operation. + :type transformation: ~stream_analytics_management_client.models.Transformation + :param if_match: The ETag of the transformation. Omit this value to always overwrite the + current transformation. Specify the last-seen ETag value to prevent accidentally overwriting + concurrent changes. :type if_match: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: Transformation or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.streamanalytics.models.Transformation or - ~msrest.pipeline.ClientRawResponse - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Transformation, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Transformation + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Transformation"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + # Construct URL - url = self.update.metadata['url'] + url = self.update.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), 'jobName': self._serialize.url("job_name", job_name, 'str'), - 'transformationName': self._serialize.url("transformation_name", transformation_name, 'str') + 'transformationName': self._serialize.url("transformation_name", transformation_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - header_parameters['Content-Type'] = 'application/json; charset=utf-8' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) + header_parameters = {} # type: Dict[str, Any] if if_match is not None: header_parameters['If-Match'] = self._serialize.header("if_match", if_match, 'str') - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct body + body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(transformation, 'Transformation') - - # Construct and send request - request = self._client.patch(url, query_parameters, header_parameters, body_content) - response = self._client.send(request, stream=False, **operation_config) + body_content_kwargs['content'] = body_content + request = self._client.patch(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - header_dict = {} - deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('Transformation', response) - header_dict = { - 'ETag': 'str', - } + response_headers = {} + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Transformation', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - client_raw_response.add_headers(header_dict) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, response_headers) return deserialized - update.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/transformations/{transformationName}'} + update.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/transformations/{transformationName}'} # type: ignore def get( - self, resource_group_name, job_name, transformation_name, custom_headers=None, raw=False, **operation_config): + self, + resource_group_name, # type: str + job_name, # type: str + transformation_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> "models.Transformation" """Gets details about the specified transformation. - :param resource_group_name: The name of the resource group that - contains the resource. You can obtain this value from the Azure - Resource Manager API or the portal. + :param resource_group_name: The name of the resource group. The name is case insensitive. :type resource_group_name: str :param job_name: The name of the streaming job. :type job_name: str :param transformation_name: The name of the transformation. :type transformation_name: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: returns the direct response alongside the - deserialized response - :param operation_config: :ref:`Operation configuration - overrides`. - :return: Transformation or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.streamanalytics.models.Transformation or - ~msrest.pipeline.ClientRawResponse - :raises: :class:`CloudError` + :keyword callable cls: A custom type or function that will be passed the direct response + :return: Transformation, or the result of cls(response) + :rtype: ~stream_analytics_management_client.models.Transformation + :raises: ~azure.core.exceptions.HttpResponseError """ + cls = kwargs.pop('cls', None) # type: ClsType["models.Transformation"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-03-01" + accept = "application/json" + # Construct URL - url = self.get.metadata['url'] + url = self.get.metadata['url'] # type: ignore path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), 'jobName': self._serialize.url("job_name", job_name, 'str'), - 'transformationName': self._serialize.url("transformation_name", transformation_name, 'str') + 'transformationName': self._serialize.url("transformation_name", transformation_name, 'str'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + request = self._client.get(url, query_parameters, header_parameters) - response = self._client.send(request, stream=False, **operation_config) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response if response.status_code not in [200]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp + map_error(status_code=response.status_code, response=response, error_map=error_map) + error = self._deserialize(models.Error, response) + raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - header_dict = {} - deserialized = None - if response.status_code == 200: - deserialized = self._deserialize('Transformation', response) - header_dict = { - 'ETag': 'str', - } + response_headers = {} + response_headers['ETag']=self._deserialize('str', response.headers.get('ETag')) + deserialized = self._deserialize('Transformation', pipeline_response) - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - client_raw_response.add_headers(header_dict) - return client_raw_response + if cls: + return cls(pipeline_response, deserialized, response_headers) return deserialized - get.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/transformations/{transformationName}'} + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/transformations/{transformationName}'} # type: ignore diff --git a/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/py.typed b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/py.typed new file mode 100644 index 00000000000..e5aff4f83af --- /dev/null +++ b/src/stream-analytics/azext_stream_analytics/vendored_sdks/streamanalytics/py.typed @@ -0,0 +1 @@ +# Marker file for PEP 561. \ No newline at end of file diff --git a/src/stream-analytics/setup.cfg b/src/stream-analytics/setup.cfg index 3c6e79cf31d..2fdd96e5d39 100644 --- a/src/stream-analytics/setup.cfg +++ b/src/stream-analytics/setup.cfg @@ -1,2 +1 @@ -[bdist_wheel] -universal=1 +#setup.cfg \ No newline at end of file diff --git a/src/stream-analytics/setup.py b/src/stream-analytics/setup.py index 9dd1b6468e3..3f02e14d2fb 100644 --- a/src/stream-analytics/setup.py +++ b/src/stream-analytics/setup.py @@ -8,15 +8,13 @@ from codecs import open from setuptools import setup, find_packages -try: - from azure_bdist_wheel import cmdclass -except ImportError: - from distutils import log as logger - logger.warn("Wheel is not available, disabling bdist_wheel hook") -# TODO: Confirm this is the right version number you want and it matches your # HISTORY.rst entry. -VERSION = '0.1.0' +VERSION = '0.1.1' +try: + from azext_stream_analytics.manual.version import VERSION +except ImportError: + pass # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers @@ -26,16 +24,19 @@ 'Intended Audience :: System Administrators', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'License :: OSI Approved :: MIT License', ] -# TODO: Add any additional SDK dependencies here DEPENDENCIES = [] +try: + from azext_stream_analytics.manual.dependency import DEPENDENCIES +except ImportError: + pass + with open('README.md', 'r', encoding='utf-8') as f: README = f.read() with open('HISTORY.rst', 'r', encoding='utf-8') as f: @@ -44,8 +45,7 @@ setup( name='stream-analytics', version=VERSION, - description='Microsoft Azure Command-Line Tools stream-analytics Extension', - # TODO: Update author and email, if applicable + description='Microsoft Azure Command-Line Tools StreamAnalyticsManagementClient Extension', author='Microsoft Corporation', author_email='azpycli@microsoft.com', url='https://github.com/Azure/azure-cli-extensions/tree/master/src/stream-analytics', diff --git a/src/support/azext_support/tests/latest/test_support_scenario.py b/src/support/azext_support/tests/latest/test_support_scenario.py index f90b28612da..fb70ea682da 100644 --- a/src/support/azext_support/tests/latest/test_support_scenario.py +++ b/src/support/azext_support/tests/latest/test_support_scenario.py @@ -10,7 +10,7 @@ from azure.cli.core.commands.client_factory import get_subscription_id from azure.cli.testsdk import ScenarioTest -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse class SupportScenarioTest(ScenarioTest): diff --git a/src/virtual-wan/HISTORY.rst b/src/virtual-wan/HISTORY.rst index 3a740d1093c..9a52aaec15f 100644 --- a/src/virtual-wan/HISTORY.rst +++ b/src/virtual-wan/HISTORY.rst @@ -3,6 +3,14 @@ Release History =============== +0.2.11 +++++++ +* add new command group: `az network vpn-gateway connection vpn-site-link-conn`. +* add new command group: `az network vpn-gateway connection vpn-site-link-conn ipsec-policy`. +* add new command group: `az network vpn-site link`. +* `az network vpn-gateway connection`: support new parameters `--vpn-site-link` and `--with-link`. +* `az network vpn-site`: support new parameter `--with-link`. + 0.2.10 ++++++ * add new command group: `az network vhub bgpconnection`. diff --git a/src/virtual-wan/azext_vwan/_help.py b/src/virtual-wan/azext_vwan/_help.py index 9c86654ce88..40481cfa1cb 100644 --- a/src/virtual-wan/azext_vwan/_help.py +++ b/src/virtual-wan/azext_vwan/_help.py @@ -411,6 +411,74 @@ type: command short-summary: Remove an IPSec policy from a site-to-site VPN gateway connection. """ + +helps['network vpn-gateway connection vpn-site-link-conn'] = """ + type: group + short-summary: Manage site-to-site VPN gateway connection VPN site link connection. +""" + +helps['network vpn-gateway connection vpn-site-link-conn add'] = """ + type: command + short-summary: Add a VPN site link connection to a site-to-site VPN gateway connection. + examples: + - name: Add a VPN site link connection to site-to-site VPN gateway connection + text: | + az network vpn-gateway connection vpn-site-link-conn add -g MyRG --connection-name MyConnection --gateway-name MyGateway -n MyVPNSiteLinkConn \ +--vpn-site-link /subscriptions/MySub/resourceGroups/MyRG/providers/Microsoft.Network/vpnSites/MyVPNSite/vpnSiteLinks/vpnsitelink \ +--vpn-connection-protocol-type IKEv2 +""" + +helps['network vpn-gateway connection vpn-site-link-conn list'] = """ + type: command + short-summary: List site-to-site VPN gateway connection VPN site link connection. + examples: + - name: List VPN site link connections on site-to-site VPN gateway connection + text: | + az network vpn-gateway connection vpn-site-link-conn list -g MyRG --connection-name MyConnection --gateway-name MyGateway +""" + +helps['network vpn-gateway connection vpn-site-link-conn remove'] = """ + type: command + short-summary: Remove a VPN site link connection from a site-to-site VPN gateway connection. + examples: + - name: Remove aVPN site link connection from site-to-site VPN gateway connection + text: | + az network vpn-gateway connection vpn-site-link-conn remove -g MyRG --connection-name MyConnection --gateway-name MyGateway --index 1 +""" + +helps['network vpn-gateway connection vpn-site-link-conn ipsec-policy'] = """ + type: group + short-summary: Manage site-to-site VPN gateway connection VPN site link IPSec policies. +""" + +helps['network vpn-gateway connection vpn-site-link-conn ipsec-policy add'] = """ + type: command + short-summary: Add an IPSec policy to a site-to-site VPN gateway connection VPN site link. + examples: + - name: Add an IPSec policy to a site-to-site VPN gateway connection VPN site link + text: | + az network vpn-gateway connection vpn-site-link-conn ipsec-policy add -g MyRG --connection-name MyConnection --gateway-name MyGateway -n MyVPNSiteLinkConn \ +--ipsec-encryption AES256 --ipsec-integrity SHA256 --sa-lifetime 86471 \ +--sa-data-size 429496 --ike-encryption AES256 --ike-integrity SHA384 --dh-group DHGroup14 --pfs-group PFS14 +""" + +helps['network vpn-gateway connection vpn-site-link-conn ipsec-policy list'] = """ + type: command + short-summary: List site-to-site VPN gateway connection VPN site link IPSec policies. + examples: + - name: List IPSec policies on a site-to-site VPN gateway connection VPN site link + text: | + az network vpn-gateway connection vpn-site-link-conn ipsec-policy list -g MyRG --connection-name MyConnection --gateway-name MyGateway -n MyVPNSiteLinkConn +""" + +helps['network vpn-gateway connection vpn-site-link-conn ipsec-policy remove'] = """ + type: command + short-summary: Remove an IPSec policy from a site-to-site VPN gateway connection VPN site link. + examples: + - name: Remove an IPSec policy from a site-to-site VPN gateway connection VPN site link + text: | + az network vpn-gateway connection vpn-site-link-conn ipsec-policy remove -g MyRG --connection-name MyConnection --gateway-name MyGateway -n MyVPNSiteLinkConn --index 1 +""" # endregion # region VpnSite @@ -448,6 +516,39 @@ type: command short-summary: Provide a SAS-URL to download the configuration for a VPN site. """ + + +helps['network vpn-site link'] = """ + type: group + short-summary: Manage VPN site link. +""" + +helps['network vpn-site link add'] = """ + type: command + short-summary: Add a VPN site link to VPN site configuration. + examples: + - name: Add a VPN site link to VPN site configuration + text: | + az network vpn-site link add -g MyRG --site-name VpnSite -n VpnSiteLinkName --ip-address 10.0.1.111 --asn 1234 --bgp-peering-address 192.168.0.0 +""" + +helps['network vpn-site link list'] = """ + type: command + short-summary: List VPN site links on VPN site configuration. + examples: + - name: List VPN site links on VPN site configuration + text: | + az network vpn-site link list -g MyRG --site-name VpnSite +""" + +helps['network vpn-site link remove'] = """ + type: command + short-summary: Remove a VPN site link from VPN site configuration. + examples: + - name: Remove a VPN site links from VPN site configuration + text: | + az network vpn-site link remove -g MyRG --site-name VpnSite --index 1 +""" # endregion # region VpnServerConfig diff --git a/src/virtual-wan/azext_vwan/_params.py b/src/virtual-wan/azext_vwan/_params.py index a1a56c8b6c4..81b24594947 100644 --- a/src/virtual-wan/azext_vwan/_params.py +++ b/src/virtual-wan/azext_vwan/_params.py @@ -130,12 +130,38 @@ def load_arguments(self, _): c.argument('protocol_type', arg_type=get_enum_type(VirtualNetworkGatewayConnectionProtocol), help='Connection protocol.') c.argument('routing_weight', type=int, help='Routing weight.') c.argument('shared_key', help='Shared key.') + c.argument("vpn_site_link", help='The resource ID of VPN Site Link.') + c.argument('with_link', help='Create VpnConnection with default link.', arg_type=get_three_state_flag()) with self.argument_context('network vpn-gateway connection list') as c: # List commands cannot use --ids flag c.argument('resource_name', vpn_gateway_name_type, id_part=None) c.argument('gateway_name', id_part=None) + with self.argument_context('network vpn-gateway connection vpn-site-link-conn') as c: + c.argument("connection_name", help='Name of the VPN gateway connection.', options_list=['--connection-name']) + c.argument("item_name", help='Name of the VPN gateway connection.', options_list=['--connection-name']) + c.argument("vpn_site_link_conn_name", help='Name of the VPN site link connection.', options_list=['--name', '-n'], id_part='child_name_1') + c.argument("vpn_site_link", help='The resource ID of VPN Site Link.') + c.argument('routing_weight', type=int, help='Routing weight.') + c.argument('shared_key', help='Shared key.') + c.argument('enable_rate_limiting', options_list='--rate-limiting', arg_type=get_three_state_flag(), help='Enable rate limiting.') + c.argument('connection_bandwidth', help='Expected bandwidth in Mbps.', type=int) + c.argument('enable_bgp', arg_type=get_three_state_flag(), help='Enable BGP.') + c.argument('use_local_azure_ip_address', arg_type=get_three_state_flag(), help='Use local azure ip to initiate connection.') + c.argument('use_policy_based_traffic_selectors', arg_type=get_three_state_flag(), help='Enable policy-based traffic selectors.') + c.argument('vpn_connection_protocol_type', help='Connection protocol used for this connection.', arg_type=get_enum_type(['IKEv2', 'IKEv1'])) + c.argument('vpn_link_connection_mode', help='Vpn link connection mode.', arg_type=get_enum_type(['Default', 'ResponderOnly', 'InitiatorOnly'])) + c.argument('index', type=int, help='List index of the item (starting with 1).') + + with self.argument_context('network vpn-gateway connection vpn-site-link-conn list') as c: + c.argument('resource_name', vpn_gateway_name_type, id_part=None) + c.argument('gateway_name', id_part=None) + + with self.argument_context('network vpn-gateway connection vpn-site-link-conn ipsec-policy list') as c: + c.argument('resource_name', vpn_gateway_name_type, id_part=None) + c.argument('gateway_name', id_part=None) + with self.argument_context('network vpn-gateway connection', arg_group='IP Security') as c: c.argument('sa_life_time_seconds', options_list='--sa-lifetime', help='IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site-to-site VPN tunnel.', type=int) c.argument('sa_data_size_kilobytes', options_list='--sa-data-size', help='IPSec Security Association (also called Quick Mode or Phase 2 SA) payload size in KB for a site-to-site VPN tunnel.', type=int) @@ -161,12 +187,26 @@ def load_arguments(self, _): c.argument('ip_address', help='IP address of the VPN site.') c.argument('site_key', help='Key for the VPN site that can be used for connections.') c.argument('address_prefixes', nargs='+', help='Space-separated list of CIDR address prefixes.') + c.argument('with_link', help='Create VPN site with default link.', arg_type=get_three_state_flag()) with self.argument_context('network vpn-site', arg_group='Device Property') as c: c.argument('device_model', help='Model of the device.') c.argument('device_vendor', help='Name of the device vendor.') c.argument('link_speed', help='Link speed in Mbps.', type=int) + with self.argument_context('network vpn-site link') as c: + c.argument('vpn_site_name', vpn_site_name_type) + c.argument('vpn_site_link_name', help='The name of vpn site link.', options_list=['--name', '-n']) + c.argument('fqdn', help='FQDN of vpn-site-link.') + c.argument('link_provider_name', help='Name of the link provider.') + c.argument('link_speed_in_mbps', help='Link speed.', type=int) + c.argument('index', type=int, help='List index of the item (starting with 1).') + + with self.argument_context('network vpn-site link list') as c: + c.argument('resource_name', vpn_gateway_name_type, id_part=None) + c.argument('virtual_wan_name', vwan_name_type, id_part=None) + c.argument('vpn_site_name', vpn_site_name_type, options_list=['--site-name'], id_part=None) + for scope in ['vpn-site', 'vpn-gateway']: with self.argument_context('network {}'.format(scope), arg_group='BGP Peering') as c: c.argument('asn', help='BGP speaker\'s ASN.', type=int) diff --git a/src/virtual-wan/azext_vwan/commands.py b/src/virtual-wan/azext_vwan/commands.py index f4dda336d82..c77c46d478d 100644 --- a/src/virtual-wan/azext_vwan/commands.py +++ b/src/virtual-wan/azext_vwan/commands.py @@ -176,6 +176,16 @@ def load_command_table(self, _): g.custom_command('add', 'add_vpn_gateway_connection_ipsec_policy', supports_no_wait=True) g.custom_command('list', 'list_vpn_conn_ipsec_policies') g.custom_command('remove', 'remove_vpn_conn_ipsec_policy', supports_no_wait=True) + + with self.command_group('network vpn-gateway connection vpn-site-link-conn', network_vpn_gateway_connection_sdk) as g: + g.custom_command('add', 'add_vpn_gateway_connection_vpn_site_link_conn', supports_no_wait=True) + g.custom_command('remove', 'remove_vpn_gateway_connection_vpn_site_link_conn', supports_no_wait=True) + g.custom_command('list', 'list_vpn_conn_vpn_site_link_conn') + + with self.command_group('network vpn-gateway connection vpn-site-link-conn ipsec-policy', network_vpn_gateway_connection_sdk) as g: + g.custom_command('add', 'add_vpn_gateway_connection_link_ipsec_policy', supports_no_wait=True) + g.custom_command('list', 'list_vpn_conn_link_ipsec_policies') + g.custom_command('remove', 'remove_vpn_conn_link_ipsec_policy', supports_no_wait=True) # endregion # region VpnSites @@ -186,6 +196,11 @@ def load_command_table(self, _): g.show_command('show') g.generic_update_command('update', custom_func_name='update_vpn_site', setter_name='begin_create_or_update', setter_arg_name='vpn_site_parameters', supports_no_wait=True) + with self.command_group('network vpn-site link', network_vpn_site_sdk) as g: + g.custom_command('add', 'add_vpn_site_link', supports_no_wait=True) + g.custom_command('remove', 'remove_vpn_site_link', supports_no_wait=True) + g.custom_command('list', 'list_vpn_site_link') + with self.command_group('network vpn-site', network_vpn_site_config_sdk) as g: g.command('download', 'begin_download') # endregion diff --git a/src/virtual-wan/azext_vwan/custom.py b/src/virtual-wan/azext_vwan/custom.py index ad24bdb6d80..2b62c5594f2 100644 --- a/src/virtual-wan/azext_vwan/custom.py +++ b/src/virtual-wan/azext_vwan/custom.py @@ -572,18 +572,20 @@ def update_vpn_gateway_connection(instance, cmd, associated_route_table=None, pr def create_vpn_gateway_connection(cmd, resource_group_name, gateway_name, connection_name, - remote_vpn_site, routing_weight=None, protocol_type=None, + remote_vpn_site, vpn_site_link=None, routing_weight=None, protocol_type=None, connection_bandwidth=None, shared_key=None, enable_bgp=None, enable_rate_limiting=None, enable_internet_security=None, no_wait=False, - associated_route_table=None, propagated_route_tables=None, labels=None): + associated_route_table=None, propagated_route_tables=None, with_link=None, labels=None): client = network_client_factory(cmd.cli_ctx).vpn_connections (VpnConnection, SubResource, RoutingConfiguration, - PropagatedRouteTable) = cmd.get_models('VpnConnection', - 'SubResource', - 'RoutingConfiguration', - 'PropagatedRouteTable') + PropagatedRouteTable, + VpnSiteLinkConnection) = cmd.get_models('VpnConnection', + 'SubResource', + 'RoutingConfiguration', + 'PropagatedRouteTable', + 'VpnSiteLinkConnection') propagated_route_tables = PropagatedRouteTable( labels=labels, @@ -597,16 +599,29 @@ def create_vpn_gateway_connection(cmd, resource_group_name, gateway_name, connec conn = VpnConnection( name=connection_name, remote_vpn_site=SubResource(id=remote_vpn_site), - routing_weight=routing_weight, protocol_type=protocol_type, - connection_bandwidth=connection_bandwidth, - shared_key=shared_key, - enable_bgp=enable_bgp, - enable_rate_limiting=enable_rate_limiting, enable_internet_security=enable_internet_security, routing_configuration=routing_configuration ) + if with_link: + link_conn = VpnSiteLinkConnection( + name=connection_name, + routing_weight=routing_weight, + vpn_site_link=SubResource(id=vpn_site_link), + connection_bandwidth=connection_bandwidth, + shared_key=shared_key, + enable_bgp=enable_bgp, + enable_rate_limiting=enable_rate_limiting, + ) + conn.vpn_link_connections = [link_conn] + else: + conn.routing_weight = routing_weight + conn.connection_bandwidth = connection_bandwidth + conn.shared_key = shared_key + conn.enable_bgp = enable_bgp + conn.enable_rate_limiting = enable_rate_limiting + return sdk_no_wait(no_wait, client.begin_create_or_update, resource_group_name, gateway_name, connection_name, conn) @@ -673,6 +688,113 @@ def remove_vpn_conn_ipsec_policy(cmd, resource_group_name, gateway_name, connect return +def add_vpn_gateway_connection_vpn_site_link_conn(cmd, resource_group_name, gateway_name, connection_name, + vpn_site_link_conn_name, vpn_site_link, routing_weight=None, vpn_link_connection_mode=None, + vpn_connection_protocol_type=None, connection_bandwidth=None, shared_key=None, enable_bgp=None, enable_rate_limiting=None, + use_policy_based_traffic_selectors=None, use_local_azure_ip_address=None, no_wait=False): + SubResource, VpnSiteLinkConnection = cmd.get_models('SubResource', 'VpnSiteLinkConnection') + client = network_client_factory(cmd.cli_ctx).vpn_connections + conn = client.get(resource_group_name, gateway_name, connection_name) + + if conn.vpn_link_connections is None: + conn.vpn_link_connections = [] + conn.vpn_link_connections.append( + VpnSiteLinkConnection( + name=vpn_site_link_conn_name, + routing_weight=routing_weight, + vpn_site_link=SubResource(id=vpn_site_link), + vpn_link_connection_mode=vpn_link_connection_mode, + vpn_connection_protocol_type=vpn_connection_protocol_type, + connection_bandwidth=connection_bandwidth, + shared_key=shared_key, + enable_bgp=enable_bgp, + enable_rate_limiting=enable_rate_limiting, + use_policy_based_traffic_selectors=use_policy_based_traffic_selectors, + use_local_azure_ip_address=use_local_azure_ip_address + ) + ) + + return sdk_no_wait(no_wait, client.begin_create_or_update, + resource_group_name, gateway_name, connection_name, conn) + + +def list_vpn_conn_vpn_site_link_conn(cmd, resource_group_name, gateway_name, connection_name): + client = network_client_factory(cmd.cli_ctx).vpn_connections + conn = client.get(resource_group_name, gateway_name, connection_name) + return conn.vpn_link_connections + + +def remove_vpn_gateway_connection_vpn_site_link_conn(cmd, resource_group_name, gateway_name, connection_name, index, no_wait=False): + client = network_client_factory(cmd.cli_ctx).vpn_connections + conn = client.get(resource_group_name, gateway_name, connection_name) + try: + conn.vpn_link_connections.pop(index - 1) + except IndexError: + raise CLIError('invalid index: {}. Index can range from 1 to {}'.format(index, len(conn.vpn_link_connections))) + return sdk_no_wait(no_wait, client.begin_create_or_update, + resource_group_name, gateway_name, connection_name, conn) + + +# pylint: disable=inconsistent-return-statements +def add_vpn_gateway_connection_link_ipsec_policy(cmd, resource_group_name, gateway_name, connection_name, vpn_site_link_conn_name, + sa_life_time_seconds, sa_data_size_kilobytes, ipsec_encryption, + ipsec_integrity, ike_encryption, ike_integrity, dh_group, pfs_group, + no_wait=False): + IpsecPolicy = cmd.get_models('IpsecPolicy') + client = network_client_factory(cmd.cli_ctx).vpn_connections + vpn_conn = client.get(resource_group_name, gateway_name, connection_name) + conn = _find_item_at_path(vpn_conn, 'vpn_link_connections.{}'.format(vpn_site_link_conn_name)) + + if conn.ipsec_policies is None: + conn.ipsec_policies = [] + conn.ipsec_policies.append( + IpsecPolicy( + sa_life_time_seconds=sa_life_time_seconds, + sa_data_size_kilobytes=sa_data_size_kilobytes, + ipsec_encryption=ipsec_encryption, + ipsec_integrity=ipsec_integrity, + ike_encryption=ike_encryption, + ike_integrity=ike_integrity, + dh_group=dh_group, + pfs_group=pfs_group + ) + ) + + _upsert(vpn_conn, 'vpn_link_connections', conn, 'name', warn=False) + poller = sdk_no_wait(no_wait, client.begin_create_or_update, + resource_group_name, gateway_name, connection_name, vpn_conn) + try: + return _get_property(poller.result().vpn_link_connections, vpn_site_link_conn_name) + except AttributeError: + return + + +def list_vpn_conn_link_ipsec_policies(cmd, resource_group_name, gateway_name, connection_name, vpn_site_link_conn_name): + client = network_client_factory(cmd.cli_ctx).vpn_connections + vpn_conn = client.get(resource_group_name, gateway_name, connection_name) + conn = _find_item_at_path(vpn_conn, 'vpn_link_connections.{}'.format(vpn_site_link_conn_name)) + return conn.ipsec_policies + + +# pylint: disable=inconsistent-return-statements +def remove_vpn_conn_link_ipsec_policy(cmd, resource_group_name, gateway_name, connection_name, vpn_site_link_conn_name, index, no_wait=False): + client = network_client_factory(cmd.cli_ctx).vpn_connections + vpn_conn = client.get(resource_group_name, gateway_name, connection_name) + conn = _find_item_at_path(vpn_conn, 'vpn_link_connections.{}'.format(vpn_site_link_conn_name)) + + try: + conn.ipsec_policies.pop(index - 1) + except IndexError: + raise CLIError('invalid index: {}. Index can range from 1 to {}'.format(index, len(conn.ipsec_policies))) + _upsert(vpn_conn, 'vpn_link_connections', conn, 'name', warn=False) + poller = sdk_no_wait(no_wait, client.begin_create_or_update, + resource_group_name, gateway_name, connection_name, vpn_conn) + try: + return _get_property(poller.result().vpn_link_connections, vpn_site_link_conn_name) + except AttributeError: + return + + # endregion @@ -682,14 +804,14 @@ def create_vpn_site(cmd, resource_group_name, vpn_site_name, ip_address, virtual_wan=None, location=None, tags=None, site_key=None, address_prefixes=None, is_security_site=None, device_vendor=None, device_model=None, link_speed=None, - peer_weight=None, no_wait=False): + peer_weight=None, with_link=None, no_wait=False): client = network_client_factory(cmd.cli_ctx).vpn_sites - VpnSite, SubResource = cmd.get_models('VpnSite', 'SubResource') + VpnSite, VpnSiteLink, SubResource = cmd.get_models('VpnSite', 'VpnSiteLink', 'SubResource') + site = VpnSite( location=location, tags=tags, is_security_site=is_security_site, - ip_address=ip_address, site_key=site_key, virtual_wan=SubResource(id=virtual_wan) if virtual_wan else None, address_space={'addressPrefixes': address_prefixes}, @@ -697,15 +819,32 @@ def create_vpn_site(cmd, resource_group_name, vpn_site_name, ip_address, 'deviceVendor': device_vendor, 'deviceModel': device_model, 'linkSpeedInMbps': link_speed - }, - bgp_properties={ - 'asn': asn, - 'bgpPeeringAddress': bgp_peering_address, - 'peerWeight': peer_weight } ) - if not any([asn, bgp_peering_address, peer_weight]): - site.bgp_properties = None + if with_link: + link = VpnSiteLink( + name=vpn_site_name, + bgp_properties={ + 'asn': asn, + 'bgpPeeringAddress': bgp_peering_address, + 'peerWeight': peer_weight + }, + ip_address=ip_address, + ) + if not any([asn, bgp_peering_address, peer_weight]): + link.bgp_properties = None + + site.vpn_site_links = [link] + else: + if not any([asn, bgp_peering_address, peer_weight]): + site.bgp_properties = None + else: + site.bgp_properties = { + 'asn': asn, + 'bgpPeeringAddress': bgp_peering_address, + 'peerWeight': peer_weight + } + site.ip_address = ip_address return sdk_no_wait(no_wait, client.begin_create_or_update, resource_group_name, vpn_site_name, site) @@ -743,6 +882,54 @@ def update_vpn_site(instance, cmd, ip_address=None, virtual_wan=None, tags=None, def list_vpn_sites(cmd, resource_group_name=None): return _generic_list(cmd.cli_ctx, 'vpn_sites', resource_group_name) + + +def add_vpn_site_link(cmd, resource_group_name, vpn_site_name, vpn_site_link_name, ip_address, fqdn=None, + link_provider_name=None, link_speed_in_mbps=None, asn=None, bgp_peering_address=None, no_wait=False): + VpnSiteLink = cmd.get_models('VpnSiteLink') + client = network_client_factory(cmd.cli_ctx).vpn_sites + vpn_site = client.get(resource_group_name, vpn_site_name) + + if vpn_site.vpn_site_links is None: + vpn_site.vpn_site_links = [] + + vpn_site.vpn_site_links.append( + VpnSiteLink( + name=vpn_site_link_name, + ip_address=ip_address, + fqdn=fqdn, + bgp_properties={ + 'asn': asn, + 'bgp_peering_address': bgp_peering_address + }, + link_properites={ + 'link_provider_name': link_provider_name, + 'link_speed_in_mbps': link_speed_in_mbps + } + ) + ) + + return sdk_no_wait(no_wait, client.begin_create_or_update, + resource_group_name, vpn_site_name, vpn_site) + + +def remove_vpn_site_link(cmd, resource_group_name, vpn_site_name, index, no_wait=False): + client = network_client_factory(cmd.cli_ctx).vpn_sites + vpn_site = client.get(resource_group_name, vpn_site_name) + try: + vpn_site.vpn_site_links.pop(index - 1) + except IndexError: + raise CLIError('invalid index: {}. Index can range from 1 to {}'.format(index, len(vpn_site.vpn_site_links))) + return sdk_no_wait(no_wait, client.begin_create_or_update, + resource_group_name, vpn_site_name, vpn_site) + + +def list_vpn_site_link(cmd, resource_group_name, vpn_site_name): + client = network_client_factory(cmd.cli_ctx).vpn_sites + vpn_site = client.get(resource_group_name, vpn_site_name) + return vpn_site.vpn_site_links + + # endregion diff --git a/src/virtual-wan/azext_vwan/tests/latest/credential_replacer.py b/src/virtual-wan/azext_vwan/tests/latest/credential_replacer.py index c6df55ad9b8..df4424564f2 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/credential_replacer.py +++ b/src/virtual-wan/azext_vwan/tests/latest/credential_replacer.py @@ -5,7 +5,7 @@ import re -from azure_devtools.scenario_tests import RecordingProcessor +from azure.cli.testsdk.scenario_tests import RecordingProcessor class VpnClientGeneratedURLReplacer(RecordingProcessor): diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway_connection_vpn_site_link.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway_connection_vpn_site_link.yaml new file mode 100644 index 00000000000..3744754c1dc --- /dev/null +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway_connection_vpn_site_link.yaml @@ -0,0 +1,6020 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vwan create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T06:01:52Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:02:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vwan create + Connection: + - keep-alive + Content-Length: + - '22' + Content-Type: + - application/json + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualWans/test_vwan\",\r\n + \ \"etag\": \"W/\\\"b300ca8e-8b9a-4e37-9613-33b0046bef17\\\"\",\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}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6e9c7ea3-9ff4-43b1-941c-b33fb6e5485d?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '569' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:02:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 58b59d50-4d6f-4d11-947a-fa68d20050da + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vwan create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6e9c7ea3-9ff4-43b1-941c-b33fb6e5485d?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 06:02: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 55023a45-4944-420a-a951-f81d19723cb4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vwan create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualWans/test_vwan\",\r\n + \ \"etag\": \"W/\\\"edd3dc1c-6a46-469d-a1ad-e8d898d93b09\\\"\",\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}" + headers: + cache-control: + - no-cache + content-length: + - '570' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:02:19 GMT + etag: + - W/"edd3dc1c-6a46-469d-a1ad-e8d898d93b09" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 4842ab2a-bb18-41c1-b18b-49843c16b6a1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T06:01:52Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:02:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"virtualWan": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualWans/test_vwan"}, + "addressPrefix": "10.0.1.0/24"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + Content-Length: + - '288' + Content-Type: + - application/json + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\",\r\n + \ \"etag\": \"W/\\\"7a9ca78b-9713-4c3f-9332-73b322642b2d\\\"\",\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.1.0/24\",\r\n \"virtualRouterAsn\": + 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": + []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n + \ },\r\n \"routingState\": \"None\"\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b06702e-6fc2-4ed6-ae37-610a2ef80c3c?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '865' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:02:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d072014c-e88d-4c21-b14c-299ef17fdb6a + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b06702e-6fc2-4ed6-ae37-610a2ef80c3c?api-version=2020-05-01 + 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, 15 Nov 2021 06:02:46 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - c38e638d-56fc-4f40-b882-b974552444d1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b06702e-6fc2-4ed6-ae37-610a2ef80c3c?api-version=2020-05-01 + 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, 15 Nov 2021 06:02:56 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - dc27f3be-591f-4bdd-a074-2bbaf6741ede + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b06702e-6fc2-4ed6-ae37-610a2ef80c3c?api-version=2020-05-01 + 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, 15 Nov 2021 06:03:17 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 8bdad0ca-8bc1-4d6e-a505-2a8643c0ee8f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b06702e-6fc2-4ed6-ae37-610a2ef80c3c?api-version=2020-05-01 + 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, 15 Nov 2021 06:03:38 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0940c2a4-c1dd-4a4e-8654-4cd28d3cf6a6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b06702e-6fc2-4ed6-ae37-610a2ef80c3c?api-version=2020-05-01 + 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, 15 Nov 2021 06:04:18 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2bdbdf96-2bfb-4a62-8055-b1f43ba27626 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b06702e-6fc2-4ed6-ae37-610a2ef80c3c?api-version=2020-05-01 + 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, 15 Nov 2021 06:04: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 878b3d5f-0925-4ac0-9474-762684108102 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b06702e-6fc2-4ed6-ae37-610a2ef80c3c?api-version=2020-05-01 + 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, 15 Nov 2021 06:06: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 22ab8c23-9ad5-4291-9522-3e574206c692 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b06702e-6fc2-4ed6-ae37-610a2ef80c3c?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 06:09:00 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3fd963f5-695c-41b2-b02c-cfc056d3bc0c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\",\r\n + \ \"etag\": \"W/\\\"4fbe3e2a-ac28-401d-849b-3d2d178ce5ce\\\"\",\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.1.0/24\",\r\n \"virtualRouterAsn\": + 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": + []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n + \ },\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '874' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:09:00 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - bcbdbca3-c2c7-4bff-b144-112786adb3df + status: + code: 200 + message: OK +- request: + body: '{}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub route-table create + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json + ParameterSetName: + - -g --vhub-name -n + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vhub_routing_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\",\r\n + \ \"etag\": \"W/\\\"5570d404-4dff-467e-a8bb-47c797d258de\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [],\r\n \"labels\": + [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": + []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f075b1a0-22f9-4d43-99df-7869e8b62374?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '562' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:09:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - bf8840e1-d5f9-483a-8bff-24a33b4fcacf + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub route-table create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub-name -n + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f075b1a0-22f9-4d43-99df-7869e8b62374?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 06:09: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - fd52b9f6-7219-4c02-a34d-a6ccb5180485 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub route-table create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub-name -n + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vhub_routing_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\",\r\n + \ \"etag\": \"W/\\\"3a60e36e-a81c-4583-a38b-b37055a81309\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [],\r\n + \ \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": + []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '563' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:09:14 GMT + etag: + - W/"3a60e36e-a81c-4583-a38b-b37055a81309" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ab030fac-4525-4d75-9b76-8380285eab87 + status: + code: 200 + message: OK +- request: + body: '{}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub route-table create + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json + ParameterSetName: + - -g --vhub-name -n + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vhub_routing_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\",\r\n + \ \"etag\": \"W/\\\"e4b15566-ec14-4947-886e-235d9e461000\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [],\r\n \"labels\": + [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": + []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d2409d48-04f0-4881-88fc-8b73d6dc25c5?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '562' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:09:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3f65dfbf-b082-4ba8-85b9-57106e1ec794 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub route-table create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub-name -n + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d2409d48-04f0-4881-88fc-8b73d6dc25c5?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 06:09: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0a32a48d-fc51-470f-a656-9ad20395646a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub route-table create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub-name -n + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vhub_routing_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\",\r\n + \ \"etag\": \"W/\\\"23f75d10-fec7-48d1-a621-0ea98eeb14d7\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [],\r\n + \ \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": + []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '563' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:09:27 GMT + etag: + - W/"23f75d10-fec7-48d1-a621-0ea98eeb14d7" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 55a776c8-9b51-4426-bd86-3622a6d807d3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T06:01:52Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:09:29 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/vpnGateways/test_s2s_vpn_gateway'' + under resource group ''cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '297' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:09:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus", "properties": {"virtualHub": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub"}, + "bgpSettings": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + Content-Length: + - '275' + Content-Type: + - application/json + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n + \ \"etag\": \"W/\\\"5f876b48-e5b2-4ad3-9cc2-0c494824d351\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [],\r\n + \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n + \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": + 0\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"ipConfigurations\": [],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": + false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '993' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:09:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 00f33cd9-803c-4047-9d2a-fea93e510f65 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + 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, 15 Nov 2021 06:09:47 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0058ceab-7677-4d51-9150-c4804b7f713c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + 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, 15 Nov 2021 06:09:57 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 6f1a9b05-1d19-4478-9e44-c8fabf4a91e4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + 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, 15 Nov 2021 06:10:17 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b0d6b53a-d41e-47bb-9957-902d9aae6c13 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + 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, 15 Nov 2021 06:10:37 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 78188c31-3449-43e6-973d-06e8b3813acd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + 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, 15 Nov 2021 06:11:18 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 216f1d87-0429-4e99-9c4e-ffee6eacbef4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + 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, 15 Nov 2021 06:11: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 8ead8ba9-97a1-45bf-bc90-a68c1d20e184 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + 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, 15 Nov 2021 06:13:18 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 7609742c-b684-43a4-b5db-41555773deef + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + 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, 15 Nov 2021 06:15:59 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 56f8fd05-6ccf-474b-808f-bef405aa2251 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + 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, 15 Nov 2021 06:17:40 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - bcce1918-26c8-4337-bb04-4efa25cf622c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + 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, 15 Nov 2021 06:19:20 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 4fefa7c6-56e4-47cd-949c-b14b835ad9f8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + 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, 15 Nov 2021 06:21:01 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 29614e74-cd17-4187-ba9c-3ad5cce88e6a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + 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, 15 Nov 2021 06:22:42 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 7312c405-bacb-45aa-b753-298345fca489 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + 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, 15 Nov 2021 06:24:22 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 855bf6f4-419d-4978-b010-405188ed3981 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + 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, 15 Nov 2021 06:26:02 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 1d4e9e93-8b55-429e-b9a7-544adf63bb10 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + 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, 15 Nov 2021 06:27:42 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d5909eff-fe40-4baf-921d-83bd11b6f88b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + 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, 15 Nov 2021 06:29:22 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 30f148a9-895b-4ab6-a030-60c0db8bd261 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + 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, 15 Nov 2021 06: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ad5c30a5-dd1c-4107-b1b2-ee47d8c66003 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27c3cb8c-8a7d-40bc-b713-855ab404a51e?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 06:32:44 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - cc8731fe-55dd-4730-bbcb-d865a8d64a0c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n + \ \"etag\": \"W/\\\"8221e44a-002b-42c7-96dd-936f47257887\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n + \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n + \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": + 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n + \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"40.83.197.153\",\r\n \"10.0.1.4\"\r\n ]\r\n + \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n + \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"13.64.19.105\",\r\n \"10.0.1.5\"\r\n ]\r\n + \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n + \ \"publicIpAddress\": \"40.83.197.153\",\r\n \"privateIpAddress\": + \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n + \ \"publicIpAddress\": \"13.64.19.105\",\r\n \"privateIpAddress\": + \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": + false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1872' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:32:44 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 5f30b170-7ee5-4c1f-b2a7-d6e498b31bf1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ip-address + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T06:01:52Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:32:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"deviceProperties": {}, "ipAddress": + "10.0.1.110", "addressSpace": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site create + Connection: + - keep-alive + Content-Length: + - '109' + Content-Type: + - application/json + ParameterSetName: + - -g -n --ip-address + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"d7a519c0-1879-4b45-bfb9-fd004fe1bc25\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"ipAddress\": \"10.0.1.110\"\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d15e6b05-b7b9-4812-a967-9d80747be8eb?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '763' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:32:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3da4415a-4858-4bd5-9827-69dd78c97762 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ip-address + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d15e6b05-b7b9-4812-a967-9d80747be8eb?api-version=2020-05-01 + 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, 15 Nov 2021 06:33:00 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b78fdf5b-4f55-4b87-b819-116eb5b213c2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ip-address + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d15e6b05-b7b9-4812-a967-9d80747be8eb?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 06:33:11 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ac9c27b7-5478-4a6f-a445-4ad96939ba41 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ip-address + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"e83da5a5-8bb4-46b7-8c3a-d921c231630a\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"ipAddress\": \"10.0.1.110\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '764' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:33:11 GMT + etag: + - W/"e83da5a5-8bb4-46b7-8c3a-d921c231630a" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3999a4f9-b993-4f57-aea7-c0f03727922d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link add + Connection: + - keep-alive + ParameterSetName: + - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"e83da5a5-8bb4-46b7-8c3a-d921c231630a\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"ipAddress\": \"10.0.1.110\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '764' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:33:13 GMT + etag: + - W/"e83da5a5-8bb4-46b7-8c3a-d921c231630a" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3eb8cac5-af1e-428d-9192-672ac57e70ce + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1", + "location": "westus", "properties": {"deviceProperties": {"linkSpeedInMbps": + 0}, "ipAddress": "10.0.1.110", "addressSpace": {"addressPrefixes": []}, "isSecuritySite": + false, "vpnSiteLinks": [{"name": "VPN-Site-Link1", "properties": {"ipAddress": + "10.0.1.111", "bgpProperties": {"asn": 1234, "bgpPeeringAddress": "192.168.0.0"}}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link add + Connection: + - keep-alive + Content-Length: + - '539' + Content-Type: + - application/json + ParameterSetName: + - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"MissingDefaultLinkForVpnSiteDuringMigrationToLinkFormat\",\r\n + \ \"message\": \"Default Vpn link is missing while migrating Vpn Site /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1 + to include links. One default link with same name and properties as VpnSite + remote_vpn_site_1 is mandatory.\",\r\n \"details\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '492' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:33:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3ce1952a-e3f9-45a2-9e73-00d51bd6508f + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 400 + message: Bad Request +- request: + body: '{"name": "test_s2s_vpn_gateway_connection", "properties": {"remoteVpnSite": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1"}, + "routingConfiguration": {"associatedRouteTable": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + "propagatedRouteTables": {"labels": ["label1", "label2"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2"}]}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + Content-Length: + - '1120' + Content-Type: + - application/json + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables + --labels + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"492c9ef3-d049-47f2-a084-d53281f09763\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": + \"IKEv2\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n + \ \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": + false,\r\n \"routingWeight\": 0\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c23fee83-f9af-47b7-a907-95939542c8d8?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '2196' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:33:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - c4c746cf-5d3c-4c7d-9347-1271120957aa + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables + --labels + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c23fee83-f9af-47b7-a907-95939542c8d8?api-version=2020-05-01 + 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, 15 Nov 2021 06:33:26 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3dd31c1b-9e97-48c9-9eef-828c2d718b00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables + --labels + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c23fee83-f9af-47b7-a907-95939542c8d8?api-version=2020-05-01 + 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, 15 Nov 2021 06:33:37 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 981805f7-f226-4e77-a0e1-935d4e12db7a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables + --labels + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c23fee83-f9af-47b7-a907-95939542c8d8?api-version=2020-05-01 + 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, 15 Nov 2021 06:33:57 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 543169b8-21e0-42eb-86c2-3e90a6cb1ffc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables + --labels + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c23fee83-f9af-47b7-a907-95939542c8d8?api-version=2020-05-01 + 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, 15 Nov 2021 06:34:37 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a3960714-ed03-4df6-9826-56cc0636fcd8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables + --labels + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c23fee83-f9af-47b7-a907-95939542c8d8?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 06:35:57 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d5ef786d-1380-49e3-8766-39c6d2298dfe + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --associated-route-table --propagated-route-tables + --labels + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"db22446c-0f72-484d-817a-5aa9468769aa\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"connectionStatus\": \"Unknown\",\r\n \"connectionBandwidth\": + 10,\r\n \"ipsecPolicies\": [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n + \ \"enableBgp\": false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": + false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": + 0\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2233' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:35: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - e5935625-c4cd-48e7-8a00-595230b082e5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime + --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n + \ \"etag\": \"W/\\\"db22446c-0f72-484d-817a-5aa9468769aa\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n + \ {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"db22446c-0f72-484d-817a-5aa9468769aa\\\"\",\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"label1\",\r\n \"label2\"\r\n ],\r\n + \ \"ids\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": + {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n + \ \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"enableBgp\": + false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": + false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": + 0\r\n }\r\n }\r\n ],\r\n \"virtualHub\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n + \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": + 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n + \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"40.83.197.153\",\r\n \"10.0.1.4\"\r\n ]\r\n + \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n + \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"13.64.19.105\",\r\n \"10.0.1.5\"\r\n ]\r\n + \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n + \ \"publicIpAddress\": \"40.83.197.153\",\r\n \"privateIpAddress\": + \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n + \ \"publicIpAddress\": \"13.64.19.105\",\r\n \"privateIpAddress\": + \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": + false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4347' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:36:01 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ffd4d310-e325-42ec-b9a2-791b26197dc2 + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway", + "location": "westus", "properties": {"virtualHub": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub"}, + "connections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection", + "name": "test_s2s_vpn_gateway_connection", "properties": {"remoteVpnSite": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1"}, + "routingWeight": 0, "vpnConnectionProtocolType": "IKEv2", "connectionBandwidth": + 10, "enableBgp": false, "usePolicyBasedTrafficSelectors": false, "ipsecPolicies": + [{"saLifeTimeSeconds": 86471, "saDataSizeKilobytes": 429496, "ipsecEncryption": + "AES256", "ipsecIntegrity": "SHA256", "ikeEncryption": "AES256", "ikeIntegrity": + "SHA384", "dhGroup": "DHGroup14", "pfsGroup": "PFS14"}], "enableRateLimiting": + false, "enableInternetSecurity": false, "useLocalAzureIpAddress": false, "routingConfiguration": + {"associatedRouteTable": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + "propagatedRouteTables": {"labels": ["label1", "label2"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2"}]}, + "vnetRoutes": {"staticRoutes": []}}}}], "bgpSettings": {"asn": 65515, "peerWeight": + 0, "bgpPeeringAddresses": [{"ipconfigurationId": "Instance0", "customBgpIpAddresses": + []}, {"ipconfigurationId": "Instance1", "customBgpIpAddresses": []}]}, "vpnGatewayScaleUnit": + 1}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy add + Connection: + - keep-alive + Content-Length: + - '2607' + Content-Type: + - application/json + ParameterSetName: + - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime + --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n + \ \"etag\": \"W/\\\"3390ca1c-fc65-4bc1-9605-9fb4c16bccc0\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [\r\n + \ {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"3390ca1c-fc65-4bc1-9605-9fb4c16bccc0\\\"\",\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"label1\",\r\n \"label2\"\r\n ],\r\n + \ \"ids\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": + {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n + \ \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": + 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": + \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": + \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": + \"PFS14\"\r\n }\r\n ],\r\n \"vpnConnectionProtocolType\": + \"IKEv2\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": + false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": + false,\r\n \"routingWeight\": 0\r\n }\r\n }\r\n ],\r\n + \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n + \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": + 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n + \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"40.83.197.153\",\r\n \"10.0.1.4\"\r\n ]\r\n + \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n + \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"13.64.19.105\",\r\n \"10.0.1.5\"\r\n ]\r\n + \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n + \ \"publicIpAddress\": \"40.83.197.153\",\r\n \"privateIpAddress\": + \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n + \ \"publicIpAddress\": \"13.64.19.105\",\r\n \"privateIpAddress\": + \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": + false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/328e6580-95e3-4336-bfaa-72d4cd8b2098?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '4720' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:36:02 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 1c70ea02-c654-4fd3-ab9b-8b9ea59b25ea + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime + --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/328e6580-95e3-4336-bfaa-72d4cd8b2098?api-version=2020-05-01 + 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, 15 Nov 2021 06:36:12 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d8106f19-fbb4-49d8-aef3-2d8a5fb41432 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime + --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/328e6580-95e3-4336-bfaa-72d4cd8b2098?api-version=2020-05-01 + 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, 15 Nov 2021 06:36:22 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 249a3943-6fca-434d-a3c2-c763c885e7ce + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime + --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/328e6580-95e3-4336-bfaa-72d4cd8b2098?api-version=2020-05-01 + 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, 15 Nov 2021 06:36: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 96f7ca05-68e4-442a-b831-45ec4342c8f7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime + --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/328e6580-95e3-4336-bfaa-72d4cd8b2098?api-version=2020-05-01 + 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, 15 Nov 2021 06:37:04 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 35aa6aea-9436-45cb-81b2-e1e5487570f7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime + --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/328e6580-95e3-4336-bfaa-72d4cd8b2098?api-version=2020-05-01 + 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, 15 Nov 2021 06:37:44 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 8abf3380-bfc0-4dcf-870c-a33a4013a8ca + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime + --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/328e6580-95e3-4336-bfaa-72d4cd8b2098?api-version=2020-05-01 + 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, 15 Nov 2021 06:38:24 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 855bd040-5b2a-4b2e-93de-75d554011bc7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime + --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/328e6580-95e3-4336-bfaa-72d4cd8b2098?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 06:39:45 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - e69bb949-1ec7-40f7-9432-98547ca8505a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime + --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n + \ \"etag\": \"W/\\\"248ec5ae-ce8e-4b0a-8437-4e14b2d5f9de\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n + \ {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"248ec5ae-ce8e-4b0a-8437-4e14b2d5f9de\\\"\",\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"label1\",\r\n \"label2\"\r\n ],\r\n + \ \"ids\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": + {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n + \ \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": + 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": + \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": + \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": + \"PFS14\"\r\n }\r\n ],\r\n \"vpnConnectionProtocolType\": + \"IKEv2\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": + false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": + false,\r\n \"routingWeight\": 0\r\n }\r\n }\r\n ],\r\n + \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n + \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": + 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n + \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"40.83.197.153\",\r\n \"10.0.1.4\"\r\n ]\r\n + \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n + \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"13.64.19.105\",\r\n \"10.0.1.5\"\r\n ]\r\n + \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n + \ \"publicIpAddress\": \"40.83.197.153\",\r\n \"privateIpAddress\": + \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n + \ \"publicIpAddress\": \"13.64.19.105\",\r\n \"privateIpAddress\": + \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": + false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4722' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:39:46 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 94524437-46ad-49a4-bf1e-749cd190a92d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy list + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name --connection-name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n + \ \"etag\": \"W/\\\"248ec5ae-ce8e-4b0a-8437-4e14b2d5f9de\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n + \ {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"248ec5ae-ce8e-4b0a-8437-4e14b2d5f9de\\\"\",\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"label1\",\r\n \"label2\"\r\n ],\r\n + \ \"ids\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": + {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n + \ \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": + 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": + \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": + \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": + \"PFS14\"\r\n }\r\n ],\r\n \"vpnConnectionProtocolType\": + \"IKEv2\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": + false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": + false,\r\n \"routingWeight\": 0\r\n }\r\n }\r\n ],\r\n + \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n + \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": + 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n + \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"40.83.197.153\",\r\n \"10.0.1.4\"\r\n ]\r\n + \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n + \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"13.64.19.105\",\r\n \"10.0.1.5\"\r\n ]\r\n + \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n + \ \"publicIpAddress\": \"40.83.197.153\",\r\n \"privateIpAddress\": + \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n + \ \"publicIpAddress\": \"13.64.19.105\",\r\n \"privateIpAddress\": + \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": + false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4722' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:39:47 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - f0f43f64-d903-46e2-bc00-504584489f51 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy remove + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name --connection-name --index + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n + \ \"etag\": \"W/\\\"248ec5ae-ce8e-4b0a-8437-4e14b2d5f9de\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n + \ {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"248ec5ae-ce8e-4b0a-8437-4e14b2d5f9de\\\"\",\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"label1\",\r\n \"label2\"\r\n ],\r\n + \ \"ids\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": + {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n + \ \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": + 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": + \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": + \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": + \"PFS14\"\r\n }\r\n ],\r\n \"vpnConnectionProtocolType\": + \"IKEv2\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": + false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": + false,\r\n \"routingWeight\": 0\r\n }\r\n }\r\n ],\r\n + \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n + \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": + 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n + \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"40.83.197.153\",\r\n \"10.0.1.4\"\r\n ]\r\n + \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n + \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"13.64.19.105\",\r\n \"10.0.1.5\"\r\n ]\r\n + \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n + \ \"publicIpAddress\": \"40.83.197.153\",\r\n \"privateIpAddress\": + \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n + \ \"publicIpAddress\": \"13.64.19.105\",\r\n \"privateIpAddress\": + \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": + false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4722' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:39: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 610f6e73-17ec-4e0f-a3db-2f0a58c80eed + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway", + "location": "westus", "properties": {"virtualHub": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub"}, + "connections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection", + "name": "test_s2s_vpn_gateway_connection", "properties": {"remoteVpnSite": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1"}, + "routingWeight": 0, "vpnConnectionProtocolType": "IKEv2", "connectionBandwidth": + 10, "enableBgp": false, "usePolicyBasedTrafficSelectors": false, "ipsecPolicies": + [], "enableRateLimiting": false, "enableInternetSecurity": false, "useLocalAzureIpAddress": + false, "routingConfiguration": {"associatedRouteTable": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + "propagatedRouteTables": {"labels": ["label1", "label2"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2"}]}, + "vnetRoutes": {"staticRoutes": []}}}}], "bgpSettings": {"asn": 65515, "peerWeight": + 0, "bgpPeeringAddresses": [{"ipconfigurationId": "Instance0", "customBgpIpAddresses": + []}, {"ipconfigurationId": "Instance1", "customBgpIpAddresses": []}]}, "vpnGatewayScaleUnit": + 1}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy remove + Connection: + - keep-alive + Content-Length: + - '2393' + Content-Type: + - application/json + ParameterSetName: + - -g --gateway-name --connection-name --index + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n + \ \"etag\": \"W/\\\"abff1635-d025-48a4-a641-f9c464904587\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [\r\n + \ {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"abff1635-d025-48a4-a641-f9c464904587\\\"\",\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"label1\",\r\n \"label2\"\r\n ],\r\n + \ \"ids\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": + {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n + \ \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"enableBgp\": + false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": + false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": + 0\r\n }\r\n }\r\n ],\r\n \"virtualHub\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n + \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": + 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n + \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"40.83.197.153\",\r\n \"10.0.1.4\"\r\n ]\r\n + \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n + \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"13.64.19.105\",\r\n \"10.0.1.5\"\r\n ]\r\n + \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n + \ \"publicIpAddress\": \"40.83.197.153\",\r\n \"privateIpAddress\": + \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n + \ \"publicIpAddress\": \"13.64.19.105\",\r\n \"privateIpAddress\": + \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": + false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3869c0f5-991f-4a87-92cf-0b68037737f8?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '4345' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:39: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2bb2775e-66fc-49c3-883c-498363198b27 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy remove + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name --connection-name --index + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3869c0f5-991f-4a87-92cf-0b68037737f8?api-version=2020-05-01 + 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, 15 Nov 2021 06:40:00 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2e960cde-b48c-49b2-ac0c-c4d160eb63b7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy remove + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name --connection-name --index + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3869c0f5-991f-4a87-92cf-0b68037737f8?api-version=2020-05-01 + 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, 15 Nov 2021 06:40:10 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 8affbaea-c79b-4d17-b26e-cb45d35aeec4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy remove + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name --connection-name --index + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3869c0f5-991f-4a87-92cf-0b68037737f8?api-version=2020-05-01 + 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, 15 Nov 2021 06:40:31 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 6354707a-9028-405b-9b7b-f85211e957ab + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy remove + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name --connection-name --index + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3869c0f5-991f-4a87-92cf-0b68037737f8?api-version=2020-05-01 + 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, 15 Nov 2021 06:40:51 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 5ba0ba86-22f0-4714-ad8d-3d9d010b4934 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy remove + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name --connection-name --index + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3869c0f5-991f-4a87-92cf-0b68037737f8?api-version=2020-05-01 + 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, 15 Nov 2021 06:41:31 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ea2c0e10-fbe6-4ae5-b69f-0bc305b222fa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy remove + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name --connection-name --index + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3869c0f5-991f-4a87-92cf-0b68037737f8?api-version=2020-05-01 + 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, 15 Nov 2021 06:42:12 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b6cd0311-9169-4b94-9678-9eb282c41151 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy remove + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name --connection-name --index + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3869c0f5-991f-4a87-92cf-0b68037737f8?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 06:43: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - f52eac41-d38e-4d56-8eef-146d2a589cb2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy remove + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name --connection-name --index + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n + \ \"etag\": \"W/\\\"63d4345a-2d37-4119-9aa6-1d53a1b905c7\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n + \ {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"63d4345a-2d37-4119-9aa6-1d53a1b905c7\\\"\",\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"label1\",\r\n \"label2\"\r\n ],\r\n + \ \"ids\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": + {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n + \ \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"enableBgp\": + false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": + false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": + 0\r\n }\r\n }\r\n ],\r\n \"virtualHub\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n + \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": + 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n + \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"40.83.197.153\",\r\n \"10.0.1.4\"\r\n ]\r\n + \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n + \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"13.64.19.105\",\r\n \"10.0.1.5\"\r\n ]\r\n + \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n + \ \"publicIpAddress\": \"40.83.197.153\",\r\n \"privateIpAddress\": + \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n + \ \"publicIpAddress\": \"13.64.19.105\",\r\n \"privateIpAddress\": + \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": + false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4347' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:43: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - e0d6664e-e954-4f7b-afd2-110c5d5d0358 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --gateway-name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e07dd337-c080-4f77-b1a3-652a0dc727a1?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 15 Nov 2021 06:43:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/e07dd337-c080-4f77-b1a3-652a0dc727a1?api-version=2020-05-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ffcbb3bc-b0b3-4d62-9199-f9dfa767fa19 + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e07dd337-c080-4f77-b1a3-652a0dc727a1?api-version=2020-05-01 + 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, 15 Nov 2021 06:43:45 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - f1a20dee-27f8-4e7f-81aa-0adf3a84b25d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e07dd337-c080-4f77-b1a3-652a0dc727a1?api-version=2020-05-01 + 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, 15 Nov 2021 06:43:55 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 450d9db5-ceb3-4ddf-8bda-cc7885495f35 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e07dd337-c080-4f77-b1a3-652a0dc727a1?api-version=2020-05-01 + 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, 15 Nov 2021 06:44:15 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0f4dc366-4e17-45b8-811b-c5846fdc2607 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e07dd337-c080-4f77-b1a3-652a0dc727a1?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 06:44:56 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - c706ceb2-9010-4da7-bed6-a750b70ffcd9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-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/8f01beed-da17-49f8-80ae-25e9e992f215?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 15 Nov 2021 06:44:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/8f01beed-da17-49f8-80ae-25e9e992f215?api-version=2020-05-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - c424f3e2-e4d7-4e21-b555-1473d068588e + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8f01beed-da17-49f8-80ae-25e9e992f215?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 06:45:08 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a23c9dad-a0e5-4c93-9207-5a5b25b44b4a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ip-address --with-link + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T06:01:52Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:45:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"deviceProperties": {}, "addressSpace": + {}, "vpnSiteLinks": [{"name": "remote_vpn_site_1", "properties": {"ipAddress": + "10.0.1.110"}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site create + Connection: + - keep-alive + Content-Length: + - '174' + Content-Type: + - application/json + ParameterSetName: + - -g -n --ip-address --with-link + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"48b79c55-7d51-4341-8084-2c05d2b8c95c\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"48b79c55-7d51-4341-8084-2c05d2b8c95c\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\r\n ]\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/13cfd2ef-1e17-4c3e-b24f-49575fd55ea7?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '1384' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:45:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 69f62a70-94d5-4e31-8b47-94527cceb840 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ip-address --with-link + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/13cfd2ef-1e17-4c3e-b24f-49575fd55ea7?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 06:45:29 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - df1c8aee-70ac-415e-ab1c-7b65e3951186 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ip-address --with-link + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"e450dfc4-6322-4f75-933c-b98a984d0981\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"e450dfc4-6322-4f75-933c-b98a984d0981\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1386' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:45:29 GMT + etag: + - W/"e450dfc4-6322-4f75-933c-b98a984d0981" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - cec2035d-314e-4dab-8498-c9902674cc4e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link add + Connection: + - keep-alive + ParameterSetName: + - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"e450dfc4-6322-4f75-933c-b98a984d0981\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"e450dfc4-6322-4f75-933c-b98a984d0981\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1386' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:45:31 GMT + etag: + - W/"e450dfc4-6322-4f75-933c-b98a984d0981" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0c6bcf7a-68c7-4f94-89ec-437c82f92898 + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1", + "location": "westus", "properties": {"deviceProperties": {"linkSpeedInMbps": + 0}, "addressSpace": {"addressPrefixes": []}, "isSecuritySite": false, "vpnSiteLinks": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1", + "name": "remote_vpn_site_1", "properties": {"linkProperties": {"linkSpeedInMbps": + 0}, "ipAddress": "10.0.1.110"}}, {"name": "VPN-Site-Link1", "properties": {"ipAddress": + "10.0.1.111", "bgpProperties": {"asn": 1234, "bgpPeeringAddress": "192.168.1.0"}}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link add + Connection: + - keep-alive + Content-Length: + - '866' + Content-Type: + - application/json + ParameterSetName: + - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"2e245717-6ded-4ea3-9613-35ae26f97091\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"2e245717-6ded-4ea3-9613-35ae26f97091\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": + \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n + \ \"etag\": \"W/\\\"2e245717-6ded-4ea3-9613-35ae26f97091\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n + \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": + 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/89352250-e536-4373-ae06-bedf80a04bef?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '2119' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:45:31 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 950ccca4-4e6b-45a3-ae58-115f1c2b7a5c + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link add + Connection: + - keep-alive + ParameterSetName: + - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/89352250-e536-4373-ae06-bedf80a04bef?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 06:45:42 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 9b2d8737-0e7f-4db9-8e59-f8f7af4ea148 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link add + Connection: + - keep-alive + ParameterSetName: + - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"db844363-175f-4795-8e2a-5fe8c6dca04c\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"db844363-175f-4795-8e2a-5fe8c6dca04c\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": + \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n + \ \"etag\": \"W/\\\"db844363-175f-4795-8e2a-5fe8c6dca04c\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n + \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": + 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2122' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:45:42 GMT + etag: + - W/"db844363-175f-4795-8e2a-5fe8c6dca04c" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 9099b3c1-6099-4d56-a06a-86a2c51a0762 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link add + Connection: + - keep-alive + ParameterSetName: + - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"db844363-175f-4795-8e2a-5fe8c6dca04c\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"db844363-175f-4795-8e2a-5fe8c6dca04c\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": + \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n + \ \"etag\": \"W/\\\"db844363-175f-4795-8e2a-5fe8c6dca04c\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n + \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": + 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2122' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:45:43 GMT + etag: + - W/"db844363-175f-4795-8e2a-5fe8c6dca04c" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 5ea466d0-83fe-41e4-afe0-b4bca2ef0a61 + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1", + "location": "westus", "properties": {"deviceProperties": {"linkSpeedInMbps": + 0}, "addressSpace": {"addressPrefixes": []}, "isSecuritySite": false, "vpnSiteLinks": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1", + "name": "remote_vpn_site_1", "properties": {"linkProperties": {"linkSpeedInMbps": + 0}, "ipAddress": "10.0.1.110"}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1", + "name": "VPN-Site-Link1", "properties": {"linkProperties": {"linkSpeedInMbps": + 0}, "ipAddress": "10.0.1.111", "bgpProperties": {"asn": 1234, "bgpPeeringAddress": + "192.168.1.0"}}}, {"name": "VPN-Site-Link2", "properties": {"ipAddress": "10.0.1.112", + "bgpProperties": {"asn": 1234, "bgpPeeringAddress": "192.168.2.0"}}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link add + Connection: + - keep-alive + Content-Length: + - '1282' + Content-Type: + - application/json + ParameterSetName: + - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"573feaab-3202-45ea-a7c3-7ae418a9d490\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"573feaab-3202-45ea-a7c3-7ae418a9d490\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": + \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n + \ \"etag\": \"W/\\\"573feaab-3202-45ea-a7c3-7ae418a9d490\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n + \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": + 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n + \ },\r\n {\r\n \"name\": \"VPN-Site-Link2\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link2\",\r\n + \ \"etag\": \"W/\\\"573feaab-3202-45ea-a7c3-7ae418a9d490\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"ipAddress\": \"10.0.1.112\",\r\n \"bgpProperties\": {\r\n + \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.2.0\"\r\n + \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": + 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/baea1736-2b61-4474-997b-2b7de2982f1f?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '2854' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:45:44 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 60aa22d6-de3f-4933-9f27-20ee6c024310 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link add + Connection: + - keep-alive + ParameterSetName: + - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/baea1736-2b61-4474-997b-2b7de2982f1f?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 06:45:54 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 8c3deacc-c022-419e-b102-56d7e06c07af + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link add + Connection: + - keep-alive + ParameterSetName: + - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": + \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n + \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n + \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": + 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n + \ },\r\n {\r\n \"name\": \"VPN-Site-Link2\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link2\",\r\n + \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.112\",\r\n \"bgpProperties\": {\r\n + \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.2.0\"\r\n + \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": + 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2858' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:45:54 GMT + etag: + - W/"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 8e83bc21-4b4e-451d-840f-787764d572fc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": + \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n + \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n + \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": + 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n + \ },\r\n {\r\n \"name\": \"VPN-Site-Link2\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link2\",\r\n + \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.112\",\r\n \"bgpProperties\": {\r\n + \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.2.0\"\r\n + \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": + 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2858' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:45:57 GMT + etag: + - W/"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 5278ba00-ccc5-4da5-a01b-d0278c644002 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link remove + Connection: + - keep-alive + ParameterSetName: + - -g -n --index + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": + \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n + \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n + \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": + 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n + \ },\r\n {\r\n \"name\": \"VPN-Site-Link2\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link2\",\r\n + \ \"etag\": \"W/\\\"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.112\",\r\n \"bgpProperties\": {\r\n + \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.2.0\"\r\n + \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": + 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2858' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:45:59 GMT + etag: + - W/"0bd6cc93-6e52-40ab-bbfb-9b9e1fd0c448" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d30e3ba6-9036-4bc1-b963-4e837ac01512 + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1", + "location": "westus", "properties": {"deviceProperties": {"linkSpeedInMbps": + 0}, "addressSpace": {"addressPrefixes": []}, "isSecuritySite": false, "vpnSiteLinks": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1", + "name": "VPN-Site-Link1", "properties": {"linkProperties": {"linkSpeedInMbps": + 0}, "ipAddress": "10.0.1.111", "bgpProperties": {"asn": 1234, "bgpPeeringAddress": + "192.168.1.0"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link2", + "name": "VPN-Site-Link2", "properties": {"linkProperties": {"linkSpeedInMbps": + 0}, "ipAddress": "10.0.1.112", "bgpProperties": {"asn": 1234, "bgpPeeringAddress": + "192.168.2.0"}}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link remove + Connection: + - keep-alive + Content-Length: + - '1205' + Content-Type: + - application/json + ParameterSetName: + - -g -n --index + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"63dbd8d4-fe2a-49f1-88f8-c1d509f133b4\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"VPN-Site-Link1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n + \ \"etag\": \"W/\\\"63dbd8d4-fe2a-49f1-88f8-c1d509f133b4\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n + \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": + 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n + \ },\r\n {\r\n \"name\": \"VPN-Site-Link2\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link2\",\r\n + \ \"etag\": \"W/\\\"63dbd8d4-fe2a-49f1-88f8-c1d509f133b4\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"ipAddress\": \"10.0.1.112\",\r\n \"bgpProperties\": {\r\n + \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.2.0\"\r\n + \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": + 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/88109d2f-fd4b-4e0a-9002-dea9350590f9?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '2231' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:45:59 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 74ca2445-1eaa-4743-836a-3448581e0bdc + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link remove + Connection: + - keep-alive + ParameterSetName: + - -g -n --index + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/88109d2f-fd4b-4e0a-9002-dea9350590f9?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 06:46:09 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 7b3fe24c-547e-4cfb-9c74-732530d3744d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link remove + Connection: + - keep-alive + ParameterSetName: + - -g -n --index + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"d16c5b14-7067-48f5-ac74-62a93286c946\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"VPN-Site-Link1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n + \ \"etag\": \"W/\\\"d16c5b14-7067-48f5-ac74-62a93286c946\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n + \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": + 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n + \ },\r\n {\r\n \"name\": \"VPN-Site-Link2\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link2\",\r\n + \ \"etag\": \"W/\\\"d16c5b14-7067-48f5-ac74-62a93286c946\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.112\",\r\n \"bgpProperties\": {\r\n + \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.2.0\"\r\n + \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": + 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2234' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:46:10 GMT + etag: + - W/"d16c5b14-7067-48f5-ac74-62a93286c946" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 6a8b49f5-9d73-445b-aed9-0292409f8798 + status: + code: 200 + message: OK +- request: + body: '{"name": "test_s2s_vpn_gateway_connection", "properties": {"remoteVpnSite": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1"}, + "vpnLinkConnections": [{"name": "test_s2s_vpn_gateway_connection", "properties": + {"vpnSiteLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1"}}}], + "routingConfiguration": {"associatedRouteTable": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + "propagatedRouteTables": {"labels": ["label1", "label2"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2"}]}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + Content-Length: + - '1460' + Content-Type: + - application/json + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table + --propagated-route-tables --labels --with-link + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"e95da4c4-c1d1-4f88-b4e4-afe93a21f67b\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"e95da4c4-c1d1-4f88-b4e4-afe93a21f67b\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": + false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": + false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": + 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n + \ ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dd9960bd-12a8-417f-a0ff-4aae03a1184f?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '3403' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:46:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ddbd31a8-7cfd-4a23-8bd7-ac6af4549e6f + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table + --propagated-route-tables --labels --with-link + User-Agent: + - AZURECLI/2.29.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dd9960bd-12a8-417f-a0ff-4aae03a1184f?api-version=2020-05-01 + response: + body: + string: "{\r\n \"status\": \"Failed\",\r\n \"error\": {\r\n \"code\": \"InvalidConnectedSiteId\",\r\n + \ \"message\": \"The vpnsite id '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1' + is invalid or the vpnsite does not exist or the vpnsite exists with links + and no link connections are configured.\",\r\n \"details\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '452' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 06:46:23 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 1a076342-0aa4-4618-aec5-3bbc3dfbad4f + status: + code: 200 + message: OK +version: 1 diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn.yaml new file mode 100644 index 00000000000..8bc698fa706 --- /dev/null +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn.yaml @@ -0,0 +1,4614 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vwan create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T07:50:12Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 07:50:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vwan create + Connection: + - keep-alive + Content-Length: + - '22' + Content-Type: + - application/json + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualWans/test_vwan\",\r\n + \ \"etag\": \"W/\\\"c172f699-9ac2-4cd8-bbbb-27deb7f654df\\\"\",\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}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f47d50df-1001-4f36-bb42-4732b21ed581?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '569' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 07:50:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 1acd2526-81c8-4524-93f1-db0a6537de6f + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vwan create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f47d50df-1001-4f36-bb42-4732b21ed581?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 07:50:36 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 143693d4-e1f1-41e6-9830-ef723452f119 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vwan create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualWans/test_vwan\",\r\n + \ \"etag\": \"W/\\\"d6990f2d-e393-4bb5-8b5c-29e02ed9ed0f\\\"\",\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}" + headers: + cache-control: + - no-cache + content-length: + - '570' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 07:50:36 GMT + etag: + - W/"d6990f2d-e393-4bb5-8b5c-29e02ed9ed0f" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 40dd55c4-b165-4e60-bab9-b3bf9a8904b5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T07:50:12Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 07:50:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"virtualWan": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualWans/test_vwan"}, + "addressPrefix": "10.0.1.0/24"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + Content-Length: + - '288' + Content-Type: + - application/json + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub\",\r\n + \ \"etag\": \"W/\\\"6db4b679-f07e-4b4b-82fb-4e8a38f1bd18\\\"\",\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.1.0/24\",\r\n \"virtualRouterAsn\": + 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": + []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n + \ },\r\n \"routingState\": \"None\"\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4bf5e5ae-b91c-4cf2-bb6a-1286c565e06c?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '865' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 07:50:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - aee906a8-5351-40fa-b1cd-4bb382fa626b + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4bf5e5ae-b91c-4cf2-bb6a-1286c565e06c?api-version=2020-05-01 + 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, 15 Nov 2021 07:50:57 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 7c797af7-2ad4-47de-a1c3-b49e9d541fd0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4bf5e5ae-b91c-4cf2-bb6a-1286c565e06c?api-version=2020-05-01 + 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, 15 Nov 2021 07:51:07 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 8fbdbbcd-9514-4f2d-aed4-1f451838509f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4bf5e5ae-b91c-4cf2-bb6a-1286c565e06c?api-version=2020-05-01 + 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, 15 Nov 2021 07:51: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0061a331-60f0-4b69-a0ff-8041019956d5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4bf5e5ae-b91c-4cf2-bb6a-1286c565e06c?api-version=2020-05-01 + 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, 15 Nov 2021 07:51:49 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d3881d18-7d38-471c-b432-69e02c03ee4a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4bf5e5ae-b91c-4cf2-bb6a-1286c565e06c?api-version=2020-05-01 + 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, 15 Nov 2021 07:52:29 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 26285642-e489-4575-8c4c-ee5dc57396fb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4bf5e5ae-b91c-4cf2-bb6a-1286c565e06c?api-version=2020-05-01 + 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, 15 Nov 2021 07:53:09 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - fe563bca-a403-4e06-b3c4-4269093e48af + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4bf5e5ae-b91c-4cf2-bb6a-1286c565e06c?api-version=2020-05-01 + 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, 15 Nov 2021 07:54:30 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 36fb2f16-6c2f-4f24-8398-94297a9aeee2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4bf5e5ae-b91c-4cf2-bb6a-1286c565e06c?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 07:57:12 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 30f64f1b-f3f1-41d7-b307-9704a0ce7304 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub\",\r\n + \ \"etag\": \"W/\\\"02ec0060-41bb-48de-b3f9-4d661a1eff14\\\"\",\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.1.0/24\",\r\n \"virtualRouterAsn\": + 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": + []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n + \ },\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '874' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 07:57:12 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 6644e0c6-85ff-49ad-b44c-3d943a788b09 + status: + code: 200 + message: OK +- request: + body: '{}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub route-table create + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json + ParameterSetName: + - -g --vhub-name -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vhub_routing_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\",\r\n + \ \"etag\": \"W/\\\"824e377c-bd4f-4d68-9c7f-b46cf88a8de4\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [],\r\n \"labels\": + [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": + []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ca4c206c-9b2d-420c-a984-44acea1eeefd?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '562' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 07:57:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - c10951c2-4fcf-40be-8e2a-eb3796f5b69c + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub route-table create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub-name -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ca4c206c-9b2d-420c-a984-44acea1eeefd?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 07:57: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ff4f3760-d82b-4584-ac9e-b7fd039598ef + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub route-table create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub-name -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vhub_routing_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\",\r\n + \ \"etag\": \"W/\\\"61ebcc4b-6031-4ba1-ace1-5a7e345cedb5\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [],\r\n + \ \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": + []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '563' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 07:57:25 GMT + etag: + - W/"61ebcc4b-6031-4ba1-ace1-5a7e345cedb5" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 4fc65265-7f67-47b0-ad44-c64eee409126 + status: + code: 200 + message: OK +- request: + body: '{}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub route-table create + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json + ParameterSetName: + - -g --vhub-name -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vhub_routing_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\",\r\n + \ \"etag\": \"W/\\\"15e5a4b6-ed28-49a5-8b67-64f639932306\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [],\r\n \"labels\": + [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": + []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/33a282e9-9a67-494b-8030-359af48a4b15?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '562' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 07:57:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3d292a72-7fd7-4c74-8a33-d6acd8a04eb4 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub route-table create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub-name -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/33a282e9-9a67-494b-8030-359af48a4b15?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 07:57:38 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 8666bc51-8415-4fbc-8dfe-8e0e40c308ca + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub route-table create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub-name -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vhub_routing_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\",\r\n + \ \"etag\": \"W/\\\"347f53ac-84fa-48b3-8d1d-c2e3c89dd428\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [],\r\n + \ \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": + []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '563' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 07:57:39 GMT + etag: + - W/"347f53ac-84fa-48b3-8d1d-c2e3c89dd428" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 4b9a5db3-289b-4f2e-802c-91a114c03636 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T07:50:12Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 07:57:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/vpnGateways/test_s2s_vpn_gateway'' + under resource group ''cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '297' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 07:57:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus", "properties": {"virtualHub": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub"}, + "bgpSettings": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + Content-Length: + - '275' + Content-Type: + - application/json + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n + \ \"etag\": \"W/\\\"e2d5fa80-2765-4033-877f-2a211b4b4731\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [],\r\n + \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n + \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": + 0\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"ipConfigurations\": [],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": + false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '993' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 07:57:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 4fe18d4e-d478-465f-a107-81403fd013f4 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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, 15 Nov 2021 07:57: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 756c138f-5c7b-458e-9ede-879599d0cb35 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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, 15 Nov 2021 07:58:09 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 58ece530-6838-4fb3-bb10-a99976b121eb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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, 15 Nov 2021 07:58:29 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - f94bf551-0735-4c2f-9486-95b645f77336 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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, 15 Nov 2021 07:58: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2d58bc38-163a-4446-b90b-39a3ff53a223 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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, 15 Nov 2021 07:59:30 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ac01be59-ea44-4216-ba89-29a923f9f6b1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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, 15 Nov 2021 08:00:11 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0760f8d1-44df-4561-a8f9-81ae5915d843 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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, 15 Nov 2021 08:01:30 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ec554209-a5ed-4fb5-95bf-fc621b14609c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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, 15 Nov 2021 08:04:11 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b002ee6b-9915-4be4-90b8-4fef8f66230b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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, 15 Nov 2021 08:05: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - e2a863eb-9457-4de1-9464-a5e9aae23f57 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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, 15 Nov 2021 08:07: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - f9d061c0-578e-4257-b014-131ba4ba37db + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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, 15 Nov 2021 08:09:13 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 99a1d0a4-3035-4889-9058-22c86fa8785a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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, 15 Nov 2021 08:10:54 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3648f525-bb84-494c-b88f-e384a09cf9dd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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, 15 Nov 2021 08:12:34 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3e442ff1-a923-473a-b54f-b2560a238c3d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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, 15 Nov 2021 08:14:15 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 53dff98a-941c-4a5a-8b97-c2be102b81a6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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, 15 Nov 2021 08:15:55 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 61c4bfbe-9d24-4fa9-892e-9e77e8e61bc5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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, 15 Nov 2021 08:17:36 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - cb7aefc1-220e-46e6-a7c6-cb8cb1a3b05c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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, 15 Nov 2021 08:19:15 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2e5edc47-3071-40dc-b620-6d063f6c4a26 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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, 15 Nov 2021 08:20:57 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b221b461-8270-4f99-97e0-23e51b859501 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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, 15 Nov 2021 08:22:37 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 38ce8dd8-9aab-4a54-a279-25b03baa08e3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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, 15 Nov 2021 08:24:18 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 7b9fe5b0-f1a9-4ef1-a8b8-b4a440c4d07b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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, 15 Nov 2021 08:25:59 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a09dbacc-0308-4d99-8033-6b0f818b2ab1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3e6aea9d-ff82-47d9-9f5f-2c772138d611?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 08:27:39 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 73e5e6c1-a263-4691-9c60-391cd14b46e8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n + \ \"etag\": \"W/\\\"0641d765-071a-4968-8d62-55bd1fbea8cd\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n + \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n + \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": + 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n + \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"13.83.91.250\",\r\n \"10.0.1.4\"\r\n ]\r\n + \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n + \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"13.83.92.88\",\r\n \"10.0.1.5\"\r\n ]\r\n + \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n + \ \"publicIpAddress\": \"13.83.91.250\",\r\n \"privateIpAddress\": + \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n + \ \"publicIpAddress\": \"13.83.92.88\",\r\n \"privateIpAddress\": + \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": + false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1868' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 08:27:40 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 35e6c3d6-aafd-4ce4-b3a4-588298d38c48 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ip-address --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","name":"cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T07:50:12Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 08:27:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"deviceProperties": {}, "addressSpace": + {}, "vpnSiteLinks": [{"name": "remote_vpn_site_1", "properties": {"ipAddress": + "10.0.1.110"}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site create + Connection: + - keep-alive + Content-Length: + - '174' + Content-Type: + - application/json + ParameterSetName: + - -g -n --ip-address --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"fc77d023-621e-4b1f-9e3f-da17fcb5e022\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"fc77d023-621e-4b1f-9e3f-da17fcb5e022\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\r\n ]\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5ce0e464-8450-4ec9-a492-114362f3bbfc?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '1384' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 08:27:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b4c17c7f-32b1-48f1-88e1-9852efb065d1 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ip-address --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5ce0e464-8450-4ec9-a492-114362f3bbfc?api-version=2020-05-01 + 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, 15 Nov 2021 08:27: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2837d2cd-f026-49ac-a1fe-bb66cc477918 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ip-address --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5ce0e464-8450-4ec9-a492-114362f3bbfc?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 08:28:08 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 10084b7e-0261-4fc7-8d52-595d47575153 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ip-address --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"1ef5a61b-9e6c-4079-885c-225c491c30a5\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"1ef5a61b-9e6c-4079-885c-225c491c30a5\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1386' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 08:28:09 GMT + etag: + - W/"1ef5a61b-9e6c-4079-885c-225c491c30a5" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - e48a40ac-fd61-4ce2-8f4b-7f3c1b0576d4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link add + Connection: + - keep-alive + ParameterSetName: + - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"1ef5a61b-9e6c-4079-885c-225c491c30a5\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"1ef5a61b-9e6c-4079-885c-225c491c30a5\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1386' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 08:28:10 GMT + etag: + - W/"1ef5a61b-9e6c-4079-885c-225c491c30a5" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 950403db-c3f4-4e38-92fb-59e1f8c5c485 + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1", + "location": "westus", "properties": {"deviceProperties": {"linkSpeedInMbps": + 0}, "addressSpace": {"addressPrefixes": []}, "isSecuritySite": false, "vpnSiteLinks": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1", + "name": "remote_vpn_site_1", "properties": {"linkProperties": {"linkSpeedInMbps": + 0}, "ipAddress": "10.0.1.110"}}, {"name": "VPN-Site-Link1", "properties": {"ipAddress": + "10.0.1.111", "bgpProperties": {"asn": 1234, "bgpPeeringAddress": "192.168.1.0"}}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link add + Connection: + - keep-alive + Content-Length: + - '866' + Content-Type: + - application/json + ParameterSetName: + - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"2f1e6d1b-5131-46d5-abca-ab4535e277d4\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"2f1e6d1b-5131-46d5-abca-ab4535e277d4\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": + \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n + \ \"etag\": \"W/\\\"2f1e6d1b-5131-46d5-abca-ab4535e277d4\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n + \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": + 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d0fa1307-a1b6-48e1-960e-40dff306c881?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '2119' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 08:28:11 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 12dd7013-aebf-4284-aa7c-7fc5c80f2951 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link add + Connection: + - keep-alive + ParameterSetName: + - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d0fa1307-a1b6-48e1-960e-40dff306c881?api-version=2020-05-01 + 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, 15 Nov 2021 08:28:21 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 1531bd0a-c9cb-44ff-9e71-1590ea9f112d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link add + Connection: + - keep-alive + ParameterSetName: + - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d0fa1307-a1b6-48e1-960e-40dff306c881?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 08:28:31 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 6994e7a9-c81c-4154-9a7d-7f53b820bdc0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link add + Connection: + - keep-alive + ParameterSetName: + - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"8cf15b39-7eb0-42bf-861f-b5714d7d929c\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"8cf15b39-7eb0-42bf-861f-b5714d7d929c\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": + \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n + \ \"etag\": \"W/\\\"8cf15b39-7eb0-42bf-861f-b5714d7d929c\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n + \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": + 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2122' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 08:28:32 GMT + etag: + - W/"8cf15b39-7eb0-42bf-861f-b5714d7d929c" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2effc7c5-7f18-402b-8269-b0a83ab9ac18 + status: + code: 200 + message: OK +- request: + body: '{"name": "test_s2s_vpn_gateway_connection", "properties": {"remoteVpnSite": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1"}, + "vpnLinkConnections": [{"name": "test_s2s_vpn_gateway_connection", "properties": + {"vpnSiteLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1"}}}], + "routingConfiguration": {"associatedRouteTable": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + "propagatedRouteTables": {"labels": ["label1", "label2"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2"}]}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + Content-Length: + - '1460' + Content-Type: + - application/json + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table + --propagated-route-tables --labels --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"e5aac739-24eb-45f1-9bdf-bca73f8d3265\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"e5aac739-24eb-45f1-9bdf-bca73f8d3265\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": + false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": + false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": + 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n + \ ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ab9599e5-ec4e-4d9a-9043-dd8ab0000519?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '3403' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 08:28:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 9cbb9b6e-f8eb-4a37-a668-93b8a8380502 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table + --propagated-route-tables --labels --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ab9599e5-ec4e-4d9a-9043-dd8ab0000519?api-version=2020-05-01 + 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, 15 Nov 2021 08:28:45 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 10b4474c-5dd2-46c0-89ab-9f4e639f4e38 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table + --propagated-route-tables --labels --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ab9599e5-ec4e-4d9a-9043-dd8ab0000519?api-version=2020-05-01 + 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, 15 Nov 2021 08:28:56 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - dbcc00db-cb27-421d-9400-79ad45a42503 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table + --propagated-route-tables --labels --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ab9599e5-ec4e-4d9a-9043-dd8ab0000519?api-version=2020-05-01 + 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, 15 Nov 2021 08:29:16 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 92b1ec42-fe8e-4887-b8d7-2aed53fd0504 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table + --propagated-route-tables --labels --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ab9599e5-ec4e-4d9a-9043-dd8ab0000519?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 08:29:56 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d944c4ad-1d88-41ea-9455-c6be85a140e5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table + --propagated-route-tables --labels --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"9555d5fd-7faf-40a0-82a5-7a6c045dad36\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"9555d5fd-7faf-40a0-82a5-7a6c045dad36\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"connectionStatus\": \"Unknown\",\r\n \"enableBgp\": + false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": + false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": + 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": + \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3447' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 08:29:57 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 97cbda4c-96fb-43f1-b113-fe7bfc5b424e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn add + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --vpn-site-link-conn-name --vpn-site-link --vpn-connection-protocol-type + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"9555d5fd-7faf-40a0-82a5-7a6c045dad36\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"9555d5fd-7faf-40a0-82a5-7a6c045dad36\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"connectionStatus\": \"Unknown\",\r\n \"enableBgp\": + false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": + false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": + 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": + \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3447' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 08:30:00 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - c3dcf23c-8561-4cba-bb20-8fbd49ecf1bd + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection", + "name": "test_s2s_vpn_gateway_connection", "properties": {"remoteVpnSite": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1"}, + "enableInternetSecurity": false, "vpnLinkConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection", + "name": "test_s2s_vpn_gateway_connection", "properties": {"vpnSiteLink": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1"}, + "routingWeight": 0, "vpnConnectionProtocolType": "IKEv2", "connectionBandwidth": + 10, "enableBgp": false, "usePolicyBasedTrafficSelectors": false, "ipsecPolicies": + [], "enableRateLimiting": false, "useLocalAzureIpAddress": false}}, {"name": + "Connection-Link1", "properties": {"vpnSiteLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1"}, + "vpnConnectionProtocolType": "IKEv2"}}], "routingConfiguration": {"associatedRouteTable": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + "propagatedRouteTables": {"labels": ["label1", "label2"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2"}]}, + "vnetRoutes": {"staticRoutes": []}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn add + Connection: + - keep-alive + Content-Length: + - '2665' + Content-Type: + - application/json + ParameterSetName: + - -g -n --gateway-name --vpn-site-link-conn-name --vpn-site-link --vpn-connection-protocol-type + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"90125fb2-2347-4234-b21f-814978dd3eb6\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"90125fb2-2347-4234-b21f-814978dd3eb6\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": + false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": + false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": + 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n },\r\n + \ {\r\n \"name\": \"Connection-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/Connection-Link1\",\r\n + \ \"etag\": \"W/\\\"90125fb2-2347-4234-b21f-814978dd3eb6\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": + false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": + false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": + 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n + \ ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b23d57b-29c9-4d38-8506-f70ddae579a4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '4810' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 08:30:00 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 7386b1ab-12f2-4bb3-9938-d5ac7f3fa4d9 + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn add + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --vpn-site-link-conn-name --vpn-site-link --vpn-connection-protocol-type + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b23d57b-29c9-4d38-8506-f70ddae579a4?api-version=2020-05-01 + 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, 15 Nov 2021 08:30:11 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 7ee9529d-c182-45d9-b6e8-22017481de9d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn add + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --vpn-site-link-conn-name --vpn-site-link --vpn-connection-protocol-type + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b23d57b-29c9-4d38-8506-f70ddae579a4?api-version=2020-05-01 + 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, 15 Nov 2021 08:30:21 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 061c3032-1bf8-4e5b-a0d0-40fa260c442e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn add + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --vpn-site-link-conn-name --vpn-site-link --vpn-connection-protocol-type + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b23d57b-29c9-4d38-8506-f70ddae579a4?api-version=2020-05-01 + 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, 15 Nov 2021 08:30:42 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 9bb8dcb0-d1c5-40b1-9130-f1036cc177a2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn add + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --vpn-site-link-conn-name --vpn-site-link --vpn-connection-protocol-type + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3b23d57b-29c9-4d38-8506-f70ddae579a4?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 08:31:22 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a6d92a5b-89dc-4263-8abc-1a1176127b69 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn add + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --vpn-site-link-conn-name --vpn-site-link --vpn-connection-protocol-type + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"cf24009e-a210-4857-b799-9559233d6665\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"cf24009e-a210-4857-b799-9559233d6665\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"connectionStatus\": \"Unknown\",\r\n \"enableBgp\": + false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": + false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": + 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": + \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ },\r\n {\r\n \"name\": \"Connection-Link1\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/Connection-Link1\",\r\n + \ \"etag\": \"W/\\\"cf24009e-a210-4857-b799-9559233d6665\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"connectionStatus\": \"Unknown\",\r\n \"enableBgp\": + false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": + false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": + 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": + \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4897' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 08:31:23 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 96dd7474-6ccf-42e9-8aae-7efb1bc98a86 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn list + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"cf24009e-a210-4857-b799-9559233d6665\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"cf24009e-a210-4857-b799-9559233d6665\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"connectionStatus\": \"Unknown\",\r\n \"enableBgp\": + false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": + false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": + 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": + \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ },\r\n {\r\n \"name\": \"Connection-Link1\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/Connection-Link1\",\r\n + \ \"etag\": \"W/\\\"cf24009e-a210-4857-b799-9559233d6665\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"connectionStatus\": \"Unknown\",\r\n \"enableBgp\": + false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": + false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": + 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": + \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4897' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 08:31:26 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - dcf5f5a1-bbfd-4f41-8dac-de76a1471ec3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn remove + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --index + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"cf24009e-a210-4857-b799-9559233d6665\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"cf24009e-a210-4857-b799-9559233d6665\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"connectionStatus\": \"Unknown\",\r\n \"enableBgp\": + false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": + false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": + 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": + \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ },\r\n {\r\n \"name\": \"Connection-Link1\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/Connection-Link1\",\r\n + \ \"etag\": \"W/\\\"cf24009e-a210-4857-b799-9559233d6665\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"connectionStatus\": \"Unknown\",\r\n \"enableBgp\": + false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": + false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": + 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": + \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4897' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 08: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2cb208fe-8799-4977-b2df-3985d0a8305f + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection", + "name": "test_s2s_vpn_gateway_connection", "properties": {"remoteVpnSite": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1"}, + "enableInternetSecurity": false, "vpnLinkConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection", + "name": "test_s2s_vpn_gateway_connection", "properties": {"vpnSiteLink": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1"}, + "routingWeight": 0, "vpnConnectionProtocolType": "IKEv2", "connectionBandwidth": + 10, "enableBgp": false, "usePolicyBasedTrafficSelectors": false, "ipsecPolicies": + [], "enableRateLimiting": false, "useLocalAzureIpAddress": false}}], "routingConfiguration": + {"associatedRouteTable": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + "propagatedRouteTables": {"labels": ["label1", "label2"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2"}]}, + "vnetRoutes": {"staticRoutes": []}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn remove + Connection: + - keep-alive + Content-Length: + - '2329' + Content-Type: + - application/json + ParameterSetName: + - -g -n --gateway-name --index + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"ff8c3ab5-a727-4214-8bce-bb26ef4d0064\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"ff8c3ab5-a727-4214-8bce-bb26ef4d0064\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": + false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": + false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": + 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n + \ ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/352125c0-465b-4d20-8f7a-ad4745420962?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '3403' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 08:31:29 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0042e9cf-be03-4c52-91bc-0d2976fd1048 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn remove + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --index + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/352125c0-465b-4d20-8f7a-ad4745420962?api-version=2020-05-01 + 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, 15 Nov 2021 08:31:39 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 9e0461d9-0df6-4040-befe-6bad569fddc1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn remove + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --index + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/352125c0-465b-4d20-8f7a-ad4745420962?api-version=2020-05-01 + 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, 15 Nov 2021 08:31:49 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 78324e59-5f32-4a03-a889-2ffd7428fecb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn remove + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --index + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/352125c0-465b-4d20-8f7a-ad4745420962?api-version=2020-05-01 + 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, 15 Nov 2021 08:32:10 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - c9d34075-11a1-48c3-acee-fbd16de3aad8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn remove + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --index + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/352125c0-465b-4d20-8f7a-ad4745420962?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 08:32: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 35f5b1cc-ce51-4cba-9499-e89b537a32e3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn remove + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --index + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"1d6a34f7-7948-4766-9bff-49bc6f556f87\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"1d6a34f7-7948-4766-9bff-49bc6f556f87\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"enableBgp\": + false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": + false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": + 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": + \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3452' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 08:32:51 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 6cdf49b6-3eef-4511-9f46-72c6f28d7edd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime + --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n + \ \"etag\": \"W/\\\"1d6a34f7-7948-4766-9bff-49bc6f556f87\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n + \ {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"1d6a34f7-7948-4766-9bff-49bc6f556f87\\\"\",\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"label1\",\r\n \"label2\"\r\n ],\r\n + \ \"ids\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": + {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n + \ \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": + \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"1d6a34f7-7948-4766-9bff-49bc6f556f87\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": + false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": + false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": + 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n + \ \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ],\r\n + \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n + \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": + 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n + \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"13.83.91.250\",\r\n \"10.0.1.4\"\r\n ]\r\n + \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n ],\r\n + \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"13.83.92.88\",\r\n \"10.0.1.5\"\r\n ]\r\n + \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n + \ \"publicIpAddress\": \"13.83.91.250\",\r\n \"privateIpAddress\": + \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n + \ \"publicIpAddress\": \"13.83.92.88\",\r\n \"privateIpAddress\": + \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": + false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '5665' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 08:32: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 075af2a4-e154-4d93-a9a2-a18db5b7c3ca + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway", + "location": "westus", "properties": {"virtualHub": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub"}, + "connections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection", + "name": "test_s2s_vpn_gateway_connection", "properties": {"remoteVpnSite": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1"}, + "ipsecPolicies": [{"saLifeTimeSeconds": 86471, "saDataSizeKilobytes": 429496, + "ipsecEncryption": "AES256", "ipsecIntegrity": "SHA256", "ikeEncryption": "AES256", + "ikeIntegrity": "SHA384", "dhGroup": "DHGroup14", "pfsGroup": "PFS14"}], "enableInternetSecurity": + false, "vpnLinkConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection", + "name": "test_s2s_vpn_gateway_connection", "properties": {"vpnSiteLink": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1"}, + "routingWeight": 0, "vpnConnectionProtocolType": "IKEv2", "connectionBandwidth": + 10, "enableBgp": false, "usePolicyBasedTrafficSelectors": false, "ipsecPolicies": + [], "enableRateLimiting": false, "useLocalAzureIpAddress": false}}], "routingConfiguration": + {"associatedRouteTable": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + "propagatedRouteTables": {"labels": ["label1", "label2"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2"}]}, + "vnetRoutes": {"staticRoutes": []}}}}], "bgpSettings": {"asn": 65515, "peerWeight": + 0, "bgpPeeringAddresses": [{"ipconfigurationId": "Instance0", "customBgpIpAddresses": + []}, {"ipconfigurationId": "Instance1", "customBgpIpAddresses": []}]}, "vpnGatewayScaleUnit": + 1}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy add + Connection: + - keep-alive + Content-Length: + - '3279' + Content-Type: + - application/json + ParameterSetName: + - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime + --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"VpnConnectionPropertyIsDeprecated\",\r\n + \ \"message\": \"Update request for VpnConnection /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection + contains deprecated property IpsecPolicies. Please use corresponding VpnSiteLinkConnection + property instead.\",\r\n \"details\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '504' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 08:32:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 5dea340f-c214-4743-83ed-44100d5b0eda + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name -n --vpn-site-link-conn-name --ipsec-encryption --ipsec-integrity + --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"1d6a34f7-7948-4766-9bff-49bc6f556f87\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"1d6a34f7-7948-4766-9bff-49bc6f556f87\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"connectionStatus\": \"NotConnected\",\r\n \"enableBgp\": + false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": + false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": + 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": + \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3452' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 08:32:55 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b017a15d-0399-4a9f-bae7-1397cd267a1b + status: + code: 200 + message: OK +version: 1 diff --git a/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_site_link_conn_ipsec_policy.yaml b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_site_link_conn_ipsec_policy.yaml new file mode 100644 index 00000000000..0378a8a357f --- /dev/null +++ b/src/virtual-wan/azext_vwan/tests/latest/recordings/test_azure_vwan_vpn_site_link_conn_ipsec_policy.yaml @@ -0,0 +1,4465 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vwan create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","name":"cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T09:26:58Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 09:27:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vwan create + Connection: + - keep-alive + Content-Length: + - '22' + Content-Type: + - application/json + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualWans/test_vwan\",\r\n + \ \"etag\": \"W/\\\"b6dffa7d-b293-4d9a-a214-8d9ff0a34daa\\\"\",\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}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/79fbc6ce-1ccd-4fbe-bc14-0cc14a0d9b19?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '569' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 09:27:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 785baaf8-5b04-4aeb-a218-7b1a87fdc86c + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vwan create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/79fbc6ce-1ccd-4fbe-bc14-0cc14a0d9b19?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 09:27:23 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a2999b2e-f1fc-4407-9d37-ed6f2aaccb52 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vwan create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualWans/test_vwan?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualWans/test_vwan\",\r\n + \ \"etag\": \"W/\\\"48b1b235-2f1f-44f4-b3ab-876d64bbb8c3\\\"\",\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}" + headers: + cache-control: + - no-cache + content-length: + - '570' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 09:27:23 GMT + etag: + - W/"48b1b235-2f1f-44f4-b3ab-876d64bbb8c3" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 6edea1ff-5a4f-473c-9600-3681bb23c0b5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","name":"cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T09:26:58Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 09:27:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"virtualWan": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualWans/test_vwan"}, + "addressPrefix": "10.0.1.0/24"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + Content-Length: + - '288' + Content-Type: + - application/json + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub\",\r\n + \ \"etag\": \"W/\\\"410ba271-6721-4174-b10e-b5d1ec212346\\\"\",\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.1.0/24\",\r\n \"virtualRouterAsn\": + 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": + []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n + \ },\r\n \"routingState\": \"None\"\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/336837d2-3ea5-4740-94de-23888647979d?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '865' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 09:27:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ee315491-461a-40ce-9262-56fb0bd9c9a5 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/336837d2-3ea5-4740-94de-23888647979d?api-version=2020-05-01 + 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, 15 Nov 2021 09:27: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - eed7dd12-293e-4682-be28-02439b49711b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/336837d2-3ea5-4740-94de-23888647979d?api-version=2020-05-01 + 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, 15 Nov 2021 09:27:53 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - f5ffadbd-477b-44ac-978c-67371b9db631 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/336837d2-3ea5-4740-94de-23888647979d?api-version=2020-05-01 + 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, 15 Nov 2021 09:28:13 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a3a7b29a-d9d6-4585-af10-68b68e79a5d7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/336837d2-3ea5-4740-94de-23888647979d?api-version=2020-05-01 + 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, 15 Nov 2021 09:28:34 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - cec62125-d357-4a6d-a42d-1aa92ff078b4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/336837d2-3ea5-4740-94de-23888647979d?api-version=2020-05-01 + 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, 15 Nov 2021 09:29: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b9451b4f-1091-4b1b-abec-4a767c221458 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/336837d2-3ea5-4740-94de-23888647979d?api-version=2020-05-01 + 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, 15 Nov 2021 09:29:54 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 9cc45ee3-49dd-40b0-bf34-fdb524ba1c0a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/336837d2-3ea5-4740-94de-23888647979d?api-version=2020-05-01 + 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, 15 Nov 2021 09:31:15 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2f64eb44-7bb9-43c8-86c2-58327b45eefa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/336837d2-3ea5-4740-94de-23888647979d?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 09:33:56 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - fed0337b-5133-4ce6-bc8f-61c70d8ab9ed + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub\",\r\n + \ \"etag\": \"W/\\\"d9010b08-f38e-4cb8-bb75-2e28d8165b19\\\"\",\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.1.0/24\",\r\n \"virtualRouterAsn\": + 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": + []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualWans/test_vwan\"\r\n + \ },\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '874' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 09:33:56 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d9b3de65-d7c7-4d35-bb97-d97955d4e128 + status: + code: 200 + message: OK +- request: + body: '{}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub route-table create + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json + ParameterSetName: + - -g --vhub-name -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vhub_routing_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\",\r\n + \ \"etag\": \"W/\\\"c2e45c99-1b85-4d67-9e9d-9658aecbc57d\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [],\r\n \"labels\": + [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": + []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e6a6a0b2-7cbd-4f7d-a51e-cf8ea76b0af6?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '562' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 09:33:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 60a91cde-a6b1-4fe7-9f99-3a5784545727 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub route-table create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub-name -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e6a6a0b2-7cbd-4f7d-a51e-cf8ea76b0af6?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 09:34:09 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 9d5bc2a9-6430-47e6-94ba-c693834c9d08 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub route-table create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub-name -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vhub_routing_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\",\r\n + \ \"etag\": \"W/\\\"7f797088-ba01-4102-91df-349b29b76ec6\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [],\r\n + \ \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": + []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '563' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 09:34:09 GMT + etag: + - W/"7f797088-ba01-4102-91df-349b29b76ec6" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b16a2f89-e34b-4415-9275-825d53cb6052 + status: + code: 200 + message: OK +- request: + body: '{}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub route-table create + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json + ParameterSetName: + - -g --vhub-name -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vhub_routing_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\",\r\n + \ \"etag\": \"W/\\\"8e64a75a-2a19-4400-920b-c3f62a8c10b8\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [],\r\n \"labels\": + [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": + []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/77a214a9-19c8-4ef4-8f72-5e796be3b2f4?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '562' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 09:34:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 48bbf672-5904-4c91-9e99-fee69ec00335 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub route-table create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub-name -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/77a214a9-19c8-4ef4-8f72-5e796be3b2f4?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 09:34:22 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 073f79a5-85c8-489e-aa28-42d4203a08d1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub route-table create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub-name -n + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_vhub_routing_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\",\r\n + \ \"etag\": \"W/\\\"b42bc81c-cdfd-456e-b36f-3a2684cfcad9\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [],\r\n + \ \"labels\": [],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": + []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '563' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 09:34:22 GMT + etag: + - W/"b42bc81c-cdfd-456e-b36f-3a2684cfcad9" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 142487be-23ff-443b-aefb-1ef83e4c839f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","name":"cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T09:26:58Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 09:34:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/vpnGateways/test_s2s_vpn_gateway'' + under resource group ''cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001'' + was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '297' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 09:34:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus", "properties": {"virtualHub": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub"}, + "bgpSettings": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + Content-Length: + - '275' + Content-Type: + - application/json + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n + \ \"etag\": \"W/\\\"9ae423b5-049c-4904-811e-4f9a04b3eabf\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"connections\": [],\r\n + \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n + \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": + 0\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"ipConfigurations\": [],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": + false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '993' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 09:34:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - f1fea268-b25e-44ed-b596-5196e4274d04 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + 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, 15 Nov 2021 09:34:42 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2f76e778-6e87-4658-b644-986d726327ab + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + 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, 15 Nov 2021 09:34: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3d400580-2d52-4ec4-9a36-468c193870ec + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + 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, 15 Nov 2021 09:35:13 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0702a6fa-e0b2-4067-9a3d-0202ee1edfbc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + 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, 15 Nov 2021 09:35: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 91e3394a-e67b-4ced-9e04-d201ef323a05 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + 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, 15 Nov 2021 09:36:13 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b248ff84-03f6-4524-80a6-8385c4666492 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + 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, 15 Nov 2021 09:36:53 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a536a6aa-3e21-43d7-91fe-b48644897cb1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + 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, 15 Nov 2021 09:38: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b3ab7136-ba9e-4093-a991-817cfc090e8d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + 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, 15 Nov 2021 09:40:54 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ac17c229-6f09-435e-8d0c-dad3e9714eb0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + 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, 15 Nov 2021 09:42:35 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - c493219b-8dba-4344-a144-bceef1c224df + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + 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, 15 Nov 2021 09:44:15 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 4c2eed38-37df-48b2-8202-e0e4767f79d8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + 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, 15 Nov 2021 09:45:56 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 89b79d73-2cad-401d-a3ba-728936a6636b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + 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, 15 Nov 2021 09:47:37 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 8133aa0f-5e86-4b3d-bb99-c0cc211e89b8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + 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, 15 Nov 2021 09:49:16 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - c339cc99-1eca-4c39-b0c0-5c17ca9b05bd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + 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, 15 Nov 2021 09:50:57 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 127619c2-1418-4b4a-ba79-8861e3a1de90 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + 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, 15 Nov 2021 09:52:37 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ab56e4f4-c189-4f71-bf13-af73233c0b32 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + 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, 15 Nov 2021 09:54:18 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - dbba0405-e60f-4def-ae9a-4b587be168f8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + 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, 15 Nov 2021 09:55:57 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a65c098d-02ce-437c-a184-cbf4666bd95e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + 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, 15 Nov 2021 09:57:39 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3ff1f82f-550b-4232-b946-2bd0fe4ef2ba + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + 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, 15 Nov 2021 09:59: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 1fa5e4c3-5a5c-4005-983a-4384921d89e6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + 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, 15 Nov 2021 10:00:59 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ac5e5aa1-c3fa-4036-b79c-dcef50dc20bd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae4bf87d-1b31-48da-83e6-4f69f409fd9d?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 10:02:40 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a5ab48c9-2f24-4b8c-8b41-46f91693852b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway create + Connection: + - keep-alive + ParameterSetName: + - -g --vhub --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n + \ \"etag\": \"W/\\\"09e32374-0098-4097-962f-02506932b763\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [],\r\n + \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n + \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": + 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n + \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"104.40.28.19\",\r\n \"10.0.1.4\"\r\n ]\r\n + \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n ],\r\n + \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"104.40.10.243\",\r\n \"10.0.1.5\"\r\n ]\r\n + \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n + \ \"publicIpAddress\": \"104.40.28.19\",\r\n \"privateIpAddress\": + \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n + \ \"publicIpAddress\": \"104.40.10.243\",\r\n \"privateIpAddress\": + \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": + false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1872' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 10:02:41 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 517a5cc8-3391-47a7-80a2-63266095c62c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ip-address --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","name":"cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-15T09:26:58Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 10:02:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"deviceProperties": {}, "addressSpace": + {}, "vpnSiteLinks": [{"name": "remote_vpn_site_1", "properties": {"ipAddress": + "10.0.1.110"}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site create + Connection: + - keep-alive + Content-Length: + - '174' + Content-Type: + - application/json + ParameterSetName: + - -g -n --ip-address --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"b53c3dd9-663e-4bb9-bb5a-d569d367f678\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"b53c3dd9-663e-4bb9-bb5a-d569d367f678\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\r\n ]\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6b41ae35-67e9-4eec-8d5a-2b5c9d3ddffe?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '1384' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 10:02:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 974f5603-9d29-4959-b1b6-975b31b1a949 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ip-address --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6b41ae35-67e9-4eec-8d5a-2b5c9d3ddffe?api-version=2020-05-01 + 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, 15 Nov 2021 10:03:01 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 4bbadc58-7bbc-44a5-bd57-281949d9049a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ip-address --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6b41ae35-67e9-4eec-8d5a-2b5c9d3ddffe?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 10:03:12 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - fe446d43-9a58-4a4b-ac6b-6c68bc4d31f9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ip-address --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"0f719ff2-caa4-49cb-895b-0585b0823a2f\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"0f719ff2-caa4-49cb-895b-0585b0823a2f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1386' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 10:03:12 GMT + etag: + - W/"0f719ff2-caa4-49cb-895b-0585b0823a2f" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2ab8c0d4-6399-4171-9aa5-e4d3b458cdb3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link add + Connection: + - keep-alive + ParameterSetName: + - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"0f719ff2-caa4-49cb-895b-0585b0823a2f\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"0f719ff2-caa4-49cb-895b-0585b0823a2f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1386' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 10:03:14 GMT + etag: + - W/"0f719ff2-caa4-49cb-895b-0585b0823a2f" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0f8a2126-18b7-410a-9c0b-0c1ef60c8695 + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1", + "location": "westus", "properties": {"deviceProperties": {"linkSpeedInMbps": + 0}, "addressSpace": {"addressPrefixes": []}, "isSecuritySite": false, "vpnSiteLinks": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1", + "name": "remote_vpn_site_1", "properties": {"linkProperties": {"linkSpeedInMbps": + 0}, "ipAddress": "10.0.1.110"}}, {"name": "VPN-Site-Link1", "properties": {"ipAddress": + "10.0.1.111", "bgpProperties": {"asn": 1234, "bgpPeeringAddress": "192.168.1.0"}}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link add + Connection: + - keep-alive + Content-Length: + - '866' + Content-Type: + - application/json + ParameterSetName: + - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"a8168690-9bbe-43a0-a2d0-a3a8ca321a01\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"a8168690-9bbe-43a0-a2d0-a3a8ca321a01\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": + \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n + \ \"etag\": \"W/\\\"a8168690-9bbe-43a0-a2d0-a3a8ca321a01\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n + \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": + 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d3128f2c-72c3-40a2-8068-f6c8abec316c?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '2119' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 10:03: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - c559a630-8dc5-4ea0-8e7e-03f62b5a589c + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link add + Connection: + - keep-alive + ParameterSetName: + - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d3128f2c-72c3-40a2-8068-f6c8abec316c?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 10:03: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 564a4338-2090-4044-abb3-62089c71954d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-site link add + Connection: + - keep-alive + ParameterSetName: + - -g -n --vpn-site-link-name --ip-address --asn --bgp-peering-address + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"remote_vpn_site_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"af71f61b-6c5f-41e6-866f-38ba4dfc26b8\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnSites\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressSpace\": {\r\n + \ \"addressPrefixes\": []\r\n },\r\n \"deviceProperties\": {\r\n + \ \"linkSpeedInMbps\": 0\r\n },\r\n \"isSecuritySite\": false,\r\n + \ \"o365Policy\": {\r\n \"breakOutCategories\": {\r\n \"optimize\": + false,\r\n \"allow\": false,\r\n \"default\": false\r\n }\r\n + \ },\r\n \"vpnSiteLinks\": [\r\n {\r\n \"name\": \"remote_vpn_site_1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\",\r\n + \ \"etag\": \"W/\\\"af71f61b-6c5f-41e6-866f-38ba4dfc26b8\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.110\",\r\n \"linkProperties\": + {\r\n \"linkSpeedInMbps\": 0\r\n }\r\n },\r\n \"type\": + \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n },\r\n {\r\n \"name\": + \"VPN-Site-Link1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/VPN-Site-Link1\",\r\n + \ \"etag\": \"W/\\\"af71f61b-6c5f-41e6-866f-38ba4dfc26b8\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"ipAddress\": \"10.0.1.111\",\r\n \"bgpProperties\": {\r\n + \ \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.1.0\"\r\n + \ },\r\n \"linkProperties\": {\r\n \"linkSpeedInMbps\": + 0\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/vpnSites/vpnSiteLinks\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2122' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 10:03:25 GMT + etag: + - W/"af71f61b-6c5f-41e6-866f-38ba4dfc26b8" + 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - f7c2a8b3-ae45-46af-9fd2-3b5b537a2d24 + status: + code: 200 + message: OK +- request: + body: '{"name": "test_s2s_vpn_gateway_connection", "properties": {"remoteVpnSite": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1"}, + "vpnLinkConnections": [{"name": "test_s2s_vpn_gateway_connection", "properties": + {"vpnSiteLink": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1"}}}], + "routingConfiguration": {"associatedRouteTable": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + "propagatedRouteTables": {"labels": ["label1", "label2"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2"}]}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + Content-Length: + - '1460' + Content-Type: + - application/json + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table + --propagated-route-tables --labels --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"d795ab67-69ed-498a-925d-dc914b03986c\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"d795ab67-69ed-498a-925d-dc914b03986c\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": + false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": + false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": + 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n + \ ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6eee3ecd-1aac-404d-8194-ed74dec68d6e?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '3403' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 10:03:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 767ca8f9-c4f3-4c68-96be-8ea04db1ecf4 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table + --propagated-route-tables --labels --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6eee3ecd-1aac-404d-8194-ed74dec68d6e?api-version=2020-05-01 + 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, 15 Nov 2021 10:03:38 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b14ae09f-ef25-4407-bd61-b26fa6511899 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table + --propagated-route-tables --labels --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6eee3ecd-1aac-404d-8194-ed74dec68d6e?api-version=2020-05-01 + 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, 15 Nov 2021 10:03:48 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b134a139-3e57-41b7-919b-8dd008d83695 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table + --propagated-route-tables --labels --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6eee3ecd-1aac-404d-8194-ed74dec68d6e?api-version=2020-05-01 + 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, 15 Nov 2021 10:04:09 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 5acf4cb3-4c6a-47a0-8f63-683381bdc1d1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table + --propagated-route-tables --labels --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6eee3ecd-1aac-404d-8194-ed74dec68d6e?api-version=2020-05-01 + 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, 15 Nov 2021 10:04:49 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a24df7d4-b851-40d4-89cb-7ce285acfa83 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table + --propagated-route-tables --labels --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6eee3ecd-1aac-404d-8194-ed74dec68d6e?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 10:06:10 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - c19bae8b-d056-4d79-bf3e-fe9e8ce60843 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection create + Connection: + - keep-alive + ParameterSetName: + - -g -n --gateway-name --remote-vpn-site --vpn-site-link --associated-route-table + --propagated-route-tables --labels --with-link + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"79dffd12-e085-42d2-b44e-0d76e39887bb\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"79dffd12-e085-42d2-b44e-0d76e39887bb\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"connectionStatus\": \"Unknown\",\r\n \"enableBgp\": + false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": + false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": + 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": + \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3447' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 10:06:10 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 7c2fab54-ac07-4e5a-a109-617d769288e5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime + --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway\",\r\n + \ \"etag\": \"W/\\\"79dffd12-e085-42d2-b44e-0d76e39887bb\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"connections\": [\r\n + \ {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"79dffd12-e085-42d2-b44e-0d76e39887bb\\\"\",\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": + [\r\n \"label1\",\r\n \"label2\"\r\n ],\r\n + \ \"ids\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": + {\r\n \"staticRoutes\": []\r\n }\r\n },\r\n + \ \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": + \"test_s2s_vpn_gateway_connection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"79dffd12-e085-42d2-b44e-0d76e39887bb\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"vpnSiteLink\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": + false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": + false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": + 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n + \ \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n + \ \"egressBytesTransferred\": 0\r\n }\r\n }\r\n ],\r\n + \ \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub\"\r\n + \ },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"peerWeight\": + 0,\r\n \"bgpPeeringAddresses\": [\r\n {\r\n \"ipconfigurationId\": + \"Instance0\",\r\n \"defaultBgpIpAddresses\": [\r\n \"10.0.1.12\"\r\n + \ ],\r\n \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"104.40.28.19\",\r\n \"10.0.1.4\"\r\n ]\r\n + \ },\r\n {\r\n \"ipconfigurationId\": \"Instance1\",\r\n + \ \"defaultBgpIpAddresses\": [\r\n \"10.0.1.13\"\r\n ],\r\n + \ \"customBgpIpAddresses\": [],\r\n \"tunnelIpAddresses\": + [\r\n \"104.40.10.243\",\r\n \"10.0.1.5\"\r\n ]\r\n + \ }\r\n ]\r\n },\r\n \"vpnGatewayScaleUnit\": 1,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"Instance0\",\r\n + \ \"publicIpAddress\": \"104.40.28.19\",\r\n \"privateIpAddress\": + \"10.0.1.4\"\r\n },\r\n {\r\n \"id\": \"Instance1\",\r\n + \ \"publicIpAddress\": \"104.40.10.243\",\r\n \"privateIpAddress\": + \"10.0.1.5\"\r\n }\r\n ],\r\n \"natRules\": [],\r\n \"enableBgpRouteTranslationForNat\": + false,\r\n \"isRoutingPreferenceInternet\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '5669' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 10:06:13 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 771afdaa-1667-4536-bb39-864cae5a91e1 + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway", + "location": "westus", "properties": {"virtualHub": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub"}, + "connections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection", + "name": "test_s2s_vpn_gateway_connection", "properties": {"remoteVpnSite": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1"}, + "ipsecPolicies": [{"saLifeTimeSeconds": 86471, "saDataSizeKilobytes": 429496, + "ipsecEncryption": "AES256", "ipsecIntegrity": "SHA256", "ikeEncryption": "AES256", + "ikeIntegrity": "SHA384", "dhGroup": "DHGroup14", "pfsGroup": "PFS14"}], "enableInternetSecurity": + false, "vpnLinkConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection", + "name": "test_s2s_vpn_gateway_connection", "properties": {"vpnSiteLink": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1"}, + "routingWeight": 0, "vpnConnectionProtocolType": "IKEv2", "connectionBandwidth": + 10, "enableBgp": false, "usePolicyBasedTrafficSelectors": false, "ipsecPolicies": + [], "enableRateLimiting": false, "useLocalAzureIpAddress": false}}], "routingConfiguration": + {"associatedRouteTable": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + "propagatedRouteTables": {"labels": ["label1", "label2"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2"}]}, + "vnetRoutes": {"staticRoutes": []}}}}], "bgpSettings": {"asn": 65515, "peerWeight": + 0, "bgpPeeringAddresses": [{"ipconfigurationId": "Instance0", "customBgpIpAddresses": + []}, {"ipconfigurationId": "Instance1", "customBgpIpAddresses": []}]}, "vpnGatewayScaleUnit": + 1}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection ipsec-policy add + Connection: + - keep-alive + Content-Length: + - '3279' + Content-Type: + - application/json + ParameterSetName: + - -g --gateway-name --connection-name --ipsec-encryption --ipsec-integrity --sa-lifetime + --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway?api-version=2020-05-01 + response: + body: + string: "{\r\n \"error\": {\r\n \"code\": \"VpnConnectionPropertyIsDeprecated\",\r\n + \ \"message\": \"Update request for VpnConnection /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection + contains deprecated property IpsecPolicies. Please use corresponding VpnSiteLinkConnection + property instead.\",\r\n \"details\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '504' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 10:06:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 72c2f778-39e3-4441-9180-17717363a701 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name -n --vpn-site-link-conn-name --ipsec-encryption --ipsec-integrity + --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"79dffd12-e085-42d2-b44e-0d76e39887bb\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"79dffd12-e085-42d2-b44e-0d76e39887bb\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"connectionStatus\": \"Unknown\",\r\n \"enableBgp\": + false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": + false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": + 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": + \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3447' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 10:06:15 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 9d687498-4606-4619-bd9f-bf39e5c76bd2 + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection", + "name": "test_s2s_vpn_gateway_connection", "properties": {"remoteVpnSite": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1"}, + "enableInternetSecurity": false, "vpnLinkConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection", + "name": "test_s2s_vpn_gateway_connection", "properties": {"vpnSiteLink": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1"}, + "routingWeight": 0, "vpnConnectionProtocolType": "IKEv2", "connectionBandwidth": + 10, "enableBgp": false, "usePolicyBasedTrafficSelectors": false, "ipsecPolicies": + [{"saLifeTimeSeconds": 86471, "saDataSizeKilobytes": 429496, "ipsecEncryption": + "AES256", "ipsecIntegrity": "SHA256", "ikeEncryption": "AES256", "ikeIntegrity": + "SHA384", "dhGroup": "DHGroup14", "pfsGroup": "PFS14"}], "enableRateLimiting": + false, "useLocalAzureIpAddress": false}}], "routingConfiguration": {"associatedRouteTable": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + "propagatedRouteTables": {"labels": ["label1", "label2"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2"}]}, + "vnetRoutes": {"staticRoutes": []}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn ipsec-policy add + Connection: + - keep-alive + Content-Length: + - '2543' + Content-Type: + - application/json + ParameterSetName: + - -g --gateway-name -n --vpn-site-link-conn-name --ipsec-encryption --ipsec-integrity + --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"819f6c57-c530-453a-9bfb-46ad95c1337b\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"819f6c57-c530-453a-9bfb-46ad95c1337b\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": + 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": + \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": + \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": + \"PFS14\"\r\n }\r\n ],\r\n \"vpnConnectionProtocolType\": + \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"enableBgp\": + false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": + false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": + 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": + \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7fe7feb8-0553-4fe5-9f66-228a8c718d1e?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '3778' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 10:06:16 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 456bfed5-2a3c-40d8-85c9-31c53ace8e19 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name -n --vpn-site-link-conn-name --ipsec-encryption --ipsec-integrity + --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7fe7feb8-0553-4fe5-9f66-228a8c718d1e?api-version=2020-05-01 + 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, 15 Nov 2021 10:06:26 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a719e262-338b-48e3-804d-f0d89b9f6ef4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name -n --vpn-site-link-conn-name --ipsec-encryption --ipsec-integrity + --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7fe7feb8-0553-4fe5-9f66-228a8c718d1e?api-version=2020-05-01 + 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, 15 Nov 2021 10:06:37 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 9daf0e01-6dbf-43bb-851f-261803180c49 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name -n --vpn-site-link-conn-name --ipsec-encryption --ipsec-integrity + --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7fe7feb8-0553-4fe5-9f66-228a8c718d1e?api-version=2020-05-01 + 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, 15 Nov 2021 10:06: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d5bfe3b9-46ae-4c9d-afd0-164b4aef939c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name -n --vpn-site-link-conn-name --ipsec-encryption --ipsec-integrity + --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7fe7feb8-0553-4fe5-9f66-228a8c718d1e?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 10:07:38 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3966f610-87cc-4acf-9449-8dc94c631ebb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn ipsec-policy add + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name -n --vpn-site-link-conn-name --ipsec-encryption --ipsec-integrity + --sa-lifetime --sa-data-size --ike-encryption --ike-integrity --dh-group --pfs-group + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"d30092cc-580a-4c5f-b3d2-88f45eb7fb63\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"d30092cc-580a-4c5f-b3d2-88f45eb7fb63\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": + 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": + \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": + \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": + \"PFS14\"\r\n }\r\n ],\r\n \"vpnConnectionProtocolType\": + \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"connectionStatus\": + \"Unknown\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": + false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": + false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": + 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n + \ ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3822' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 10:07:39 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 84320923-be0a-44e5-829e-5418cd841499 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn ipsec-policy list + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name -n --vpn-site-link-conn-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"d30092cc-580a-4c5f-b3d2-88f45eb7fb63\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"d30092cc-580a-4c5f-b3d2-88f45eb7fb63\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": + 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": + \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": + \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": + \"PFS14\"\r\n }\r\n ],\r\n \"vpnConnectionProtocolType\": + \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"connectionStatus\": + \"Unknown\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": + false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": + false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": + 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n + \ ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3822' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 10:07:41 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0e3cdfdc-47d0-49c3-b70f-60b454edec16 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn ipsec-policy remove + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name -n --vpn-site-link-conn-name --index + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"d30092cc-580a-4c5f-b3d2-88f45eb7fb63\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"d30092cc-580a-4c5f-b3d2-88f45eb7fb63\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [\r\n {\r\n \"saLifeTimeSeconds\": 86471,\r\n \"saDataSizeKilobytes\": + 429496,\r\n \"ipsecEncryption\": \"AES256\",\r\n \"ipsecIntegrity\": + \"SHA256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": + \"SHA384\",\r\n \"dhGroup\": \"DHGroup14\",\r\n \"pfsGroup\": + \"PFS14\"\r\n }\r\n ],\r\n \"vpnConnectionProtocolType\": + \"IKEv2\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0,\r\n \"packetCaptureDiagnosticState\": \"None\",\r\n \"connectionStatus\": + \"Unknown\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": + false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": + false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": + 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n + \ ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3822' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 10:07: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - f0a50952-7bee-442e-a373-58cf7ff21957 + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection", + "name": "test_s2s_vpn_gateway_connection", "properties": {"remoteVpnSite": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1"}, + "enableInternetSecurity": false, "vpnLinkConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection", + "name": "test_s2s_vpn_gateway_connection", "properties": {"vpnSiteLink": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1"}, + "routingWeight": 0, "vpnConnectionProtocolType": "IKEv2", "connectionBandwidth": + 10, "enableBgp": false, "usePolicyBasedTrafficSelectors": false, "ipsecPolicies": + [], "enableRateLimiting": false, "useLocalAzureIpAddress": false}}], "routingConfiguration": + {"associatedRouteTable": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + "propagatedRouteTables": {"labels": ["label1", "label2"], "ids": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2"}]}, + "vnetRoutes": {"staticRoutes": []}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn ipsec-policy remove + Connection: + - keep-alive + Content-Length: + - '2329' + Content-Type: + - application/json + ParameterSetName: + - -g --gateway-name -n --vpn-site-link-conn-name --index + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"6d8f4d5c-91c7-4e88-a050-8508a2944bc1\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Updating\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"6d8f4d5c-91c7-4e88-a050-8508a2944bc1\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"enableBgp\": false,\r\n \"enableRateLimiting\": + false,\r\n \"useLocalAzureIpAddress\": false,\r\n \"usePolicyBasedTrafficSelectors\": + false,\r\n \"routingWeight\": 0,\r\n \"dpdTimeoutSeconds\": + 0,\r\n \"vpnLinkConnectionMode\": \"Default\"\r\n },\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n }\r\n + \ ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f8828ad5-09d5-4bba-a479-23b00df857e3?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '3403' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 10:07: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2a1c8235-2f3b-4894-bf6f-0659b30f4b30 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn ipsec-policy remove + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name -n --vpn-site-link-conn-name --index + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f8828ad5-09d5-4bba-a479-23b00df857e3?api-version=2020-05-01 + 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, 15 Nov 2021 10:07:54 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 70c1e640-eb80-4510-a4b5-aea72629c640 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn ipsec-policy remove + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name -n --vpn-site-link-conn-name --index + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f8828ad5-09d5-4bba-a479-23b00df857e3?api-version=2020-05-01 + 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, 15 Nov 2021 10:08:04 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 49059427-8839-4116-9905-11135ac7ae81 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn ipsec-policy remove + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name -n --vpn-site-link-conn-name --index + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f8828ad5-09d5-4bba-a479-23b00df857e3?api-version=2020-05-01 + 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, 15 Nov 2021 10:08: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - dd120fc3-3e50-4e4d-86da-b4b39f7e859c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn ipsec-policy remove + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name -n --vpn-site-link-conn-name --index + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f8828ad5-09d5-4bba-a479-23b00df857e3?api-version=2020-05-01 + 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: + - Mon, 15 Nov 2021 10:09: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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 638f3ff7-c777-4256-ad3a-10d1747f4215 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vpn-gateway connection vpn-site-link-conn ipsec-policy remove + Connection: + - keep-alive + ParameterSetName: + - -g --gateway-name -n --vpn-site-link-conn-name --index + User-Agent: + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"891440d9-5b63-4d80-a7c3-efc696a7df79\\\"\",\r\n \"type\": + \"Microsoft.Network/vpnGateways/vpnConnections\",\r\n \"properties\": {\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"routingConfiguration\": + {\r\n \"associatedRouteTable\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n \"propagatedRouteTables\": {\r\n \"labels\": [\r\n + \ \"label1\",\r\n \"label2\"\r\n ],\r\n \"ids\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/virtualHubs/test_vhub/hubRouteTables/test_vhub_routing_2\"\r\n + \ }\r\n ]\r\n },\r\n \"vnetRoutes\": {\r\n \"staticRoutes\": + []\r\n }\r\n },\r\n \"enableInternetSecurity\": false,\r\n \"remoteVpnSite\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1\"\r\n + \ },\r\n \"vpnLinkConnections\": [\r\n {\r\n \"name\": \"test_s2s_vpn_gateway_connection\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnGateways/test_s2s_vpn_gateway/vpnConnections/test_s2s_vpn_gateway_connection/vpnLinkConnections/test_s2s_vpn_gateway_connection\",\r\n + \ \"etag\": \"W/\\\"891440d9-5b63-4d80-a7c3-efc696a7df79\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"vpnSiteLink\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy000001/providers/Microsoft.Network/vpnSites/remote_vpn_site_1/vpnSiteLinks/remote_vpn_site_1\"\r\n + \ },\r\n \"connectionBandwidth\": 10,\r\n \"ipsecPolicies\": + [],\r\n \"vpnConnectionProtocolType\": \"IKEv2\",\r\n \"ingressBytesTransferred\": + 0,\r\n \"egressBytesTransferred\": 0,\r\n \"packetCaptureDiagnosticState\": + \"None\",\r\n \"connectionStatus\": \"Unknown\",\r\n \"enableBgp\": + false,\r\n \"enableRateLimiting\": false,\r\n \"useLocalAzureIpAddress\": + false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"routingWeight\": + 0,\r\n \"dpdTimeoutSeconds\": 0,\r\n \"vpnLinkConnectionMode\": + \"Default\"\r\n },\r\n \"type\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnLinkConnections\"\r\n + \ }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": + 0\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3447' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Nov 2021 10:09:06 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-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b2c8b0e4-bac6-4591-ad5e-51df01a1c3ee + status: + code: 200 + message: OK +version: 1 diff --git a/src/virtual-wan/azext_vwan/tests/latest/test_azure_vwan_vhub_commands.py b/src/virtual-wan/azext_vwan/tests/latest/test_azure_vwan_vhub_commands.py index 67bd302fd62..5660518c3f3 100644 --- a/src/virtual-wan/azext_vwan/tests/latest/test_azure_vwan_vhub_commands.py +++ b/src/virtual-wan/azext_vwan/tests/latest/test_azure_vwan_vhub_commands.py @@ -365,6 +365,184 @@ def test_azure_vwan_vpn_gateway_connection(self): '-n {connection} ' '--gateway-name {vpngateway}') + @ResourceGroupPreparer(name_prefix='cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link', location='westus') + def test_azure_vwan_vpn_gateway_connection_vpn_site_link(self): + self.kwargs.update({ + 'vwan': 'test_vwan', + 'vhub': 'test_vhub', + 'vpngateway': 'test_s2s_vpn_gateway', + 'connection': 'test_s2s_vpn_gateway_connection', + 'vpn_site': 'remote_vpn_site_1', + 'route_table1': 'test_vhub_routing_1', + 'route_table2': 'test_vhub_routing_2', + 'vpn_site_link_conn': 'Connection-Link1', + 'vpn_site_link_name': 'VPN-Site-Link1', + 'vpn_site_link_2_name': 'VPN-Site-Link2', + 'sub': '/subscriptions/{}'.format(self.get_subscription_id()) + }) + + self.cmd('network vwan create -g {rg} -n {vwan}') + + self.cmd('network vhub create -g {rg} -n {vhub} --vwan {vwan} --address-prefix 10.0.1.0/24') + rt1 = self.cmd('network vhub route-table create -g {rg} --vhub-name {vhub} -n {route_table1}').get_output_in_json() + rt2 = self.cmd('network vhub route-table create -g {rg} --vhub-name {vhub} -n {route_table2}').get_output_in_json() + + self.kwargs.update({ + 'route_table1': rt1['id'], + 'route_table2': rt2['id'], + }) + + self.cmd('network vpn-gateway create -g {rg} --vhub {vhub} --name {vpngateway}', + checks=[]) + + # Test vpn site with links + self.cmd('network vpn-site create -g {rg} -n {vpn_site} --ip-address 10.0.1.110') + with self.assertRaisesRegexp(HttpResponseError, 'MissingDefaultLinkForVpnSiteDuringMigrationToLinkFormat'): + self.cmd('network vpn-site link add -g {rg} --site-name {vpn_site} -n {vpn_site_link_name} --ip-address 10.0.1.111 --asn 1234 --bgp-peering-address 192.168.0.0') + # Test ipsec policy + self.cmd('network vpn-gateway connection create ' + '-g {rg} ' + '-n {connection} ' + '--gateway-name {vpngateway} ' + '--remote-vpn-site {sub}/resourceGroups/{rg}/providers/Microsoft.Network/vpnSites/{vpn_site} ' + '--associated-route-table {route_table1} ' + '--propagated-route-tables {route_table1} {route_table2} ' + '--labels label1 label2 ') + self.cmd('network vpn-gateway connection ipsec-policy add -g {rg} --gateway-name {vpngateway} --connection-name {connection} --ipsec-encryption AES256 --ipsec-integrity SHA256 --sa-lifetime 86471 --sa-data-size 429496 --ike-encryption AES256 --ike-integrity SHA384 --dh-group DHGroup14 --pfs-group PFS14') + self.cmd('network vpn-gateway connection ipsec-policy list -g {rg} --gateway-name {vpngateway} --connection-name {connection}') + self.cmd('network vpn-gateway connection ipsec-policy remove -g {rg} --gateway-name {vpngateway} --connection-name {connection} --index 1') + self.cmd('network vpn-gateway connection delete -g {rg} -n {connection} --gateway-name {vpngateway}') + self.cmd('network vpn-site delete -g {rg} -n {vpn_site}') + + self.cmd('network vpn-site create -g {rg} -n {vpn_site} --ip-address 10.0.1.110 --with-link') + self.cmd('network vpn-site link add -g {rg} --site-name {vpn_site} -n {vpn_site_link_name} --ip-address 10.0.1.111 --asn 1234 --bgp-peering-address 192.168.1.0') + self.cmd('network vpn-site link add -g {rg} --site-name {vpn_site} -n {vpn_site_link_2_name} --ip-address 10.0.1.112 --asn 1234 --bgp-peering-address 192.168.2.0') + self.cmd('network vpn-site link list -g {rg} --site-name {vpn_site}') + self.cmd('network vpn-site link remove -g {rg} --site-name {vpn_site} --index 2') + + @ResourceGroupPreparer(name_prefix='cli_test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn', location='westus') + def test_azure_vwan_vpn_gateway_connection_vpn_site_link_conn(self): + self.kwargs.update({ + 'vwan': 'test_vwan', + 'vhub': 'test_vhub', + 'vpngateway': 'test_s2s_vpn_gateway', + 'connection': 'test_s2s_vpn_gateway_connection', + 'vpn_site': 'remote_vpn_site_1', + 'route_table1': 'test_vhub_routing_1', + 'route_table2': 'test_vhub_routing_2', + 'vpn_site_link_conn': 'Connection-Link1', + 'vpn_site_link_name': 'VPN-Site-Link1', + 'vpn_site_link_2_name': 'VPN-Site-Link2', + 'sub': '/subscriptions/{}'.format(self.get_subscription_id()) + }) + + self.cmd('network vwan create -g {rg} -n {vwan}') + + self.cmd('network vhub create -g {rg} -n {vhub} --vwan {vwan} --address-prefix 10.0.1.0/24') + rt1 = self.cmd('network vhub route-table create -g {rg} --vhub-name {vhub} -n {route_table1}').get_output_in_json() + rt2 = self.cmd('network vhub route-table create -g {rg} --vhub-name {vhub} -n {route_table2}').get_output_in_json() + + self.kwargs.update({ + 'route_table1': rt1['id'], + 'route_table2': rt2['id'], + }) + + self.cmd('network vpn-gateway create -g {rg} --vhub {vhub} --name {vpngateway}', + checks=[]) + + self.cmd('network vpn-site create -g {rg} -n {vpn_site} --ip-address 10.0.1.110 --with-link') + self.cmd('network vpn-site link add -g {rg} --site-name {vpn_site} -n {vpn_site_link_name} --ip-address 10.0.1.111 --asn 1234 --bgp-peering-address 192.168.1.0') + + # Test vpn gateway connection with links + self.cmd('network vpn-gateway connection create ' + '-g {rg} ' + '-n {connection} ' + '--gateway-name {vpngateway} ' + '--remote-vpn-site {sub}/resourceGroups/{rg}/providers/Microsoft.Network/vpnSites/{vpn_site} ' + '--vpn-site-link "{sub}/resourceGroups/{rg}/providers/Microsoft.Network/vpnSites/{vpn_site}/vpnSiteLinks/{vpn_site}" ' + '--associated-route-table {route_table1} ' + '--propagated-route-tables {route_table1} {route_table2} ' + '--labels label1 label2 ' + '--with-link') + + self.cmd('network vpn-gateway connection vpn-site-link-conn add ' + '-g {rg} ' + '--connection-name {connection} ' + '--gateway-name {vpngateway} ' + '-n {vpn_site_link_conn} ' + '--vpn-site-link "{sub}/resourceGroups/{rg}/providers/Microsoft.Network/vpnSites/{vpn_site}/vpnSiteLinks/{vpn_site_link_name}" ' + '--vpn-connection-protocol-type IKEv2') + + self.cmd('network vpn-gateway connection vpn-site-link-conn list ' + '-g {rg} ' + '--connection-name {connection} ' + '--gateway-name {vpngateway}') + + self.cmd('network vpn-gateway connection vpn-site-link-conn remove ' + '-g {rg} ' + '--connection-name {connection} ' + '--gateway-name {vpngateway} ' + '--index 2') + + @ResourceGroupPreparer(name_prefix='cli_test_azure_vwan_vpn_site_link_conn_ipsec_policy', location='westus') + def test_azure_vwan_vpn_site_link_conn_ipsec_policy(self): + self.kwargs.update({ + 'vwan': 'test_vwan', + 'vhub': 'test_vhub', + 'vpngateway': 'test_s2s_vpn_gateway', + 'connection': 'test_s2s_vpn_gateway_connection', + 'vpn_site': 'remote_vpn_site_1', + 'route_table1': 'test_vhub_routing_1', + 'route_table2': 'test_vhub_routing_2', + 'vpn_site_link_conn': 'Connection-Link1', + 'vpn_site_link_name': 'VPN-Site-Link1', + 'vpn_site_link_2_name': 'VPN-Site-Link2', + 'sub': '/subscriptions/{}'.format(self.get_subscription_id()) + }) + + self.cmd('network vwan create -g {rg} -n {vwan}') + + self.cmd('network vhub create -g {rg} -n {vhub} --vwan {vwan} --address-prefix 10.0.1.0/24') + rt1 = self.cmd('network vhub route-table create -g {rg} --vhub-name {vhub} -n {route_table1}').get_output_in_json() + rt2 = self.cmd('network vhub route-table create -g {rg} --vhub-name {vhub} -n {route_table2}').get_output_in_json() + + self.kwargs.update({ + 'route_table1': rt1['id'], + 'route_table2': rt2['id'], + }) + + self.cmd('network vpn-gateway create -g {rg} --vhub {vhub} --name {vpngateway}', + checks=[]) + + self.cmd('network vpn-site create -g {rg} -n {vpn_site} --ip-address 10.0.1.110 --with-link') + self.cmd('network vpn-site link add -g {rg} --site-name {vpn_site} -n {vpn_site_link_name} --ip-address 10.0.1.111 --asn 1234 --bgp-peering-address 192.168.1.0') + + # Test vpn gateway connection with links + self.cmd('network vpn-gateway connection create ' + '-g {rg} ' + '-n {connection} ' + '--gateway-name {vpngateway} ' + '--remote-vpn-site {sub}/resourceGroups/{rg}/providers/Microsoft.Network/vpnSites/{vpn_site} ' + '--vpn-site-link "{sub}/resourceGroups/{rg}/providers/Microsoft.Network/vpnSites/{vpn_site}/vpnSiteLinks/{vpn_site}" ' + '--associated-route-table {route_table1} ' + '--propagated-route-tables {route_table1} {route_table2} ' + '--labels label1 label2 ' + '--with-link') + + # Test issue: + # Ipsec policy setted on conneciton will fail due to multi-links on connection + with self.assertRaisesRegexp(HttpResponseError, 'VpnConnectionPropertyIsDeprecated'): + self.cmd('network vpn-gateway connection ipsec-policy add -g {rg} --gateway-name {vpngateway} --connection-name {connection} ' + '--ipsec-encryption AES256 --ipsec-integrity SHA256 --sa-lifetime 86471 --sa-data-size 429496 --ike-encryption AES256 ' + '--ike-integrity SHA384 --dh-group DHGroup14 --pfs-group PFS14') + + # Test link-conn ipsec policy + self.cmd('network vpn-gateway connection vpn-site-link-conn ipsec-policy add -g {rg} --gateway-name {vpngateway} --connection-name {connection} ' + '-n {connection} --ipsec-encryption AES256 --ipsec-integrity SHA256 --sa-lifetime 86471 ' + '--sa-data-size 429496 --ike-encryption AES256 --ike-integrity SHA384 --dh-group DHGroup14 --pfs-group PFS14') + self.cmd('network vpn-gateway connection vpn-site-link-conn ipsec-policy list -g {rg} --gateway-name {vpngateway} --connection-name {connection} -n {connection}') + self.cmd('network vpn-gateway connection vpn-site-link-conn ipsec-policy remove -g {rg} --gateway-name {vpngateway} --connection-name {connection} -n {connection} --index 1') + @ResourceGroupPreparer(name_prefix='cli_test_azure_vwan_vhub_bgpconnection', location='westus') @VirtualNetworkPreparer() def test_azure_vwan_vhub_bgpconnection(self, virtual_network, resource_group): diff --git a/src/virtual-wan/setup.py b/src/virtual-wan/setup.py index a5942ed5309..4edc75a056e 100644 --- a/src/virtual-wan/setup.py +++ b/src/virtual-wan/setup.py @@ -8,7 +8,7 @@ from codecs import open from setuptools import setup, find_packages -VERSION = "0.2.10" +VERSION = "0.2.11" CLASSIFIERS = [ 'Development Status :: 4 - Beta', diff --git a/src/vm-repair/HISTORY.rst b/src/vm-repair/HISTORY.rst index 15e2be7692b..4ba74524e7e 100644 --- a/src/vm-repair/HISTORY.rst +++ b/src/vm-repair/HISTORY.rst @@ -2,6 +2,14 @@ Release History =============== +0.3.9 +++++++ +Add support for preview flag and fix Gen2 bug + +0.3.8 +++++++ +Add support for optional public IP + 0.3.6 ++++++ Add support for ALAR2 which requires cloud-init script to prepare the recovery VM with a diff --git a/src/vm-repair/azext_vm_repair/_help.py b/src/vm-repair/azext_vm_repair/_help.py index 6b00d64c923..9832d447f02 100644 --- a/src/vm-repair/azext_vm_repair/_help.py +++ b/src/vm-repair/azext_vm_repair/_help.py @@ -52,6 +52,9 @@ - name: Run a local custom script on the VM. text: > az vm repair run -g MyResourceGroup -n MySourceWinVM --custom-script-file ./file.ps1 --verbose + - name: Run unverified script from your fork of https://github.com/Azure/repair-script-library + text: > + az vm repair run -g MyResourceGroup -n MySourceWinVM --preview "https://github.com/haagha/repair-script-library/blob/master/map.json" --run-id test """ helps['vm repair list-scripts'] = """ @@ -67,4 +70,7 @@ - name: List scripts with test in its description. text: > az vm repair list-scripts --query "[?contains(description, 'test')]" + - name: List unverified script from your fork of https://github.com/Azure/repair-script-library + text: > + az vm repair list-scripts --preview "https://github.com/haagha/repair-script-library/blob/master/map.json" """ diff --git a/src/vm-repair/azext_vm_repair/_params.py b/src/vm-repair/azext_vm_repair/_params.py index 3714404e979..8eb6d2c496d 100644 --- a/src/vm-repair/azext_vm_repair/_params.py +++ b/src/vm-repair/azext_vm_repair/_params.py @@ -43,3 +43,7 @@ def load_arguments(self, _): c.argument('custom_script_file', help='Custom script file to run on VM. Script should be PowerShell for windows, Bash for Linux.') c.argument('parameters', nargs='+', help="Space-separated parameters in the format of '[name=]value'. Positional for bash scripts.") c.argument('run_on_repair', help="Script will be run on the linked repair VM.") + c.argument('preview', help="URL of forked repair script library's map.json https://github.com/{user}/repair-script-library/blob/master/map.json") + + with self.argument_context('vm repair list-scripts') as c: + c.argument('preview', help="URL of forked repair script library's map.json https://github.com/{user}/repair-script-library/blob/master/map.json") diff --git a/src/vm-repair/azext_vm_repair/custom.py b/src/vm-repair/azext_vm_repair/custom.py index d72b6607522..9b086ee588f 100644 --- a/src/vm-repair/azext_vm_repair/custom.py +++ b/src/vm-repair/azext_vm_repair/custom.py @@ -12,6 +12,7 @@ from azure.cli.command_modules.vm.custom import get_vm, _is_linux_os from azure.cli.command_modules.storage.storage_url_helpers import StorageResourceIdentifier from msrestazure.tools import parse_resource_id +from .exceptions import SkuDoesNotSupportHyperV from .command_helper_class import command_helper from .repair_utils import ( @@ -32,20 +33,27 @@ _unlock_singlepass_encrypted_disk, _invoke_run_command, _check_hyperV_gen, - _get_cloud_init_script + _get_cloud_init_script, + _set_repair_map_url, + _is_gen2 ) from .exceptions import AzCommandError, SkuNotAvailableError, UnmanagedDiskCopyError, WindowsOsNotAvailableError, RunScriptNotFoundForIdError, SkuDoesNotSupportHyperV, ScriptReturnsError logger = get_logger(__name__) def create(cmd, vm_name, resource_group_name, repair_password=None, repair_username=None, repair_vm_name=None, copy_disk_name=None, repair_group_name=None, unlock_encrypted_vm=False, enable_nested=False, associate_public_ip=False): + # Init command helper object command = command_helper(logger, cmd, 'vm repair create') # Main command calling block try: # Fetch source VM data source_vm = get_vm(cmd, resource_group_name, vm_name) + source_vm_instance_view = get_vm(cmd, resource_group_name, vm_name, 'instanceView') + is_linux = _is_linux_os(source_vm) + is_gen2 = _is_gen2(source_vm_instance_view) + target_disk_name = source_vm.storage_profile.os_disk.name is_managed = _uses_managed_disk(source_vm) copy_disk_id = None @@ -59,9 +67,6 @@ def create(cmd, vm_name, resource_group_name, repair_password=None, repair_usern else: os_image_urn = _fetch_compatible_windows_os_urn(source_vm) os_type = 'Windows' - # check hyperv Generation - if enable_nested: - _check_hyperV_gen(source_vm) # Set up base create vm command if is_linux: @@ -96,6 +101,7 @@ def create(cmd, vm_name, resource_group_name, repair_password=None, repair_usern disk_sku, location, os_type, hyperV_generation = _fetch_disk_info(resource_group_name, target_disk_name) copy_disk_command = 'az disk create -g {g} -n {n} --source {s} --sku {sku} --location {loc} --os-type {os_type} --query id -o tsv' \ .format(g=resource_group_name, n=copy_disk_name, s=target_disk_name, sku=disk_sku, loc=location, os_type=os_type) + # Only add hyperV variable when available if hyperV_generation: copy_disk_command += ' --hyper-v-generation {hyperV}'.format(hyperV=hyperV_generation) @@ -177,8 +183,8 @@ def create(cmd, vm_name, resource_group_name, repair_password=None, repair_usern if enable_nested: logger.info("Running Script win-enable-nested-hyperv.ps1 to install HyperV") - run_hyperv_command = "az vm repair run -g {g} -n {name} --run-id win-enable-nested-hyperv" \ - .format(g=repair_group_name, name=repair_vm_name) + run_hyperv_command = "az vm repair run -g {g} -n {name} --run-id win-enable-nested-hyperv --parameters gen={gen}" \ + .format(g=repair_group_name, name=repair_vm_name, gen=is_gen2) ret_enable_nested = _call_az_command(run_hyperv_command) logger.debug("az vm repair run hyperv command returned: %s", ret_enable_nested) @@ -343,12 +349,14 @@ def restore(cmd, vm_name, resource_group_name, disk_name=None, repair_vm_id=None return return_dict -def run(cmd, vm_name, resource_group_name, run_id=None, repair_vm_id=None, custom_script_file=None, parameters=None, run_on_repair=False): +def run(cmd, vm_name, resource_group_name, run_id=None, repair_vm_id=None, custom_script_file=None, parameters=None, run_on_repair=False, preview=None): # Init command helper object command = command_helper(logger, cmd, 'vm repair run') LINUX_RUN_SCRIPT_NAME = 'linux-run-driver.sh' WINDOWS_RUN_SCRIPT_NAME = 'win-run-driver.ps1' + if preview: + _set_repair_map_url(preview) try: # Fetch VM data @@ -373,6 +381,9 @@ def run(cmd, vm_name, resource_group_name, run_id=None, repair_vm_id=None, custo # Fetch run path from GitHub repair_script_path = _fetch_run_script_path(run_id) run_command_params.append('script_path="./{}"'.format(repair_script_path)) + + if preview: + run_command_params.append('preview_path="{}"'.format(preview)) # Custom script scenario for script testers else: run_command_params.append('script_path=no-op') @@ -469,10 +480,12 @@ def run(cmd, vm_name, resource_group_name, run_id=None, repair_vm_id=None, custo return return_dict -def list_scripts(cmd): +def list_scripts(cmd, preview=None): # Init command helper object command = command_helper(logger, cmd, 'vm repair list-scripts') + if preview: + _set_repair_map_url(preview) try: run_map = _fetch_run_script_map() diff --git a/src/vm-repair/azext_vm_repair/repair_utils.py b/src/vm-repair/azext_vm_repair/repair_utils.py index b77bccb409e..38ecb3cce3f 100644 --- a/src/vm-repair/azext_vm_repair/repair_utils.py +++ b/src/vm-repair/azext_vm_repair/repair_utils.py @@ -35,12 +35,30 @@ def _get_cloud_init_script(): return os.path.join(rootpath, SCRIPTS_DIR_NAME, CLOUD_INIT) +def _set_repair_map_url(url): + raw_url = str(url) + if "github.com" in raw_url: + raw_url = raw_url.replace("github.com", "raw.githubusercontent.com") + raw_url = raw_url.replace("/blob/", "/") + global REPAIR_MAP_URL + REPAIR_MAP_URL = raw_url + print(REPAIR_MAP_URL) + + def _uses_managed_disk(vm): if vm.storage_profile.os_disk.managed_disk is None: return False return True +def _is_gen2(vm): + gen = 1 + gen = vm.instance_view.hyper_v_generation + if gen.lower() == 'v2': + return 2 + return 1 + + def _call_az_command(command_string, run_async=False, secure_params=None): """ Uses subprocess to run a command string. To hide sensitive parameters from logs, add the @@ -237,7 +255,7 @@ def _fetch_compatible_sku(source_vm, hyperv): def _fetch_disk_info(resource_group_name, disk_name): """ Returns sku, location, os_type, hyperVgeneration as tuples """ - show_disk_command = 'az disk show -g {g} -n {name} --query [sku.name,location,osType,hyperVgeneration] -o json'.format(g=resource_group_name, name=disk_name) + show_disk_command = 'az disk show -g {g} -n {name} --query [sku.name,location,osType,hyperVGeneration] -o json'.format(g=resource_group_name, name=disk_name) disk_info = loads(_call_az_command(show_disk_command)) # Note that disk_info will always have 4 elements if the command succeeded, if it fails it will cause an exception sku, location, os_type, hyper_v_version = disk_info[0], disk_info[1], disk_info[2], disk_info[3] diff --git a/src/vm-repair/azext_vm_repair/tests/latest/test_repair_commands.py b/src/vm-repair/azext_vm_repair/tests/latest/test_repair_commands.py index 27345b74ede..406ffcda440 100644 --- a/src/vm-repair/azext_vm_repair/tests/latest/test_repair_commands.py +++ b/src/vm-repair/azext_vm_repair/tests/latest/test_repair_commands.py @@ -24,7 +24,7 @@ def test_vmrepair_WinManagedCreateRestore(self, resource_group): assert len(vms) == 1 # Test create - result = self.cmd('vm repair create -g {rg} -n {vm} --repair-username azureadmin --repair-password !Passw0rd2018 -o json').get_output_in_json() + result = self.cmd('vm repair create -g {rg} -n {vm} --repair-username azureadmin --repair-password !Passw0rd2018 --associate-public-ip -o json').get_output_in_json() assert result['status'] == STATUS_SUCCESS, result['error_message'] # Check repair VM @@ -521,3 +521,37 @@ def test_vmrepair_LinuxRunHelloWorld(self, resource_group): # Check Output assert 'Hello World!' in result['output'] + + +class WindowsManagedDiskCreateRestoreGen2Test(LiveScenarioTest): + + @ResourceGroupPreparer(location='westus2') + def test_vmrepair_WinManagedCreateRestore(self, resource_group): + self.kwargs.update({ + 'vm': 'vm1' + }) + + # Create test VM + self.cmd('vm create -g {rg} -n {vm} --admin-username azureadmin --image MicrosoftWindowsServer:windowsserver-gen2preview:2019-datacenter-gen2:2019.0.20190620 --admin-password !Passw0rd2018') + vms = self.cmd('vm list -g {rg} -o json').get_output_in_json() + # Something wrong with vm create command if it fails here + assert len(vms) == 1 + + # Test create + result = self.cmd('vm repair create -g {rg} -n {vm} --repair-username azureadmin --repair-password !Passw0rd2018 --associate-public-ip -o json').get_output_in_json() + assert result['status'] == STATUS_SUCCESS, result['error_message'] + + # Check repair VM + repair_vms = self.cmd('vm list -g {} -o json'.format(result['repair_resource_group'])).get_output_in_json() + assert len(repair_vms) == 1 + repair_vm = repair_vms[0] + # Check attached data disk + assert repair_vm['storageProfile']['dataDisks'][0]['name'] == result['copied_disk_name'] + + # Call Restore + self.cmd('vm repair restore -g {rg} -n {vm} --yes') + + # Check swapped OS disk + vms = self.cmd('vm list -g {rg} -o json').get_output_in_json() + source_vm = vms[0] + assert source_vm['storageProfile']['osDisk']['name'] == result['copied_disk_name'] diff --git a/src/vm-repair/setup.py b/src/vm-repair/setup.py index 8c656b47341..c38d1ffdd53 100644 --- a/src/vm-repair/setup.py +++ b/src/vm-repair/setup.py @@ -8,7 +8,7 @@ from codecs import open from setuptools import setup, find_packages -VERSION = "0.3.8" +VERSION = "0.3.9" CLASSIFIERS = [ 'Development Status :: 4 - Beta', diff --git a/src/vmware/HISTORY.md b/src/vmware/HISTORY.md index 83b3892a807..62ecba4e5a0 100644 --- a/src/vmware/HISTORY.md +++ b/src/vmware/HISTORY.md @@ -1,5 +1,9 @@ # Release History +## 4.0.1 (2021-11) + +- Fix publishing extension + ## 4.0.0 (2021-11) - Add `az vmware placement-policy` command group @@ -13,9 +17,13 @@ - Add `az vmware private-cloud list-admin-credentials` - Add `az vmware private-cloud add-identity-source` - Add `az vmware private-cloud delete-identity-source` +- Add `az vmware private-cloud identity` command group - Deprecate `az vmware private-cloud listadmincredentials` - Deprecate `az vmware private-cloud addidentitysource` - Deprecate `az vmware private-cloud deleteidentitysource` +- [BREAKING CHANGE] Add confirmation prompt to `az vmware private-cloud rotate-vcenter-password` +- [BREAKING CHANGE] Add confirmation prompt to `az vmware private-cloud rotate-nsxt-password` +- [BREAKING CHANGE] Add confirmation prompt to all delete commands ## 3.2.0 (2021-10) diff --git a/src/vmware/azext_vmware/_help.py b/src/vmware/azext_vmware/_help.py index f68b6eea1dc..0a7fad71d5d 100644 --- a/src/vmware/azext_vmware/_help.py +++ b/src/vmware/azext_vmware/_help.py @@ -195,7 +195,7 @@ short-summary: Rotate the NSX-T Manager password. examples: - name: Rotate the NSX-T Manager password. - text: az vmware private-cloud rotate-nsxt-password --resource-group MyResourceGroup --private-cloud MyPrivateCloud + text: az vmware private-cloud rotate-nsxt-password """ helps['vmware authorization create'] = """ diff --git a/src/vmware/azext_vmware/_params.py b/src/vmware/azext_vmware/_params.py index c5a5a2a0980..bcd66829e33 100644 --- a/src/vmware/azext_vmware/_params.py +++ b/src/vmware/azext_vmware/_params.py @@ -23,12 +23,14 @@ def load_arguments(self, _): with self.argument_context('vmware private-cloud') as c: c.argument('cluster_size', help='Number of hosts for the default management cluster. Minimum of 3 and maximum of 16.') c.argument('internet', help='Connectivity to internet. Specify "Enabled" or "Disabled".') + c.argument('yes', help='Delete without confirmation.') with self.argument_context('vmware cluster') as c: c.argument('name', options_list=['--name', '-n'], help='Name of the cluster.') c.argument('sku', help='The product SKU.') c.argument('size', help='Number of hosts for the cluster. Minimum of 3 and a maximum of 16.') c.argument('hosts', nargs='+', help='A cluster\'s hosts in the private cloud.') + c.argument('yes', help='Delete without confirmation.') with self.argument_context('vmware private-cloud create') as c: c.argument('name', options_list=['--name', '-n'], help='Name of the private cloud.') @@ -47,10 +49,10 @@ def load_arguments(self, _): with self.argument_context('vmware private-cloud delete') as c: c.argument('name', options_list=['--name', '-n'], help='Name of the private cloud.') - c.argument('yes', help='Deletes without confirmation.') with self.argument_context('vmware authorization') as c: c.argument('name', options_list=['--name', '-n'], help='Name of the authorization.') + c.argument('yes', help='Delete without confirmation.') with self.argument_context('vmware private-cloud add-availability-zone') as c: c.argument('strategy', help='The availability strategy for the private cloud. Possible values include: "SingleZone", "DualZone".') @@ -105,11 +107,13 @@ def load_arguments(self, _): with self.argument_context('vmware hcx-enterprise-site') as c: c.argument('name', options_list=['--name', '-n'], help='The name of the HCX Enterprise Site.') + c.argument('yes', help='Delete without confirmation.') with self.argument_context('vmware datastore') as c: c.argument('name', options_list=['--name', '-n'], help='The name of the datastore.') c.argument('cluster', help='The name of the cluster.') c.argument('lun_name', help='Name of the LUN to be used.') + c.argument('yes', help='Delete without confirmation.') with self.argument_context('vmware datastore create') as c: c.argument('nfs_provider_ip', help='IP address of the NFS provider.') @@ -126,6 +130,7 @@ def load_arguments(self, _): with self.argument_context('vmware addon') as c: c.argument('name', options_list=['--name', '-n'], help='Name of the addon.') + c.argument('yes', help='Delete without confirmation.') with self.argument_context('vmware addon vr') as c: c.argument('vrs_count', help='The vSphere Replication Server (VRS) count.') @@ -138,6 +143,7 @@ def load_arguments(self, _): with self.argument_context('vmware global-reach-connection') as c: c.argument('name', options_list=['--name', '-n'], help='Name of the global reach connection.') + c.argument('yes', help='Delete without confirmation.') with self.argument_context('vmware global-reach-connection create') as c: c.argument('peer_express_route_circuit', help='Identifier of the ExpressRoute Circuit to peer with.') @@ -147,6 +153,7 @@ def load_arguments(self, _): with self.argument_context('vmware cloud-link') as c: c.argument('name', options_list=['--name', '-n'], help='The name of the cloud link.') c.argument('linked_cloud', help='Identifier of the other private cloud participating in the link.') + c.argument('yes', help='Delete without confirmation.') with self.argument_context('vmware script-package') as c: c.argument('name', options_list=['--name', '-n'], help='Name of the script package.') @@ -157,6 +164,7 @@ def load_arguments(self, _): with self.argument_context('vmware script-execution') as c: c.argument('name', options_list=['--name', '-n'], help='Name of the script execution.') + c.argument('yes', help='Delete without confirmation.') with self.argument_context('vmware script-execution create') as c: c.argument('timeout', help='Time limit for execution.') @@ -172,6 +180,7 @@ def load_arguments(self, _): c.argument('dhcp', help='NSX DHCP identifier. Generally the same as the DHCP display name.') c.argument('display_name', help='Display name of the DHCP entity.') c.argument('revision', help='NSX revision number.') + c.argument('yes', help='Delete without confirmation.') with self.argument_context('vmware workload-network dhcp server') as c: c.argument('server_address', help='DHCP Server Address.') @@ -188,6 +197,7 @@ def load_arguments(self, _): c.argument('fqdn_zones', nargs='+', help='FQDN zones of the DNS service.') c.argument('log_level', arg_type=get_enum_type(["DEBUG", "INFO", "WARNING", "ERROR", "FATAL"]), help='DNS service log level. Possible values include: "DEBUG", "INFO", "WARNING", "ERROR", "FATAL".') c.argument('revision', help='NSX revision number.') + c.argument('yes', help='Delete without confirmation.') with self.argument_context('vmware workload-network dns-zone') as c: c.argument('dns_zone', help="NSX DNS zone identifier. Generally the same as the DNS zone's display name.") @@ -197,6 +207,7 @@ def load_arguments(self, _): c.argument('source_ip', help='Source IP of the DNS zone.') c.argument('dns_services', help='Number of DNS services using the DNS zone.') c.argument('revision', help='NSX revision number.') + c.argument('yes', help='Delete without confirmation.') with self.argument_context('vmware workload-network port-mirroring') as c: c.argument('port_mirroring', help="NSX Port Mirroring identifier. Generally the same as the Port Mirroring display name.") @@ -205,6 +216,7 @@ def load_arguments(self, _): c.argument('source', help='Source VM Group.') c.argument('destination', help='Destination VM Group.') c.argument('revision', help='NSX revision number.') + c.argument('yes', help='Delete without confirmation.') with self.argument_context('vmware workload-network segment') as c: c.argument('segment', help="NSX Segment identifier. Generally the same as the Segment's display name.") @@ -214,17 +226,20 @@ def load_arguments(self, _): c.argument('dhcp_ranges', nargs='+', help='DHCP Range assigned for subnet.') c.argument('gateway_address', help='Gateway address.') c.argument('port_name', help='Name of port or VIF attached to segment.') + c.argument('yes', help='Delete without confirmation.') with self.argument_context('vmware workload-network public-ip') as c: c.argument('public_ip', help="NSX Public IP Block identifier. Generally the same as the Public IP.") c.argument('display_name', help='Display name of the Public IP Block.') c.argument('number_of_public_ips', help='Number of Public IPs requested.') + c.argument('yes', help='Delete without confirmation.') with self.argument_context('vmware workload-network vm-group') as c: c.argument('vm_group', help="NSX VM Group identifier. Generally the same as the VM Group's display name.") c.argument('display_name', help='Display name of the VM group.') c.argument('members', nargs='+', help='Virtual machine members of this group.') c.argument('revision', help='NSX revision number.') + c.argument('yes', help='Delete without confirmation.') with self.argument_context('vmware workload-network vm') as c: c.argument('virtual_machine', help="Virtual Machine identifier.") @@ -240,7 +255,7 @@ def load_arguments(self, _): c.argument('vm_members', nargs='+', help="Virtual machine members list.") c.argument('affinity_type', help="Placement policy affinity type. Possible values include: 'Affinity', 'AntiAffinity'.") c.argument('host_members', nargs='+', help='Host members list.') - c.argument('yes', help='Deletes without confirmation.') + c.argument('yes', help='Delete without confirmation.') with self.argument_context('vmware vm') as c: c.argument('cluster_name', help='Name of the cluster in the private cloud.') diff --git a/src/vmware/azext_vmware/custom.py b/src/vmware/azext_vmware/custom.py index db99afef598..d80908c4883 100644 --- a/src/vmware/azext_vmware/custom.py +++ b/src/vmware/azext_vmware/custom.py @@ -21,6 +21,22 @@ ACCEPTANCE OF LEGAL TERMS. By continuing, you agree to the above additional Legal Terms for AVS. If you are an individual accepting these terms on behalf of an entity, you also represent that you have the legal authority to enter into these additional terms on that entity's behalf. ''' +ROTATE_VCENTER_PASSWORD_TERMS = ''' +Any services connected using these credentials will stop working and may cause you to be locked out of your account. + +Check if you're using your cloudadmin credentials for any connected services like backup and disaster recovery appliances, VMware HCX, or any vRealize suite products. Verify you're not using cloudadmin credentials for connected services before generating a new password. + +If you are using cloudadmin for connected services, learn how you can setup a connection to an external identity source to create and manage new credentials for your connected services: https://docs.microsoft.com/en-us/azure/azure-vmware/configure-identity-source-vcenter + +Press Y to confirm no services are using my cloudadmin credentials to connect to vCenter +''' + +ROTATE_NSXT_PASSWORD_TERMS = ''' +Currently, rotating your NSX-T managed admin credentials isn’t supported. If you need to rotate your NSX-T manager admin credentials, please submit a support request in the Azure Portal: https://portal.azure.com/#create/Microsoft.Support + +Press any key to continue +''' + def privatecloud_list(client: AVSClient, resource_group_name=None): if resource_group_name is None: @@ -32,12 +48,12 @@ def privatecloud_show(client: AVSClient, resource_group_name, name): return client.private_clouds.get(resource_group_name, name) -def privatecloud_create(client: AVSClient, resource_group_name, name, sku, cluster_size, network_block, location=None, internet=None, vcenter_password=None, nsxt_password=None, tags=None, accept_eula=False, mi_system_assigned=False): +def privatecloud_create(client: AVSClient, resource_group_name, name, sku, cluster_size, network_block, location=None, internet=None, vcenter_password=None, nsxt_password=None, tags=None, accept_eula=False, mi_system_assigned=False, yes=False): from knack.prompting import prompt_y_n if not accept_eula: print(LEGAL_TERMS) msg = 'Do you agree to the above additional terms for AVS?' - if not prompt_y_n(msg, default="n"): + if not yes and not prompt_y_n(msg, default="n"): return None from azext_vmware.vendored_sdks.avs_client.models import PrivateCloud, Circuit, ManagementCluster, Sku, PrivateCloudIdentity @@ -91,7 +107,11 @@ def privatecloud_addidentitysource(client: AVSClient, resource_group_name, name, return client.private_clouds.begin_create_or_update(resource_group_name=resource_group_name, private_cloud_name=private_cloud, private_cloud=pc) -def privatecloud_deleteidentitysource(client: AVSClient, resource_group_name, name, private_cloud, alias, domain): +def privatecloud_deleteidentitysource(client: AVSClient, resource_group_name, name, private_cloud, alias, domain, yes=False): + from knack.prompting import prompt_y_n + msg = 'This will delete the identity source. Are you sure?' + if not yes and not prompt_y_n(msg, default="n"): + return None pc = client.private_clouds.get(resource_group_name, private_cloud) found = next((ids for ids in pc.identity_sources if ids.name == name and ids.alias == alias and ids.domain == domain), None) @@ -108,7 +128,11 @@ def privatecloud_addavailabilityzone(client: AVSClient, resource_group_name, pri return client.private_clouds.begin_update(resource_group_name=resource_group_name, private_cloud_name=private_cloud, private_cloud_update=pc) -def privatecloud_deleteavailabilityzone(client: AVSClient, resource_group_name, private_cloud): +def privatecloud_deleteavailabilityzone(client: AVSClient, resource_group_name, private_cloud, yes=False): + from knack.prompting import prompt_y_n + msg = 'This will delete the availability zone. Are you sure?' + if not yes and not prompt_y_n(msg, default="n"): + return None from azext_vmware.vendored_sdks.avs_client.models import PrivateCloudUpdate pc = PrivateCloudUpdate() pc.availability = None @@ -122,7 +146,11 @@ def privatecloud_addcmkencryption(client: AVSClient, resource_group_name, privat return client.private_clouds.begin_update(resource_group_name=resource_group_name, private_cloud_name=private_cloud, private_cloud_update=pc) -def privatecloud_deletecmkenryption(client: AVSClient, resource_group_name, private_cloud): +def privatecloud_deletecmkenryption(client: AVSClient, resource_group_name, private_cloud, yes=False): + from knack.prompting import prompt_y_n + msg = 'This will delete the managed keys encryption. Are you sure?' + if not yes and not prompt_y_n(msg, default="n"): + return None from azext_vmware.vendored_sdks.avs_client.models import PrivateCloudUpdate pc = PrivateCloudUpdate() pc.encryption = None @@ -140,7 +168,7 @@ def privatecloud_identity_assign(client: AVSClient, resource_group_name, private def privatecloud_identity_remove(client: AVSClient, resource_group_name, private_cloud): from azext_vmware.vendored_sdks.avs_client.models import PrivateCloudIdentity, PrivateCloudUpdate pc = PrivateCloudUpdate() - pc.identity = PrivateCloudIdentity(type=None) + pc.identity = PrivateCloudIdentity(type="None") return client.private_clouds.begin_update(resource_group_name=resource_group_name, private_cloud_name=private_cloud, private_cloud_update=pc) @@ -148,12 +176,19 @@ def privatecloud_identity_get(client: AVSClient, resource_group_name, private_cl return client.private_clouds.get(resource_group_name, private_cloud).identity -def privatecloud_rotate_vcenter_password(client: AVSClient, resource_group_name, private_cloud): +def privatecloud_rotate_vcenter_password(client: AVSClient, resource_group_name, private_cloud, yes=False): + from knack.prompting import prompt_y_n + msg = ROTATE_VCENTER_PASSWORD_TERMS + if not yes and not prompt_y_n(msg, default="n"): + return None return client.private_clouds.begin_rotate_vcenter_password(resource_group_name=resource_group_name, private_cloud_name=private_cloud) -def privatecloud_rotate_nsxt_password(client: AVSClient, resource_group_name, private_cloud): - return client.private_clouds.begin_rotate_nsxt_password(resource_group_name=resource_group_name, private_cloud_name=private_cloud) +def privatecloud_rotate_nsxt_password(): + from knack.prompting import prompt + msg = ROTATE_NSXT_PASSWORD_TERMS + prompt(msg) + # return client.private_clouds.begin_rotate_nsxt_password(resource_group_name=resource_group_name, private_cloud_name=private_cloud) def cluster_create(client: AVSClient, resource_group_name, name, sku, private_cloud, size, hosts): @@ -173,7 +208,11 @@ def cluster_show(client: AVSClient, resource_group_name, private_cloud, name): return client.clusters.get(resource_group_name=resource_group_name, private_cloud_name=private_cloud, cluster_name=name) -def cluster_delete(client: AVSClient, resource_group_name, private_cloud, name): +def cluster_delete(client: AVSClient, resource_group_name, private_cloud, name, yes=False): + from knack.prompting import prompt_y_n + msg = 'This will delete the cluster. Are you sure?' + if not yes and not prompt_y_n(msg, default="n"): + return None return client.clusters.begin_delete(resource_group_name=resource_group_name, private_cloud_name=private_cloud, cluster_name=name) @@ -197,7 +236,11 @@ def authorization_show(client: AVSClient, resource_group_name, private_cloud, na return client.authorizations.get(resource_group_name=resource_group_name, private_cloud_name=private_cloud, authorization_name=name) -def authorization_delete(client: AVSClient, resource_group_name, private_cloud, name): +def authorization_delete(client: AVSClient, resource_group_name, private_cloud, name, yes=False): + from knack.prompting import prompt_y_n + msg = 'This will delete the authorization. Are you sure?' + if not yes and not prompt_y_n(msg, default="n"): + return None return client.authorizations.begin_delete(resource_group_name=resource_group_name, private_cloud_name=private_cloud, authorization_name=name) @@ -213,7 +256,11 @@ def hcxenterprisesite_show(client: AVSClient, resource_group_name, private_cloud return client.hcx_enterprise_sites.get(resource_group_name=resource_group_name, private_cloud_name=private_cloud, hcx_enterprise_site_name=name) -def hcxenterprisesite_delete(client: AVSClient, resource_group_name, private_cloud, name): +def hcxenterprisesite_delete(client: AVSClient, resource_group_name, private_cloud, name, yes=False): + from knack.prompting import prompt_y_n + msg = 'This will delete the HCX enterprise site. Are you sure?' + if not yes and not prompt_y_n(msg, default="n"): + return None return client.hcx_enterprise_sites.delete(resource_group_name=resource_group_name, private_cloud_name=private_cloud, hcx_enterprise_site_name=name) @@ -241,7 +288,11 @@ def datastore_show(client: AVSClient, resource_group_name, private_cloud, cluste return client.datastores.get(resource_group_name=resource_group_name, private_cloud_name=private_cloud, cluster_name=cluster, datastore_name=name) -def datastore_delete(client: AVSClient, resource_group_name, private_cloud, cluster, name): +def datastore_delete(client: AVSClient, resource_group_name, private_cloud, cluster, name, yes=False): + from knack.prompting import prompt_y_n + msg = 'This will delete the datastore. Are you sure?' + if not yes and not prompt_y_n(msg, default="n"): + return None return client.datastores.begin_delete(resource_group_name=resource_group_name, private_cloud_name=private_cloud, cluster_name=cluster, datastore_name=name) @@ -297,15 +348,27 @@ def addon_srm_update(client: AVSClient, resource_group_name, private_cloud, lice return client.addons.begin_create_or_update(resource_group_name=resource_group_name, private_cloud_name=private_cloud, addon_name="srm", properties=properties) -def addon_vr_delete(client: AVSClient, resource_group_name, private_cloud): +def addon_vr_delete(client: AVSClient, resource_group_name, private_cloud, yes=False): + from knack.prompting import prompt_y_n + msg = 'This will delete the VR addon. Are you sure?' + if not yes and not prompt_y_n(msg, default="n"): + return None return client.addons.begin_delete(resource_group_name=resource_group_name, private_cloud_name=private_cloud, addon_name="vr") -def addon_hcx_delete(client: AVSClient, resource_group_name, private_cloud): +def addon_hcx_delete(client: AVSClient, resource_group_name, private_cloud, yes=False): + from knack.prompting import prompt_y_n + msg = 'This will delete the HCX addon. Are you sure?' + if not yes and not prompt_y_n(msg, default="n"): + return None return client.addons.begin_delete(resource_group_name=resource_group_name, private_cloud_name=private_cloud, addon_name="hcx") -def addon_srm_delete(client: AVSClient, resource_group_name, private_cloud): +def addon_srm_delete(client: AVSClient, resource_group_name, private_cloud, yes=False): + from knack.prompting import prompt_y_n + msg = 'This will delete the SRM addon. Are you sure?' + if not yes and not prompt_y_n(msg, default="n"): + return None return client.addons.begin_delete(resource_group_name=resource_group_name, private_cloud_name=private_cloud, addon_name="srm") @@ -322,7 +385,11 @@ def globalreachconnection_show(client: AVSClient, resource_group_name, private_c return client.global_reach_connections.get(resource_group_name=resource_group_name, private_cloud_name=private_cloud, global_reach_connection_name=name) -def globalreachconnection_delete(client: AVSClient, resource_group_name, private_cloud, name): +def globalreachconnection_delete(client: AVSClient, resource_group_name, private_cloud, name, yes=False): + from knack.prompting import prompt_y_n + msg = 'This will delete the global reach connection. Are you sure?' + if not yes and not prompt_y_n(msg, default="n"): + return None return client.global_reach_connections.begin_delete(resource_group_name=resource_group_name, private_cloud_name=private_cloud, global_reach_connection_name=name) @@ -338,7 +405,11 @@ def cloud_link_show(client: AVSClient, resource_group_name, private_cloud, name) return client.cloud_links.get(resource_group_name=resource_group_name, private_cloud_name=private_cloud, cloud_link_name=name) -def cloud_link_delete(client: AVSClient, resource_group_name, private_cloud, name): +def cloud_link_delete(client: AVSClient, resource_group_name, private_cloud, name, yes=False): + from knack.prompting import prompt_y_n + msg = 'This will delete the cloud link. Are you sure?' + if not yes and not prompt_y_n(msg, default="n"): + return None return client.cloud_links.begin_delete(resource_group_name=resource_group_name, private_cloud_name=private_cloud, cloud_link_name=name) @@ -374,7 +445,11 @@ def script_execution_show(client: AVSClient, resource_group_name, private_cloud, return client.script_executions.get(resource_group_name=resource_group_name, private_cloud_name=private_cloud, script_execution_name=name) -def script_execution_delete(client: AVSClient, resource_group_name, private_cloud, name): +def script_execution_delete(client: AVSClient, resource_group_name, private_cloud, name, yes=False): + from knack.prompting import prompt_y_n + msg = 'This will delete the script execution. Are you sure?' + if not yes and not prompt_y_n(msg, default="n"): + return None return client.script_executions.begin_delete(resource_group_name=resource_group_name, private_cloud_name=private_cloud, script_execution_name=name) @@ -406,7 +481,11 @@ def workload_network_dhcp_relay_update(client: AVSClient, resource_group_name, p return client.workload_networks.begin_update_dhcp(resource_group_name=resource_group_name, private_cloud_name=private_cloud, dhcp_id=dhcp, properties=properties) -def workload_network_dhcp_delete(client: AVSClient, resource_group_name, private_cloud, dhcp: str): +def workload_network_dhcp_delete(client: AVSClient, resource_group_name, private_cloud, dhcp: str, yes=False): + from knack.prompting import prompt_y_n + msg = 'This will delete the workload network DHCP. Are you sure?' + if not yes and not prompt_y_n(msg, default="n"): + return None return client.workload_networks.begin_delete_dhcp(resource_group_name=resource_group_name, private_cloud_name=private_cloud, dhcp_id=dhcp) @@ -438,7 +517,11 @@ def workload_network_dns_services_update(client: AVSClient, resource_group_name, return client.workload_networks.begin_update_dns_service(resource_group_name=resource_group_name, private_cloud_name=private_cloud, dns_service_id=dns_service, workload_network_dns_service=prop) -def workload_network_dns_services_delete(client: AVSClient, resource_group_name, private_cloud, dns_service): +def workload_network_dns_services_delete(client: AVSClient, resource_group_name, private_cloud, dns_service, yes=False): + from knack.prompting import prompt_y_n + msg = 'This will delete the workload network DNS services. Are you sure?' + if not yes and not prompt_y_n(msg, default="n"): + return None return client.workload_networks.begin_delete_dns_service(resource_group_name=resource_group_name, private_cloud_name=private_cloud, dns_service_id=dns_service) @@ -462,7 +545,11 @@ def workload_network_dns_zone_update(client: AVSClient, resource_group_name, pri return client.workload_networks.begin_update_dns_zone(resource_group_name=resource_group_name, private_cloud_name=private_cloud, dns_zone_id=dns_zone, workload_network_dns_zone=prop) -def workload_network_dns_zone_delete(client: AVSClient, resource_group_name, private_cloud, dns_zone): +def workload_network_dns_zone_delete(client: AVSClient, resource_group_name, private_cloud, dns_zone, yes=False): + from knack.prompting import prompt_y_n + msg = 'This will delete the workload network DNS zone. Are you sure?' + if not yes and not prompt_y_n(msg, default="n"): + return None return client.workload_networks.begin_delete_dns_zone(resource_group_name=resource_group_name, private_cloud_name=private_cloud, dns_zone_id=dns_zone) @@ -486,7 +573,11 @@ def workload_network_port_mirroring_update(client: AVSClient, resource_group_nam return client.workload_networks.begin_update_port_mirroring(resource_group_name=resource_group_name, private_cloud_name=private_cloud, port_mirroring_id=port_mirroring, workload_network_port_mirroring=prop) -def workload_network_port_mirroring_delete(client: AVSClient, resource_group_name, private_cloud, port_mirroring): +def workload_network_port_mirroring_delete(client: AVSClient, resource_group_name, private_cloud, port_mirroring, yes=False): + from knack.prompting import prompt_y_n + msg = 'This will delete the workload network port mirroring. Are you sure?' + if not yes and not prompt_y_n(msg, default="n"): + return None return client.workload_networks.begin_delete_port_mirroring(resource_group_name=resource_group_name, private_cloud_name=private_cloud, port_mirroring_id=port_mirroring) @@ -518,7 +609,11 @@ def workload_network_segment_update(client: AVSClient, resource_group_name, priv return client.workload_networks.begin_update_segments(resource_group_name=resource_group_name, private_cloud_name=private_cloud, segment_id=segment, workload_network_segment=segmentObj) -def workload_network_segment_delete(client: AVSClient, resource_group_name, private_cloud, segment): +def workload_network_segment_delete(client: AVSClient, resource_group_name, private_cloud, segment, yes=False): + from knack.prompting import prompt_y_n + msg = 'This will delete the workload network segment. Are you sure?' + if not yes and not prompt_y_n(msg, default="n"): + return None return client.workload_networks.begin_delete_segment(resource_group_name=resource_group_name, private_cloud_name=private_cloud, segment_id=segment) @@ -534,7 +629,11 @@ def workload_network_public_ip_create(client: AVSClient, resource_group_name, pr return client.workload_networks.begin_create_public_ip(resource_group_name=resource_group_name, private_cloud_name=private_cloud, public_ip_id=public_ip, display_name=display_name, number_of_public_i_ps=number_of_public_ips) -def workload_network_public_ip_delete(client: AVSClient, resource_group_name, private_cloud, public_ip): +def workload_network_public_ip_delete(client: AVSClient, resource_group_name, private_cloud, public_ip, yes=False): + from knack.prompting import prompt_y_n + msg = 'This will delete the workload network public IP. Are you sure?' + if not yes and not prompt_y_n(msg, default="n"): + return None return client.workload_networks.begin_delete_public_ip(resource_group_name=resource_group_name, private_cloud_name=private_cloud, public_ip_id=public_ip) @@ -558,7 +657,11 @@ def workload_network_vm_group_update(client: AVSClient, resource_group_name, pri return client.workload_networks.begin_update_vm_group(resource_group_name=resource_group_name, private_cloud_name=private_cloud, vm_group_id=vm_group, workload_network_vm_group=vmGroup) -def workload_network_vm_group_delete(client: AVSClient, resource_group_name, private_cloud, vm_group): +def workload_network_vm_group_delete(client: AVSClient, resource_group_name, private_cloud, vm_group, yes=False): + from knack.prompting import prompt_y_n + msg = 'This will delete the workload network VM group. Are you sure?' + if not yes and not prompt_y_n(msg, default="n"): + return None return client.workload_networks.begin_delete_vm_group(resource_group_name=resource_group_name, private_cloud_name=private_cloud, vm_group_id=vm_group) diff --git a/src/vmware/azext_vmware/tests/latest/recordings/test_vmware.yaml b/src/vmware/azext_vmware/tests/latest/recordings/test_vmware.yaml index 7abb07c925c..22dd7e98827 100644 --- a/src/vmware/azext_vmware/tests/latest/recordings/test_vmware.yaml +++ b/src/vmware/azext_vmware/tests/latest/recordings/test_vmware.yaml @@ -27,7 +27,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:47 GMT + - Thu, 18 Nov 2021 21:48:45 GMT server: - Rocket status: @@ -61,7 +61,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:51 GMT + - Thu, 18 Nov 2021 21:48:49 GMT server: - Rocket status: @@ -93,7 +93,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:55 GMT + - Thu, 18 Nov 2021 21:48:54 GMT server: - Rocket status: @@ -132,7 +132,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:00 GMT + - Thu, 18 Nov 2021 21:48:58 GMT server: - Rocket status: @@ -164,76 +164,12 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:04 GMT + - Thu, 18 Nov 2021 21:49:02 GMT server: - Rocket status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vmware private-cloud rotate-vcenter-password - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -c - User-Agent: - - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) - method: POST - uri: https://localhost:8888/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmware000001/providers/Microsoft.AVS/privateClouds/cloud1/rotateVcenterPassword?api-version=2021-12-01 - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Thu, 11 Nov 2021 15:55:08 GMT - server: - - Rocket - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vmware private-cloud rotate-nsxt-password - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -c - User-Agent: - - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) - method: POST - uri: https://localhost:8888/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmware000001/providers/Microsoft.AVS/privateClouds/cloud1/rotateNsxtPassword?api-version=2021-12-01 - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Thu, 11 Nov 2021 15:55:12 GMT - server: - - Rocket - status: - code: 202 - message: Accepted - request: body: '{"properties": {"managementCluster": {"clusterSize": 4}, "internet": "Disabled"}}' headers: @@ -264,7 +200,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:17 GMT + - Thu, 18 Nov 2021 21:49:06 GMT server: - Rocket status: @@ -300,7 +236,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:21 GMT + - Thu, 18 Nov 2021 21:49:11 GMT server: - Rocket status: @@ -336,7 +272,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:25 GMT + - Thu, 18 Nov 2021 21:49:15 GMT server: - Rocket status: @@ -356,7 +292,7 @@ interactions: Content-Length: - '0' ParameterSetName: - - -g -c -n + - -g -c -n --yes User-Agent: - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: DELETE @@ -368,7 +304,7 @@ interactions: content-length: - '0' date: - - Thu, 11 Nov 2021 15:55:29 GMT + - Thu, 18 Nov 2021 21:49:19 GMT server: - Rocket status: @@ -401,7 +337,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:34 GMT + - Thu, 18 Nov 2021 21:49:23 GMT server: - Rocket status: @@ -451,7 +387,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:34 GMT + - Thu, 18 Nov 2021 21:49:23 GMT server: - Rocket status: @@ -469,7 +405,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -c -n --alias --domain + - -g -c -n --alias --domain --yes User-Agent: - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: GET @@ -483,7 +419,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:38 GMT + - Thu, 18 Nov 2021 21:49:28 GMT server: - Rocket status: @@ -515,7 +451,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:42 GMT + - Thu, 18 Nov 2021 21:49:32 GMT server: - Rocket status: @@ -552,7 +488,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:47 GMT + - Thu, 18 Nov 2021 21:49:37 GMT server: - Rocket status: @@ -584,7 +520,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:51 GMT + - Thu, 18 Nov 2021 21:49:41 GMT server: - Rocket status: @@ -620,7 +556,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:55 GMT + - Thu, 18 Nov 2021 21:49:45 GMT server: - Rocket status: @@ -640,7 +576,7 @@ interactions: Content-Length: - '0' ParameterSetName: - - -g -c -n + - -g -c -n --yes User-Agent: - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: DELETE @@ -652,7 +588,175 @@ interactions: content-length: - '0' date: - - Thu, 11 Nov 2021 15:56:00 GMT + - Thu, 18 Nov 2021 21:49:50 GMT + server: + - Rocket + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmware private-cloud delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --yes + User-Agent: + - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://localhost:8888/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmware000001/providers/Microsoft.AVS/privateClouds/cloud1?api-version=2021-12-01 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 18 Nov 2021 21:49:54 GMT + server: + - Rocket + status: + code: 200 + message: OK +- request: + body: '{"identity": {"type": "SystemAssigned"}, "properties": {"internet": "Disabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmware private-cloud identity assign + Connection: + - keep-alive + Content-Length: + - '80' + Content-Type: + - application/json + ParameterSetName: + - -g -c --system-assigned + User-Agent: + - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + method: PATCH + uri: https://localhost:8888/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmware000001/providers/Microsoft.AVS/privateClouds/cloud1?api-version=2021-12-01 + response: + body: + string: '{"id":"/subscriptions/{subscription-id}/resourceGroups/group1/providers/Microsoft.AVS/privateClouds/cloud1","name":"cloud1","type":"Microsoft.AVS/privateClouds","location":"eastus2","tags":{},"sku":{"name":"AV36"},"properties":{"managementCluster":{"clusterSize":4,"clusterId":1,"hosts":["fakehost18.nyc1.kubernetes.center","fakehost19.nyc1.kubernetes.center","fakehost20.nyc1.kubernetes.center","fakehost21.nyc1.kubernetes.center"]},"internet":"Disabled","identitySources":[{"name":"group1","alias":"groupAlias","domain":"domain1","baseUserDN":"ou=baseUser","baseGroupDN":"ou=baseGroup","primaryServer":"ldaps://1.1.1.1:636/","secondaryServer":"ldaps://1.1.1.2:636/","ssl":"Enabled"}],"availability":{"strategy":"SingleZone","zone":1},"encryption":{"status":"Enabled","keyVaultProperties":{"keyName":"keyname1","keyVersion":"ver1.0","keyVaultUrl":"https://keyvault1-kmip-kvault.vault.azure.net/","versionType":"Fixed"}},"provisioningState":"Succeeded","circuit":{"primarySubnet":"192.168.53.0/30","secondarySubnet":"192.168.53.4/30","expressRouteID":"/subscriptions/{subscription-id}/resourceGroups/tnt13-41a90db2-9d5e-4bd5-a77a-5ce7b58213d6-eastus2/providers/Microsoft.Network/expressroutecircuits/tnt13-41a90db2-9d5e-4bd5-a77a-5ce7b58213d6-eastus2-xconnect","expressRoutePrivatePeeringID":"/subscriptions/{subscription-id}/resourceGroups/tnt42-cust-p01-dmo01/providers/Microsoft.Network/expressroutecircuits/tnt42-cust-p01-dmo01-er/peerings/AzurePrivatePeering"},"endpoints":{"nsxtManager":"https://192.168.50.3/","vcsa":"https://192.168.50.2/","hcxCloudManager":"https://192.168.50.4/"},"networkBlock":"192.168.48.0/22","externalCloudLinks":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup/providers/Microsoft.AVS/privateClouds/cloud2"]}}' + headers: + content-length: + - '1770' + content-type: + - application/json + date: + - Thu, 18 Nov 2021 21:49:59 GMT + server: + - Rocket + status: + code: 200 + message: OK +- request: + body: '{"identity": {"type": "None"}, "properties": {"internet": "Disabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmware private-cloud identity remove + Connection: + - keep-alive + Content-Length: + - '70' + Content-Type: + - application/json + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + method: PATCH + uri: https://localhost:8888/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmware000001/providers/Microsoft.AVS/privateClouds/cloud1?api-version=2021-12-01 + response: + body: + string: '{"id":"/subscriptions/{subscription-id}/resourceGroups/group1/providers/Microsoft.AVS/privateClouds/cloud1","name":"cloud1","type":"Microsoft.AVS/privateClouds","location":"eastus2","tags":{},"sku":{"name":"AV36"},"properties":{"managementCluster":{"clusterSize":4,"clusterId":1,"hosts":["fakehost18.nyc1.kubernetes.center","fakehost19.nyc1.kubernetes.center","fakehost20.nyc1.kubernetes.center","fakehost21.nyc1.kubernetes.center"]},"internet":"Disabled","identitySources":[{"name":"group1","alias":"groupAlias","domain":"domain1","baseUserDN":"ou=baseUser","baseGroupDN":"ou=baseGroup","primaryServer":"ldaps://1.1.1.1:636/","secondaryServer":"ldaps://1.1.1.2:636/","ssl":"Enabled"}],"availability":{"strategy":"SingleZone","zone":1},"encryption":{"status":"Enabled","keyVaultProperties":{"keyName":"keyname1","keyVersion":"ver1.0","keyVaultUrl":"https://keyvault1-kmip-kvault.vault.azure.net/","versionType":"Fixed"}},"provisioningState":"Succeeded","circuit":{"primarySubnet":"192.168.53.0/30","secondarySubnet":"192.168.53.4/30","expressRouteID":"/subscriptions/{subscription-id}/resourceGroups/tnt13-41a90db2-9d5e-4bd5-a77a-5ce7b58213d6-eastus2/providers/Microsoft.Network/expressroutecircuits/tnt13-41a90db2-9d5e-4bd5-a77a-5ce7b58213d6-eastus2-xconnect","expressRoutePrivatePeeringID":"/subscriptions/{subscription-id}/resourceGroups/tnt42-cust-p01-dmo01/providers/Microsoft.Network/expressroutecircuits/tnt42-cust-p01-dmo01-er/peerings/AzurePrivatePeering"},"endpoints":{"nsxtManager":"https://192.168.50.3/","vcsa":"https://192.168.50.2/","hcxCloudManager":"https://192.168.50.4/"},"networkBlock":"192.168.48.0/22","externalCloudLinks":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup/providers/Microsoft.AVS/privateClouds/cloud2"]}}' + headers: + content-length: + - '1770' + content-type: + - application/json + date: + - Thu, 18 Nov 2021 21:50:02 GMT + server: + - Rocket + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmware private-cloud identity show + Connection: + - keep-alive + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://localhost:8888/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmware000001/providers/Microsoft.AVS/privateClouds/cloud1?api-version=2021-12-01 + response: + body: + string: '{"id":"/subscriptions/{subscription-id}/resourceGroups/group1/providers/Microsoft.AVS/privateClouds/cloud1","name":"cloud1","type":"Microsoft.AVS/privateClouds","location":"eastus2","tags":{},"sku":{"name":"AV36"},"properties":{"managementCluster":{"clusterSize":4,"clusterId":1,"hosts":["fakehost18.nyc1.kubernetes.center","fakehost19.nyc1.kubernetes.center","fakehost20.nyc1.kubernetes.center","fakehost21.nyc1.kubernetes.center"]},"internet":"Disabled","identitySources":[{"name":"group1","alias":"groupAlias","domain":"domain1","baseUserDN":"ou=baseUser","baseGroupDN":"ou=baseGroup","primaryServer":"ldaps://1.1.1.1:636/","secondaryServer":"ldaps://1.1.1.2:636/","ssl":"Enabled"}],"availability":{"strategy":"SingleZone","zone":1},"encryption":{"status":"Enabled","keyVaultProperties":{"keyName":"keyname1","keyVersion":"ver1.0","keyVaultUrl":"https://keyvault1-kmip-kvault.vault.azure.net/","keyState":"Connected","versionType":"Fixed"}},"provisioningState":"Succeeded","circuit":{"primarySubnet":"192.168.53.0/30","secondarySubnet":"192.168.53.4/30","expressRouteID":"/subscriptions/{subscription-id}/resourceGroups/tnt13-41a90db2-9d5e-4bd5-a77a-5ce7b58213d6-eastus2/providers/Microsoft.Network/expressroutecircuits/tnt13-41a90db2-9d5e-4bd5-a77a-5ce7b58213d6-eastus2-xconnect","expressRoutePrivatePeeringID":"/subscriptions/{subscription-id}/resourceGroups/tnt42-cust-p01-dmo01/providers/Microsoft.Network/expressroutecircuits/tnt42-cust-p01-dmo01-er/peerings/AzurePrivatePeering"},"endpoints":{"nsxtManager":"https://192.168.50.3/","vcsa":"https://192.168.50.2/","hcxCloudManager":"https://192.168.50.4/"},"networkBlock":"192.168.48.0/22","externalCloudLinks":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup/providers/Microsoft.AVS/privateClouds/cloud2"]},"identity":{"principalId":"881e5573-063f-49e4-8c08-79d7df0169d8","tenantId":"881e5573-063f-49e4-8c08-79d7df0169d8","type":"SystemAssigned"}}' + headers: + content-length: + - '1933' + content-type: + - application/json + date: + - Thu, 18 Nov 2021 21:50:08 GMT + server: + - Rocket + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmware private-cloud list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://localhost:8888/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmware000001/providers/Microsoft.AVS/privateClouds?api-version=2021-12-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/{subscription-id}/resourceGroups/group1/providers/Microsoft.AVS/privateClouds/cloud1","name":"cloud1","type":"Microsoft.AVS/privateClouds","location":"eastus2","tags":{},"sku":{"name":"AV36"},"properties":{"managementCluster":{"clusterSize":4,"clusterId":1,"hosts":["fakehost18.nyc1.kubernetes.center","fakehost19.nyc1.kubernetes.center","fakehost20.nyc1.kubernetes.center","fakehost21.nyc1.kubernetes.center"]},"internet":"Disabled","identitySources":[{"name":"group1","alias":"groupAlias","domain":"domain1","baseUserDN":"ou=baseUser","baseGroupDN":"ou=baseGroup","primaryServer":"ldaps://1.1.1.1:636/","secondaryServer":"ldaps://1.1.1.2:636/","ssl":"Enabled"}],"availability":{"strategy":"SingleZone","zone":1},"provisioningState":"Succeeded","circuit":{"primarySubnet":"192.168.53.0/30","secondarySubnet":"192.168.53.4/30","expressRouteID":"/subscriptions/{subscription-id}/resourceGroups/tnt13-41a90db2-9d5e-4bd5-a77a-5ce7b58213d6-eastus2/providers/Microsoft.Network/expressroutecircuits/tnt13-41a90db2-9d5e-4bd5-a77a-5ce7b58213d6-eastus2-xconnect","expressRoutePrivatePeeringID":"/subscriptions/{subscription-id}/resourceGroups/tnt42-cust-p01-dmo01/providers/Microsoft.Network/expressroutecircuits/tnt42-cust-p01-dmo01-er/peerings/AzurePrivatePeering"},"endpoints":{"nsxtManager":"https://192.168.50.3/","vcsa":"https://192.168.50.2/","hcxCloudManager":"https://192.168.50.4/"},"networkBlock":"192.168.48.0/22","externalCloudLinks":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup/providers/Microsoft.AVS/privateClouds/cloud2"]}}]}' + headers: + content-length: + - '1597' + content-type: + - application/json + date: + - Thu, 18 Nov 2021 21:50:12 GMT server: - Rocket status: diff --git a/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_addon.yaml b/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_addon.yaml index ce2bb121110..81a8b813fe1 100644 --- a/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_addon.yaml +++ b/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_addon.yaml @@ -30,7 +30,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:53:39 GMT + - Thu, 18 Nov 2021 21:47:37 GMT server: - Rocket status: @@ -62,7 +62,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:53:43 GMT + - Thu, 18 Nov 2021 21:47:42 GMT server: - Rocket status: @@ -98,7 +98,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:53:47 GMT + - Thu, 18 Nov 2021 21:47:46 GMT server: - Rocket status: @@ -130,7 +130,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:53:52 GMT + - Thu, 18 Nov 2021 21:47:50 GMT server: - Rocket status: @@ -162,7 +162,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:53:56 GMT + - Thu, 18 Nov 2021 21:47:54 GMT server: - Rocket status: @@ -182,7 +182,7 @@ interactions: Content-Length: - '0' ParameterSetName: - - -g -c + - -g -c --yes User-Agent: - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: DELETE @@ -194,7 +194,7 @@ interactions: content-length: - '0' date: - - Thu, 11 Nov 2021 15:54:00 GMT + - Thu, 18 Nov 2021 21:47:58 GMT server: - Rocket status: @@ -226,7 +226,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:04 GMT + - Thu, 18 Nov 2021 21:48:03 GMT server: - Rocket status: @@ -262,7 +262,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:09 GMT + - Thu, 18 Nov 2021 21:48:07 GMT server: - Rocket status: @@ -294,7 +294,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:13 GMT + - Thu, 18 Nov 2021 21:48:11 GMT server: - Rocket status: @@ -326,7 +326,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:17 GMT + - Thu, 18 Nov 2021 21:48:15 GMT server: - Rocket status: @@ -346,7 +346,7 @@ interactions: Content-Length: - '0' ParameterSetName: - - -g -c + - -g -c --yes User-Agent: - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: DELETE @@ -358,7 +358,7 @@ interactions: content-length: - '0' date: - - Thu, 11 Nov 2021 15:54:21 GMT + - Thu, 18 Nov 2021 21:48:20 GMT server: - Rocket status: @@ -390,7 +390,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:26 GMT + - Thu, 18 Nov 2021 21:48:24 GMT server: - Rocket status: diff --git a/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_cloud_link.yaml b/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_cloud_link.yaml index db1534ca329..120987e7dba 100644 --- a/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_cloud_link.yaml +++ b/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_cloud_link.yaml @@ -29,7 +29,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:53:39 GMT + - Thu, 18 Nov 2021 21:47:37 GMT server: - Rocket status: @@ -61,7 +61,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:53:43 GMT + - Thu, 18 Nov 2021 21:47:41 GMT server: - Rocket status: @@ -93,7 +93,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:53:47 GMT + - Thu, 18 Nov 2021 21:47:46 GMT server: - Rocket status: @@ -113,7 +113,7 @@ interactions: Content-Length: - '0' ParameterSetName: - - -g -c -n + - -g -c -n --yes User-Agent: - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: DELETE @@ -125,7 +125,7 @@ interactions: content-length: - '0' date: - - Thu, 11 Nov 2021 15:53:52 GMT + - Thu, 18 Nov 2021 21:47:50 GMT server: - Rocket status: diff --git a/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_datastores.yaml b/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_datastores.yaml index 1c7875bcbdd..0ee135cd7c2 100644 --- a/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_datastores.yaml +++ b/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_datastores.yaml @@ -30,7 +30,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:53:39 GMT + - Thu, 18 Nov 2021 21:47:37 GMT server: - Rocket status: @@ -62,7 +62,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:53:43 GMT + - Thu, 18 Nov 2021 21:47:42 GMT server: - Rocket status: @@ -94,7 +94,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:53:47 GMT + - Thu, 18 Nov 2021 21:47:46 GMT server: - Rocket status: @@ -114,7 +114,7 @@ interactions: Content-Length: - '0' ParameterSetName: - - --name --resource-group --private-cloud --cluster + - --name --resource-group --private-cloud --cluster --yes User-Agent: - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: DELETE @@ -126,7 +126,7 @@ interactions: content-length: - '0' date: - - Thu, 11 Nov 2021 15:53:52 GMT + - Thu, 18 Nov 2021 21:47:50 GMT server: - Rocket status: diff --git a/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_global_reach_connection.yaml b/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_global_reach_connection.yaml index d2b7cbf9061..3c36594e9cd 100644 --- a/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_global_reach_connection.yaml +++ b/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_global_reach_connection.yaml @@ -32,7 +32,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:53:39 GMT + - Thu, 18 Nov 2021 21:47:37 GMT server: - Rocket status: @@ -64,7 +64,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:53:43 GMT + - Thu, 18 Nov 2021 21:47:42 GMT server: - Rocket status: @@ -102,7 +102,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:53:47 GMT + - Thu, 18 Nov 2021 21:47:46 GMT server: - Rocket status: @@ -134,7 +134,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:53:52 GMT + - Thu, 18 Nov 2021 21:47:50 GMT server: - Rocket status: @@ -166,7 +166,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:53:56 GMT + - Thu, 18 Nov 2021 21:47:54 GMT server: - Rocket status: @@ -186,7 +186,7 @@ interactions: Content-Length: - '0' ParameterSetName: - - -g -c -n + - -g -c -n --yes User-Agent: - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: DELETE @@ -198,7 +198,7 @@ interactions: content-length: - '0' date: - - Thu, 11 Nov 2021 15:54:00 GMT + - Thu, 18 Nov 2021 21:47:58 GMT server: - Rocket status: @@ -230,7 +230,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:04 GMT + - Thu, 18 Nov 2021 21:48:03 GMT server: - Rocket status: diff --git a/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_hcx.yaml b/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_hcx.yaml index 48d120e1038..7b1302e8672 100644 --- a/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_hcx.yaml +++ b/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_hcx.yaml @@ -32,7 +32,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:38 GMT + - Thu, 18 Nov 2021 21:48:37 GMT server: - Rocket status: @@ -68,7 +68,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:43 GMT + - Thu, 18 Nov 2021 21:48:41 GMT server: - Rocket status: @@ -100,7 +100,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:47 GMT + - Thu, 18 Nov 2021 21:48:45 GMT server: - Rocket status: @@ -132,7 +132,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:51 GMT + - Thu, 18 Nov 2021 21:48:49 GMT server: - Rocket status: @@ -168,7 +168,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:55 GMT + - Thu, 18 Nov 2021 21:48:54 GMT server: - Rocket status: @@ -200,7 +200,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:00 GMT + - Thu, 18 Nov 2021 21:48:58 GMT server: - Rocket status: @@ -232,7 +232,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:04 GMT + - Thu, 18 Nov 2021 21:49:02 GMT server: - Rocket status: @@ -252,7 +252,7 @@ interactions: Content-Length: - '0' ParameterSetName: - - -g -c -n + - -g -c -n --yes User-Agent: - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: DELETE @@ -264,7 +264,7 @@ interactions: content-length: - '0' date: - - Thu, 11 Nov 2021 15:55:08 GMT + - Thu, 18 Nov 2021 21:49:06 GMT server: - Rocket status: @@ -296,7 +296,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:12 GMT + - Thu, 18 Nov 2021 21:49:11 GMT server: - Rocket status: diff --git a/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_placement_policy.yaml b/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_placement_policy.yaml index 9d6b8465c70..0a7187227d0 100644 --- a/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_placement_policy.yaml +++ b/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_placement_policy.yaml @@ -25,7 +25,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:04 GMT + - Thu, 18 Nov 2021 21:48:03 GMT server: - Rocket status: @@ -57,7 +57,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:09 GMT + - Thu, 18 Nov 2021 21:48:07 GMT server: - Rocket status: @@ -96,7 +96,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:13 GMT + - Thu, 18 Nov 2021 21:48:11 GMT server: - Rocket status: @@ -134,7 +134,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:17 GMT + - Thu, 18 Nov 2021 21:48:15 GMT server: - Rocket status: @@ -166,7 +166,7 @@ interactions: content-length: - '0' date: - - Thu, 11 Nov 2021 15:54:21 GMT + - Thu, 18 Nov 2021 21:48:20 GMT server: - Rocket status: @@ -204,7 +204,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:26 GMT + - Thu, 18 Nov 2021 21:48:24 GMT server: - Rocket status: @@ -241,7 +241,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:30 GMT + - Thu, 18 Nov 2021 21:48:28 GMT server: - Rocket status: @@ -273,7 +273,7 @@ interactions: content-length: - '0' date: - - Thu, 11 Nov 2021 15:54:34 GMT + - Thu, 18 Nov 2021 21:48:32 GMT server: - Rocket status: diff --git a/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_script.yaml b/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_script.yaml index 3f59e7f9719..8194c38fbdf 100644 --- a/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_script.yaml +++ b/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_script.yaml @@ -27,7 +27,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:04 GMT + - Thu, 18 Nov 2021 21:48:03 GMT server: - Rocket status: @@ -60,7 +60,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:09 GMT + - Thu, 18 Nov 2021 21:48:07 GMT server: - Rocket status: @@ -99,7 +99,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:13 GMT + - Thu, 18 Nov 2021 21:48:11 GMT server: - Rocket status: @@ -135,7 +135,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:17 GMT + - Thu, 18 Nov 2021 21:48:15 GMT server: - Rocket status: @@ -178,7 +178,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:21 GMT + - Thu, 18 Nov 2021 21:48:20 GMT server: - Rocket status: @@ -211,7 +211,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:26 GMT + - Thu, 18 Nov 2021 21:48:24 GMT server: - Rocket status: @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:30 GMT + - Thu, 18 Nov 2021 21:48:28 GMT server: - Rocket status: @@ -264,7 +264,7 @@ interactions: Content-Length: - '0' ParameterSetName: - - -g -c -n + - -g -c -n --yes User-Agent: - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: DELETE @@ -276,7 +276,7 @@ interactions: content-length: - '0' date: - - Thu, 11 Nov 2021 15:54:34 GMT + - Thu, 18 Nov 2021 21:48:32 GMT server: - Rocket status: diff --git a/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_virtual_machines.yaml b/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_virtual_machines.yaml index bdd5362a5d9..d07483b97bc 100644 --- a/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_virtual_machines.yaml +++ b/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_virtual_machines.yaml @@ -25,7 +25,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:17 GMT + - Thu, 18 Nov 2021 21:48:15 GMT server: - Rocket status: @@ -57,7 +57,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:21 GMT + - Thu, 18 Nov 2021 21:48:20 GMT server: - Rocket status: @@ -91,7 +91,7 @@ interactions: content-length: - '0' date: - - Thu, 11 Nov 2021 15:54:26 GMT + - Thu, 18 Nov 2021 21:48:24 GMT server: - Rocket status: diff --git a/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_workload_network.yaml b/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_workload_network.yaml index a9fc5a7a463..5c4930a9917 100644 --- a/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_workload_network.yaml +++ b/src/vmware/azext_vmware/tests/latest/recordings/test_vmware_workload_network.yaml @@ -25,7 +25,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:47 GMT + - Thu, 18 Nov 2021 21:48:45 GMT server: - Rocket status: @@ -57,7 +57,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:51 GMT + - Thu, 18 Nov 2021 21:48:49 GMT server: - Rocket status: @@ -94,7 +94,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:54:55 GMT + - Thu, 18 Nov 2021 21:48:54 GMT server: - Rocket status: @@ -114,7 +114,7 @@ interactions: Content-Length: - '0' ParameterSetName: - - --resource-group --private-cloud --dhcp + - --resource-group --private-cloud --dhcp --yes User-Agent: - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: DELETE @@ -126,7 +126,7 @@ interactions: content-length: - '0' date: - - Thu, 11 Nov 2021 15:55:00 GMT + - Thu, 18 Nov 2021 21:48:58 GMT server: - Rocket status: @@ -163,7 +163,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:04 GMT + - Thu, 18 Nov 2021 21:49:02 GMT server: - Rocket status: @@ -201,7 +201,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:08 GMT + - Thu, 18 Nov 2021 21:49:06 GMT server: - Rocket status: @@ -221,7 +221,7 @@ interactions: Content-Length: - '0' ParameterSetName: - - --resource-group --private-cloud --dhcp + - --resource-group --private-cloud --dhcp --yes User-Agent: - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: DELETE @@ -233,7 +233,7 @@ interactions: content-length: - '0' date: - - Thu, 11 Nov 2021 15:55:12 GMT + - Thu, 18 Nov 2021 21:49:11 GMT server: - Rocket status: @@ -271,7 +271,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:17 GMT + - Thu, 18 Nov 2021 21:49:15 GMT server: - Rocket status: @@ -303,7 +303,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:21 GMT + - Thu, 18 Nov 2021 21:49:19 GMT server: - Rocket status: @@ -335,7 +335,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:25 GMT + - Thu, 18 Nov 2021 21:49:23 GMT server: - Rocket status: @@ -374,7 +374,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:29 GMT + - Thu, 18 Nov 2021 21:49:28 GMT server: - Rocket status: @@ -413,7 +413,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:34 GMT + - Thu, 18 Nov 2021 21:49:32 GMT server: - Rocket status: @@ -433,7 +433,7 @@ interactions: Content-Length: - '0' ParameterSetName: - - --resource-group --private-cloud --dns-service + - --resource-group --private-cloud --dns-service --yes User-Agent: - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: DELETE @@ -445,7 +445,7 @@ interactions: content-length: - '0' date: - - Thu, 11 Nov 2021 15:55:38 GMT + - Thu, 18 Nov 2021 21:49:37 GMT server: - Rocket status: @@ -477,7 +477,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:42 GMT + - Thu, 18 Nov 2021 21:49:41 GMT server: - Rocket status: @@ -509,7 +509,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:46 GMT + - Thu, 18 Nov 2021 21:49:46 GMT server: - Rocket status: @@ -548,7 +548,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:51 GMT + - Thu, 18 Nov 2021 21:49:50 GMT server: - Rocket status: @@ -587,7 +587,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:55:55 GMT + - Thu, 18 Nov 2021 21:49:54 GMT server: - Rocket status: @@ -607,7 +607,7 @@ interactions: Content-Length: - '0' ParameterSetName: - - --resource-group --private-cloud --dns-zone + - --resource-group --private-cloud --dns-zone --yes User-Agent: - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: DELETE @@ -619,7 +619,7 @@ interactions: content-length: - '0' date: - - Thu, 11 Nov 2021 15:56:00 GMT + - Thu, 18 Nov 2021 21:49:59 GMT server: - Rocket status: @@ -651,7 +651,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:56:04 GMT + - Thu, 18 Nov 2021 21:50:02 GMT server: - Rocket status: @@ -683,7 +683,83 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:56:08 GMT + - Thu, 18 Nov 2021 21:50:07 GMT + server: + - Rocket + status: + code: 200 + message: OK +- request: + body: '{"properties": {"displayName": "testDisplayName", "direction": "BIDIRECTIONAL", + "source": "vmGroup1", "destination": "vmGroup2", "revision": 1}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmware workload-network port-mirroring create + Connection: + - keep-alive + Content-Length: + - '144' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --private-cloud --port-mirroring --display-name --direction + --source --destination --revision + User-Agent: + - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://localhost:8888/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmware_workload_network000001/providers/Microsoft.AVS/privateClouds/cloud1/workloadNetworks/default/portMirroringProfiles/portMirroring1?api-version=2021-12-01 + response: + body: + string: '{"id":"/subscriptions/{subscription-id}/resourceGroups/group1/providers/Microsoft.AVS/privateClouds/cloud1/workloadNetworks/default/portMirroringProfiles/portMirroring1","name":"portMirroring1","type":"Microsoft.AVS/privateClouds/workloadNetworks/portMirroringProfiles","properties":{"displayName":"portMirroring1","direction":"BIDIRECTIONAL","source":"vmGroup1","destination":"vmGroup2","status":"SUCCESS","revision":1}}' + headers: + content-length: + - '421' + content-type: + - application/json + date: + - Thu, 18 Nov 2021 21:50:12 GMT + server: + - Rocket + status: + code: 200 + message: OK +- request: + body: '{"properties": {"displayName": "testDisplayName", "direction": "BIDIRECTIONAL", + "source": "vmGroup1", "destination": "vmGroup2", "revision": 1}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmware workload-network port-mirroring update + Connection: + - keep-alive + Content-Length: + - '144' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --private-cloud --port-mirroring --display-name --direction + --source --destination --revision + User-Agent: + - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) + method: PATCH + uri: https://localhost:8888/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmware_workload_network000001/providers/Microsoft.AVS/privateClouds/cloud1/workloadNetworks/default/portMirroringProfiles/portMirroring1?api-version=2021-12-01 + response: + body: + string: '{"id":"/subscriptions/{subscription-id}/resourceGroups/group1/providers/Microsoft.AVS/privateClouds/cloud1/workloadNetworks/default/portMirroringProfiles/portMirroring1","name":"portMirroring1","type":"Microsoft.AVS/privateClouds/workloadNetworks/portMirroringProfiles","properties":{"displayName":"portMirroring1","direction":"BIDIRECTIONAL","source":"vmGroup1","destination":"vmGroup2","status":"SUCCESS","revision":2}}' + headers: + content-length: + - '421' + content-type: + - application/json + date: + - Thu, 18 Nov 2021 21:50:16 GMT server: - Rocket status: @@ -703,7 +779,7 @@ interactions: Content-Length: - '0' ParameterSetName: - - --resource-group --private-cloud --port-mirroring + - --resource-group --private-cloud --port-mirroring --yes User-Agent: - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: DELETE @@ -715,7 +791,7 @@ interactions: content-length: - '0' date: - - Thu, 11 Nov 2021 15:56:12 GMT + - Thu, 18 Nov 2021 21:50:21 GMT server: - Rocket status: @@ -747,7 +823,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:56:17 GMT + - Thu, 18 Nov 2021 21:50:25 GMT server: - Rocket status: @@ -779,7 +855,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:56:21 GMT + - Thu, 18 Nov 2021 21:50:30 GMT server: - Rocket status: @@ -818,7 +894,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:56:25 GMT + - Thu, 18 Nov 2021 21:50:34 GMT server: - Rocket status: @@ -857,7 +933,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:56:30 GMT + - Thu, 18 Nov 2021 21:50:39 GMT server: - Rocket status: @@ -877,7 +953,7 @@ interactions: Content-Length: - '0' ParameterSetName: - - --resource-group --private-cloud --segment + - --resource-group --private-cloud --segment --yes User-Agent: - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: DELETE @@ -889,7 +965,7 @@ interactions: content-length: - '0' date: - - Thu, 11 Nov 2021 15:56:34 GMT + - Thu, 18 Nov 2021 21:50:43 GMT server: - Rocket status: @@ -921,7 +997,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:56:38 GMT + - Thu, 18 Nov 2021 21:50:47 GMT server: - Rocket status: @@ -953,7 +1029,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:56:42 GMT + - Thu, 18 Nov 2021 21:50:52 GMT server: - Rocket status: @@ -990,7 +1066,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:56:47 GMT + - Thu, 18 Nov 2021 21:50:56 GMT server: - Rocket status: @@ -1010,7 +1086,7 @@ interactions: Content-Length: - '0' ParameterSetName: - - --resource-group --private-cloud --public-ip + - --resource-group --private-cloud --public-ip --yes User-Agent: - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: DELETE @@ -1022,7 +1098,7 @@ interactions: content-length: - '0' date: - - Thu, 11 Nov 2021 15:56:51 GMT + - Thu, 18 Nov 2021 21:51:01 GMT server: - Rocket status: @@ -1054,7 +1130,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:56:55 GMT + - Thu, 18 Nov 2021 21:51:05 GMT server: - Rocket status: @@ -1086,7 +1162,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:57:00 GMT + - Thu, 18 Nov 2021 21:51:09 GMT server: - Rocket status: @@ -1123,7 +1199,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:57:04 GMT + - Thu, 18 Nov 2021 21:51:14 GMT server: - Rocket status: @@ -1160,7 +1236,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:57:08 GMT + - Thu, 18 Nov 2021 21:51:18 GMT server: - Rocket status: @@ -1180,7 +1256,7 @@ interactions: Content-Length: - '0' ParameterSetName: - - --resource-group --private-cloud --vm-group + - --resource-group --private-cloud --vm-group --yes User-Agent: - AZURECLI/2.27.1 azsdk-python-mgmt-avs/0.1.0 Python/3.8.10 (Windows-10-10.0.22000-SP0) method: DELETE @@ -1192,7 +1268,7 @@ interactions: content-length: - '0' date: - - Thu, 11 Nov 2021 15:57:12 GMT + - Thu, 18 Nov 2021 21:51:23 GMT server: - Rocket status: @@ -1224,7 +1300,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:57:17 GMT + - Thu, 18 Nov 2021 21:51:27 GMT server: - Rocket status: @@ -1256,7 +1332,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:57:21 GMT + - Thu, 18 Nov 2021 21:51:32 GMT server: - Rocket status: @@ -1288,7 +1364,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:57:25 GMT + - Thu, 18 Nov 2021 21:51:36 GMT server: - Rocket status: @@ -1320,7 +1396,7 @@ interactions: content-type: - application/json date: - - Thu, 11 Nov 2021 15:57:30 GMT + - Thu, 18 Nov 2021 21:51:40 GMT server: - Rocket status: diff --git a/src/vmware/azext_vmware/tests/latest/test_addon_scenario.py b/src/vmware/azext_vmware/tests/latest/test_addon_scenario.py index 117d930b78a..9023e1f5eee 100644 --- a/src/vmware/azext_vmware/tests/latest/test_addon_scenario.py +++ b/src/vmware/azext_vmware/tests/latest/test_addon_scenario.py @@ -41,7 +41,7 @@ def test_vmware_addon(self): self.cmd('az vmware addon vr show -g {rg} -c {privatecloud}') # Delete a VR addon - self.cmd('az vmware addon vr delete -g {rg} -c {privatecloud}') + self.cmd('az vmware addon vr delete -g {rg} -c {privatecloud} --yes') # List all existing addon count = len(self.cmd('vmware addon list -g {rg} -c {privatecloud}').get_output_in_json()) @@ -58,7 +58,7 @@ def test_vmware_addon(self): self.cmd('az vmware addon srm show -g {rg} -c {privatecloud}') # Delete a SRM addon - self.cmd('az vmware addon srm delete -g {rg} -c {privatecloud}') + self.cmd('az vmware addon srm delete -g {rg} -c {privatecloud} --yes') # List all existing addon count = len(self.cmd('vmware addon list -g {rg} -c {privatecloud}').get_output_in_json()) diff --git a/src/vmware/azext_vmware/tests/latest/test_cloud_link_scenario.py b/src/vmware/azext_vmware/tests/latest/test_cloud_link_scenario.py index ba3533a1b7b..688e271565e 100644 --- a/src/vmware/azext_vmware/tests/latest/test_cloud_link_scenario.py +++ b/src/vmware/azext_vmware/tests/latest/test_cloud_link_scenario.py @@ -31,5 +31,5 @@ def test_vmware_cloud_link(self): self.assertEqual(rsp['type'], 'Microsoft.AVS/privateClouds/cloudLinks') self.assertEqual(rsp['name'], self.kwargs.get('cloud_link')) - rsp = self.cmd('vmware cloud-link delete -g {rg} -c {privatecloud} -n {cloud_link}').output + rsp = self.cmd('vmware cloud-link delete -g {rg} -c {privatecloud} -n {cloud_link} --yes').output self.assertEqual(len(rsp), 0) diff --git a/src/vmware/azext_vmware/tests/latest/test_datastores_scenario.py b/src/vmware/azext_vmware/tests/latest/test_datastores_scenario.py index 528bd1cd3f0..53e1ae42c7e 100644 --- a/src/vmware/azext_vmware/tests/latest/test_datastores_scenario.py +++ b/src/vmware/azext_vmware/tests/latest/test_datastores_scenario.py @@ -47,4 +47,4 @@ def test_vmware_datastores(self): # self.cmd('az vmware datastore show --name ANFDatastore1 --resource-group {rg} --private-cloud {privatecloud} --cluster {cluster}') # Delete the newly created ANF based datastore - self.cmd('az vmware datastore delete --name iSCSIDatastore1 --resource-group {rg} --private-cloud {privatecloud} --cluster {cluster}') + self.cmd('az vmware datastore delete --name iSCSIDatastore1 --resource-group {rg} --private-cloud {privatecloud} --cluster {cluster} --yes') diff --git a/src/vmware/azext_vmware/tests/latest/test_global_reach_connection_scenario.py b/src/vmware/azext_vmware/tests/latest/test_global_reach_connection_scenario.py index 8cf0a53ba31..95248079050 100644 --- a/src/vmware/azext_vmware/tests/latest/test_global_reach_connection_scenario.py +++ b/src/vmware/azext_vmware/tests/latest/test_global_reach_connection_scenario.py @@ -42,7 +42,7 @@ def test_vmware_global_reach_connection(self): self.assertEqual(rsp['type'], 'Microsoft.AVS/privateClouds/globalReachConnections') self.assertEqual(rsp['name'], self.kwargs.get('global_reach_connection')) - rsp = self.cmd('vmware global-reach-connection delete -g {rg} -c {privatecloud} -n {global_reach_connection}').output + rsp = self.cmd('vmware global-reach-connection delete -g {rg} -c {privatecloud} -n {global_reach_connection} --yes').output self.assertEqual(len(rsp), 0) count = len(self.cmd('az vmware global-reach-connection list -g {rg} -c {privatecloud}').get_output_in_json()) diff --git a/src/vmware/azext_vmware/tests/latest/test_hcx_scenario.py b/src/vmware/azext_vmware/tests/latest/test_hcx_scenario.py index 1a754bed460..43ccb096341 100644 --- a/src/vmware/azext_vmware/tests/latest/test_hcx_scenario.py +++ b/src/vmware/azext_vmware/tests/latest/test_hcx_scenario.py @@ -45,7 +45,7 @@ def test_vmware_hcx(self): self.cmd('vmware hcx-enterprise-site show -g {rg} -c {privatecloud} -n myhcx') - self.cmd('vmware hcx-enterprise-site delete -g {rg} -c {privatecloud} -n myhcx') + self.cmd('vmware hcx-enterprise-site delete -g {rg} -c {privatecloud} -n myhcx --yes') # hcx-enterprise-site list should report 1 count = len(self.cmd('vmware hcx-enterprise-site list -g {rg} -c {privatecloud}').get_output_in_json()) diff --git a/src/vmware/azext_vmware/tests/latest/test_script_scenario.py b/src/vmware/azext_vmware/tests/latest/test_script_scenario.py index 80515cd68e1..be8eb91f45c 100644 --- a/src/vmware/azext_vmware/tests/latest/test_script_scenario.py +++ b/src/vmware/azext_vmware/tests/latest/test_script_scenario.py @@ -47,5 +47,5 @@ def test_vmware_script(self): self.assertEqual(rsp['type'], 'Microsoft.AVS/privateClouds/scriptExecutions') self.assertEqual(rsp['name'], self.kwargs.get('scriptExecution')) - rsp = self.cmd('az vmware script-execution delete -g {rg} -c {privatecloud} -n {scriptExecution}').output + rsp = self.cmd('az vmware script-execution delete -g {rg} -c {privatecloud} -n {scriptExecution} --yes').output self.assertEqual(len(rsp), 0) diff --git a/src/vmware/azext_vmware/tests/latest/test_vmware_scenario.py b/src/vmware/azext_vmware/tests/latest/test_vmware_scenario.py index 6b085a93f78..d0e7ddb689f 100644 --- a/src/vmware/azext_vmware/tests/latest/test_vmware_scenario.py +++ b/src/vmware/azext_vmware/tests/latest/test_vmware_scenario.py @@ -54,8 +54,8 @@ def test_vmware(self): # self.cmd('vmware private-cloud listadmincredentials -g {rg} -c {privatecloud}') # rotate passwords - self.cmd('vmware private-cloud rotate-vcenter-password -g {rg} -c {privatecloud}') - self.cmd('vmware private-cloud rotate-nsxt-password -g {rg} -c {privatecloud}') + # self.cmd('vmware private-cloud rotate-vcenter-password -g {rg} -c {privatecloud}') + # self.cmd('vmware private-cloud rotate-nsxt-password -g {rg} -c {privatecloud}') # update private cloud to changed default cluster size self.cmd('vmware private-cloud update -g {rg} -n {privatecloud} --cluster-size 4') @@ -67,13 +67,13 @@ def test_vmware(self): self.cmd('vmware authorization create -g {rg} -c {privatecloud} -n myauthname') # delete authorization - self.cmd('vmware authorization delete -g {rg} -c {privatecloud} -n myauthname') + self.cmd('vmware authorization delete -g {rg} -c {privatecloud} -n myauthname --yes') # add identity source self.cmd('vmware private-cloud add-identity-source -g {rg} -c {privatecloud} -n groupName --alias groupAlias --domain domain --base-user-dn "ou=baseUser" --base-group-dn "ou=baseGroup" --primary-server ldaps://1.1.1.1:636 --username someone --password something') # delete identity source - self.cmd('vmware private-cloud delete-identity-source -g {rg} -c {privatecloud} -n groupName --alias groupAlias --domain domain') + self.cmd('vmware private-cloud delete-identity-source -g {rg} -c {privatecloud} -n groupName --alias groupAlias --domain domain --yes') # cluster list should report 0 count = len(self.cmd('vmware cluster list -g {rg} -c {privatecloud}').get_output_in_json()) @@ -90,10 +90,19 @@ def test_vmware(self): self.cmd('vmware cluster update -g {rg} -c {privatecloud} -n {cluster} --size 4') # cluster delete - self.cmd('vmware cluster delete -g {rg} -c {privatecloud} -n {cluster}') + self.cmd('vmware cluster delete -g {rg} -c {privatecloud} -n {cluster} --yes') # delete the private cloud - # self.cmd('vmware private-cloud delete -g {rg} -n {privatecloud} --yes') + self.cmd('vmware private-cloud delete -g {rg} -n {privatecloud} --yes') - # count = len(self.cmd('vmware private-cloud list -g {rg}').get_output_in_json()) - # self.assertEqual(count, 0, 'private cloud count expected to be 0') + # set managed identity + self.cmd('vmware private-cloud identity assign -g {rg} -c {privatecloud} --system-assigned') + + # remove managed identity + self.cmd('vmware private-cloud identity remove -g {rg} -c {privatecloud}') + + # show managed identity + self.cmd('vmware private-cloud identity show -g {rg} -c {privatecloud}') + + count = len(self.cmd('vmware private-cloud list -g {rg}').get_output_in_json()) + self.assertEqual(count, 1, 'private cloud count expected to be 1') diff --git a/src/vmware/azext_vmware/tests/latest/test_workload_network_scenario.py b/src/vmware/azext_vmware/tests/latest/test_workload_network_scenario.py index 0903efd025a..d713a7bdb37 100644 --- a/src/vmware/azext_vmware/tests/latest/test_workload_network_scenario.py +++ b/src/vmware/azext_vmware/tests/latest/test_workload_network_scenario.py @@ -58,7 +58,7 @@ def test_vmware_workload_network(self): dhcpRelayCreate = self.cmd('az vmware workload-network dhcp relay create --resource-group {rg} --private-cloud {privatecloud} --dhcp {dhcp} --display-name {display_name} --revision {revision} --server-addresses {server_addresses}').get_output_in_json() self.assertEqual(dhcpRelayCreate['name'], 'dhcp1') - dhcpRelayDelete = self.cmd('az vmware workload-network dhcp relay delete --resource-group {rg} --private-cloud {privatecloud} --dhcp {dhcp}').output + dhcpRelayDelete = self.cmd('az vmware workload-network dhcp relay delete --resource-group {rg} --private-cloud {privatecloud} --dhcp {dhcp} --yes').output self.assertEqual(len(dhcpRelayDelete), 0) dhcpRelayUpdate = self.cmd('az vmware workload-network dhcp relay update --resource-group {rg} --private-cloud {privatecloud} --dhcp {dhcp} --display-name {display_name} --revision {revision} --server-addresses {server_addresses}').get_output_in_json() @@ -67,7 +67,7 @@ def test_vmware_workload_network(self): dhcpServerCreate = self.cmd('az vmware workload-network dhcp server create --resource-group {rg} --private-cloud {privatecloud} --dhcp {dhcp} --display-name {display_name} --revision {revision} --server-address {server_address} --lease-time {lease_time}').get_output_in_json() self.assertEqual(dhcpServerCreate['name'], 'dhcp1') - dhcpServerDelete = self.cmd('az vmware workload-network dhcp server delete --resource-group {rg} --private-cloud {privatecloud} --dhcp {dhcp}').output + dhcpServerDelete = self.cmd('az vmware workload-network dhcp server delete --resource-group {rg} --private-cloud {privatecloud} --dhcp {dhcp} --yes').output self.assertEqual(len(dhcpServerDelete), 0) dhcpServerUpdate = self.cmd('az vmware workload-network dhcp server update --resource-group {rg} --private-cloud {privatecloud} --dhcp {dhcp} --display-name {display_name} --revision {revision} --server-address {server_address} --lease-time {lease_time}').get_output_in_json() @@ -85,7 +85,7 @@ def test_vmware_workload_network(self): dnsServiceUpdate = self.cmd('az vmware workload-network dns-service update --resource-group {rg} --private-cloud {privatecloud} --dns-service {dns_service} --display-name {display_name} --dns-service-ip {dns_service_ip} --default-dns-zone {default_dns_zone} --fqdn-zones {fqdn_zones} --log-level {log_level} --revision {revision}').get_output_in_json() self.assertEqual(dnsServiceUpdate['name'], 'dnsService1') - dnsServiceDelete = self.cmd('az vmware workload-network dns-service delete --resource-group {rg} --private-cloud {privatecloud} --dns-service {dns_service}').output + dnsServiceDelete = self.cmd('az vmware workload-network dns-service delete --resource-group {rg} --private-cloud {privatecloud} --dns-service {dns_service} --yes').output self.assertEqual(len(dnsServiceDelete), 0) dnsZoneList = self.cmd('az vmware workload-network dns-zone list --resource-group {rg} --private-cloud {privatecloud}').get_output_in_json() @@ -100,7 +100,7 @@ def test_vmware_workload_network(self): dnsZoneUpdate = self.cmd('az vmware workload-network dns-zone update --resource-group {rg} --private-cloud {privatecloud} --dns-zone {dns_zone} --display-name {display_name} --domain {domain} --dns-server-ips {dns_server_ips} --source-ip {source_ip} --dns-services {dns_services} --revision {revision}').get_output_in_json() self.assertEqual(dnsZoneUpdate['name'], 'dnsZone1') - dnsZoneDelete = self.cmd('az vmware workload-network dns-zone delete --resource-group {rg} --private-cloud {privatecloud} --dns-zone {dns_zone}').output + dnsZoneDelete = self.cmd('az vmware workload-network dns-zone delete --resource-group {rg} --private-cloud {privatecloud} --dns-zone {dns_zone} --yes').output self.assertEqual(len(dnsZoneDelete), 0) portMirroringList = self.cmd('az vmware workload-network port-mirroring list --resource-group {rg} --private-cloud {privatecloud}').get_output_in_json() @@ -109,15 +109,13 @@ def test_vmware_workload_network(self): portMirroringGet = self.cmd('az vmware workload-network port-mirroring show --resource-group {rg} --private-cloud {privatecloud} --port-mirroring {port_mirroring}').get_output_in_json() self.assertEqual(portMirroringGet['name'], 'portMirroring1') - # Uncomment these unit tests once swagger is fixed + portMirroringCreate = self.cmd('az vmware workload-network port-mirroring create --resource-group {rg} --private-cloud {privatecloud} --port-mirroring {port_mirroring} --display-name {display_name} --direction {direction} --source {source} --destination {destination} --revision {revision}').get_output_in_json() + self.assertEqual(portMirroringCreate['name'], 'portMirroring1') - # portMirroringCreate = self.cmd('az vmware workload-network port-mirroring create --resource-group {rg} --private-cloud {privatecloud} --port-mirroring {port_mirroring} --display-name {display_name} --direction {direction} --source {source} --destination {destination} --revision {revision}').get_output_in_json() - # self.assertEqual(portMirroringCreate['name'], 'portMirroring1') + portMirroringUpdate = self.cmd('az vmware workload-network port-mirroring update --resource-group {rg} --private-cloud {privatecloud} --port-mirroring {port_mirroring} --display-name {display_name} --direction {direction} --source {source} --destination {destination} --revision {revision}').get_output_in_json() + self.assertEqual(portMirroringUpdate['name'], 'portMirroring1') - # portMirroringUpdate = self.cmd('az vmware workload-network port-mirroring update --resource-group {rg} --private-cloud {privatecloud} --port-mirroring {port_mirroring} --display-name {display_name} --direction {direction} --source {source} --destination {destination} --revision {revision}').get_output_in_json() - # self.assertEqual(portMirroringUpdate['name'], 'portMirroring1') - - portMirroringDelete = self.cmd('az vmware workload-network port-mirroring delete --resource-group {rg} --private-cloud {privatecloud} --port-mirroring {port_mirroring}').output + portMirroringDelete = self.cmd('az vmware workload-network port-mirroring delete --resource-group {rg} --private-cloud {privatecloud} --port-mirroring {port_mirroring} --yes').output self.assertEqual(len(portMirroringDelete), 0) segmentList = self.cmd('az vmware workload-network segment list --resource-group {rg} --private-cloud {privatecloud}').get_output_in_json() @@ -132,7 +130,7 @@ def test_vmware_workload_network(self): segmentUpdate = self.cmd('az vmware workload-network segment update --resource-group {rg} --private-cloud {privatecloud} --segment {segment} --display-name {display_name} --connected-gateway {connected_gateway} --revision {revision} --dhcp-ranges {dhcp_ranges} --gateway-address {gateway_address}').get_output_in_json() self.assertEqual(segmentUpdate['name'], 'segment1') - segmentDelete = self.cmd('az vmware workload-network segment delete --resource-group {rg} --private-cloud {privatecloud} --segment {segment}').output + segmentDelete = self.cmd('az vmware workload-network segment delete --resource-group {rg} --private-cloud {privatecloud} --segment {segment} --yes').output self.assertEqual(len(segmentDelete), 0) publicIpList = self.cmd('az vmware workload-network public-ip list --resource-group {rg} --private-cloud {privatecloud}').get_output_in_json() @@ -144,7 +142,7 @@ def test_vmware_workload_network(self): publicIpCreate = self.cmd('az vmware workload-network public-ip create --resource-group {rg} --private-cloud {privatecloud} --public-ip {public_ip} --display-name {display_name} --number-of-public-ips {number_of_public_i_ps}').get_output_in_json() self.assertEqual(publicIpCreate['name'], 'publicIP1') - publicIpDelete = self.cmd('az vmware workload-network public-ip delete --resource-group {rg} --private-cloud {privatecloud} --public-ip {public_ip}').output + publicIpDelete = self.cmd('az vmware workload-network public-ip delete --resource-group {rg} --private-cloud {privatecloud} --public-ip {public_ip} --yes').output self.assertEqual(len(publicIpDelete), 0) vmGroupList = self.cmd('az vmware workload-network vm-group list --resource-group {rg} --private-cloud {privatecloud}').get_output_in_json() @@ -159,7 +157,7 @@ def test_vmware_workload_network(self): vmGroupUpdate = self.cmd('az vmware workload-network vm-group update --resource-group {rg} --private-cloud {privatecloud} --vm-group {vm_group} --display-name {display_name} --members {members} --revision {revision}').get_output_in_json() self.assertEqual(vmGroupUpdate['name'], 'cloud1') - vmGroupDelete = self.cmd('az vmware workload-network vm-group delete --resource-group {rg} --private-cloud {privatecloud} --vm-group {vm_group}').output + vmGroupDelete = self.cmd('az vmware workload-network vm-group delete --resource-group {rg} --private-cloud {privatecloud} --vm-group {vm_group} --yes').output self.assertEqual(len(vmGroupDelete), 0) vmList = self.cmd('az vmware workload-network vm list --resource-group {rg} --private-cloud {privatecloud}').get_output_in_json() diff --git a/src/vmware/azext_vmware/vendored_sdks/__init__.py b/src/vmware/azext_vmware/vendored_sdks/__init__.py new file mode 100644 index 00000000000..c9cfdc73e77 --- /dev/null +++ b/src/vmware/azext_vmware/vendored_sdks/__init__.py @@ -0,0 +1,12 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +__path__ = __import__('pkgutil').extend_path(__path__, __name__) diff --git a/src/vmware/setup.py b/src/vmware/setup.py index 61f0ce212d4..6efc930bc74 100644 --- a/src/vmware/setup.py +++ b/src/vmware/setup.py @@ -8,7 +8,7 @@ from io import open from setuptools import setup, find_packages -VERSION = "3.2.0" +VERSION = "4.0.1" with open('README.md', encoding='utf-8') as f: readme = f.read() diff --git a/src/webpubsub/azext_webpubsub/tests/latest/recording_processors.py b/src/webpubsub/azext_webpubsub/tests/latest/recording_processors.py index b03ca54c773..3cfe2964988 100644 --- a/src/webpubsub/azext_webpubsub/tests/latest/recording_processors.py +++ b/src/webpubsub/azext_webpubsub/tests/latest/recording_processors.py @@ -3,8 +3,8 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -from azure_devtools.scenario_tests import RecordingProcessor -from azure_devtools.scenario_tests.utilities import is_text_payload +from azure.cli.testsdk.scenario_tests import RecordingProcessor +from azure.cli.testsdk.scenario_tests.utilities import is_text_payload MOCK_KEY = 'mock_key' diff --git a/src/webpubsub/azext_webpubsub/tests/latest/test_webpubsub_event_handler.py b/src/webpubsub/azext_webpubsub/tests/latest/test_webpubsub_event_handler.py index 69e30196947..c7e7257aeba 100644 --- a/src/webpubsub/azext_webpubsub/tests/latest/test_webpubsub_event_handler.py +++ b/src/webpubsub/azext_webpubsub/tests/latest/test_webpubsub_event_handler.py @@ -7,7 +7,7 @@ import os import unittest -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) from .recording_processors import KeyReplacer diff --git a/src/webpubsub/azext_webpubsub/tests/latest/test_webpubsub_scenario.py b/src/webpubsub/azext_webpubsub/tests/latest/test_webpubsub_scenario.py index 538ea4e1b61..2f2f3103dc4 100644 --- a/src/webpubsub/azext_webpubsub/tests/latest/test_webpubsub_scenario.py +++ b/src/webpubsub/azext_webpubsub/tests/latest/test_webpubsub_scenario.py @@ -7,7 +7,7 @@ import os import unittest -from azure_devtools.scenario_tests import AllowLargeResponse +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer) from .recording_processors import KeyReplacer